rpub 0.4.0 → 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (120) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +1 -1
  3. data/.rspec +0 -1
  4. data/.travis.yml +3 -4
  5. data/.yardopts +1 -0
  6. data/Gemfile +1 -1
  7. data/Gemfile.lock +70 -46
  8. data/Guardfile +6 -0
  9. data/HISTORY.md +10 -0
  10. data/README.md +1 -1
  11. data/Rakefile +7 -2
  12. data/bin/rpub +64 -1
  13. data/doc/.gitignore +8 -0
  14. data/doc/api/Rpub.html +339 -0
  15. data/doc/api/Rpub/Book.html +983 -0
  16. data/doc/api/Rpub/Chapter.html +737 -0
  17. data/doc/api/Rpub/Command.html +356 -0
  18. data/doc/api/Rpub/Commands.html +117 -0
  19. data/doc/api/Rpub/Commands/Clean.html +216 -0
  20. data/doc/api/Rpub/Commands/Compile.html +218 -0
  21. data/doc/api/Rpub/Commands/Generate.html +242 -0
  22. data/doc/api/Rpub/Commands/Package.html +230 -0
  23. data/doc/api/Rpub/Commands/Preview.html +216 -0
  24. data/doc/api/Rpub/Commands/Stats.html +226 -0
  25. data/doc/api/Rpub/Compressor.html +687 -0
  26. data/doc/api/Rpub/Context.html +553 -0
  27. data/doc/api/Rpub/Document.html +647 -0
  28. data/doc/api/Rpub/Document/OutlineElement.html +388 -0
  29. data/doc/api/Rpub/Epub.html +465 -0
  30. data/doc/api/Rpub/Epub/Container.html +224 -0
  31. data/doc/api/Rpub/Epub/Content.html +344 -0
  32. data/doc/api/Rpub/Epub/Cover.html +236 -0
  33. data/doc/api/Rpub/Epub/HtmlToc.html +240 -0
  34. data/doc/api/Rpub/Epub/Toc.html +244 -0
  35. data/doc/api/Rpub/FilesystemSource.html +544 -0
  36. data/doc/api/Rpub/HashDelegation.html +281 -0
  37. data/doc/api/Rpub/HashDelegation/ClassMethods.html +175 -0
  38. data/doc/api/Rpub/MediaType.html +192 -0
  39. data/doc/api/Rpub/Preview.html +464 -0
  40. data/doc/api/Rpub/XmlFile.html +457 -0
  41. data/doc/api/_index.html +405 -0
  42. data/doc/api/class_list.html +54 -0
  43. data/doc/api/css/common.css +1 -0
  44. data/doc/api/css/full_list.css +57 -0
  45. data/doc/api/css/style.css +339 -0
  46. data/doc/api/file.HISTORY.html +131 -0
  47. data/doc/api/file.LICENSE.html +92 -0
  48. data/doc/api/file.README.html +337 -0
  49. data/doc/api/file_list.html +62 -0
  50. data/doc/api/frames.html +26 -0
  51. data/doc/api/index.html +337 -0
  52. data/doc/api/js/app.js +219 -0
  53. data/doc/api/js/full_list.js +178 -0
  54. data/doc/api/js/jquery.js +4 -0
  55. data/doc/api/method_list.html +533 -0
  56. data/doc/api/top-level-namespace.html +112 -0
  57. data/doc/index.html +312 -0
  58. data/doc/javascripts/scale.fix.js +17 -0
  59. data/doc/params.json +1 -0
  60. data/doc/stylesheets/pygment_trac.css +69 -0
  61. data/doc/stylesheets/styles.css +255 -0
  62. data/features/clean.feature +31 -0
  63. data/features/compile.feature +49 -0
  64. data/features/embedded_assets.feature +51 -0
  65. data/features/generate.feature +63 -0
  66. data/features/layout.feature +41 -0
  67. data/features/package.feature +30 -0
  68. data/features/previews.feature +66 -0
  69. data/features/stats.feature +18 -0
  70. data/features/step_definitions/general_steps.rb +60 -0
  71. data/features/styles.feature +33 -0
  72. data/features/support/env.rb +7 -0
  73. data/features/table_of_contents.feature +35 -0
  74. data/lib/rpub.rb +28 -31
  75. data/lib/rpub/book.rb +9 -16
  76. data/lib/rpub/chapter.rb +4 -54
  77. data/lib/rpub/command.rb +32 -0
  78. data/lib/rpub/commands/clean.rb +4 -49
  79. data/lib/rpub/commands/compile.rb +4 -49
  80. data/lib/rpub/commands/generate.rb +10 -67
  81. data/lib/rpub/commands/package.rb +9 -37
  82. data/lib/rpub/commands/preview.rb +4 -54
  83. data/lib/rpub/commands/stats.rb +6 -10
  84. data/lib/rpub/compressor.rb +3 -3
  85. data/lib/rpub/context.rb +48 -0
  86. data/lib/rpub/document.rb +68 -0
  87. data/lib/rpub/epub.rb +8 -7
  88. data/lib/rpub/epub/content.rb +9 -30
  89. data/lib/rpub/epub/cover.rb +1 -8
  90. data/lib/rpub/epub/html_toc.rb +4 -9
  91. data/lib/rpub/epub/toc.rb +16 -13
  92. data/lib/rpub/filesystem_source.rb +47 -0
  93. data/lib/rpub/media_type.rb +16 -0
  94. data/lib/rpub/preview.rb +29 -0
  95. data/lib/rpub/version.rb +1 -1
  96. data/lib/rpub/xml_file.rb +4 -1
  97. data/rpub.gemspec +6 -7
  98. data/spec/rpub/book_spec.rb +45 -45
  99. data/spec/rpub/chapter_spec.rb +87 -22
  100. data/spec/rpub/epub/container_spec.rb +3 -5
  101. data/spec/rpub/epub/content_spec.rb +62 -41
  102. data/spec/rpub/epub/cover_spec.rb +3 -5
  103. data/spec/rpub/epub/html_toc_spec.rb +8 -8
  104. data/spec/rpub/epub/toc_spec.rb +20 -22
  105. data/spec/rpub_spec.rb +1 -3
  106. data/spec/spec_helper.rb +28 -0
  107. data/support/config.yml +1 -0
  108. data/support/styles.css +3 -3
  109. metadata +131 -120
  110. data/lib/rpub/commander.rb +0 -23
  111. data/lib/rpub/commands/base.rb +0 -33
  112. data/lib/rpub/commands/help.rb +0 -37
  113. data/lib/rpub/commands/main.rb +0 -45
  114. data/lib/rpub/compilation_helpers.rb +0 -73
  115. data/lib/rpub/subclass_tracker.rb +0 -53
  116. data/spec/rpub/commands/clean_spec.rb +0 -46
  117. data/spec/rpub/commands/generate_spec.rb +0 -52
  118. data/spec/rpub/commands/main_spec.rb +0 -26
  119. data/spec/rpub/commands/package_spec.rb +0 -33
  120. data/spec/rpub/commands/preview_spec.rb +0 -43
