conversejs 3.6.0 → 3.6.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: eb532c48a08f73b18762f7df389c87a3dcb175ae4c6edb4889a119bf12a28699
4
- data.tar.gz: 0d87e91fe07f54fb7cd8bcf22d9e5a248b5e10c6feeed055ac369fda1edd73dc
3
+ metadata.gz: d92763234c3e4f058aab595d50dd71c3fb55e16cbe732e4be17271f3c3d96ec1
4
+ data.tar.gz: b09ab2615605ad75f606cfd4477191b369f046f62bdef909aac6340b812f84ad
5
5
  SHA512:
6
- metadata.gz: 489a7423413cfa059511e97aa67599e68db81d7908cef5dc6f030279d38c14277a4399d7f86fa9675d0249c848f0af72fa4e32546bd42211b6c66ea6fbdf5a64
7
- data.tar.gz: 27673230e6c4ef470c89b63ef08c8fd658981e28f2150dd056278f635af1ca522de51e51e437e7be25cb6adfc171a3e54271da645b82d44e47a731d093e185f8
6
+ metadata.gz: 9acc3ddd41129d4863ef7b731a74441aa3fb5761126e7bff2dc2369c820b85f446fd4c2f07ee0413b13831ad6d94593a36cd453bfb2f6c18eccc4f9a7cafee38
7
+ data.tar.gz: 524eb9ad3db5139976ead0abbf330b20200a4021b1d26b817e561441ba1c057cc64ed76bbbdc932aead80ec9afa8d47ee5cb62387c1e9946c85bd0e4b275cc4a
@@ -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
+ ### 3.6.1
6
+
7
+ * Added API docs building to continuous integration (#7)
8
+
5
9
  ### 3.6.0
6
10
 
7
11
  * Moved the development dependencies from the gemspec to the Gemfile (#5)
@@ -4,7 +4,7 @@ module Conversejs
4
4
  # The gem version details.
5
5
  module Rails
6
6
  # The version of the +conversejs+ gem
7
- VERSION = '3.6.0'
7
+ VERSION = '3.6.1'
8
8
 
9
9
  class << self
10
10
  # Returns the version of gem as a string.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: conversejs
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.6.0
4
+ version: 3.6.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: railties
@@ -40,7 +40,6 @@ extensions: []
40
40
  extra_rdoc_files: []
41
41
  files:
42
42
  - ".editorconfig"
43
- - ".github/workflows/documentation.yml"
44
43
  - ".github/workflows/release.yml"
45
44
  - ".github/workflows/test.yml"
46
45
  - ".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()