eeepub 0.4.0 → 0.4.1

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -14,7 +14,7 @@ Usage
14
14
  identifier 'http://example.com/book/foo', :scheme => 'URL'
15
15
  uid 'http://example.com/book/foo'
16
16
 
17
- files ['/path/to/foo.html'), '/path/to/bar.html')]
17
+ files ['/path/to/foo.html', '/path/to/bar.html']
18
18
  nav [
19
19
  {:label => '1. foo', :content => 'foo.html', :nav => [
20
20
  {:label => '1.1 foo-1', :content => 'foo.html#foo-1'}
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.4.0
1
+ 0.4.1
File without changes
data/lib/eeepub/maker.rb CHANGED
@@ -13,7 +13,7 @@ module EeePub
13
13
  # identifier 'http://example.com/book/foo', :scheme => 'URL'
14
14
  # uid 'http://example.com/book/foo'
15
15
  #
16
- # files ['/path/to/foo.html'), '/path/to/bar.html')]
16
+ # files ['/path/to/foo.html', '/path/to/bar.html']
17
17
  # nav [
18
18
  # {:label => '1. foo', :content => 'foo.html', :nav => [
19
19
  # {:label => '1.1 foo-1', :content => 'foo.html#foo-1'}
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 4
8
- - 0
9
- version: 0.4.0
8
+ - 1
9
+ version: 0.4.1
10
10
  platform: ruby
11
11
  authors:
12
12
  - jugyo
@@ -71,7 +71,7 @@ files:
71
71
  - VERSION
72
72
  - examples/files/bar.html
73
73
  - examples/files/foo.html
74
- - examples/maker.rb
74
+ - examples/simple_epub.rb
75
75
  - lib/eeepub.rb
76
76
  - lib/eeepub/container_item.rb
77
77
  - lib/eeepub/maker.rb
@@ -122,4 +122,4 @@ test_files:
122
122
  - spec/eeepub/opf_spec.rb
123
123
  - spec/eeepub_spec.rb
124
124
  - spec/spec_helper.rb
125
- - examples/maker.rb
125
+ - examples/simple_epub.rb