@@ -11,5 +11,6 @@ toc: true
11
11
  max_level: 2
12
12
  ignore:
13
13
  - README.md
14
+ package_file: 'untitled_book.zip'
14
15
  package:
15
16
  - README.md
@@ -1,6 +1,6 @@
1
1
  body {
2
- margin: 3%;
3
- font-family: Georgia, serif;
2
+ margin: 3%;
3
+ font-family: Georgia, serif;
4
4
  line-height: 1.4em;
5
5
  }
6
6
 
@@ -10,7 +10,7 @@ h1, h2, h3, h4, h5, h6, p, ul, ol, dl, table, img, pre {
10
10
  }
11
11
 
12
12
  h1, h2, h3, h4, h5, h6 {
13
- font-family: sans-serif;
13
+ font-family: sans-serif;
14
14
  page-break-after: avoid;
15
15
  page-break-inside: avoid;
16
16
  }
metadata CHANGED
@@ -1,254 +1,209 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rpub
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
5
- prerelease:
4
+ version: 0.5.0
6
5
  platform: ruby
7
6
  authors:
8
7
  - Arjan van der Gaag
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2012-06-07 00:00:00.000000000 Z
11
+ date: 2014-11-21 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: typogruby
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
- - - ! '>='
17
+ - - ">="
20
18
  - !ruby/object:Gem::Version
21
19
  version: '0'
22
20
  type: :runtime
23
21
  prerelease: false
24
22
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
23
  requirements:
27
- - - ! '>='
24
+ - - ">="
28
25
  - !ruby/object:Gem::Version
29
26
  version: '0'
30
27
  - !ruby/object:Gem::Dependency
31
28
  name: kramdown
32
29
  requirement: !ruby/object:Gem::Requirement
33
- none: false
34
30
  requirements:
