Skip to content

Commit 63da261

Browse files
authored
Merge pull request #474 from platanus/ruby-3.2-support
Update Ruby to version 3.2
2 parents d2f1416 + 88eaef8 commit 63da261

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ executors:
1414
parameters:
1515
ruby-version:
1616
description: "Ruby version"
17-
default: "2.7"
17+
default: "3.2"
1818
type: string
1919
docker:
2020
- image: *ruby-image
@@ -136,7 +136,7 @@ workflows:
136136
- test:
137137
matrix:
138138
parameters:
139-
ruby-version: ["2.7", "3.0", "3.1"]
139+
ruby-version: ["2.7", "3.0", "3.1", "3.2"]
140140
- deploy:
141141
context: org-global
142142
filters:

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.7
1+
3.2

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ This project adheres to [Semantic Versioning](http://semver.org/).
44

55
### Unreleased
66

7-
-
7+
#### Added
8+
9+
* Add Ruby 3.2 support
810

911
### 2.0.0.beta-2
1012

spec/rails_helper.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
require 'shoulda-matchers'
1212
require 'database_cleaner'
1313
require 'rspec/retry'
14-
require 'pry'
1514

1615
ENGINE_RAILS_ROOT = File.join(File.dirname(__FILE__), '../')
1716
Dir[File.join(ENGINE_RAILS_ROOT, "spec/support/**/*.rb")].each { |f| require f }

0 commit comments

Comments
 (0)