fastly.gemspec in fastly-1.1.4 vs fastly.gemspec in fastly-1.1.5

- old
+ new

@@ -1,22 +1,22 @@ # -*- encoding: utf-8 -*- -$:.push File.expand_path("../lib", __FILE__) +$LOAD_PATH.push File.expand_path('../lib', __FILE__) require 'fastly/gem_version' Gem::Specification.new do |s| - s.name = "fastly" + s.name = 'fastly' s.version = Fastly::VERSION - s.authors = ["Fastly Inc"] - s.email = ["support@fastly.com"] - s.homepage = "http://github.com/fastly/fastly-ruby" - s.summary = %q{Client library for the Fastly acceleration system} - s.description = %q{Client library for the Fastly acceleration system} + s.authors = ['Fastly'] + s.email = ['simon@fastly.com', 'zeke@templ.in', 'tyler@fastly.com'] + s.homepage = 'http://github.com/fastly/fastly-ruby' + s.summary = %q(Client library for the Fastly acceleration system) + s.description = %q(Client library for the Fastly acceleration system) s.license = 'MIT' 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'] - s.add_dependency 'curb', '>=0.7.15' - s.add_dependency 'curb-fu', '>=0.6.1' + s.add_dependency 'curb', '~> 0.8.6' + s.add_dependency 'curb-fu', '~> 0.6.2' end