episopass 0.2.1 → 0.2.2
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/episozip +4 -1
- data/lib/episopass/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: 84f4a312a4e679bd3ec6de04ed968dadc344799083943370d670c230d97cc7ff
|
|
4
|
+
data.tar.gz: 820c09522dba34702b012332afb010573b21510f03652fb3c47c42013c2efdce
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fdedb95e684847f4f4003fbdc803b8cd6af7d87b992aec6625d8d9fc01d5716a1117112353ed3ffb67a4a92de6fcee1eb113fb12e3e4ceb3ddf164893ee81e0c
|
|
7
|
+
data.tar.gz: 1c2b05f9e1ee63eea15139c664a9daa4eb93b7321c49230ad005b579de9d2000e0f9d4a63c50f2b777a1362f2ff8d303a8e31e431705179d8c19312f2bb0c0a6
|
data/exe/episozip
CHANGED
|
@@ -3,7 +3,10 @@
|
|
|
3
3
|
# % episozip [-P episopassのHTML] out.episopass file1 file2
|
|
4
4
|
#
|
|
5
5
|
|
|
6
|
-
path =
|
|
6
|
+
path = "#{__dir__}/../data/sample.html" # gemのファイル指定する方法は?
|
|
7
|
+
localpath = File.expand_path("~/.episopass.html")
|
|
8
|
+
path = localpath if File.exist?(localpath)
|
|
9
|
+
|
|
7
10
|
if ARGV[0] == "-P"
|
|
8
11
|
path = ARGV[1]
|
|
9
12
|
ARGV.shift 2
|
data/lib/episopass/version.rb
CHANGED