epzip 0.6.0 → 0.6.1

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.
Files changed (5) hide show
  1. data/README.rdoc +9 -2
  2. data/VERSION +1 -1
  3. data/bin/epzip +1 -1
  4. data/epzip.gemspec +1 -1
  5. metadata +2 -2
data/README.rdoc CHANGED
@@ -1,10 +1,17 @@
1
1
  = epzip
2
2
 
3
- epzip is EPUB packing tool. It's just only do 'zip.'
3
+ epzip is EPUB packing tool. It's just only doing 'zip.' :)
4
4
 
5
5
  == usage
6
6
 
7
- $ epzip <somedir as EPUB sources>
7
+ $ epzip <srcdir> [filename]
8
+
9
+ 'dir' is EPUB resource directory; it has mimetype, META-INF/container.xml,
10
+ and other assets.
11
+
12
+ 'filename' is EPUB filename that will be created. If no filename,
13
+ dir + ".epub" is used.
14
+
8
15
 
9
16
  == Note on Patches/Pull Requests
10
17
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.6.0
1
+ 0.6.1
data/bin/epzip CHANGED
@@ -10,7 +10,7 @@ def error_and_exit(msg)
10
10
  end
11
11
 
12
12
  def usage()
13
- error_and_exit "usage: epzip <EPUB source dir>"
13
+ error_and_exit "usage: epzip <srcdir> [filename]"
14
14
  end
15
15
 
16
16
  if !(ARGV.size == 1 or ARGV.size == 2)
data/epzip.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{epzip}
8
- s.version = "0.6.0"
8
+ s.version = "0.6.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Masayoshi Takahashi"]
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 6
8
- - 0
9
- version: 0.6.0
8
+ - 1
9
+ version: 0.6.1
10
10
  platform: ruby
11
11
  authors:
12
12
  - Masayoshi Takahashi