Skip to content

Commit

Permalink
Bump Ruby versions (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
abrom committed Apr 28, 2024
1 parent fe00461 commit 521e8df
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 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: ['2.6', '2.7', '3.0', '3.1']
ruby-version: ['3.0', '3.1', '3.2', '3.3']

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ require:

AllCops:
NewCops: enable
TargetRubyVersion: 2.5
TargetRubyVersion: 3.0

Layout/LineLength:
Max: 120
Expand Down
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 = ['>= 2.5.0', '< 3.2.0']
spec.required_ruby_version = ['>= 3.0.0', '< 3.4.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
describe Fountain do # rubocop:disable RSpec/FilePath, 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 521e8df

Please sign in to comment.