cellular.gemspec in cellular-0.0.0 vs cellular.gemspec in cellular-1.0.0

- old
+ new

@@ -6,16 +6,20 @@ require 'cellular/version' Gem::Specification.new do |gem| gem.name = 'cellular' gem.version = Cellular::VERSION - gem.authors = ['Tim Kurvers'] - gem.email = ['tim@moonsphere.net'] + gem.authors = ['Sindre Moen', 'Tim Kurvers'] + gem.email = ['johannes@hyper.no'] gem.description = %q{Sending and receiving SMSs through pluggable backends} gem.summary = %q{Sending and receiving SMSs through pluggable backends} gem.homepage = '' 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 'savon' + + gem.add_development_dependency 'pry' end