mailup.gemspec in mailup-1.1.0 vs mailup.gemspec in mailup-1.2.0
- old
+ new
@@ -5,21 +5,23 @@
Gem::Specification.new do |gem|
gem.name = "mailup"
gem.version = MailUp::VERSION
gem.platform = Gem::Platform::RUBY
- gem.authors = ["Brian Getting"]
+ gem.authors = ["Brian Getting", "Rocco Galluzzo"]
gem.email = ["brian@tatem.ae"]
gem.homepage = "https://github.com/mailup/mailup-ruby"
gem.summary = "Ruby wrapper for the MailUp REST API"
gem.description = "A Ruby gem for interacting with the MailUp REST API."
-
+ gem.licenses = ['MIT']
+
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
-
- gem.add_dependency 'oauth2', '>= 0.9.2'
-
+
+ gem.add_runtime_dependency 'oauth2', '~> 0.9', '>= 0.9.2'
+
gem.add_development_dependency "rspec"
gem.add_development_dependency "rake"
+ gem.add_development_dependency "coveralls"
end