urban_dictionary.gemspec in urban_dictionary-0.0.2 vs urban_dictionary.gemspec in urban_dictionary-1.0.0
- old
+ new
@@ -5,21 +5,23 @@
Gem::Specification.new do |s|
s.name = "urban_dictionary"
s.version = UrbanDictionary::VERSION
s.authors = ["Ryan Greenberg"]
s.email = ["ryangreenberg@gmail.com"]
- s.homepage = ""
+ s.homepage = "https://github.com/ryangreenberg/urban_dictionary"
s.summary = "Interface to urbandictionary.com"
s.description = s.summary
s.rubyforge_project = "urban_dictionary"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
- s.add_runtime_dependency "nokogiri", "~> 1.5.2"
+ s.add_runtime_dependency "nokogiri", "~> 1.5"
+ s.add_runtime_dependency "multi_json", "~> 1.0"
s.add_development_dependency "rake"
- s.add_development_dependency "rspec"
+ s.add_development_dependency "rspec", "~> 3.4"
+ s.add_development_dependency "webmock", "~> 1.22.6"
end