process-path 0.1.1 → 0.1.2

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: 3ea8831fb4f10f35b0fa04184b69735be2daee543543bd59ff01304fb6fb3b44
4
- data.tar.gz: d3b0a919b430ca380e38e831e45c3aca84e98321cb43cd3c35edb1d0c4688af4
3
+ metadata.gz: 8a23766feab3eeb262b0feb4f238b8acf8d70158b4338684ef9ef59c16e63781
4
+ data.tar.gz: 1c89907da56db5da8ba838f6a1a4c86199ad5644b7ea5c31c5fe2fa39469caba
5
5
  SHA512:
6
- metadata.gz: b9ef090fd8e00a38a6cb3973824383440a3d8bd7c38634b58eaec68a6e15b067bfa03b3efa0deeba641059c48e99927317be9081318ea3b0ae6a88bcc66abc26
7
- data.tar.gz: dff3da68725d71d10c0954347782227abe29f7f8cbdd58debf4dd1766293624c43ab4b63035639a0aec3b91ca76a265aa3a6589b5ad5fc47e8cb1ca0f61cedca
6
+ metadata.gz: ea3270eb4ac492bfb4dd3f93016a248e903456b10558437766d0f5d8af8683739207ab4dc2a970996875de3a50e70da403100b3f1bfca776942bc372bd6be2a3
7
+ data.tar.gz: 36aafdd87c583bbdb7eb71fde3a4f2169c326744213e9bc8c123e991896e7509afb4dc0c93bcb90cf6cf2c8aa06092ae46af7d875ce3caaae679d625f9aa3c2e
@@ -0,0 +1,25 @@
1
+ name: Push Ruby Gem to rubygems.org.
2
+
3
+
4
+ on:
5
+ workflow_dispatch:
6
+ inputs:
7
+ name:
8
+ description: 'Input short release note or some useful messages.'
9
+ required: true
10
+ default: ''
11
+
12
+ jobs:
13
+ build:
14
+ name: Build + Publish
15
+ runs-on: ubuntu-latest
16
+
17
+ steps:
18
+ - uses: actions/checkout@v2
19
+
20
+ - name: Publish to Rubygems
21
+ uses: cadwallion/publish-rubygems-action@v1.0.0
22
+ env:
23
+ GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
24
+ RUBYGEMS_API_KEY: ${{secrets.RUBYGEMS_API_KEY}}
25
+ RELEASE_COMMAND: rake release
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- process-path (0.1.1)
4
+ process-path (0.1.2)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -21,7 +21,7 @@ GEM
21
21
  rainbow (3.0.0)
22
22
  rake (13.0.1)
23
23
  regexp_parser (1.7.1)
24
- rexml (3.2.4)
24
+ rexml (3.2.5)
25
25
  rspec (3.9.0)
26
26
  rspec-core (~> 3.9.0)
27
27
  rspec-expectations (~> 3.9.0)
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Process
4
4
  module Path
5
- VERSION = '0.1.1'
5
+ VERSION = '0.1.2'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: process-path
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hiroki Yagita
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-09-10 00:00:00.000000000 Z
11
+ date: 2021-06-25 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Process::Path is a small library to get the path of the currently running
14
14
  process.
@@ -19,6 +19,7 @@ extensions: []
19
19
  extra_rdoc_files: []
20
20
  files:
21
21
  - ".github/FUNDING.yml"
22
+ - ".github/workflows/publish-rubygems.yml"
22
23
  - ".github/workflows/ruby.yml"
23
24
  - ".gitignore"
24
25
  - ".rspec"