flagsmith.gemspec in flagsmith-3.2.0 vs flagsmith.gemspec in flagsmith-4.0.0
- old
+ new
@@ -1,15 +1,15 @@
# frozen_string_literal: true
require File.expand_path('lib/flagsmith/version', __dir__)
Gem::Specification.new do |spec|
- spec.required_ruby_version = '>= 2.4.0'
+ spec.required_ruby_version = '>= 3.0.0'
spec.name = 'flagsmith'
spec.version = Flagsmith::VERSION
- spec.authors = ['Tom Stuart', 'Brian Moelk']
- spec.email = ['tom@solidstategroup.com', 'bmoelk@gmail.com']
+ spec.authors = ['Tom Stuart', 'Brian Moelk', 'Zach Aysan']
+ spec.email = ['tom@solidstategroup.com', 'bmoelk@gmail.com', 'zachaysan@gmail.com']
# Specify which files should be added to the gem when it is released.
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
spec.files = Dir.chdir(__dir__) do
`git ls-files -z`.split("\x0").reject do |f|
(f == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
@@ -25,15 +25,15 @@
spec.require_paths = ['lib']
spec.add_development_dependency 'bundler'
spec.add_development_dependency 'gem-release'
spec.add_development_dependency 'pry'
+ spec.add_development_dependency 'pry-byebug'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'rspec'
spec.add_development_dependency 'rubocop'
- spec.add_dependency 'faraday'
- spec.add_dependency 'faraday_middleware'
+ spec.add_dependency 'faraday', '>= 2.0.1'
spec.add_dependency 'faraday-retry'
spec.add_dependency 'semantic'
spec.metadata['rubygems_mfa_required'] = 'true'
end