neh 0.0.16 → 0.0.17
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/lib/neh/cli/base.rb +5 -3
- data/lib/neh/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3fbbad76600f29de32a2230087fa413ff037e8b890fc66d0d1761057e11e457f
|
4
|
+
data.tar.gz: 60dd8915dd7f3ca9d43334edeec940cd1364f0ad4e5ab2207eaccc09c66d3b01
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2fbda86199f54a166cff5dc086ab349c9a56f48cb2c64c67686c67b045bd63128c7c4e37c3bdb34bc3f7429a0904ee2fe9ed6b1bf794ff8072d727cd47e7347a
|
7
|
+
data.tar.gz: c1ef501a69604b58236d689554f59c9387c9f637a1d281516b0b34daa28bdfac6510e64ffd4799e89279d6a82f75757d12292ac0de467c1d4543a387f832ea1c
|
data/lib/neh/cli/base.rb
CHANGED
@@ -38,9 +38,11 @@ class Neh::Cli::Base
|
|
38
38
|
private
|
39
39
|
|
40
40
|
def token
|
41
|
-
ENV.fetch('NEH_PERSONAL_ACCESS_TOKEN')
|
42
|
-
|
43
|
-
puts 'Please set the environment variable NEH_PERSONAL_ACCESS_TOKEN'
|
41
|
+
neh_personal_access_token = ENV.fetch('NEH_PERSONAL_ACCESS_TOKEN', nil)
|
42
|
+
|
43
|
+
puts 'Please set the environment variable NEH_PERSONAL_ACCESS_TOKEN.' if neh_personal_access_token.blank?
|
44
|
+
|
45
|
+
neh_personal_access_token
|
44
46
|
end
|
45
47
|
|
46
48
|
def on_receive(connection, message)
|
data/lib/neh/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: neh
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.17
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Atsushi Ishida
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-08-
|
11
|
+
date: 2024-08-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|