helpline 0.1.11 → 0.1.12
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/exe/helpline +7 -4
- data/lib/helpline/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: bf6546d695b0f5183a37b1bd3f03b92badd158baf1b41de47710cd5620d1fe25
|
|
4
|
+
data.tar.gz: 8c66e7379d9cb8e2d02925fb80a33e44d9772fb6d40bcb41e0ec681e6c92092c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 289c5a0bc28dd19cbfe0f25bcfc3d32776c7b4e9dcba21b763d6cd72dfa0425f09efc2de9758dd57025338e90e6115f336562700d4117adae27d44d27d109fa8
|
|
7
|
+
data.tar.gz: e9455987872ac5e3765703bf7f13cc204a22b1d5c237970943ff99c3d2bffe53a7e3b815cbf7df222bee1fad1e1fee45c21dfcb6276a917439ba672b4c5e842c
|
data/exe/helpline
CHANGED
|
@@ -144,8 +144,6 @@ class HelpLine
|
|
|
144
144
|
end
|
|
145
145
|
}
|
|
146
146
|
|
|
147
|
-
# puts "GENERATE #{params.split('|').join(' ')} "
|
|
148
|
-
|
|
149
147
|
res = g.generate " #{ARGV.join(' ').sub(/\[/,'').sub(/\]/,'')} "
|
|
150
148
|
|
|
151
149
|
if res[0].length == 0
|
|
@@ -156,13 +154,18 @@ class HelpLine
|
|
|
156
154
|
exit
|
|
157
155
|
end
|
|
158
156
|
|
|
157
|
+
git_repository = File.exist?(".git")
|
|
159
158
|
listed = {}
|
|
160
159
|
list = res[0].find_all { |a| # 0 ambig
|
|
161
160
|
# a = ["現在の状況を表示する {56}", "git status {56}"], etc.
|
|
162
|
-
if
|
|
161
|
+
if a[0] =~ /^git:/ && !git_repository
|
|
163
162
|
false
|
|
164
163
|
else
|
|
165
|
-
listed[a[1]]
|
|
164
|
+
if listed[a[1]]
|
|
165
|
+
false
|
|
166
|
+
else
|
|
167
|
+
listed[a[1]] = true
|
|
168
|
+
end
|
|
166
169
|
end
|
|
167
170
|
}
|
|
168
171
|
|
data/lib/helpline/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: helpline
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.12
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Toshiyuki Masui
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-07-
|
|
11
|
+
date: 2020-07-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|