stripe.gemspec in stripe-3.3.2 vs stripe.gemspec in stripe-3.4.1

- old
+ new

@@ -1,22 +1,22 @@ -$:.unshift(File.join(File.dirname(__FILE__), 'lib')) +$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), "lib")) -require 'stripe/version' +require "stripe/version" -spec = Gem::Specification.new do |s| - s.name = 'stripe' +Gem::Specification.new do |s| + s.name = "stripe" s.version = Stripe::VERSION - s.required_ruby_version = '>= 2.0.0' - s.summary = 'Ruby bindings for the Stripe API' - s.description = 'Stripe is the easiest way to accept payments online. See https://stripe.com for details.' - s.author = 'Stripe' - s.email = 'support@stripe.com' - s.homepage = 'https://stripe.com/docs/api/ruby' - s.license = 'MIT' + s.required_ruby_version = ">= 2.0.0" + s.summary = "Ruby bindings for the Stripe API" + s.description = "Stripe is the easiest way to accept payments online. See https://stripe.com for details." + s.author = "Stripe" + s.email = "support@stripe.com" + s.homepage = "https://stripe.com/docs/api/ruby" + s.license = "MIT" - s.add_dependency('faraday', '~> 0.9') + s.add_dependency("faraday", "~> 0.10") s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- test/*`.split("\n") - s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } - s.require_paths = ['lib'] + s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) } + s.require_paths = ["lib"] end