Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading