epzip 0.6.1 → 0.6.2
Sign up to get free protection for your applications and to get access to all the features.
- data/README.rdoc +1 -1
- data/Rakefile +3 -0
- data/VERSION +1 -1
- data/epzip.gemspec +4 -1
- metadata +17 -4
data/README.rdoc
CHANGED
@@ -6,7 +6,7 @@ epzip is EPUB packing tool. It's just only doing 'zip.' :)
|
|
6
6
|
|
7
7
|
$ epzip <srcdir> [filename]
|
8
8
|
|
9
|
-
'
|
9
|
+
'srcdir' is EPUB resource directory; it has mimetype, META-INF/container.xml,
|
10
10
|
and other assets.
|
11
11
|
|
12
12
|
'filename' is EPUB filename that will be created. If no filename,
|
data/Rakefile
CHANGED
@@ -10,6 +10,9 @@ begin
|
|
10
10
|
gem.email = "takahashimm@gmail.com"
|
11
11
|
gem.homepage = "http://github.com/takahashim/epzip"
|
12
12
|
gem.authors = ["Masayoshi Takahashi"]
|
13
|
+
|
14
|
+
gem.add_dependency('rubyzip', '>= 0.9.4')
|
15
|
+
|
13
16
|
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
14
17
|
end
|
15
18
|
Jeweler::GemcutterTasks.new
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.6.
|
1
|
+
0.6.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.
|
8
|
+
s.version = "0.6.2"
|
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"]
|
@@ -46,9 +46,12 @@ Gem::Specification.new do |s|
|
|
46
46
|
s.specification_version = 3
|
47
47
|
|
48
48
|
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
49
|
+
s.add_runtime_dependency(%q<rubyzip>, [">= 0.9.4"])
|
49
50
|
else
|
51
|
+
s.add_dependency(%q<rubyzip>, [">= 0.9.4"])
|
50
52
|
end
|
51
53
|
else
|
54
|
+
s.add_dependency(%q<rubyzip>, [">= 0.9.4"])
|
52
55
|
end
|
53
56
|
end
|
54
57
|
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 6
|
8
|
-
-
|
9
|
-
version: 0.6.
|
8
|
+
- 2
|
9
|
+
version: 0.6.2
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Masayoshi Takahashi
|
@@ -16,8 +16,21 @@ cert_chain: []
|
|
16
16
|
|
17
17
|
date: 2010-07-16 00:00:00 +09:00
|
18
18
|
default_executable: epzip
|
19
|
-
dependencies:
|
20
|
-
|
19
|
+
dependencies:
|
20
|
+
- !ruby/object:Gem::Dependency
|
21
|
+
name: rubyzip
|
22
|
+
prerelease: false
|
23
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
24
|
+
requirements:
|
25
|
+
- - ">="
|
26
|
+
- !ruby/object:Gem::Version
|
27
|
+
segments:
|
28
|
+
- 0
|
29
|
+
- 9
|
30
|
+
- 4
|
31
|
+
version: 0.9.4
|
32
|
+
type: :runtime
|
33
|
+
version_requirements: *id001
|
21
34
|
description: epzip is EPUB packing tool. It's just only to do 'zip.'
|
22
35
|
email: takahashimm@gmail.com
|
23
36
|
executables:
|