phaxio.gemspec in phaxio-0.5.0 vs phaxio.gemspec in phaxio-2.0.0

- old
+ new

@@ -1,25 +1,22 @@ # -*- encoding: utf-8 -*- require File.expand_path('../lib/phaxio/version', __FILE__) Gem::Specification.new do |gem| - gem.authors = ["Josh Nankin"] - gem.email = ["support@phaxio.com"] - gem.description = %q{Ruby wrapper for the Phaxio API} - gem.summary = %q{Ruby wrapper for the Phaxio API} - gem.homepage = "http://github.com/phaxio/phaxio-ruby" + gem.authors = ["Julien Negrotto"] + gem.email = ["julien@phaxio.com"] + gem.description = %q{Official ruby gem for interacting with Phaxio's API.} + gem.summary = %q{Official ruby gem for interacting with Phaxio's API.} + gem.homepage = "https://github.com/phaxio/phaxio-ruby" 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 = "phaxio" gem.require_paths = ["lib"] gem.version = Phaxio::VERSION - gem.add_runtime_dependency "httmultiparty" - - gem.add_development_dependency 'bundler' - gem.add_development_dependency 'fakeweb', '~> 1.3' - gem.add_development_dependency 'rake', '~> 10' - gem.add_development_dependency 'minitest', '~> 5' - gem.add_development_dependency 'mocha', '~> 1.1' + gem.required_ruby_version = '>= 2.0' + gem.add_dependency 'faraday', '~> 0.10' + gem.add_dependency 'mime-types', '~> 3.0' + gem.add_dependency 'activesupport' end