35
- - - ! '>='
31
+ - - ">="
36
32
  - !ruby/object:Gem::Version
37
33
  version: '0'
38
34
  type: :runtime
39
35
  prerelease: false
40
36
  version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
37
  requirements:
43
- - - ! '>='
38
+ - - ">="
44
39
  - !ruby/object:Gem::Version
45
40
  version: '0'
46
41
  - !ruby/object:Gem::Dependency
47
42
  name: rubyzip
48
43
  requirement: !ruby/object:Gem::Requirement
49
- none: false
50
44
  requirements:
51
- - - ! '>='
45
+ - - ">="
52
46
  - !ruby/object:Gem::Version
53
47
  version: '0'
54
48
  type: :runtime
55
49
  prerelease: false
56
50
  version_requirements: !ruby/object:Gem::Requirement
57
- none: false
58
51
  requirements:
59
- - - ! '>='
52
+ - - ">="
60
53
  - !ruby/object:Gem::Version
61
54
  version: '0'
62
55
  - !ruby/object:Gem::Dependency
63
56
  name: builder
64
57
  requirement: !ruby/object:Gem::Requirement
65
- none: false
66
58
  requirements:
67
- - - ! '>='
59
+ - - ">="
68
60
  - !ruby/object:Gem::Version
69
61
  version: '0'
70
62
  type: :runtime
71
63
  prerelease: false
72
64
  version_requirements: !ruby/object:Gem::Requirement
73
- none: false
74
65
  requirements:
75
- - - ! '>='
66
+ - - ">="
76
67
  - !ruby/object:Gem::Version
77
68
  version: '0'
78
69
  - !ruby/object:Gem::Dependency
79
70
  name: nokogiri
80
71
  requirement: !ruby/object:Gem::Requirement
81
- none: false
82
72
  requirements:
83
- - - ! '>='
73
+ - - ">="
84
74
  - !ruby/object:Gem::Version
85
75
  version: '0'
86
76
  type: :runtime
87
77
  prerelease: false
88
78
  version_requirements: !ruby/object:Gem::Requirement
89
- none: false
90
79
  requirements:
91
- - - ! '>='
80
+ - - ">="
92
81
  - !ruby/object:Gem::Version
93
82
  version: '0'
94
83
  - !ruby/object:Gem::Dependency
95
84
  name: textstats
96
85
  requirement: !ruby/object:Gem::Requirement
97
- none: false
98
86
  requirements:
99
- - - ! '>='
87
+ - - ">="
100
88
  - !ruby/object:Gem::Version
101
89
  version: '0'
102
90
  type: :runtime
103
91
  prerelease: false
104
92
  version_requirements: !ruby/object:Gem::Requirement
105
- none: false
106
93
  requirements:
107
- - - ! '>='
94
+ - - ">="
108
95
  - !ruby/object:Gem::Version
109
96
  version: '0'
110
97
  - !ruby/object:Gem::Dependency
111
- name: typogruby
98
+ name: commander
112
99
  requirement: !ruby/object:Gem::Requirement
113
- none: false
114
100
  requirements:
115
- - - ! '>='
101
+ - - ">="
116
102
  - !ruby/object:Gem::Version
117
103
  version: '0'
118
104
  type: :runtime
119
105
  prerelease: false
120
106
  version_requirements: !ruby/object:Gem::Requirement
121
- none: false
122
107
  requirements:
123
- - - ! '>='
108
+ - - ">="
124
109
  - !ruby/object:Gem::Version
125
110
  version: '0'
126
111
  - !ruby/object:Gem::Dependency
127
112
  name: yard
128
113
  requirement: !ruby/object:Gem::Requirement
129
- none: false
130
114
  requirements:
131
- - - ! '>='
115
+ - - ">="
132
116
  - !ruby/object:Gem::Version
133
117
  version: '0'
134
118
  type: :development
135
119
  prerelease: false
136
120
  version_requirements: !ruby/object:Gem::Requirement
137
- none: false
138
121
  requirements:
139
- - - ! '>='
122
+ - - ">="
140
123
  - !ruby/object:Gem::Version
141
124
  version: '0'
142
125
  - !ruby/object:Gem::Dependency
143
126
  name: rspec
144
127
  requirement: !ruby/object:Gem::Requirement
145
- none: false
146
128
  requirements:
147
- - - ! '>='
129
+ - - "~>"
148
130
  - !ruby/object:Gem::Version
149
- version: '0'
131
+ version: '3.0'
150
132
  type: :development
