Skip to content

Commit

Permalink
Version 0.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
alavia committed Jul 22, 2018
1 parent 0ebdbfb commit dc675ee
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 11 deletions.
1 change: 0 additions & 1 deletion bin/top_ten
@@ -1,6 +1,5 @@
#!/usr/bin/env ruby

require 'bundler/setup'
require './lib/top_ten.rb'

TopTen::CLI.new.call
1 change: 0 additions & 1 deletion lib/top_ten.rb
@@ -1,6 +1,5 @@
#all requirements/acting as environment

require 'require_all'
require 'pry'
require 'Nokogiri'
require 'open-uri'
Expand Down
2 changes: 1 addition & 1 deletion lib/top_ten/version.rb
@@ -1,3 +1,3 @@
module TopTen
VERSION = "0.1.4"
VERSION = "0.1.5"
end
Binary file added top_ten-0.1.4.gem
Binary file not shown.
15 changes: 7 additions & 8 deletions top_ten.gemspec
Expand Up @@ -13,23 +13,22 @@ Gem::Specification.new do |spec|
spec.description = "This gem will teach you about Lonely Planet's Best in Travel Top 10 Countries to Visit in 2018."
spec.homepage = "https://github.com/alavia/top_ten"
spec.license = "MIT"
spec.files = ["lib/top_ten/top.rb", "lib/top_ten/scraper.rb", "lib/top_ten/cli.rb", "lib/top_ten/version.rb", "lib/top_ten.rb"]
spec.files = ["lib/top_ten.rb", "lib/top_ten/top.rb", "lib/top_ten/scraper.rb", "lib/top_ten/cli.rb", "lib/top_ten/version.rb"]

spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
`git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
end
# spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
# `git ls-files -z`.split("\x0").reject do |f|
# f.match(%r{^(test|spec|features)/})
# end
# end
spec.bindir = "bin"
spec.executables = ["top_ten"]
spec.require_paths = ["lib"]

spec.add_development_dependency "bundler", "~> 1.16"
spec.add_development_dependency "rake", "~> 10.0"
spec.add_development_dependency "pry", "~> 0.11.3"
spec.add_development_dependency "gem-release"


spec.add_dependency "require_all", "~> 1.5.0"
spec.add_dependency "nokogiri"


Expand Down

0 comments on commit dc675ee

Please sign in to comment.