Skip to content

Commit

Permalink
Add support for ruby 3.4 (#13)
Browse files Browse the repository at this point in the history
* Add support for ruby 3.4
* Update rubocop dependency and action new lints
* Update webmock dependency
  • Loading branch information
abrom authored Jan 13, 2025
1 parent 4c84aa3 commit 66a5e39
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['3.0', '3.1', '3.2', '3.3']
ruby-version: ['3.0', '3.1', '3.2', '3.3', '3.4']

steps:
- uses: actions/checkout@v2
Expand Down
6 changes: 3 additions & 3 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ gemspec

gem 'rake', '~> 12.3', '>= 12.3.3'
gem 'rspec', '~> 3.0'
gem 'rubocop', '~> 1.21'
gem 'rubocop', '~> 1.70'
gem 'rubocop-rake', '~> 0.6'
gem 'rubocop-rspec', '~> 2.5'
gem 'rubocop-rspec', '~> 3.3'
gem 'simplecov', '~> 0.16', '< 0.18'
gem 'webmock', '~> 2.3'
gem 'webmock', '~> 3.24'
2 changes: 1 addition & 1 deletion fountain.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Gem::Specification.new do |spec|
spec.description = 'Fountain REST API v2 wrapper for Ruby'
spec.homepage = 'https://github.com/Studiosity/fountain-ruby'
spec.license = 'MIT'
spec.required_ruby_version = ['>= 3.0.0', '< 3.4.0']
spec.required_ruby_version = ['>= 3.0.0', '< 3.5.0']

spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(spec|docs)/}) }
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
Expand Down
2 changes: 1 addition & 1 deletion spec/fountain/configuration_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

require 'spec_helper'

describe Fountain do # rubocop:disable RSpec/FilePath, RSpec/SpecFilePathFormat
describe Fountain do # rubocop:disable RSpec/SpecFilePathFormat
it 'sets default value for host_path option' do
expect(described_class.host_path).to eq 'https://api.fountain.com'
end
Expand Down

0 comments on commit 66a5e39

Please sign in to comment.