151
133
  prerelease: false
152
134
  version_requirements: !ruby/object:Gem::Requirement
153
- none: false
154
135
  requirements:
155
- - - ! '>='
136
+ - - "~>"
156
137
  - !ruby/object:Gem::Version
157
- version: '0'
138
+ version: '3.0'
158
139
  - !ruby/object:Gem::Dependency
159
140
  name: rake
160
141
  requirement: !ruby/object:Gem::Requirement
161
- none: false
162
- requirements:
163
- - - ! '>='
164
- - !ruby/object:Gem::Version
165
- version: '0'
166
- type: :development
167
- prerelease: false
168
- version_requirements: !ruby/object:Gem::Requirement
169
- none: false
170
- requirements:
171
- - - ! '>='
172
- - !ruby/object:Gem::Version
173
- version: '0'
174
- - !ruby/object:Gem::Dependency
175
- name: guard
176
- requirement: !ruby/object:Gem::Requirement
177
- none: false
178
142
  requirements:
179
- - - ! '>='
143
+ - - ">="
180
144
  - !ruby/object:Gem::Version
181
145
  version: '0'
182
146
  type: :development
183
147
  prerelease: false
184
148
  version_requirements: !ruby/object:Gem::Requirement
185
- none: false
186
149
  requirements:
187
- - - ! '>='
150
+ - - ">="
188
151
  - !ruby/object:Gem::Version
189
152
  version: '0'
190
153
  - !ruby/object:Gem::Dependency
191
- name: guard-rspec
154
+ name: simplecov
192
155
  requirement: !ruby/object:Gem::Requirement
193
- none: false
194
156
  requirements:
195
- - - ! '>='
157
+ - - ">="
196
158
  - !ruby/object:Gem::Version
197
159
  version: '0'
198
160
  type: :development
199
161
  prerelease: false
200
162
  version_requirements: !ruby/object:Gem::Requirement
201
- none: false
202
163
  requirements:
203
- - - ! '>='
164
+ - - ">="
204
165
  - !ruby/object:Gem::Version
205
166
  version: '0'
206
167
  - !ruby/object:Gem::Dependency
207
- name: rb-fsevent
168
+ name: cucumber
208
169
  requirement: !ruby/object:Gem::Requirement
209
- none: false
210
170
  requirements:
211
- - - ! '>='
171
+ - - ">="
212
172
  - !ruby/object:Gem::Version
213
173
  version: '0'
214
174
  type: :development
215
175
  prerelease: false
216
176
  version_requirements: !ruby/object:Gem::Requirement
217
- none: false
218
177
  requirements:
219
- - - ! '>='
178
+ - - ">="
220
179
  - !ruby/object:Gem::Version
221
180
  version: '0'
222
181
  - !ruby/object:Gem::Dependency
223
- name: growl
182
+ name: aruba
224
183
  requirement: !ruby/object:Gem::Requirement
225
- none: false
226
184
  requirements:
227
- - - ! '>='
185
+ - - ">="
228
186
  - !ruby/object:Gem::Version
229
187
  version: '0'
230
188
  type: :development
231
189
  prerelease: false
232
190
  version_requirements: !ruby/object:Gem::Requirement
233
- none: false
234
191
  requirements:
235
- - - ! '>='
192
+ - - ">="
236
193
  - !ruby/object:Gem::Version
237
194
  version: '0'
238
195
  - !ruby/object:Gem::Dependency
239
- name: simplecov
196
+ name: coveralls
240
197
  requirement: !ruby/object:Gem::Requirement
241
- none: false
242
198
  requirements:
243
- - - ! '>='
199
+ - - ">="
244
200
  - !ruby/object:Gem::Version
245
201
  version: '0'
246
202
  type: :development
247
203
  prerelease: false
248
204
  version_requirements: !ruby/object:Gem::Requirement
249
- none: false
250
205
  requirements:
251
- - - ! '>='
206
+ - - ">="
252
207
  - !ruby/object:Gem::Version
253
208
  version: '0'
254
209
  description: an ePub generation library in Ruby
@@ -261,10 +216,10 @@ extra_rdoc_files:
261
216
  - README.md
262
217
  - HISTORY.md
263
218
  files:
264
- - .gitignore
265
- - .rspec
266
- - .travis.yml
267
- - .yardopts
219
+ - ".gitignore"
220
+ - ".rspec"
221
+ - ".travis.yml"
222
+ - ".yardopts"
268
223
  - Gemfile
269
224
  - Gemfile.lock
