Skip to content

Commit f3af9a8

Browse files
Add Ruby 3.0, 3.1, and ruby-head to CI (#33)
* Add Ruby 3.0, 3.1, and ruby-head to CI * Adds Ruby 3.2 to the CI matrix * Fix lints
1 parent 177e1d8 commit f3af9a8

File tree

6 files changed

+17
-13
lines changed

6 files changed

+17
-13
lines changed

.github/workflows/ci.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,18 @@ on: [push, pull_request]
44

55
jobs:
66
ruby_rails_test_matrix:
7-
runs-on: ubuntu-18.04
7+
runs-on: ubuntu-latest
88

99
strategy:
1010
matrix:
11-
ruby: [2.4, 2.7]
11+
ruby: [2.4, 2.7, '3.0', 3.1, 3.2, ruby-head]
1212

1313
steps:
14-
- uses: actions/checkout@master
14+
- uses: actions/checkout@v3
1515

1616
- uses: ruby/setup-ruby@v1
1717
with:
1818
ruby-version: ${{ matrix.ruby }}
19-
19+
bundler-cache: true # 'bundle install' and cache
2020
- name: Runs code QA and tests
21-
run: bundle && rake
21+
run: bundle exec rake

jsonapi-rspec.gemspec

+4
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,8 @@ Gem::Specification.new do |spec|
2020
spec.add_development_dependency 'rspec'
2121
spec.add_development_dependency 'rubocop-performance'
2222
spec.add_development_dependency 'simplecov'
23+
24+
spec.metadata = {
25+
'rubygems_mfa_required' => 'true'
26+
}
2327
end

spec/jsonapi/jsonapi_object_spec.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313

1414
context 'when providing a value' do
1515
context 'with jsonapi indifferent hash enabled' do
16-
before(:all) { ::RSpec.configuration.jsonapi_indifferent_hash = true }
17-
after(:all) { ::RSpec.configuration.jsonapi_indifferent_hash = false }
16+
before(:all) { RSpec.configuration.jsonapi_indifferent_hash = true }
17+
after(:all) { RSpec.configuration.jsonapi_indifferent_hash = false }
1818

1919
it do
2020
expect('jsonapi' => { 'version' => '1.0' })

spec/jsonapi/meta_spec.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222

2323
context 'when providing a value' do
2424
context 'with jsonapi indifferent hash enabled' do
25-
before(:all) { ::RSpec.configuration.jsonapi_indifferent_hash = true }
26-
after(:all) { ::RSpec.configuration.jsonapi_indifferent_hash = false }
25+
before(:all) { RSpec.configuration.jsonapi_indifferent_hash = true }
26+
after(:all) { RSpec.configuration.jsonapi_indifferent_hash = false }
2727

2828
it do
2929
expect(doc).to have_meta(one: 'I')

spec/jsonapi/relationships_spec.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@
4242
end
4343

4444
context 'with jsonapi indifferent hash enabled' do
45-
before(:all) { ::RSpec.configuration.jsonapi_indifferent_hash = true }
46-
after(:all) { ::RSpec.configuration.jsonapi_indifferent_hash = false }
45+
before(:all) { RSpec.configuration.jsonapi_indifferent_hash = true }
46+
after(:all) { RSpec.configuration.jsonapi_indifferent_hash = false }
4747

4848
it { expect(doc).to have_relationships(:user, :comments) }
4949

spec/jsonapi/rspec_spec.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
end
2020

2121
context 'with jsonapi indifferent hash enabled' do
22-
before(:all) { ::RSpec.configuration.jsonapi_indifferent_hash = true }
23-
after(:all) { ::RSpec.configuration.jsonapi_indifferent_hash = false }
22+
before(:all) { RSpec.configuration.jsonapi_indifferent_hash = true }
23+
after(:all) { RSpec.configuration.jsonapi_indifferent_hash = false }
2424

2525
it do
2626
expect(JSONAPI::RSpec.as_indifferent_hash(doc)).to eq(

0 commit comments

Comments
 (0)