routingo 0.1.9 → 0.2.0

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: e37130ea5c24286a5adf396ccd358a08203a787e73636c251362d1054f6448da
4
- data.tar.gz: dd4010b74d674ea14c1f5710384867f27301a528d1e0d52bd6cfbac8dac3e8c0
3
+ metadata.gz: 0d30f67903eaedcb9c2aa95bd38891f17c28358dd22454867439e417d2e97d94
4
+ data.tar.gz: 04a1f9269d381d4d096f5c5a19377a04d9f60bb6bd324a803005e172c995a3f8
5
5
  SHA512:
6
- metadata.gz: 95536c1df89a537bf27ab1e01a383463a0ba4eaef34fb012fbc8d2e12bb89250cb7da2ea1fa18405edf1e6aec5ab7a1f4a4ba263e0f692d125313878dff11e19
7
- data.tar.gz: 15810433d5f2ad632503ac8e62080c84e86bef2bb218af6cedc450013a2a7a451592a7ed4cea575620e1397fd0df4199884bc78fa3ae3aaeaf8f435acd5eb7e8
6
+ metadata.gz: 3e8ad40bd602e1abd01848c9a79d42c572ede166e0c0b31d263b803132157854e81187f97a5ab437a016a5739519b2a4d2cc8f7994908477ce9be5f86a3315b9
7
+ data.tar.gz: 4f89767a12dd9ebca102b599c6db102780c77a040ef992bf8a3ade55e546db4ea6e3d7699a77502bb60ff1e46362edf7ad90dff22fb3055adc36eb183d0533a0
@@ -0,0 +1,44 @@
1
+ name: Ruby Gem
2
+
3
+ on:
4
+ pull_request:
5
+ branches:
6
+ - master
7
+ push:
8
+ branches:
9
+ - master
10
+
11
+ jobs:
12
+ build:
13
+ name: Build + Publish
14
+ runs-on: ubuntu-latest
15
+
16
+ steps:
17
+ - uses: actions/checkout@master
18
+ - name: Set up Ruby 2.6
19
+ uses: actions/setup-ruby@v1
20
+ with:
21
+ version: 2.6.x
22
+
23
+ - name: Publish to GPR
24
+ run: |
25
+ mkdir -p $HOME/.gem
26
+ touch $HOME/.gem/credentials
27
+ chmod 0600 $HOME/.gem/credentials
28
+ printf -- "---\n:github: Bearer ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
29
+ gem build *.gemspec
30
+ gem push --KEY github --host https://rubygems.pkg.github.com/${OWNER} *.gem
31
+ env:
32
+ GEM_HOST_API_KEY: ${{secrets.GPR_AUTH_TOKEN}}
33
+ OWNER: popac
34
+
35
+ - name: Publish to RubyGems
36
+ run: |
37
+ mkdir -p $HOME/.gem
38
+ touch $HOME/.gem/credentials
39
+ chmod 0600 $HOME/.gem/credentials
40
+ printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
41
+ gem build *.gemspec
42
+ gem push *.gem
43
+ env:
44
+ GEM_HOST_API_KEY: ${{secrets.RUBYGEMS_AUTH_TOKEN}}
@@ -1 +1 @@
1
- 2.6.3
1
+ 2.6.4
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Routingo
4
- VERSION = '0.1.9'
4
+ VERSION = '0.2.0'
5
5
  end
@@ -16,7 +16,7 @@ Gem::Specification.new do |spec|
16
16
  spec.license = 'MIT'
17
17
  spec.post_install_message = 'Thanks for installing Routingo!'
18
18
 
19
- spec.metadata['allowed_push_host'] = 'https://rubygems.org'
19
+ # spec.metadata['allowed_push_host'] = 'https://rubygems.org'
20
20
 
21
21
  spec.files = `git ls-files -z`.split("\x0")
22
22
  .reject { |f| f.match(%r{^(spec)/}) }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: routingo
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.9
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - popac
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-08-26 00:00:00.000000000 Z
11
+ date: 2019-09-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -99,6 +99,7 @@ executables: []
99
99
  extensions: []
100
100
  extra_rdoc_files: []
101
101
  files:
102
+ - ".github/workflows/gempush.yml"
102
103
  - ".gitignore"
103
104
  - ".rspec"
104
105
  - ".rubocop.yml"
@@ -120,8 +121,7 @@ files:
120
121
  homepage: https://github.com/popac/routingo
121
122
  licenses:
122
123
  - MIT
123
- metadata:
124
- allowed_push_host: https://rubygems.org
124
+ metadata: {}
125
125
  post_install_message: Thanks for installing Routingo!
126
126
  rdoc_options: []
127
127
  require_paths: