twilio.gemspec in twilio-2.9.0 vs twilio.gemspec in twilio-3.0.0

- old
+ new

@@ -1,118 +1,30 @@ -# Generated by jeweler -# DO NOT EDIT THIS FILE DIRECTLY -# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command # -*- encoding: utf-8 -*- +$:.push File.expand_path("../lib", __FILE__) +require "twilio/version" Gem::Specification.new do |s| - s.name = %q{twilio} - s.version = "2.9.0" - - s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= - s.authors = ["Phil Misiowiec", "Jonathan Rudenberg", "Alex K Wolfe", "Kyle Daigle", "Jeff Wigal", "Yuri Gadow"] - s.date = %q{2010-10-27} + s.name = "twilio" + s.version = Twilio::VERSION + s.platform = Gem::Platform::RUBY + s.authors = ["Phil Misiowiec", "Jonathan Rudenberg", "Alex K Wolfe", "Kyle Daigle", "Jeff Wigal", "Yuri Gadow"] + s.email = ["github@webficient.com"] + s.homepage = "" + s.summary = %q{Twilio API Client} s.description = %q{Twilio API wrapper} - s.email = %q{github@webficient.com} - s.extra_rdoc_files = [ - "LICENSE", - "README.rdoc" - ] - s.files = [ - ".gitignore", - "LICENSE", - "README.rdoc", - "Rakefile", - "VERSION.yml", - "lib/twilio.rb", - "lib/twilio/account.rb", - "lib/twilio/call.rb", - "lib/twilio/conference.rb", - "lib/twilio/connection.rb", - "lib/twilio/incoming_phone_number.rb", - "lib/twilio/local_phone_number.rb", - "lib/twilio/notification.rb", - "lib/twilio/outgoing_caller_id.rb", - "lib/twilio/recording.rb", - "lib/twilio/sms.rb", - "lib/twilio/toll_free_phone_number.rb", - "lib/twilio/twilio_object.rb", - "lib/twilio/verb.rb", - "test/fixtures/xml/account.xml", - "test/fixtures/xml/account_renamed.xml", - "test/fixtures/xml/call.xml", - "test/fixtures/xml/call_new.xml", - "test/fixtures/xml/call_redirected.xml", - "test/fixtures/xml/calls.xml", - "test/fixtures/xml/conference.xml", - "test/fixtures/xml/conference_participant.xml", - "test/fixtures/xml/conference_participant_muted.xml", - "test/fixtures/xml/conference_participants.xml", - "test/fixtures/xml/conferences.xml", - "test/fixtures/xml/incoming_phone_number.xml", - "test/fixtures/xml/incoming_phone_numbers.xml", - "test/fixtures/xml/notification.xml", - "test/fixtures/xml/notifications.xml", - "test/fixtures/xml/outgoing_caller_id.xml", - "test/fixtures/xml/outgoing_caller_id_new.xml", - "test/fixtures/xml/outgoing_caller_ids.xml", - "test/fixtures/xml/recording.xml", - "test/fixtures/xml/recordings.xml", - "test/fixtures/xml/sms.xml", - "test/fixtures/xml/sms_messages.xml", - "test/fixtures/xml/sms_new.xml", - "test/fixtures/xml/sms_new_with_callback.xml", - "test/fixtures/xml/transcription.xml", - "test/fixtures/xml/transcriptions.xml", - "test/fixtures/yml/verb_responses.yml", - "test/test_helper.rb", - "test/twilio/account_test.rb", - "test/twilio/call_test.rb", - "test/twilio/conference_test.rb", - "test/twilio/connection_test.rb", - "test/twilio/incoming_phone_number_test.rb", - "test/twilio/local_phone_number_test.rb", - "test/twilio/notification_test.rb", - "test/twilio/outgoing_caller_id_test.rb", - "test/twilio/recording_test.rb", - "test/twilio/sms_test.rb", - "test/twilio/toll_free_phone_number_test.rb", - "test/twilio/verb_test.rb", - "twilio.gemspec" - ] - s.homepage = %q{http://github.com/webficient/twilio} - s.rdoc_options = ["--charset=UTF-8"] - s.require_paths = ["lib"] - s.rubygems_version = %q{1.3.7} - s.summary = %q{Twilio API Client} - s.test_files = [ - "test/test_helper.rb", - "test/twilio/account_test.rb", - "test/twilio/call_test.rb", - "test/twilio/conference_test.rb", - "test/twilio/connection_test.rb", - "test/twilio/incoming_phone_number_test.rb", - "test/twilio/local_phone_number_test.rb", - "test/twilio/notification_test.rb", - "test/twilio/outgoing_caller_id_test.rb", - "test/twilio/recording_test.rb", - "test/twilio/sms_test.rb", - "test/twilio/toll_free_phone_number_test.rb", - "test/twilio/verb_test.rb" - ] - if s.respond_to? :specification_version then - current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION - s.specification_version = 3 + s.rubyforge_project = "twilio" - if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then - s.add_runtime_dependency(%q<builder>, [">= 2.1.2"]) - s.add_runtime_dependency(%q<httparty>, [">= 0.4.3"]) - else - s.add_dependency(%q<builder>, [">= 2.1.2"]) - s.add_dependency(%q<httparty>, [">= 0.4.3"]) - end - else - s.add_dependency(%q<builder>, [">= 2.1.2"]) - s.add_dependency(%q<httparty>, [">= 0.4.3"]) - end + 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_dependency "builder", "~> 3.0" + s.add_dependency "httparty", "~> 0.7.4" + + { + 'rake' => '~> 0.8.7', + 'rspec' => '~> 2.5.0', + 'webmock' => '~> 1.6.2' + }.each { |l, v| s. add_development_dependency l, v } end -