grape-jwt-authentication 2.4.0 → 2.4.1
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/release.yml +6 -0
- data/.github/workflows/test.yml +0 -18
- data/CHANGELOG.md +4 -0
- data/lib/grape/jwt/authentication/version.rb +1 -1
- metadata +2 -3
- data/.github/workflows/documentation.yml +0 -40
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3fb23c7d56aa99b1f75f3f9e8441d32ac7560304200917ec3b89c811b1162ab3
|
|
4
|
+
data.tar.gz: 3207485fcc97cf5eae8ba969da3b4d9fbfad9973137ceab17f021c56de3bff70
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2630ed55af44143b9f7598056965eb183efc4239ca9fa21d156e3397e8da0439a0d8ceaa3aa980303eeb25c957eaf3ee7c480f5f9c392764f8b4010c814d97aa
|
|
7
|
+
data.tar.gz: 8cb90cb38dddd2c76e37f8e037f4bdf60e5a3cf87954b40e7cc528d04b73007121ce4331363d2b74c498dccfd755d0b4ab2d6bb29bb5d2811adf1c0017fb16e3
|
|
@@ -46,3 +46,9 @@ jobs:
|
|
|
46
46
|
|
|
47
47
|
- name: Push the release Git commit/tag and package to the registry
|
|
48
48
|
run: make release
|
|
49
|
+
|
|
50
|
+
- name: Build and upload application documentation
|
|
51
|
+
run: api-docs && coverage --docs-only
|
|
52
|
+
env:
|
|
53
|
+
WORKFLOW_DISPATCH_TOKEN: '${{ secrets.WORKFLOW_DISPATCH_TOKEN }}'
|
|
54
|
+
GITHUB_TAG: 'v${{ github.event.inputs.VERSION }}'
|
data/.github/workflows/test.yml
CHANGED
|
@@ -45,21 +45,3 @@ jobs:
|
|
|
45
45
|
|
|
46
46
|
- name: Upload the code coverage report
|
|
47
47
|
run: coverage
|
|
48
|
-
|
|
49
|
-
trigger-docs:
|
|
50
|
-
name: Trigger the documentation upload
|
|
51
|
-
runs-on: ubuntu-22.04
|
|
52
|
-
timeout-minutes: 2
|
|
53
|
-
needs: test
|
|
54
|
-
if: github.ref == 'refs/heads/master'
|
|
55
|
-
steps:
|
|
56
|
-
- name: Prepare the virtual environment
|
|
57
|
-
uses: hausgold/actions/ci@master
|
|
58
|
-
with:
|
|
59
|
-
clone_token: '${{ secrets.CLONE_TOKEN }}'
|
|
60
|
-
settings_secret_key: '${{ secrets.SETTINGS_SECRET_KEY }}'
|
|
61
|
-
settings: '${{ github.repository }}'
|
|
62
|
-
target: ci/noop
|
|
63
|
-
|
|
64
|
-
- name: Trigger the documentation upload
|
|
65
|
-
run: workflow documentation
|
data/CHANGELOG.md
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: grape-jwt-authentication
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.4.
|
|
4
|
+
version: 2.4.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Hermann Mayer
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-
|
|
11
|
+
date: 2024-08-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
@@ -108,7 +108,6 @@ extensions: []
|
|
|
108
108
|
extra_rdoc_files: []
|
|
109
109
|
files:
|
|
110
110
|
- ".editorconfig"
|
|
111
|
-
- ".github/workflows/documentation.yml"
|
|
112
111
|
- ".github/workflows/release.yml"
|
|
113
112
|
- ".github/workflows/test.yml"
|
|
114
113
|
- ".gitignore"
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
name: Build Documentation
|
|
2
|
-
on:
|
|
3
|
-
repository_dispatch:
|
|
4
|
-
types: [documentation]
|
|
5
|
-
|
|
6
|
-
concurrency:
|
|
7
|
-
group: 'docs'
|
|
8
|
-
|
|
9
|
-
jobs:
|
|
10
|
-
docs:
|
|
11
|
-
name: Build gem documentation
|
|
12
|
-
runs-on: ubuntu-22.04
|
|
13
|
-
timeout-minutes: 5
|
|
14
|
-
steps:
|
|
15
|
-
- uses: actions/checkout@v4
|
|
16
|
-
|
|
17
|
-
- name: Install the correct Ruby version
|
|
18
|
-
uses: ruby/setup-ruby@v1
|
|
19
|
-
with:
|
|
20
|
-
ruby-version: 2.7
|
|
21
|
-
bundler-cache: true
|
|
22
|
-
rubygems: '3.4.22'
|
|
23
|
-
|
|
24
|
-
- name: Prepare the virtual environment
|
|
25
|
-
uses: hausgold/actions/ci@master
|
|
26
|
-
with:
|
|
27
|
-
clone_token: '${{ secrets.CLONE_TOKEN }}'
|
|
28
|
-
settings_secret_key: '${{ secrets.SETTINGS_SECRET_KEY }}'
|
|
29
|
-
settings: '${{ github.repository }}'
|
|
30
|
-
target: ci/gem-test
|
|
31
|
-
|
|
32
|
-
- name: Build gem documentation
|
|
33
|
-
run: make docs
|
|
34
|
-
|
|
35
|
-
- name: Upload the code coverage report
|
|
36
|
-
run: coverage
|
|
37
|
-
|
|
38
|
-
- name: Add this job to the commit status
|
|
39
|
-
run: commit-status '${{ job.status }}'
|
|
40
|
-
if: always()
|