├── .gitignore ├── .rspec ├── .travis.yml ├── .yardopts ├── Gemfile ├── Gemfile.lock ├── Guardfile ├── HISTORY.md ├── LICENSE ├── README.md ├── Rakefile ├── bin └── rpub ├── doc ├── .gitignore ├── api │ ├── Rpub.html │ ├── Rpub │ │ ├── Book.html │ │ ├── Chapter.html │ │ ├── Command.html │ │ ├── Commands.html │ │ ├── Commands │ │ │ ├── Clean.html │ │ │ ├── Compile.html │ │ │ ├── Generate.html │ │ │ ├── Package.html │ │ │ ├── Preview.html │ │ │ └── Stats.html │ │ ├── Compressor.html │ │ ├── Context.html │ │ ├── Document.html │ │ ├── Document │ │ │ └── OutlineElement.html │ │ ├── Epub.html │ │ ├── Epub │ │ │ ├── Container.html │ │ │ ├── Content.html │ │ │ ├── Cover.html │ │ │ ├── HtmlToc.html │ │ │ └── Toc.html │ │ ├── FilesystemSource.html │ │ ├── HashDelegation.html │ │ ├── HashDelegation │ │ │ └── ClassMethods.html │ │ ├── MediaType.html │ │ ├── Preview.html │ │ └── XmlFile.html │ ├── _index.html │ ├── class_list.html │ ├── css │ │ ├── common.css │ │ ├── full_list.css │ │ └── style.css │ ├── file.HISTORY.html │ ├── file.LICENSE.html │ ├── file.README.html │ ├── file_list.html │ ├── frames.html │ ├── index.html │ ├── js │ │ ├── app.js │ │ ├── full_list.js │ │ └── jquery.js │ ├── method_list.html │ └── top-level-namespace.html ├── index.html ├── javascripts │ └── scale.fix.js ├── params.json └── stylesheets │ ├── pygment_trac.css │ └── styles.css ├── example ├── advanced │ ├── README │ ├── config.yml │ ├── layout.html │ └── styles.css └── simple │ ├── 01-introduction.md │ ├── 02-foo.md │ ├── 03-bar.md │ └── config.yml ├── features ├── clean.feature ├── compile.feature ├── embedded_assets.feature ├── generate.feature ├── layout.feature ├── package.feature ├── previews.feature ├── stats.feature ├── step_definitions │ └── general_steps.rb ├── styles.feature ├── support │ └── env.rb └── table_of_contents.feature ├── lib ├── rpub.rb └── rpub │ ├── book.rb │ ├── chapter.rb │ ├── command.rb │ ├── commands │ ├── clean.rb │ ├── compile.rb │ ├── generate.rb │ ├── package.rb │ ├── preview.rb │ └── stats.rb │ ├── compressor.rb │ ├── context.rb │ ├── document.rb │ ├── epub.rb │ ├── epub │ ├── container.rb │ ├── content.rb │ ├── cover.rb │ ├── html_toc.rb │ └── toc.rb │ ├── filesystem_source.rb │ ├── hash_delegation.rb │ ├── media_type.rb │ ├── preview.rb │ ├── version.rb │ └── xml_file.rb ├── rpub.gemspec ├── spec ├── fixtures │ ├── clean │ │ ├── config.yml │ │ ├── example.epub │ │ └── preview.html │ ├── generate │ │ └── .gitkeep │ ├── no_files │ │ └── config.yml │ ├── package │ │ ├── README.md │ │ └── config.yml │ └── preview │ │ ├── a.md │ │ ├── b.md │ │ └── config.yml ├── rpub │ ├── book_spec.rb │ ├── chapter_spec.rb │ └── epub │ │ ├── container_spec.rb │ │ ├── content_spec.rb │ │ ├── cover_spec.rb │ │ ├── html_toc_spec.rb │ │ └── toc_spec.rb ├── rpub_spec.rb └── spec_helper.rb └── support ├── config.yml ├── layout.html └── styles.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/.rspec -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/.travis.yml -------------------------------------------------------------------------------- /.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/.yardopts -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/Guardfile -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/HISTORY.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/rpub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/bin/rpub -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/doc/.gitignore -------------------------------------------------------------------------------- /doc/api/Rpub.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/doc/api/Rpub.html -------------------------------------------------------------------------------- /doc/api/Rpub/Book.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/doc/api/Rpub/Book.html -------------------------------------------------------------------------------- /doc/api/Rpub/Chapter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/doc/api/Rpub/Chapter.html -------------------------------------------------------------------------------- /doc/api/Rpub/Command.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/doc/api/Rpub/Command.html -------------------------------------------------------------------------------- /doc/api/Rpub/Commands.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/doc/api/Rpub/Commands.html -------------------------------------------------------------------------------- /doc/api/Rpub/Commands/Clean.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/doc/api/Rpub/Commands/Clean.html -------------------------------------------------------------------------------- /doc/api/Rpub/Commands/Compile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/doc/api/Rpub/Commands/Compile.html -------------------------------------------------------------------------------- /doc/api/Rpub/Commands/Generate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/doc/api/Rpub/Commands/Generate.html -------------------------------------------------------------------------------- /doc/api/Rpub/Commands/Package.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/doc/api/Rpub/Commands/Package.html -------------------------------------------------------------------------------- /doc/api/Rpub/Commands/Preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/doc/api/Rpub/Commands/Preview.html -------------------------------------------------------------------------------- /doc/api/Rpub/Commands/Stats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/doc/api/Rpub/Commands/Stats.html -------------------------------------------------------------------------------- /doc/api/Rpub/Compressor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/doc/api/Rpub/Compressor.html -------------------------------------------------------------------------------- /doc/api/Rpub/Context.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/doc/api/Rpub/Context.html -------------------------------------------------------------------------------- /doc/api/Rpub/Document.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/doc/api/Rpub/Document.html -------------------------------------------------------------------------------- /doc/api/Rpub/Document/OutlineElement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/doc/api/Rpub/Document/OutlineElement.html -------------------------------------------------------------------------------- /doc/api/Rpub/Epub.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/doc/api/Rpub/Epub.html -------------------------------------------------------------------------------- /doc/api/Rpub/Epub/Container.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/doc/api/Rpub/Epub/Container.html -------------------------------------------------------------------------------- /doc/api/Rpub/Epub/Content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/doc/api/Rpub/Epub/Content.html -------------------------------------------------------------------------------- /doc/api/Rpub/Epub/Cover.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/doc/api/Rpub/Epub/Cover.html -------------------------------------------------------------------------------- /doc/api/Rpub/Epub/HtmlToc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/doc/api/Rpub/Epub/HtmlToc.html -------------------------------------------------------------------------------- /doc/api/Rpub/Epub/Toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/doc/api/Rpub/Epub/Toc.html -------------------------------------------------------------------------------- /doc/api/Rpub/FilesystemSource.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/doc/api/Rpub/FilesystemSource.html -------------------------------------------------------------------------------- /doc/api/Rpub/HashDelegation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/doc/api/Rpub/HashDelegation.html -------------------------------------------------------------------------------- /doc/api/Rpub/HashDelegation/ClassMethods.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/doc/api/Rpub/HashDelegation/ClassMethods.html -------------------------------------------------------------------------------- /doc/api/Rpub/MediaType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/doc/api/Rpub/MediaType.html -------------------------------------------------------------------------------- /doc/api/Rpub/Preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/doc/api/Rpub/Preview.html -------------------------------------------------------------------------------- /doc/api/Rpub/XmlFile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/doc/api/Rpub/XmlFile.html -------------------------------------------------------------------------------- /doc/api/_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/doc/api/_index.html -------------------------------------------------------------------------------- /doc/api/class_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/doc/api/class_list.html -------------------------------------------------------------------------------- /doc/api/css/common.css: -------------------------------------------------------------------------------- 1 | /* Override this file with custom rules */ -------------------------------------------------------------------------------- /doc/api/css/full_list.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/doc/api/css/full_list.css -------------------------------------------------------------------------------- /doc/api/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/doc/api/css/style.css -------------------------------------------------------------------------------- /doc/api/file.HISTORY.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/doc/api/file.HISTORY.html -------------------------------------------------------------------------------- /doc/api/file.LICENSE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/doc/api/file.LICENSE.html -------------------------------------------------------------------------------- /doc/api/file.README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/doc/api/file.README.html -------------------------------------------------------------------------------- /doc/api/file_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/doc/api/file_list.html -------------------------------------------------------------------------------- /doc/api/frames.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/doc/api/frames.html -------------------------------------------------------------------------------- /doc/api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/doc/api/index.html -------------------------------------------------------------------------------- /doc/api/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/doc/api/js/app.js -------------------------------------------------------------------------------- /doc/api/js/full_list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/doc/api/js/full_list.js -------------------------------------------------------------------------------- /doc/api/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/doc/api/js/jquery.js -------------------------------------------------------------------------------- /doc/api/method_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/doc/api/method_list.html -------------------------------------------------------------------------------- /doc/api/top-level-namespace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/doc/api/top-level-namespace.html -------------------------------------------------------------------------------- /doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/doc/index.html -------------------------------------------------------------------------------- /doc/javascripts/scale.fix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/doc/javascripts/scale.fix.js -------------------------------------------------------------------------------- /doc/params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/doc/params.json -------------------------------------------------------------------------------- /doc/stylesheets/pygment_trac.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/doc/stylesheets/pygment_trac.css -------------------------------------------------------------------------------- /doc/stylesheets/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/doc/stylesheets/styles.css -------------------------------------------------------------------------------- /example/advanced/README: -------------------------------------------------------------------------------- 1 | Example readme file 2 | -------------------------------------------------------------------------------- /example/advanced/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/example/advanced/config.yml -------------------------------------------------------------------------------- /example/advanced/layout.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/advanced/styles.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/simple/01-introduction.md: -------------------------------------------------------------------------------- 1 | # Introduction 2 | 3 | Lorem ipsum dolor sit amet. 4 | -------------------------------------------------------------------------------- /example/simple/02-foo.md: -------------------------------------------------------------------------------- 1 | # Introduction 2 | 3 | Lorem ipsum dolor sit amet. 4 | 5 | -------------------------------------------------------------------------------- /example/simple/03-bar.md: -------------------------------------------------------------------------------- 1 | # Introduction 2 | 3 | Lorem ipsum dolor sit amet. 4 | 5 | -------------------------------------------------------------------------------- /example/simple/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/example/simple/config.yml -------------------------------------------------------------------------------- /features/clean.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/features/clean.feature -------------------------------------------------------------------------------- /features/compile.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/features/compile.feature -------------------------------------------------------------------------------- /features/embedded_assets.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/features/embedded_assets.feature -------------------------------------------------------------------------------- /features/generate.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/features/generate.feature -------------------------------------------------------------------------------- /features/layout.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/features/layout.feature -------------------------------------------------------------------------------- /features/package.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/features/package.feature -------------------------------------------------------------------------------- /features/previews.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/features/previews.feature -------------------------------------------------------------------------------- /features/stats.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/features/stats.feature -------------------------------------------------------------------------------- /features/step_definitions/general_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/features/step_definitions/general_steps.rb -------------------------------------------------------------------------------- /features/styles.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/features/styles.feature -------------------------------------------------------------------------------- /features/support/env.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/features/support/env.rb -------------------------------------------------------------------------------- /features/table_of_contents.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/features/table_of_contents.feature -------------------------------------------------------------------------------- /lib/rpub.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/lib/rpub.rb -------------------------------------------------------------------------------- /lib/rpub/book.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/lib/rpub/book.rb -------------------------------------------------------------------------------- /lib/rpub/chapter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/lib/rpub/chapter.rb -------------------------------------------------------------------------------- /lib/rpub/command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/lib/rpub/command.rb -------------------------------------------------------------------------------- /lib/rpub/commands/clean.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/lib/rpub/commands/clean.rb -------------------------------------------------------------------------------- /lib/rpub/commands/compile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/lib/rpub/commands/compile.rb -------------------------------------------------------------------------------- /lib/rpub/commands/generate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/lib/rpub/commands/generate.rb -------------------------------------------------------------------------------- /lib/rpub/commands/package.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/lib/rpub/commands/package.rb -------------------------------------------------------------------------------- /lib/rpub/commands/preview.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/lib/rpub/commands/preview.rb -------------------------------------------------------------------------------- /lib/rpub/commands/stats.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/lib/rpub/commands/stats.rb -------------------------------------------------------------------------------- /lib/rpub/compressor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/lib/rpub/compressor.rb -------------------------------------------------------------------------------- /lib/rpub/context.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/lib/rpub/context.rb -------------------------------------------------------------------------------- /lib/rpub/document.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/lib/rpub/document.rb -------------------------------------------------------------------------------- /lib/rpub/epub.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/lib/rpub/epub.rb -------------------------------------------------------------------------------- /lib/rpub/epub/container.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/lib/rpub/epub/container.rb -------------------------------------------------------------------------------- /lib/rpub/epub/content.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/lib/rpub/epub/content.rb -------------------------------------------------------------------------------- /lib/rpub/epub/cover.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/lib/rpub/epub/cover.rb -------------------------------------------------------------------------------- /lib/rpub/epub/html_toc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/lib/rpub/epub/html_toc.rb -------------------------------------------------------------------------------- /lib/rpub/epub/toc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/lib/rpub/epub/toc.rb -------------------------------------------------------------------------------- /lib/rpub/filesystem_source.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/lib/rpub/filesystem_source.rb -------------------------------------------------------------------------------- /lib/rpub/hash_delegation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/lib/rpub/hash_delegation.rb -------------------------------------------------------------------------------- /lib/rpub/media_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/lib/rpub/media_type.rb -------------------------------------------------------------------------------- /lib/rpub/preview.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/lib/rpub/preview.rb -------------------------------------------------------------------------------- /lib/rpub/version.rb: -------------------------------------------------------------------------------- 1 | module Rpub 2 | VERSION = '0.5.0' 3 | end 4 | -------------------------------------------------------------------------------- /lib/rpub/xml_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/lib/rpub/xml_file.rb -------------------------------------------------------------------------------- /rpub.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/rpub.gemspec -------------------------------------------------------------------------------- /spec/fixtures/clean/config.yml: -------------------------------------------------------------------------------- 1 | --- 2 | title: example 3 | -------------------------------------------------------------------------------- /spec/fixtures/clean/example.epub: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/clean/preview.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/generate/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/no_files/config.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /spec/fixtures/package/README.md: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /spec/fixtures/package/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/spec/fixtures/package/config.yml -------------------------------------------------------------------------------- /spec/fixtures/preview/a.md: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /spec/fixtures/preview/b.md: -------------------------------------------------------------------------------- 1 | bar 2 | -------------------------------------------------------------------------------- /spec/fixtures/preview/config.yml: -------------------------------------------------------------------------------- 1 | --- 2 | title: foo 3 | -------------------------------------------------------------------------------- /spec/rpub/book_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/spec/rpub/book_spec.rb -------------------------------------------------------------------------------- /spec/rpub/chapter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/spec/rpub/chapter_spec.rb -------------------------------------------------------------------------------- /spec/rpub/epub/container_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/spec/rpub/epub/container_spec.rb -------------------------------------------------------------------------------- /spec/rpub/epub/content_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/spec/rpub/epub/content_spec.rb -------------------------------------------------------------------------------- /spec/rpub/epub/cover_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/spec/rpub/epub/cover_spec.rb -------------------------------------------------------------------------------- /spec/rpub/epub/html_toc_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/spec/rpub/epub/html_toc_spec.rb -------------------------------------------------------------------------------- /spec/rpub/epub/toc_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/spec/rpub/epub/toc_spec.rb -------------------------------------------------------------------------------- /spec/rpub_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/spec/rpub_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /support/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/support/config.yml -------------------------------------------------------------------------------- /support/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/support/layout.html -------------------------------------------------------------------------------- /support/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdgaag/rpub/HEAD/support/styles.css --------------------------------------------------------------------------------