Skip to content

Commit

Permalink
Drop support for Ruby < 2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
ekohl committed Aug 8, 2022
1 parent a1e8389 commit e6df16d
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,6 @@ jobs:
fail-fast: false
matrix:
ruby:
- "2.2"
- "2.3"
- "2.4"
- "2.5"
- "2.6"
- "2.7"
Expand Down
1 change: 1 addition & 0 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ Jeweler::Tasks.new do |gem|
"Dmitri Dolguikh",
]
gem.files.exclude '.github/workflows/ci.yml'
gem.required_ruby_version = '>= 2.5', '< 4'
# dependencies defined in Gemfile
end
Jeweler::RubygemsDotOrgTasks.new
Expand Down
1 change: 1 addition & 0 deletions safemode.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ Gem::Specification.new do |s|
]
s.homepage = "https://github.com/svenfuchs/safemode".freeze
s.licenses = ["MIT".freeze]
s.required_ruby_version = Gem::Requirement.new([">= 2.5".freeze, "< 4".freeze])
s.rubygems_version = "2.7.6".freeze
s.summary = "A library for safe evaluation of Ruby code based on ParseTree/RubyParser and Ruby2Ruby".freeze

Expand Down

0 comments on commit e6df16d

Please sign in to comment.