Skip to content

Commit

Permalink
Drop support for Ruby < 2.4
Browse files Browse the repository at this point in the history
With Ruby 2.4 being EOL, we should drop support for old versions to
reduce Rouge gem maintenance effort.
  • Loading branch information
Tan Le authored and tancnle committed Jan 26, 2022
1 parent cb51ad7 commit 272eb0c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
AllCops:
TargetRubyVersion: 2.0
TargetRubyVersion: 2.5
DisplayCopNames: true
Exclude:
- "tasks/**/*"
Expand Down
2 changes: 1 addition & 1 deletion rouge.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Gem::Specification.new do |s|
s.files = Dir['Gemfile', 'LICENSE', 'rouge.gemspec', 'lib/**/*.rb', 'lib/**/*.yml', 'bin/rougify', 'lib/rouge/demos/*']
s.executables = %w(rougify)
s.licenses = ['MIT', 'BSD-2-Clause']
s.required_ruby_version = '>= 2.0'
s.required_ruby_version = '>= 2.5'
s.metadata = {
"bug_tracker_uri" => "https://github.com/rouge-ruby/rouge/issues",
"changelog_uri" => "https://github.com/rouge-ruby/rouge/blob/master/CHANGELOG.md",
Expand Down

0 comments on commit 272eb0c

Please sign in to comment.