Skip to content

Commit

Permalink
Set required Ruby to >= 2.2 in gemspec task (#464)
Browse files Browse the repository at this point in the history
Addressable 2.8.0 (892861d (part of #416)) dropped support for Ruby 2.0, 2.1.

Follow-up to #463
  • Loading branch information
dentarg committed Jul 25, 2022
1 parent a866207 commit 13f95ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/gem.rake
Expand Up @@ -19,7 +19,7 @@ namespace :gem do
exit(1)
end

s.required_ruby_version = ">= 2.0"
s.required_ruby_version = ">= 2.2"

s.add_runtime_dependency "public_suffix", ">= 2.0.2", "< 5.0"
s.add_development_dependency "bundler", ">= 1.0", "< 3.0"
Expand Down

0 comments on commit 13f95ee

Please sign in to comment.