episopass 0.1.6 → 0.1.7
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/data/{EpisoPassCLI.html → sample.html} +0 -0
- data/exe/episopass +5 -1
- data/lib/episopass/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: c3f927a52f6e4aa774f33c6b920c1d4061017f229b0714d347e35ee7a4e5b68f
|
4
|
+
data.tar.gz: 00eab44234841ea8033387d7d6d78555bacabbadac322440ffeef5654086bee4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ba6cda6eed643a94db45f9a76fb54e7bfc06d0746ab45899348f288362e9d9880ede7dc00e5fb03b0d2575abe04f79f90bed9c3eed0aebb9a3af8488bd814e71
|
7
|
+
data.tar.gz: c7d4ec29bc1ea79e57f96b578f55857f3913a146dcd4eb65a19e4ea29beadfedb74958d4467a5da8c3863f7f77f6e7ced08d2a523cc78a17b84555e7c4a5c9ec
|
File without changes
|
data/exe/episopass
CHANGED
@@ -1,4 +1,7 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
|
+
#
|
3
|
+
# コマンドラインからEpisoPassを開いてパスワード文字列を得る
|
4
|
+
#
|
2
5
|
|
3
6
|
require 'net/http'
|
4
7
|
require 'uri'
|
@@ -14,7 +17,8 @@ if arg
|
|
14
17
|
html = File.read(arg)
|
15
18
|
end
|
16
19
|
else
|
17
|
-
|
20
|
+
# サンプルデータ利用
|
21
|
+
html = File.read("#{__dir__}/../data/sample.html") # gemのファイル指定する方法は?
|
18
22
|
end
|
19
23
|
|
20
24
|
opencmd = "open"
|
data/lib/episopass/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: episopass
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Toshiyuki Masui
|
@@ -18,7 +18,7 @@ executables:
|
|
18
18
|
extensions: []
|
19
19
|
extra_rdoc_files: []
|
20
20
|
files:
|
21
|
-
- data/
|
21
|
+
- data/sample.html
|
22
22
|
- exe/episopass
|
23
23
|
- lib/episopass.rb
|
24
24
|
- lib/episopass/version.rb
|