keyless 1.3.0 → 1.3.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 56b999585c5633e11628d671b332ba8b5d8a6faba8482f06d07d41d957d24237
4
- data.tar.gz: 02c69a270c599fe8ee4748e55614773ccbcf7c1cd8451733f3d99f5035be8563
3
+ metadata.gz: 7fab9063b21ad2a81b73d80d44f5e86c217c78077678fe197535dff41adba306
4
+ data.tar.gz: fdebb6321832abb384daaa43823566a765d041bd13126a09d731bc5a6172ae49
5
5
  SHA512:
6
- metadata.gz: 4dd5e3cf009e3d82ac6d3b1b094a959133438f0487e7ac1c5763f282108c86b5851a5fd6cc295b2d21feead3f844a6ee4d0f2560bb6b84820b9078ffc0d2544b
7
- data.tar.gz: 751376be3dce021548e5679773af2cb16ea35e3c5e7c5a9a477c40a687e7ee055dfe1ae7b342b4ab492ff047057f446237b20bb26a26b042fe2e9ef0d8342f35
6
+ metadata.gz: 921d663e4f23064f066defc6a317508ccd16a86ef88a255f1ec9b1511471ce4e227a1174eeb1c201b656cdd549b559175ce412252a0f09a71a97c83aa0486cfb
7
+ data.tar.gz: bfd13bdb500bbee37263ede776e74f0c22bd7a3cc8d9a9e57ef3da298a6f2591f220028f89aab1ea2dde13746d1eb04af100748ae796932f361208f544dab2af
@@ -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 }}'
@@ -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
@@ -2,6 +2,10 @@
2
2
 
3
3
  * TODO: Replace this bullet point with an actual description of a change.
4
4
 
5
+ ### 1.3.1
6
+
7
+ * Added API docs building to continuous integration (#4)
8
+
5
9
  ### 1.3.0
6
10
 
7
11
  * Moved the development dependencies from the gemspec to the Gemfile (#2)
@@ -3,7 +3,7 @@
3
3
  # The gem version details.
4
4
  module Keyless
5
5
  # The version of the +keyless+ gem
6
- VERSION = '1.3.0'
6
+ VERSION = '1.3.1'
7
7
 
8
8
  class << self
9
9
  # Returns the version of gem as a string.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: keyless
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.0
4
+ version: 1.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hermann Mayer
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: exe
12
12
  cert_chain: []
13
- date: 2024-07-08 00:00:00.000000000 Z
13
+ date: 2024-08-09 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: activesupport
@@ -78,7 +78,6 @@ extensions: []
78
78
  extra_rdoc_files: []
79
79
  files:
80
80
  - ".editorconfig"
81
- - ".github/workflows/documentation.yml"
82
81
  - ".github/workflows/release.yml"
83
82
  - ".github/workflows/test.yml"
84
83
  - ".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()