270
225
  - Guardfile
@@ -273,6 +228,55 @@ files:
273
228
  - README.md
274
229
  - Rakefile
275
230
  - bin/rpub
231
+ - doc/.gitignore
232
+ - doc/api/Rpub.html
233
+ - doc/api/Rpub/Book.html
234
+ - doc/api/Rpub/Chapter.html
235
+ - doc/api/Rpub/Command.html
236
+ - doc/api/Rpub/Commands.html
237
+ - doc/api/Rpub/Commands/Clean.html
238
+ - doc/api/Rpub/Commands/Compile.html
239
+ - doc/api/Rpub/Commands/Generate.html
240
+ - doc/api/Rpub/Commands/Package.html
241
+ - doc/api/Rpub/Commands/Preview.html
242
+ - doc/api/Rpub/Commands/Stats.html
243
+ - doc/api/Rpub/Compressor.html
244
+ - doc/api/Rpub/Context.html
245
+ - doc/api/Rpub/Document.html
246
+ - doc/api/Rpub/Document/OutlineElement.html
247
+ - doc/api/Rpub/Epub.html
248
+ - doc/api/Rpub/Epub/Container.html
249
+ - doc/api/Rpub/Epub/Content.html
250
+ - doc/api/Rpub/Epub/Cover.html
251
+ - doc/api/Rpub/Epub/HtmlToc.html
252
+ - doc/api/Rpub/Epub/Toc.html
253
+ - doc/api/Rpub/FilesystemSource.html
254
+ - doc/api/Rpub/HashDelegation.html
255
+ - doc/api/Rpub/HashDelegation/ClassMethods.html
256
+ - doc/api/Rpub/MediaType.html
257
+ - doc/api/Rpub/Preview.html
258
+ - doc/api/Rpub/XmlFile.html
259
+ - doc/api/_index.html
260
+ - doc/api/class_list.html
261
+ - doc/api/css/common.css
262
+ - doc/api/css/full_list.css
263
+ - doc/api/css/style.css
264
+ - doc/api/file.HISTORY.html
265
+ - doc/api/file.LICENSE.html
266
+ - doc/api/file.README.html
267
+ - doc/api/file_list.html
268
+ - doc/api/frames.html
269
+ - doc/api/index.html
270
+ - doc/api/js/app.js
271
+ - doc/api/js/full_list.js
272
+ - doc/api/js/jquery.js
273
+ - doc/api/method_list.html
274
+ - doc/api/top-level-namespace.html
275
+ - doc/index.html
276
+ - doc/javascripts/scale.fix.js
277
+ - doc/params.json
278
+ - doc/stylesheets/pygment_trac.css
279
+ - doc/stylesheets/styles.css
276
280
  - example/advanced/README
277
281
  - example/advanced/config.yml
278
282
  - example/advanced/layout.html
@@ -281,29 +285,41 @@ files:
281
285
  - example/simple/02-foo.md
282
286
  - example/simple/03-bar.md
283
287
  - example/simple/config.yml
288
+ - features/clean.feature
289
+ - features/compile.feature
290
+ - features/embedded_assets.feature
291
+ - features/generate.feature
292
+ - features/layout.feature
293
+ - features/package.feature
294
+ - features/previews.feature
295
+ - features/stats.feature
296
+ - features/step_definitions/general_steps.rb
297
+ - features/styles.feature
298
+ - features/support/env.rb
299
+ - features/table_of_contents.feature
284
300
  - lib/rpub.rb
285
301
  - lib/rpub/book.rb
286
302
  - lib/rpub/chapter.rb
287
- - lib/rpub/commander.rb
288
- - lib/rpub/commands/base.rb
303
+ - lib/rpub/command.rb
289
304
  - lib/rpub/commands/clean.rb
290
305
  - lib/rpub/commands/compile.rb
291
306
  - lib/rpub/commands/generate.rb
292
- - lib/rpub/commands/help.rb
293
- - lib/rpub/commands/main.rb
294
307
  - lib/rpub/commands/package.rb
295
308
  - lib/rpub/commands/preview.rb
296
309
  - lib/rpub/commands/stats.rb
297
- - lib/rpub/compilation_helpers.rb
298
310
  - lib/rpub/compressor.rb
311
+ - lib/rpub/context.rb
312
+ - lib/rpub/document.rb
299
313
  - lib/rpub/epub.rb
300
314
  - lib/rpub/epub/container.rb
301
315
  - lib/rpub/epub/content.rb
