error_reporter 0.1.2 → 0.1.4

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: 85358824b7f907a5013a49dec937c4ffe2043b8e16321bda2cbe8cb74c37075e
4
- data.tar.gz: 9eef2bdf4eb8914c8ad3c60a901b5a8a30a3874ba217cf2aa8b93346c7324943
3
+ metadata.gz: 6d28cad53c3ea84af5a3eb60b3697a9a972c48e51b9e4f78383857cf1d619f5e
4
+ data.tar.gz: 3a711c97dcc7da4ac8242170be7f1daff84129fa64e0a5749ccb978261338ccc
5
5
  SHA512:
6
- metadata.gz: 93778751c34dc8492a72cb193fda9dee7da9a6ec9127c68332d73bfa517057d09b2cbd0951eaf7ca84153cd5b4ee9fe96a0f9456d62330438aad6104b8a80d9e
7
- data.tar.gz: 538a6bfdbe341401e7f7d76f57a6a715dd8111eaf9a4e1ae560484660eb17ddaf86f8bebcc27af44f11b52c3a71df0f7b3e306d48bac60b0d233dc9132034e11
6
+ metadata.gz: 364167ef2847813044c69d88c76b012ddb816175fa0533dedbdc09aa43be35316575857d27124dd5d50c91b2b500fb5270299046f9a95bea1221ae21468470d6
7
+ data.tar.gz: 1626092b5a383becc5a4fa693afbea4f236e20778d590825657b6695adcf1df49f81fc3a3b4313314fb131b2a66b36eb9b60bf289598eccbe3038ef4c869c934
@@ -0,0 +1,43 @@
1
+ name: CD
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - master
7
+
8
+ jobs:
9
+ release-please:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: GoogleCloudPlatform/release-please-action@v2
13
+ id: release
14
+ with:
15
+ release-type: ruby
16
+ package-name: release-please-demo
17
+ bump-minor-pre-major: true
18
+ version-file: "lib/release/please/demo/version.rb"
19
+ # Checkout code if release was created
20
+ - uses: actions/checkout@v2
21
+ if: ${{ steps.release.outputs.release_created }}
22
+ # Setup ruby if a release was created
23
+ - uses: ruby/setup-ruby@v1
24
+ with:
25
+ ruby-version: 3.0.0
26
+ if: ${{ steps.release.outputs.release_created }}
27
+ # Bundle install
28
+ - run: bundle install
29
+ if: ${{ steps.release.outputs.release_created }}
30
+ # Publish
31
+ - name: publish gem
32
+ run: |
33
+ mkdir -p $HOME/.gem
34
+ touch $HOME/.gem/credentials
35
+ chmod 0600 $HOME/.gem/credentials
36
+ printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
37
+ gem build *.gemspec
38
+ gem push *.gem
39
+ env:
40
+ # Make sure to update the secret name
41
+ # if yours isn't named RUBYGEMS_AUTH_TOKEN
42
+ GEM_HOST_API_KEY: "${{secrets.RUBYGEMS_API_KEY}}"
43
+ if: ${{ steps.release.outputs.release_created }}
@@ -30,22 +30,3 @@ jobs:
30
30
  bundler-cache: true # runs 'bundle install' and caches installed gems automatically
31
31
  - name: Test
32
32
  run: bundle exec rspec
33
-
34
- cd:
35
- name: Publish to RubyGems
36
- if: github.ref == 'refs/heads/master'
37
- runs-on: ubuntu-latest
38
- timeout-minutes: 10
39
- needs:
40
- - ci
41
-
42
- steps:
43
- - name: Checkout source
44
- uses: actions/checkout@v1
45
-
46
- - name: Publish to RubyGems
47
- uses: cadwallion/publish-rubygems-action@master
48
- env:
49
- GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
50
- RUBYGEMS_API_KEY: ${{secrets.RUBYGEMS_API_KEY}}
51
- RELEASE_COMMAND: rake release
data/CHANGELOG.md ADDED
@@ -0,0 +1,9 @@
1
+ # Changelog
2
+
3
+ ## [1.6.0](https://www.github.com/pierce-h/error_reporter/compare/v1.5.0...v1.6.0) (2021-07-29)
4
+
5
+
6
+ ### Features
7
+
8
+ * add a feature ([24b57c5](https://www.github.com/pierce-h/error_reporter/commit/24b57c5139ac01a34243182507759f0bcef57c46))
9
+ * add a feature ([8ced82f](https://www.github.com/pierce-h/error_reporter/commit/8ced82ffa23651500f39f68a0f76bcc5a2d40fce))
@@ -1,3 +1,3 @@
1
1
  module ErrorReporter
2
- VERSION = "0.1.2"
2
+ VERSION = "0.1.4"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: error_reporter
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pierce
@@ -33,9 +33,11 @@ extra_rdoc_files: []
33
33
  files:
34
34
  - ".github/CODE_OF_CONDUCT.md"
35
35
  - ".github/CONTRIBUTING.md"
36
- - ".github/workflows/CI-CD.yaml"
36
+ - ".github/workflows/CD.yml"
37
+ - ".github/workflows/CI.yaml"
37
38
  - ".gitignore"
38
39
  - ".rspec"
40
+ - CHANGELOG.md
39
41
  - Gemfile
40
42
  - LICENSE.txt
41
43
  - README.md
@@ -64,7 +66,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
64
66
  - !ruby/object:Gem::Version
65
67
  version: '0'
66
68
  requirements: []
67
- rubygems_version: 3.0.3
69
+ rubygems_version: 3.2.3
68
70
  signing_key:
69
71
  specification_version: 4
70
72
  summary: An adapter for error reporting services.