pricehubble 1.2.0 → 1.2.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: 504485349e09f5358db5b2f145c6e33251120b48303259ab56aa7ba17a855764
4
- data.tar.gz: 1fe1aab2cf7702af741c845eac57f5e1151362f144a1710e8a0f25c872a6c4ba
3
+ metadata.gz: c76e2916270f0c409b580c65d1eb2fa643d8f12c8ea99c78eaa70e5c0d269e55
4
+ data.tar.gz: 7b868dd15db432d2c1265f0e16cd77355302fcff81b08b31846bc5e427bd54b9
5
5
  SHA512:
6
- metadata.gz: 61790c191af78c8ebc861d5b10e65bf39776b6ebd6db0eb0f5ad8c9e7996227a7ef3b3db5c6b7c0742078a270f3fec4fa34dd2d600cd40cabb821f2e969092cf
7
- data.tar.gz: b88944a8a0c5efb01ac8d04362e4223dbb2adefe0cc9bf5845218a1ee100448b6f294b0f77d8b35b628dce2e9befceba900915ee1e2da6fee54b6662908a77ce
6
+ metadata.gz: 9bdb415913b515caff0277c5b6eea96b39a161dfc1591fd49ef68de7434500071051276fb32adbd594f55295a8b7e7e56e4b0b6feac270deb0f96736bdb41919
7
+ data.tar.gz: e7ca73eb5a014d3d184c569425a9c0e561175361c0aaae3b58e04ab6b3d62a2669c2bcf8a561887a2f55d7ef093195751aae4f81817461146bb5f2bd4a406485
@@ -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.2.1
6
+
7
+ * Added API docs building to continuous integration (#9)
8
+
5
9
  ### 1.2.0
6
10
 
7
11
  * Moved the development dependencies from the gemspec to the Gemfile (#7)
@@ -3,7 +3,7 @@
3
3
  # The gem version details.
4
4
  module PriceHubble
5
5
  # The version of the +price-hubble+ gem
6
- VERSION = '1.2.0'
6
+ VERSION = '1.2.1'
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: pricehubble
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.2.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-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: activemodel
@@ -88,7 +88,6 @@ extensions: []
88
88
  extra_rdoc_files: []
89
89
  files:
90
90
  - ".editorconfig"
91
- - ".github/workflows/documentation.yml"
92
91
  - ".github/workflows/release.yml"
93
92
  - ".github/workflows/test.yml"
94
93
  - ".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()