pricehubble.gemspec in pricehubble-0.2.0 vs pricehubble.gemspec in pricehubble-0.3.0
- old
+ new
@@ -12,20 +12,22 @@
spec.summary = 'Ruby client for the PriceHubble REST API'
spec.description = 'Ruby client for the PriceHubble REST API'
spec.homepage = 'https://github.com/hausgold/pricehubble'
+ spec.required_ruby_version = '~> 2.5'
+
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
- spec.add_runtime_dependency 'activemodel', '>= 4.2.0'
- spec.add_runtime_dependency 'activesupport', '>= 4.2.0'
- spec.add_runtime_dependency 'faraday', '~> 0.15'
- spec.add_runtime_dependency 'faraday_middleware', '~> 0.12'
+ spec.add_runtime_dependency 'activemodel', '>= 5.2.0'
+ spec.add_runtime_dependency 'activesupport', '>= 5.2.0'
+ spec.add_runtime_dependency 'faraday', '~> 1.0'
+ spec.add_runtime_dependency 'faraday_middleware', '~> 1.0'
spec.add_runtime_dependency 'recursive-open-struct', '~> 1.1'
spec.add_development_dependency 'appraisal'
spec.add_development_dependency 'bundler', '>= 1.16', '< 3'
spec.add_development_dependency 'factory_bot', '~> 4.11'