Skip to content

Commit

Permalink
Merge pull request #48 from mattyr/ruby_3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
miyataka authored Dec 31, 2024
2 parents 4158443 + 6bd7a52 commit c976ad6
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: [ 2.6, 2.7, "3.0", 3.1, 3.2, 3.3 ]
ruby: [ 2.6, 2.7, "3.0", 3.1, 3.2, 3.3, 3.4 ]
steps:
- uses: actions/checkout@v3

Expand Down
5 changes: 5 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,10 @@ source 'https://rubygems.org'
# Specify your gem's dependencies in fcmpush.gemspec
gemspec

if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('3.4')
gem 'bigdecimal'
gem 'drb'
end

gem 'activesupport', '< 7.0'
gem 'pry-byebug'
2 changes: 1 addition & 1 deletion fcmpush.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']

spec.required_ruby_version = '>= 2.6', '< 3.4'
spec.required_ruby_version = '>= 2.6', '< 3.5'

spec.add_dependency 'google-apis-identitytoolkit_v3'
spec.add_dependency 'net-http-persistent', '~> 4.0.1'
Expand Down

0 comments on commit c976ad6

Please sign in to comment.