Skip to content

Commit

Permalink
Merge pull request #1659 from presidentbeef/bump_ruby_version
Browse files Browse the repository at this point in the history
Update required Ruby version to 2.5
  • Loading branch information
presidentbeef committed Dec 16, 2021
2 parents 440ff75 + a492c8c commit ae2c2b9
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 12 deletions.
13 changes: 4 additions & 9 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
command: bundle exec rake
- store_test_results:
path: test-results
test-2-4:
test-2-5:
<<: *default
docker:
- image: cimg/ruby:2.4
- image: cimg/ruby:2.5
steps:
- checkout
- attach_workspace:
Expand All @@ -36,18 +36,14 @@ jobs:
paths:
- codeclimate.json
- cc-test-reporter
test-2-5:
<<: *default
docker:
- image: cimg/ruby:2.5
test-2-6:
<<: *default
docker:
- image: cimg/ruby:2.6
test-3-0:
<<: *default
docker:
- image: circleci/ruby:3.0.0-rc1
- image: circleci/ruby:3.0
test-latest:
<<: *default
docker:
Expand All @@ -66,11 +62,10 @@ workflows:
tests:
jobs:
- default
- test-2-4
- test-2-5
- test-2-6
- test-3-0
- test-latest
- upload-coverage:
requires:
- test-2-4
- test-2-5
2 changes: 1 addition & 1 deletion brakeman-lib.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Gem::Specification.new do |s|
s.files = ["bin/brakeman", "CHANGES.md", "FEATURES", "README.md"] + Dir["lib/**/*"]
s.executables = ["brakeman"]
s.license = "Brakeman Public Use License"
s.required_ruby_version = '>= 2.4.0'
s.required_ruby_version = '>= 2.5.0'

s.metadata = {
"bug_tracker_uri" => "https://github.com/presidentbeef/brakeman/issues",
Expand Down
2 changes: 1 addition & 1 deletion brakeman-min.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Gem::Specification.new do |s|
s.files = ["bin/brakeman", "CHANGES.md", "FEATURES", "README.md"] + Dir["lib/**/*"]
s.executables = ["brakeman"]
s.license = "Brakeman Public Use License"
s.required_ruby_version = '>= 2.4.0'
s.required_ruby_version = '>= 2.5.0'

s.metadata = {
"bug_tracker_uri" => "https://github.com/presidentbeef/brakeman/issues",
Expand Down
2 changes: 1 addition & 1 deletion brakeman.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Gem::Specification.new do |s|
s.files = ["bin/brakeman", "CHANGES.md", "FEATURES", "README.md"] + Dir["lib/**/*"]
s.executables = ["brakeman"]
s.license = "Brakeman Public Use License"
s.required_ruby_version = '>= 2.4.0'
s.required_ruby_version = '>= 2.5.0'

s.metadata = {
"bug_tracker_uri" => "https://github.com/presidentbeef/brakeman/issues",
Expand Down

0 comments on commit ae2c2b9

Please sign in to comment.