pirka 0.1.4 → 0.1.5
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/.gitignore +2 -0
- data/ChangeLog.adoc +5 -0
- data/app/detect.rb +0 -1
- data/app/update.rb +2 -2
- data/lib/pirka/version.rb +1 -1
- data/test/helper.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: 01fbcc63f6942649b06f3e305a4784f5f0e2a58e61361d20d8ae5c2f54d285e6
|
|
4
|
+
data.tar.gz: 7612baf2e3cb96ebc62a843dcbeec3c38b0b613c75b20eec7098a94e7f30b0be
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a07ad8bee9d066ebf98e7953dc97869b2e4d32174aa96018c51405dbf9fcab88c3c6b9153e332a42885d78cebc7974447b2dbc177395a7b4b1563168a8058ef0
|
|
7
|
+
data.tar.gz: e11e29a13d71a578d49e900fb859b50c16937c39dcb5c237255e8f2b71c8fbc51cd8daa41d3f7745dbba9c3bd3f949f342f1e2a26b2f6a9b398aef8fcdb99532
|
data/.gitignore
CHANGED
data/ChangeLog.adoc
CHANGED
data/app/detect.rb
CHANGED
data/app/update.rb
CHANGED
|
@@ -37,7 +37,7 @@ module Pirka
|
|
|
37
37
|
end
|
|
38
38
|
|
|
39
39
|
def ensure_git_command
|
|
40
|
-
raise "Cannot find `git` command" unless system("
|
|
40
|
+
raise "Cannot find `git` command" unless system("which", "git")
|
|
41
41
|
end
|
|
42
42
|
|
|
43
43
|
# @todo Make more generic
|
|
@@ -57,8 +57,8 @@ module Pirka
|
|
|
57
57
|
end
|
|
58
58
|
|
|
59
59
|
def run_command(command)
|
|
60
|
-
output = `#{command}`
|
|
61
60
|
$stderr.puts "Executing \`#{command}\`"
|
|
61
|
+
output = `#{command}`
|
|
62
62
|
raise "Failed to execute \`#{command}\`" unless $CHILD_STATUS.success?
|
|
63
63
|
output
|
|
64
64
|
end
|
data/lib/pirka/version.rb
CHANGED
data/test/helper.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pirka
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- KITAITI Makoto
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-
|
|
11
|
+
date: 2019-12-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: epub-parser
|