rails_respond_to_pb 0.1.5 → 0.2.0

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: '09ed10071e15cae2742131c4b74c13bac6b3cc80b2edc6ee60b81ff5e91bdee2'
4
- data.tar.gz: c78440085c1a1d54ec466914b72f69de3f9494a7a3017bb29f47c28b6ac4cbcd
3
+ metadata.gz: 0aa245e7ea71430e7649f6287293c9c2e1daafec5ff1689c5c78ba78f9bb9baf
4
+ data.tar.gz: 24f3a9834c934dc896b772780275a82a9f49094951cc8da185547fc98be05f16
5
5
  SHA512:
6
- metadata.gz: 9cdbb62f49ac387715472fb81df4ed0808df18746821e26e2bfd08ecf1e6bd0022a0791ed726c5a6282fd875092cde6a463f40ab2e739184d3c2a24d21607003
7
- data.tar.gz: 3154c18d4cb1282193bd117c556713bed7b21724a86e1dca42f603a3417162c69dd3e05316c86393a91e50823eb08d903e0681a29eeade13305a7c47c84db9ef
6
+ metadata.gz: 625454f9b1c30231ce95c46460f6723b283d05a1f1664dfff20906ed49888b927db1fca70f992d31d7974a17883b99e43fc32ecfee057b857425731f79af7a85
7
+ data.tar.gz: 4c8f924f845479b6eaf938f50de51fe2ecc375af260ad36886fc92c6b82a1c10a5b84a037d1b8bcdfd5197c40d38744a353cb065b9cb24a724e9202c4080e036
@@ -0,0 +1,41 @@
1
+ name: release
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - main
7
+
8
+ jobs:
9
+ release-please:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - name: Set ENV
13
+ run: |
14
+ echo INPUT_PACKAGE_NAME=${GITHUB_REPOSITORY##*/} >> $GITHUB_ENV
15
+ echo INPUT_VERSION_FILE=lib/${GITHUB_REPOSITORY##*/}/version.rb >> $GITHUB_ENV
16
+ - uses: GoogleCloudPlatform/release-please-action@v2
17
+ id: release
18
+ with:
19
+ release-type: ruby
20
+ package-name: ${{ env.INPUT_PACKAGE_NAME }}
21
+ bump-minor-pre-major: true
22
+ version-file: ${{ env.INPUT_VERSION_FILE }}
23
+ - uses: actions/checkout@v2
24
+ if: ${{ steps.release.outputs.release_created }}
25
+ - uses: ruby/setup-ruby@v1
26
+ with:
27
+ ruby-version: 3.0.0
28
+ if: ${{ steps.release.outputs.release_created }}
29
+ - run: bundle install
30
+ if: ${{ steps.release.outputs.release_created }}
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: ${RUBYGEMS_API_KEY}\n" > $HOME/.gem/credentials
37
+ gem build *.gemspec
38
+ gem push *.gem
39
+ env:
40
+ RUBYGEMS_API_KEY: "${{secrets.RUBYGEMS_API_KEY}}"
41
+ if: ${{ steps.release.outputs.release_created }}
data/CHANGELOG.md CHANGED
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.2.0](https://www.github.com/dudo/rails_respond_to_pb/compare/v0.1.5...v0.2.0) (2021-12-22)
9
+
10
+
11
+ ### Features
12
+
13
+ * automate releases ([f880b17](https://www.github.com/dudo/rails_respond_to_pb/commit/f880b17fca29f70d9ca275f9c16316c31cd752f2))
14
+
8
15
  ## 0.1.3
9
16
 
10
17
  - In the beginning...
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RailsRespondToPb
4
- VERSION = '0.1.5'
4
+ VERSION = '0.2.0'
5
5
  end
metadata CHANGED
@@ -1,11 +1,11 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails_respond_to_pb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.5
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brett C. Dudo
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
11
  date: 2021-12-22 00:00:00.000000000 Z
@@ -60,6 +60,7 @@ extensions: []
60
60
  extra_rdoc_files: []
61
61
  files:
62
62
  - ".github/workflows/main.yml"
63
+ - ".github/workflows/release.yml"
63
64
  - ".gitignore"
64
65
  - ".rspec"
65
66
  - ".rubocop.yml"
@@ -87,7 +88,7 @@ metadata:
87
88
  homepage_uri: https://github.com/dudo/rails_respond_to_pb
88
89
  source_code_uri: https://github.com/dudo/rails_respond_to_pb
89
90
  changelog_uri: https://github.com/dudo/rails_respond_to_pb/blob/main/CHANGELOG.md
90
- post_install_message:
91
+ post_install_message:
91
92
  rdoc_options: []
92
93
  require_paths:
93
94
  - lib
@@ -102,8 +103,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
102
103
  - !ruby/object:Gem::Version
103
104
  version: '0'
104
105
  requirements: []
105
- rubygems_version: 3.2.32
106
- signing_key:
106
+ rubygems_version: 3.2.3
107
+ signing_key:
107
108
  specification_version: 4
108
109
  summary: Middleware for a Rails App providing functionality for gRPC and Twirp
109
110
  test_files: []