Skip to content

Commit

Permalink
Merge pull request #56 from Invoca/TECH-17267_support_ruby_3_4
Browse files Browse the repository at this point in the history
Add Support for Ruby 3.4
  • Loading branch information
ttstarck authored Jan 29, 2025
2 parents e30b4bd + 7a61ab2 commit ef9122c
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.7.5
3.1.6
7 changes: 7 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,10 @@ gem 'rspec', '~> 3.7'
gem 'rspec_junit_formatter', '~> 0.4'
gem 'rspec-mocks'
gem 'rubocop', '0.54.0'


gem "concurrent-ruby", "~> 1.0", "< 1.3.5"

gem "base64", ">= 0.2.0"
gem "bigdecimal", ">= 3.1"
gem "mutex_m", ">= 0.3.0"
13 changes: 10 additions & 3 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,21 @@ GEM
minitest (>= 5.1)
tzinfo (~> 2.0)
zeitwerk (~> 2.3)
appraisal (2.4.0)
appraisal (2.5.0)
bundler
rake
thor (>= 0.14.0)
ast (2.4.2)
base64 (0.2.0)
bigdecimal (3.1.9)
coderay (1.1.3)
concurrent-ruby (1.1.10)
diff-lcs (1.4.4)
i18n (1.10.0)
concurrent-ruby (~> 1.0)
method_source (1.0.0)
minitest (5.15.0)
mutex_m (0.3.0)
parallel (1.20.1)
parser (3.0.2.0)
ast (~> 2.4.1)
Expand All @@ -33,7 +36,7 @@ GEM
coderay (~> 1.1)
method_source (~> 1.0)
rainbow (3.0.0)
rake (13.0.6)
rake (13.2.1)
rspec (3.10.0)
rspec-core (~> 3.10.0)
rspec-expectations (~> 3.10.0)
Expand All @@ -57,7 +60,7 @@ GEM
ruby-progressbar (~> 1.7)
unicode-display_width (~> 1.0, >= 1.0.1)
ruby-progressbar (1.11.0)
thor (1.1.0)
thor (1.3.2)
tzinfo (2.0.4)
concurrent-ruby (~> 1.0)
unicode-display_width (1.7.0)
Expand All @@ -68,7 +71,11 @@ PLATFORMS

DEPENDENCIES
appraisal
base64 (>= 0.2.0)
bigdecimal (>= 3.1)
concurrent-ruby (~> 1.0, < 1.3.5)
monotonic_tick_count!
mutex_m (>= 0.3.0)
pry
rake
rspec (~> 3.7)
Expand Down
4 changes: 4 additions & 0 deletions gemfiles/rails_5.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ gem "rspec", "~> 3.7"
gem "rspec_junit_formatter", "~> 0.4"
gem "rspec-mocks"
gem "rubocop", "0.54.0"
gem "concurrent-ruby", "~> 1.0", "< 1.3.5"
gem "base64", ">= 0.2.0"
gem "bigdecimal", ">= 3.1"
gem "mutex_m", ">= 0.3.0"
gem "activesupport", "~> 5.2"

gemspec path: "../"
4 changes: 4 additions & 0 deletions gemfiles/rails_6.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ gem "rspec", "~> 3.7"
gem "rspec_junit_formatter", "~> 0.4"
gem "rspec-mocks"
gem "rubocop", "0.54.0"
gem "concurrent-ruby", "~> 1.0", "< 1.3.5"
gem "base64", ">= 0.2.0"
gem "bigdecimal", ">= 3.1"
gem "mutex_m", ">= 0.3.0"
gem "activesupport", "~> 6.0"

gemspec path: "../"
4 changes: 4 additions & 0 deletions gemfiles/rails_7.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ gem "rspec", "~> 3.7"
gem "rspec_junit_formatter", "~> 0.4"
gem "rspec-mocks"
gem "rubocop", "0.54.0"
gem "concurrent-ruby", "~> 1.0", "< 1.3.5"
gem "base64", ">= 0.2.0"
gem "bigdecimal", ">= 3.1"
gem "mutex_m", ">= 0.3.0"
gem "activesupport", "~> 7.0"

gemspec path: "../"

0 comments on commit ef9122c

Please sign in to comment.