Skip to content

Commit

Permalink
fix min version
Browse files Browse the repository at this point in the history
  • Loading branch information
mathieujobin committed Oct 30, 2023
1 parent a771f39 commit f002acc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ph_model.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,18 @@ Gem::Specification.new do |gem|
gem.executables = gem.files.grep(%r{^bin/}).map { |f| File.basename(f) }
gem.require_paths = ['lib']

gem.add_runtime_dependency 'activesupport', '> 3.2'
gem.add_runtime_dependency 'activemodel', '> 3.2'
gem.add_runtime_dependency 'activesupport', '> 5.0'
gem.add_runtime_dependency 'activemodel', '> 5.0'

gem.add_development_dependency 'faraday'
gem.add_development_dependency 'bundler', '~> 2.3'
gem.add_development_dependency 'bundler', '> 2.2'
gem.add_development_dependency 'rake', '> 10.0'
gem.add_development_dependency 'rspec', '~> 3.0'
gem.add_development_dependency 'rubygems-tasks', '~> 0.2'
gem.add_development_dependency 'pry', '> 0'
gem.add_development_dependency 'github_changelog_generator', '~> 1.6'

# static analysis gems
gem.add_development_dependency 'rubocop', '~> 0.36.0'
gem.add_development_dependency 'rubocop', '~> 1.0'
gem.add_development_dependency 'reek', '~> 3.10'
end

0 comments on commit f002acc

Please sign in to comment.