Skip to content

Commit

Permalink
Bumped Ruby to 3.2.0 (#111)
Browse files Browse the repository at this point in the history
  • Loading branch information
schinery authored Jan 9, 2023
1 parent 0fc3b97 commit c48063b
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
ruby-version: "3.1.3"
ruby-version: "3.2.0"
- run: bundle exec rubocop
test:
strategy:
Expand Down
1 change: 1 addition & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ inherit_gem:
- rspec.yml

require:
- rubocop-rake
- rubocop-rspec

AllCops:
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.1.3
3.2.0
18 changes: 12 additions & 6 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ GEM
i18n (1.12.0)
concurrent-ruby (~> 1.0)
json (2.6.3)
mini_portile2 (2.8.0)
mini_portile2 (2.8.1)
minitest (5.17.0)
parallel (1.22.1)
parser (3.2.0.0)
Expand All @@ -50,10 +50,10 @@ GEM
rspec-mocks (~> 3.12.0)
rspec-core (3.12.0)
rspec-support (~> 3.12.0)
rspec-expectations (3.12.0)
rspec-expectations (3.12.2)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.12.0)
rspec-mocks (3.12.0)
rspec-mocks (3.12.2)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.12.0)
rspec-support (3.12.0)
Expand Down Expand Up @@ -92,12 +92,18 @@ GEM
timecop (0.9.6)
tzinfo (2.0.5)
concurrent-ruby (~> 1.0)
unicode-display_width (2.4.1)
unicode-display_width (2.4.2)
with_model (2.1.6)
activerecord (>= 5.2)

PLATFORMS
ruby
arm64-darwin-20
arm64-darwin-21
arm64-darwin-22
x86_64-darwin-19
x86_64-darwin-20
x86_64-darwin-21
x86_64-linux

DEPENDENCIES
activerecord (~> 7.0)
Expand All @@ -112,4 +118,4 @@ DEPENDENCIES
with_model (~> 2.1)

BUNDLED WITH
2.3.26
2.4.1
1 change: 1 addition & 0 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,5 @@ RSpec::Core::RakeTask.new(:spec) do |t|
t.pattern = Dir.glob("spec/**/*_spec.rb")
end

desc "Map rake test to rake spec"
task test: :spec

0 comments on commit c48063b

Please sign in to comment.