easy-jsonapi 1.0.7 → 1.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/codecov.yml +7 -10
- data/.github/workflows/publish.yml +3 -3
- data/.rspec_status +497 -492
- data/.rubocop.yml +1 -1
- data/.ruby-version +1 -1
- data/.travis.yml +1 -1
- data/CHANGELOG.md +21 -7
- data/Gemfile.lock +21 -20
- data/README.md +12 -10
- data/easy-jsonapi.gemspec +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c90283db82a94130cda1e7ad2fa246b8378d0979ee518a7ab40d983bd70ae7ea
|
|
4
|
+
data.tar.gz: b92a320158f7f4219e3111dad359831981f7986588f2b25554ace0629a2134a2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: de2b430fe4919324a22db93273a8ed8ed205e56a8273ed70573c6f01fb0a4668408665f658c5eabfc7e3970f9d80898537d12bfb83d69c2c1591a92ac5a2efea
|
|
7
|
+
data.tar.gz: 8706463dc4c476ecc9b4df694c421370e84ca4b5e19e405c9cc4bb8369b8876e91259b611ad8b0a082ccd63ac74293709af4757153e26d9d2930fbb2e2baa3a4
|
|
@@ -7,23 +7,20 @@ on:
|
|
|
7
7
|
jobs:
|
|
8
8
|
test:
|
|
9
9
|
name: Test
|
|
10
|
-
runs-on: ubuntu-latest
|
|
11
10
|
strategy:
|
|
12
11
|
matrix:
|
|
13
|
-
|
|
12
|
+
os: [ubuntu-latest, macos-latest]
|
|
13
|
+
ruby: ['2.5', '2.6', '2.7', '3.0']
|
|
14
|
+
runs-on: ${{ matrix.os }}
|
|
14
15
|
|
|
15
16
|
steps:
|
|
16
17
|
- uses: actions/checkout@master
|
|
17
|
-
|
|
18
|
-
- name: Set up Ruby
|
|
19
|
-
uses: actions/setup-ruby@v1
|
|
18
|
+
- uses: ruby/setup-ruby@v1
|
|
20
19
|
with:
|
|
21
|
-
ruby-version: ${{ matrix.ruby
|
|
22
|
-
|
|
23
|
-
- name: Run test cases
|
|
24
|
-
run: |
|
|
20
|
+
ruby-version: ${{ matrix.ruby }}
|
|
21
|
+
- run: |
|
|
25
22
|
gem install bundler
|
|
26
|
-
|
|
23
|
+
bundle install
|
|
27
24
|
bundle exec rspec
|
|
28
25
|
bash <(curl -s https://codecov.io/bash)
|
|
29
26
|
env:
|
|
@@ -16,7 +16,7 @@ jobs:
|
|
|
16
16
|
- name: Set up Ruby
|
|
17
17
|
uses: ruby/setup-ruby@v1
|
|
18
18
|
with:
|
|
19
|
-
ruby-version: 3.0.
|
|
19
|
+
ruby-version: 3.0.1
|
|
20
20
|
|
|
21
21
|
- name: Build gem
|
|
22
22
|
run: |
|
|
@@ -51,7 +51,7 @@ jobs:
|
|
|
51
51
|
env:
|
|
52
52
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
|
|
53
53
|
with:
|
|
54
|
-
tag_name: 1.0.
|
|
55
|
-
release_name: Release 1.0.
|
|
54
|
+
tag_name: 1.0.11 # update this to release
|
|
55
|
+
release_name: Release 1.0.11 # update this to release
|
|
56
56
|
draft: false
|
|
57
57
|
prerelease: false
|