bookshop 0.0.9.1 → 0.0.11
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +13 -0
- data/README.rdoc +1 -1
- data/bookshop.gemspec +5 -5
- data/lib/bookshop/generators/bookshop/app/app_generator.rb +4 -3
- data/lib/bookshop/version.rb +1 -1
- metadata +7 -9
- data/DISTRIBUTION +0 -21
data/CHANGELOG
CHANGED
@@ -1,3 +1,16 @@
|
|
1
|
+
0.0.11:
|
2
|
+
Complete rewrite
|
3
|
+
Switched from docbook toolchain to html/css/javascript toolchain
|
4
|
+
|
5
|
+
Removed all XML/XSLT/FOP dependencies since no longer using docbook
|
6
|
+
|
7
|
+
Added wkhtmltopdf as the html-to-pdf processor
|
8
|
+
|
9
|
+
Added Boom(.css) microformat to replace structural markup previously
|
10
|
+
available via docbook
|
11
|
+
|
12
|
+
Moved copyright to BlueHead Inc
|
13
|
+
|
1
14
|
0.0.4:
|
2
15
|
Core Changes
|
3
16
|
Added new mobi build
|
data/README.rdoc
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
== Welcome to bookshop
|
2
2
|
|
3
|
-
bookShop is
|
3
|
+
bookShop is a publishing framework for html-to-(e)book toolchain happiness and sustainable productivity. The framework is optimized to help developers quickly ramp-up, allowing them to more rapidly jump in and develop their html-to-(e)book (print-pdf, epub, mobi, etc.) flows, by favoring convention over configuration, setting them up with best practices, standards and tools from the start.
|
4
4
|
|
5
5
|
bookshop hopes to simplify the process by:
|
6
6
|
* providing a Ruby Gem to make building a book from HTML as easy as 'sudo gem install bookshop'
|
data/bookshop.gemspec
CHANGED
@@ -8,12 +8,12 @@ Gem::Specification.new do |s|
|
|
8
8
|
s.authors = ['D.a. Thompson']
|
9
9
|
s.email = ['git@worlduniting.org']
|
10
10
|
s.homepage = "http://rubygems.org/gems/bookshop"
|
11
|
-
s.summary = "
|
12
|
-
s.description = "bookShop is
|
11
|
+
s.summary = "A publishing framework for html-to-(e)book toolchain happiness and sustainable productivity."
|
12
|
+
s.description = "bookShop is a publishing framework for html-to-(e)book toolchain happiness and sustainable productivity.
|
13
13
|
The framework is optimized to help developers quickly ramp-up, allowing them to more rapidly
|
14
|
-
jump in and develop their
|
15
|
-
configuration, setting them up with best practices, standards and
|
16
|
-
|
14
|
+
jump in and develop their html-to-(e)book (print-pdf, epub, mobi, etc.) flows, by favoring convention over
|
15
|
+
configuration, setting them up with best practices, standards and tools from the start."
|
16
|
+
s.license = "MIT"
|
17
17
|
|
18
18
|
s.required_rubygems_version = ">= 1.3.6"
|
19
19
|
s.rubyforge_project = "bookshop"
|
@@ -3,7 +3,8 @@ require 'thor/group'
|
|
3
3
|
|
4
4
|
module Bookshop
|
5
5
|
module Generators
|
6
|
-
|
6
|
+
# Thor based generator for creating new projects based upon a template project which
|
7
|
+
# is copied into the name_of_book project-folder when 'build new name_of_book' is issued
|
7
8
|
class AppGenerator < Thor::Group
|
8
9
|
include Thor::Actions
|
9
10
|
|
@@ -21,12 +22,12 @@ module Bookshop
|
|
21
22
|
directory "templates", "#{app_path}"
|
22
23
|
end
|
23
24
|
|
24
|
-
# Adds
|
25
|
+
# Adds third-party tools
|
25
26
|
def add_tools
|
26
27
|
directory "tools/", "#{app_path}/tools/"
|
27
28
|
end
|
28
29
|
|
29
|
-
# Change the permissions so
|
30
|
+
# Change the permissions so tools are executable
|
30
31
|
def chmod_tools
|
31
32
|
chmod "#{app_path}/tools/epubcheck-1.2.jar", 0755
|
32
33
|
chmod "#{app_path}/tools/kindlegen", 0755
|
data/lib/bookshop/version.rb
CHANGED
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: bookshop
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 0.0.
|
5
|
+
version: 0.0.11
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- D.a. Thompson
|
@@ -46,11 +46,10 @@ dependencies:
|
|
46
46
|
type: :development
|
47
47
|
version_requirements: *id003
|
48
48
|
description: |-
|
49
|
-
bookShop is
|
49
|
+
bookShop is a publishing framework for html-to-(e)book toolchain happiness and sustainable productivity.
|
50
50
|
The framework is optimized to help developers quickly ramp-up, allowing them to more rapidly
|
51
|
-
jump in and develop their
|
52
|
-
configuration, setting them up with best practices, standards and
|
53
|
-
tools from the get-go. This gem is brought to you by D.a. Thompson.
|
51
|
+
jump in and develop their html-to-(e)book (print-pdf, epub, mobi, etc.) flows, by favoring convention over
|
52
|
+
configuration, setting them up with best practices, standards and tools from the start.
|
54
53
|
email:
|
55
54
|
- git@worlduniting.org
|
56
55
|
executables:
|
@@ -62,7 +61,6 @@ extra_rdoc_files: []
|
|
62
61
|
files:
|
63
62
|
- .gitignore
|
64
63
|
- CHANGELOG
|
65
|
-
- DISTRIBUTION
|
66
64
|
- Gemfile
|
67
65
|
- MIT-LICENSE
|
68
66
|
- POST_INSTALL
|
@@ -106,8 +104,8 @@ files:
|
|
106
104
|
- lib/bookshop/script_bookshop_loader.rb
|
107
105
|
- lib/bookshop/version.rb
|
108
106
|
homepage: http://rubygems.org/gems/bookshop
|
109
|
-
licenses:
|
110
|
-
|
107
|
+
licenses:
|
108
|
+
- MIT
|
111
109
|
post_install_message:
|
112
110
|
rdoc_options: []
|
113
111
|
|
@@ -131,6 +129,6 @@ rubyforge_project: bookshop
|
|
131
129
|
rubygems_version: 1.8.5
|
132
130
|
signing_key:
|
133
131
|
specification_version: 3
|
134
|
-
summary:
|
132
|
+
summary: A publishing framework for html-to-(e)book toolchain happiness and sustainable productivity.
|
135
133
|
test_files: []
|
136
134
|
|