jabber_admin 1.3.0 → 1.3.1

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: ed28f6ca1ef5a48e3fa5b9f6b44cab705e8de689306700e0cbec2ead439c8082
4
- data.tar.gz: 887273afabbc46c6e6e96990f862cb52ba1e8550c07f5708acb6ad82ff6ad5bd
3
+ metadata.gz: 36f720390492e75879ab0c6d9fba8af46dcc2eea7f34c4c81a436b1525675c23
4
+ data.tar.gz: 71ce51f31fba0f18b1030cb673ad64f5f39cf3295be3b411e1738cbbd0ef74b2
5
5
  SHA512:
6
- metadata.gz: 307f21394d37a6cbd6f9824eaa0345bb456ef3fbc0ac222cb7f8659b9bd55d689c77201125e410d27321da02ac41df674bfc2af737299de0070f3c90a95edc72
7
- data.tar.gz: a95e07f49d459e7b33a937827977e277f773734342b7621b083b882e6ff5afafd142653775349670ec524ffd4575feb6bcf93b818c4f1b2be70d70c59236f482
6
+ metadata.gz: 1fce6a069b79d23ea003edb2eaca0a68bc9972fe364ea8bd938ada2fa46c5d2312c94affb60b6f584c81dc17d7adc7125e5b65a2d11c204afc002520ace996d2
7
+ data.tar.gz: 98411277a53779fb129b7f2d786fe131a8eeddfa6a8aaea8189d954a2693840908ca8a9575edd583cc311fe4e59dd2612e70a1c682bb28991e0966950392a641
@@ -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 (#14)
8
+
5
9
  ### 1.3.0
6
10
 
7
11
  * Moved the development dependencies from the gemspec to the Gemfile (#12)
@@ -3,7 +3,7 @@
3
3
  # The gem version details.
4
4
  module JabberAdmin
5
5
  # The version of the +jabber_admin+ 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: jabber_admin
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
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2024-07-08 00:00:00.000000000 Z
12
+ date: 2024-08-09 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: activesupport
@@ -48,7 +48,6 @@ extensions: []
48
48
  extra_rdoc_files: []
49
49
  files:
50
50
  - ".editorconfig"
51
- - ".github/workflows/documentation.yml"
52
51
  - ".github/workflows/release.yml"
53
52
  - ".github/workflows/test.yml"
54
53
  - ".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()