episopass 0.2.4 → 0.2.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6d9c2c54c1959419ac2ad407bb9edf9471f304aafc6321637d6caf38ab8bef6e
4
- data.tar.gz: 1479ebfcf3cdbecd754d459207681fc9c566afac9ebc2901663c6f943a964369
3
+ metadata.gz: d1d34c6ab7749791963c2fd8b4870b42af9729898a1af3da620977394790ccf7
4
+ data.tar.gz: 619cf58cb4225be89badc2c8551018853252431f4cf54be0cb11f27fa6309eba
5
5
  SHA512:
6
- metadata.gz: 738362b0ae549787afcc4a2b8ac9a46885785ccf7af9a39af6ee5d45d530fc3a59e8d41dd46854693ab51f7d7380167728d473151fda7be6b43f40917dc8e518
7
- data.tar.gz: 53c5bc9c97f2aba659011ae3c428ee59b2b556c33b46c6606eae12dafb618c50b8a63d9b49cdd0cca8c39c21d4c749cf7f32dda963f63f2c6f6e93e4453b3fc5
6
+ metadata.gz: 2d92b4d5e95492b07b2b83671fcbc2d85f803b844f4fd0fc145dcf1fd80d81e8c2250dd25fed143c97bc0553cf9e5cbb883591b779a7b397e92a7e8defcb0d91
7
+ data.tar.gz: 73b549aa9ed24c9702379abf07b8712d786595424832d202f33f0847d9464511dd6580e9d75cb8f345f54ed62ce4c5ad719b00988f468b2670f61d85429361d7
data/exe/episounzip CHANGED
@@ -1,11 +1,11 @@
1
1
  #!/usr/bin/env ruby
2
2
  #
3
- # % epunzip out.episopass
3
+ # % epunzip out.zip
4
4
  #
5
5
 
6
6
  epfile = ARGV[0]
7
7
  if !epfile || !File.exist?(epfile)
8
- STDERR.puts "% epunzip file.episopass"
8
+ STDERR.puts "% epunzip file.zip"
9
9
  exit
10
10
  end
11
11
 
data/exe/episozip CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env ruby
2
2
  #
3
- # % episozip [-P episopassのHTML] out.episopass file1 file2
3
+ # % episozip [-P episopassのHTML] out.zip file1 file2
4
4
  #
5
5
 
6
6
  path = "#{__dir__}/../data/sample.html" # gemのファイル指定する方法は?
@@ -42,8 +42,8 @@ if !zipfile
42
42
  system "/bin/rm -r #{dir}"
43
43
  exit
44
44
  end
45
- if zipfile !~ /\.episopass$/
46
- STDERR.puts "出力ファイルの拡張子は.episopassにしてください"
45
+ if zipfile !~ /\.zip$/
46
+ STDERR.puts "出力ファイルの拡張子は.zipにしてください"
47
47
  system "/bin/rm -r #{dir}"
48
48
  exit
49
49
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module EpisoPass
4
- VERSION = "0.2.4" # episozip追加
4
+ VERSION = "0.2.5" # episozip追加
5
5
  end
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.2.4
4
+ version: 0.2.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Toshiyuki Masui