countless 1.3.0 → 1.3.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3ec9b44250a36871cda4c1a892337d8bf180ce5d118ec3f67ffb6a9c04a75df4
4
- data.tar.gz: 2fdfc4435fb19191eb8be7c946e643f5d5fba339fd839239c8612ec2684fbe6e
3
+ metadata.gz: 7bae24d81c6b11e6df7cbb4e16a79b7ff5897e32bc8a55247b5a9fc256dd82a1
4
+ data.tar.gz: f493b73a5031bd25cdad4df4a5dc8eb5644bed64a566ec5927123b9d809bf8a3
5
5
  SHA512:
6
- metadata.gz: 22ea2aa822957ec15b0733e5d8c34a65104dbc7ab10a4657c8f98cedc7e866354803bbeff6de00da1d78b82449e9f25bc53e8f137815cf58e00d3932c8ab4d3d
7
- data.tar.gz: 79db285c48418b58686300740f20d4343af9ed4a95a2f929b97c36a96771286595d86f250756f7c147b5c22b54177ba16b071b222c3cfdac33db1e30e1b3bb91
6
+ metadata.gz: b1002cf0cebf1e1d17c6f59848283f4f7ace5d453c2b82cf86178b67d28d3198e440b7a2fb8690c10890e229cbe4983bad58585ae2f446ca0875bf6180ed1126
7
+ data.tar.gz: 303607e53b5caa1e9ad9e92e846c7c5b9c813dfcbce65ed5f1432883f5dbec4b5bc8ac5e6468b94a6a55cbd236179331b0f4deca94bb0a2aad00b7e57336c0ee
@@ -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,14 @@
2
2
 
3
3
  * TODO: Replace this bullet point with an actual description of a change.
4
4
 
5
+ ### 1.3.2
6
+
7
+ * Just a retag of 1.3.1
8
+
9
+ ### 1.3.1
10
+
11
+ * Added API docs building to continuous integration (#4)
12
+
5
13
  ### 1.3.0
6
14
 
7
15
  * Moved the development dependencies from the gemspec to the Gemfile (#2)
@@ -3,7 +3,7 @@
3
3
  # The gem version details.
4
4
  module Countless
5
5
  # The version of the +countless+ gem
6
- VERSION = '1.3.0'
6
+ VERSION = '1.3.2'
7
7
 
8
8
  class << self
9
9
  # Returns the version of gem as a string.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: countless
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.0
4
+ version: 1.3.2
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-07-08 00:00:00.000000000 Z
11
+ date: 2024-08-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -47,7 +47,6 @@ extensions: []
47
47
  extra_rdoc_files: []
48
48
  files:
49
49
  - ".editorconfig"
50
- - ".github/workflows/documentation.yml"
51
50
  - ".github/workflows/release.yml"
52
51
  - ".github/workflows/test.yml"
53
52
  - ".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()