npr.gemspec in npr-0.0.0 vs npr.gemspec in npr-0.1.0

- old
+ new

@@ -2,16 +2,26 @@ require File.expand_path('../lib/npr/version', __FILE__) Gem::Specification.new do |gem| gem.authors = ["Bryan Ricker"] gem.email = ["bricker@scpr.org"] - gem.description = %q{A Ruby client for the NPR API} - gem.summary = %q{A simple Ruby client for the NPR API} + gem.description = %q{[NPR](http://npr.org) is a news organization. This gem helps you pull its content with a nice Ruby DSL. <http://www.npr.org/api/index>} + gem.summary = %q{A Ruby client for the NPR API} gem.homepage = "http://github.com/bricker88/npr" gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } gem.files = `git ls-files`.split("\n") gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") gem.name = "npr" gem.require_paths = ["lib"] gem.version = NPR::VERSION + + gem.licenses = ['MIT'] + + gem.add_dependency 'faraday', ['>= 0.8.0'] + gem.add_dependency 'faraday_middleware', ['>= 0.9.0'] + + gem.add_development_dependency 'bundler', ['>= 1.0.0'] + gem.add_development_dependency 'rake', ['>= 0'] + gem.add_development_dependency 'rspec', ['>= 0'] + gem.add_development_dependency 'fakeweb', ['>= 0'] end