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 +4 -4
- data/.github/workflows/publish-rubygems.yml +25 -0
- data/Gemfile.lock +2 -2
- data/lib/process/path/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8a23766feab3eeb262b0feb4f238b8acf8d70158b4338684ef9ef59c16e63781
|
4
|
+
data.tar.gz: 1c89907da56db5da8ba838f6a1a4c86199ad5644b7ea5c31c5fe2fa39469caba
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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.
|
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.
|
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)
|
data/lib/process/path/version.rb
CHANGED
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.
|
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:
|
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"
|