302
316
  - lib/rpub/epub/cover.rb
303
317
  - lib/rpub/epub/html_toc.rb
304
318
  - lib/rpub/epub/toc.rb
319
+ - lib/rpub/filesystem_source.rb
305
320
  - lib/rpub/hash_delegation.rb
306
- - lib/rpub/subclass_tracker.rb
321
+ - lib/rpub/media_type.rb
322
+ - lib/rpub/preview.rb
307
323
  - lib/rpub/version.rb
308
324
  - lib/rpub/xml_file.rb
309
325
  - rpub.gemspec
@@ -319,11 +335,6 @@ files:
319
335
  - spec/fixtures/preview/config.yml
320
336
  - spec/rpub/book_spec.rb
321
337
  - spec/rpub/chapter_spec.rb
322
- - spec/rpub/commands/clean_spec.rb
323
- - spec/rpub/commands/generate_spec.rb
324
- - spec/rpub/commands/main_spec.rb
325
- - spec/rpub/commands/package_spec.rb
326
- - spec/rpub/commands/preview_spec.rb
327
338
  - spec/rpub/epub/container_spec.rb
328
339
  - spec/rpub/epub/content_spec.rb
329
340
  - spec/rpub/epub/cover_spec.rb
@@ -336,40 +347,45 @@ files:
336
347
  - support/styles.css
337
348
  homepage: http://avdgaag.github.com/rpub
338
349
  licenses: []
350
+ metadata: {}
339
351
  post_install_message:
340
352
  rdoc_options:
341
- - --charset=UTF-8
353
+ - "--charset=UTF-8"
342
354
  require_paths:
343
355
  - lib
344
356
  required_ruby_version: !ruby/object:Gem::Requirement
345
- none: false
346
357
  requirements:
347
- - - ! '>='
358
+ - - ">="
348
359
  - !ruby/object:Gem::Version
349
360
  version: '0'
350
- segments:
351
- - 0
352
- hash: 2837060171432617966
353
361
  required_rubygems_version: !ruby/object:Gem::Requirement
354
- none: false
355
362
  requirements:
356
- - - ! '>='
363
+ - - ">="
357
364
  - !ruby/object:Gem::Version
358
365
  version: '0'
359
- segments:
360
- - 0
361
- hash: 2837060171432617966
362
366
  requirements: []
363
367
  rubyforge_project:
364
- rubygems_version: 1.8.24
368
+ rubygems_version: 2.4.4
365
369
  signing_key:
366
- specification_version: 3
367
- summary: ! 'rPub is a command-line tool that generates a collection of plain text
368
- input files into an eBook in ePub format. It provides several related functions
369
- to make working with ePub files a little easier: * Generation of table of contents
370
- * Packaging your eBook in an archive with additional README file * Embedding fonts
371
- * Easy previewing as you write'
370
+ specification_version: 4
371
+ summary: 'rPub is a command-line tool that generates a collection of plain text input
372
+ files into an eBook in ePub format. It provides several related functions to make
373
+ working with ePub files a little easier: * Generation of table of contents * Packaging
374
+ your eBook in an archive with additional README file * Embedding fonts * Easy previewing
375
+ as you write'
372
376
  test_files:
377
+ - features/clean.feature
378
+ - features/compile.feature
379
+ - features/embedded_assets.feature
380
+ - features/generate.feature
381
+ - features/layout.feature
382
+ - features/package.feature
383
+ - features/previews.feature
384
+ - features/stats.feature
385
+ - features/step_definitions/general_steps.rb
386
+ - features/styles.feature
387
+ - features/support/env.rb
388
+ - features/table_of_contents.feature
373
389
  - spec/fixtures/clean/config.yml
374
390
  - spec/fixtures/clean/example.epub
375
391
  - spec/fixtures/clean/preview.html
@@ -382,11 +398,6 @@ test_files:
382
398
  - spec/fixtures/preview/config.yml
383
399
  - spec/rpub/book_spec.rb
384
400
  - spec/rpub/chapter_spec.rb
385
- - spec/rpub/commands/clean_spec.rb
386
- - spec/rpub/commands/generate_spec.rb
387
- - spec/rpub/commands/main_spec.rb
388
- - spec/rpub/commands/package_spec.rb
389
- - spec/rpub/commands/preview_spec.rb
390
401
  - spec/rpub/epub/container_spec.rb
391
402
  - spec/rpub/epub/content_spec.rb
392
403
  - spec/rpub/epub/cover_spec.rb