process-path 0.1.3 → 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 +4 -4
- data/.github/workflows/ruby.yml +2 -2
- data/.gitignore +2 -0
- data/lib/process/path/version.rb +1 -1
- metadata +3 -5
- data/.ruby-version +0 -1
- data/.travis.yml +0 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 775a72eebdb62df6139fcd92aef386ecca2617129a1493ae2f52bb9dd9916290
|
4
|
+
data.tar.gz: be234bdd639f77153e86c59c5ced2778ec4cff02e4869b29091e98811a60687f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e3b903e8347599f6f7e244cdafbf075c6899095a6bc865fb34a9891a1e8e6b8c0b3405d6d4b0ce26be4fcc9930ba6c68bd838499a59ac724627dae2e1effc42b
|
7
|
+
data.tar.gz: 80794bedd5caa0360851abda430a6bdd7ed8ca2071f3c03608e3234da89673e718415fba3e4f0833ea89664481d4314dc8446eaf667507aaadd688d374e71b6c
|
data/.github/workflows/ruby.yml
CHANGED
@@ -18,10 +18,10 @@ jobs:
|
|
18
18
|
fail-fast: false
|
19
19
|
matrix:
|
20
20
|
os: [ubuntu, macos]
|
21
|
-
ruby: [2
|
21
|
+
ruby: [3.2, 3.3]
|
22
22
|
runs-on: ${{ matrix.os }}-latest
|
23
23
|
steps:
|
24
|
-
- uses: actions/checkout@
|
24
|
+
- uses: actions/checkout@v4
|
25
25
|
- uses: ruby/setup-ruby@v1
|
26
26
|
with:
|
27
27
|
ruby-version: ${{ matrix.ruby }}
|
data/.gitignore
CHANGED
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.4
|
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: 2024-09-04 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.
|
@@ -24,8 +24,6 @@ files:
|
|
24
24
|
- ".rspec"
|
25
25
|
- ".rubocop.yml"
|
26
26
|
- ".rubocop_todo.yml"
|
27
|
-
- ".ruby-version"
|
28
|
-
- ".travis.yml"
|
29
27
|
- CODE_OF_CONDUCT.md
|
30
28
|
- Gemfile
|
31
29
|
- LICENSE.txt
|
@@ -60,7 +58,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
60
58
|
- !ruby/object:Gem::Version
|
61
59
|
version: '0'
|
62
60
|
requirements: []
|
63
|
-
rubygems_version: 3.
|
61
|
+
rubygems_version: 3.4.10
|
64
62
|
signing_key:
|
65
63
|
specification_version: 4
|
66
64
|
summary: Process::Path is a small library to get the path of the currently running
|
data/.ruby-version
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
3.1.2
|