githelp 0.3.2 → 0.3.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/exe/githelp +5 -2
- data/index.html +1 -1
- data/lib/githelp/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a4fb22851a48f5fbc95d9531ea6a822357be8d444980f7b7f1da05b48ee46306
|
4
|
+
data.tar.gz: bf380bb86ada38cb295078a3cfccca9ea8d33eabed5f8195a9916d83d954fbe3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7f82b8e5ee5a9fc864ffa715c32042d1c9cfd45051aafbc3487ecd152544c8c47853a894b57b8c0ab49d7eaa85c0dfaa75bee3e578c60fb60b56beb220d63b84
|
7
|
+
data.tar.gz: 497b9fe81733d29d90afb6362a3d55cd8bcaeb0544a844b433503591f7886da20af3b95e06b6c3f904cbdc4bc8aaff87c6623a9e1b7692ab78db5ab93f11bab2
|
data/exe/githelp
CHANGED
@@ -143,8 +143,11 @@ class GitHelp
|
|
143
143
|
else
|
144
144
|
cmd = res.sub(/^\s*/,'')
|
145
145
|
end
|
146
|
-
|
147
|
-
|
146
|
+
print "「#{cmd.chomp}」 を実行しますか? "
|
147
|
+
ans = gets
|
148
|
+
if ans =~ /^y/i || ans == "\n"
|
149
|
+
system cmd
|
150
|
+
end
|
148
151
|
end
|
149
152
|
else
|
150
153
|
res = IO.popen(pager, "w") {|io|
|
data/index.html
CHANGED
@@ -214,7 +214,7 @@
|
|
214
214
|
<li>対話的処理のために<a href="https://github.com/peco/peco">peco</a>が必要</li>
|
215
215
|
<ul>
|
216
216
|
<li>Macだと<code>% brew install peco</code>でインストール可能</li>
|
217
|
-
<li>Linuxなどの場合<a href="https://github.com/peco/peco/releases">こちら</a>のファイルからインストール (yum
|
217
|
+
<li>Linuxなどの場合<a href="https://github.com/peco/peco/releases">こちら</a>のファイルからインストール (yumなどでは入らない)</li>
|
218
218
|
</ul>
|
219
219
|
</ul>
|
220
220
|
|
data/lib/githelp/version.rb
CHANGED