Skip to content

Commit

Permalink
Fix version bounds
Browse files Browse the repository at this point in the history
  • Loading branch information
fdebijl committed Mar 11, 2024
1 parent 5538033 commit 8488e07
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions rich-text.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ Gem::Specification.new do |spec|

spec.required_ruby_version = '>= 3.3.0'

spec.add_dependency 'activesupport', '>= 7.1.3'
spec.add_dependency 'diff-lcs', '>= 1.5.1'
spec.add_dependency 'nokogiri', '>= 1.16.2'
spec.add_dependency 'activesupport', '~> 7.1'
spec.add_dependency 'diff-lcs', '~> 1.5'
spec.add_dependency 'nokogiri', '~> 1.16'

spec.add_development_dependency 'bundler'
spec.add_development_dependency 'minitest'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'yard'
spec.add_development_dependency 'bundler', '~> 2.5'
spec.add_development_dependency 'minitest', '~> 5.22'
spec.add_development_dependency 'rake', '~> 13.1'
spec.add_development_dependency 'yard', '~> 0.9'
end

0 comments on commit 8488e07

Please sign in to comment.