yuzu 0.2.1.pre
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.document +5 -0
- data/.yardopts +7 -0
- data/ChangeLog.md +8 -0
- data/Gemfile +26 -0
- data/Gemfile.lock +30 -0
- data/LICENSE.txt +20 -0
- data/README.md +52 -0
- data/Rakefile +62 -0
- data/bin/yuzu +17 -0
- data/docs/About.md +19 -0
- data/docs/GettingStarted.md +48 -0
- data/docs/Reference.md +97 -0
- data/lib/helpers/object.rb +19 -0
- data/lib/helpers/path.rb +296 -0
- data/lib/helpers/string.rb +35 -0
- data/lib/helpers/system_checks.rb +10 -0
- data/lib/helpers/url.rb +64 -0
- data/lib/html/base.rb +187 -0
- data/lib/uploader/base.rb +59 -0
- data/lib/uploader/config.rb +19 -0
- data/lib/uploader/filesystem_service.rb +72 -0
- data/lib/uploader/ftp_service.rb +90 -0
- data/lib/uploader/s3_service.rb +135 -0
- data/lib/uploader/service.rb +57 -0
- data/lib/uploader/suppressor.rb +25 -0
- data/lib/yuzu.rb +6 -0
- data/lib/yuzu/argparse.rb +60 -0
- data/lib/yuzu/command.rb +104 -0
- data/lib/yuzu/commands/base.rb +150 -0
- data/lib/yuzu/commands/create.rb +68 -0
- data/lib/yuzu/commands/generate.rb +95 -0
- data/lib/yuzu/commands/help.rb +20 -0
- data/lib/yuzu/commands/preview.rb +58 -0
- data/lib/yuzu/commands/publish.rb +43 -0
- data/lib/yuzu/commands/stage.rb +62 -0
- data/lib/yuzu/commands/watch.rb +70 -0
- data/lib/yuzu/content/blog_post.rb +45 -0
- data/lib/yuzu/content/sample_project.rb +130 -0
- data/lib/yuzu/core/config.rb +154 -0
- data/lib/yuzu/core/layout.rb +85 -0
- data/lib/yuzu/core/paginated_file.rb +69 -0
- data/lib/yuzu/core/registrar.rb +32 -0
- data/lib/yuzu/core/siteroot.rb +57 -0
- data/lib/yuzu/core/template.rb +158 -0
- data/lib/yuzu/core/updater.rb +123 -0
- data/lib/yuzu/core/visitor.rb +44 -0
- data/lib/yuzu/core/website_base.rb +150 -0
- data/lib/yuzu/core/website_file.rb +270 -0
- data/lib/yuzu/core/website_folder.rb +176 -0
- data/lib/yuzu/filters/base.rb +86 -0
- data/lib/yuzu/filters/catalog.rb +248 -0
- data/lib/yuzu/filters/categories.rb +58 -0
- data/lib/yuzu/filters/currentpath.rb +35 -0
- data/lib/yuzu/filters/description.rb +16 -0
- data/lib/yuzu/filters/extension.rb +16 -0
- data/lib/yuzu/filters/images.rb +32 -0
- data/lib/yuzu/filters/linkroot.rb +35 -0
- data/lib/yuzu/filters/post_date.rb +45 -0
- data/lib/yuzu/filters/post_title.rb +66 -0
- data/lib/yuzu/filters/post_title_removed.rb +28 -0
- data/lib/yuzu/filters/sidebar.rb +26 -0
- data/lib/yuzu/filters/template.rb +16 -0
- data/lib/yuzu/generators/base.rb +44 -0
- data/lib/yuzu/generators/category_folders.rb +91 -0
- data/lib/yuzu/generators/index.rb +108 -0
- data/lib/yuzu/generators/paginate.rb +136 -0
- data/lib/yuzu/postprocessors/all_categories.rb +48 -0
- data/lib/yuzu/postprocessors/base.rb +34 -0
- data/lib/yuzu/postprocessors/contents_without_first_paragraph.rb +20 -0
- data/lib/yuzu/postprocessors/excerpt.rb +23 -0
- data/lib/yuzu/postprocessors/first_paragraph.rb +16 -0
- data/lib/yuzu/postprocessors/pagination.rb +35 -0
- data/lib/yuzu/postprocessors/recent_posts.rb +27 -0
- data/lib/yuzu/postprocessors/thumbnails.rb +48 -0
- data/lib/yuzu/preprocessors/base.rb +71 -0
- data/lib/yuzu/preprocessors/insert_contents.rb +57 -0
- data/lib/yuzu/renderers/base.rb +23 -0
- data/lib/yuzu/renderers/breadcrumb.rb +163 -0
- data/lib/yuzu/renderers/gallery.rb +24 -0
- data/lib/yuzu/renderers/title.rb +21 -0
- data/lib/yuzu/translators/base.rb +57 -0
- data/lib/yuzu/translators/markdown.rb +21 -0
- data/lib/yuzu/translators/plaintext.rb +17 -0
- data/lib/yuzu/version.rb +12 -0
- data/resources/config/compass.rb +6 -0
- data/resources/config/yuzu.yml +166 -0
- data/resources/git/post-commit +42 -0
- data/resources/sample_content/introduction/_snippets/about_insert_contents.md +3 -0
- data/resources/sample_content/introduction/about.md +6 -0
- data/resources/sample_content/introduction/advanced-posts.md +18 -0
- data/resources/sample_content/introduction/blog/blog-folder-is-special.md +8 -0
- data/resources/sample_content/introduction/getting-started.md +14 -0
- data/resources/sample_content/introduction/index.md +6 -0
- data/resources/sample_content/introduction/sample-post.md +13 -0
- data/resources/sample_projects.yml +7 -0
- data/resources/themes/minimal/_sass/print.sass +0 -0
- data/resources/themes/minimal/_sass/screen.sass +81 -0
- data/resources/themes/minimal/_templates/_block.haml +4 -0
- data/resources/themes/minimal/_templates/_blog.haml +3 -0
- data/resources/themes/minimal/_templates/_footer.haml +2 -0
- data/resources/themes/minimal/_templates/_gallery.haml +25 -0
- data/resources/themes/minimal/_templates/_head.haml +12 -0
- data/resources/themes/minimal/_templates/_header.haml +1 -0
- data/resources/themes/minimal/_templates/_menu.haml +6 -0
- data/resources/themes/minimal/_templates/blog.haml +21 -0
- data/resources/themes/minimal/_templates/generic.haml +26 -0
- data/resources/themes/minimal/_templates/home.haml +15 -0
- data/resources/themes/minimal/_templates/index.haml +21 -0
- data/resources/themes/minimal/css/print.css +0 -0
- data/resources/themes/minimal/css/screen.css +133 -0
- data/resources/themes/minimal/img/favicon.png +0 -0
- data/resources/yard/default/fulldoc/html/css/common.css +16 -0
- data/test/helper.rb +18 -0
- data/test/test_yuzu.rb +8 -0
- data/yuzu.gemspec +182 -0
- metadata +302 -0
|
Binary file
|
data/test/helper.rb
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
require 'rubygems'
|
|
2
|
+
require 'bundler'
|
|
3
|
+
begin
|
|
4
|
+
Bundler.setup(:default, :development)
|
|
5
|
+
rescue Bundler::BundlerError => e
|
|
6
|
+
$stderr.puts e.message
|
|
7
|
+
$stderr.puts "Run `bundle install` to install missing gems"
|
|
8
|
+
exit e.status_code
|
|
9
|
+
end
|
|
10
|
+
require 'test/unit'
|
|
11
|
+
require 'shoulda'
|
|
12
|
+
|
|
13
|
+
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
|
14
|
+
$LOAD_PATH.unshift(File.dirname(__FILE__))
|
|
15
|
+
require 'yuzu'
|
|
16
|
+
|
|
17
|
+
class Test::Unit::TestCase
|
|
18
|
+
end
|
data/test/test_yuzu.rb
ADDED
data/yuzu.gemspec
ADDED
|
@@ -0,0 +1,182 @@
|
|
|
1
|
+
# Generated by jeweler
|
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
|
+
# -*- encoding: utf-8 -*-
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |s|
|
|
7
|
+
s.name = %q{yuzu}
|
|
8
|
+
s.version = "0.2.1.pre"
|
|
9
|
+
|
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
|
|
11
|
+
s.authors = ["William Martin"]
|
|
12
|
+
s.date = %q{2013-02-12}
|
|
13
|
+
s.default_executable = %q{yuzu}
|
|
14
|
+
s.description = %q{Yuzu is a blog-aware, static-website (and PDF) generator that converts a folder of text files and images into multiple forms and publishes them to an FTP server, file system, or Amazon Simple Storage Service (S3). It is extensible and designed to function with minimal setup.}
|
|
15
|
+
s.email = %q{william.martin@anomalus.com}
|
|
16
|
+
s.executables = ["yuzu"]
|
|
17
|
+
s.extra_rdoc_files = [
|
|
18
|
+
"ChangeLog.md",
|
|
19
|
+
"LICENSE.txt",
|
|
20
|
+
"README.md"
|
|
21
|
+
]
|
|
22
|
+
s.files = [
|
|
23
|
+
".document",
|
|
24
|
+
".yardopts",
|
|
25
|
+
"ChangeLog.md",
|
|
26
|
+
"Gemfile",
|
|
27
|
+
"Gemfile.lock",
|
|
28
|
+
"LICENSE.txt",
|
|
29
|
+
"README.md",
|
|
30
|
+
"Rakefile",
|
|
31
|
+
"bin/yuzu",
|
|
32
|
+
"docs/About.md",
|
|
33
|
+
"docs/GettingStarted.md",
|
|
34
|
+
"docs/Reference.md",
|
|
35
|
+
"lib/helpers/object.rb",
|
|
36
|
+
"lib/helpers/path.rb",
|
|
37
|
+
"lib/helpers/string.rb",
|
|
38
|
+
"lib/helpers/system_checks.rb",
|
|
39
|
+
"lib/helpers/url.rb",
|
|
40
|
+
"lib/html/base.rb",
|
|
41
|
+
"lib/uploader/base.rb",
|
|
42
|
+
"lib/uploader/config.rb",
|
|
43
|
+
"lib/uploader/filesystem_service.rb",
|
|
44
|
+
"lib/uploader/ftp_service.rb",
|
|
45
|
+
"lib/uploader/s3_service.rb",
|
|
46
|
+
"lib/uploader/service.rb",
|
|
47
|
+
"lib/uploader/suppressor.rb",
|
|
48
|
+
"lib/yuzu.rb",
|
|
49
|
+
"lib/yuzu/argparse.rb",
|
|
50
|
+
"lib/yuzu/command.rb",
|
|
51
|
+
"lib/yuzu/commands/base.rb",
|
|
52
|
+
"lib/yuzu/commands/create.rb",
|
|
53
|
+
"lib/yuzu/commands/generate.rb",
|
|
54
|
+
"lib/yuzu/commands/help.rb",
|
|
55
|
+
"lib/yuzu/commands/preview.rb",
|
|
56
|
+
"lib/yuzu/commands/publish.rb",
|
|
57
|
+
"lib/yuzu/commands/stage.rb",
|
|
58
|
+
"lib/yuzu/commands/watch.rb",
|
|
59
|
+
"lib/yuzu/content/blog_post.rb",
|
|
60
|
+
"lib/yuzu/content/sample_project.rb",
|
|
61
|
+
"lib/yuzu/core/config.rb",
|
|
62
|
+
"lib/yuzu/core/layout.rb",
|
|
63
|
+
"lib/yuzu/core/paginated_file.rb",
|
|
64
|
+
"lib/yuzu/core/registrar.rb",
|
|
65
|
+
"lib/yuzu/core/siteroot.rb",
|
|
66
|
+
"lib/yuzu/core/template.rb",
|
|
67
|
+
"lib/yuzu/core/updater.rb",
|
|
68
|
+
"lib/yuzu/core/visitor.rb",
|
|
69
|
+
"lib/yuzu/core/website_base.rb",
|
|
70
|
+
"lib/yuzu/core/website_file.rb",
|
|
71
|
+
"lib/yuzu/core/website_folder.rb",
|
|
72
|
+
"lib/yuzu/filters/base.rb",
|
|
73
|
+
"lib/yuzu/filters/catalog.rb",
|
|
74
|
+
"lib/yuzu/filters/categories.rb",
|
|
75
|
+
"lib/yuzu/filters/currentpath.rb",
|
|
76
|
+
"lib/yuzu/filters/description.rb",
|
|
77
|
+
"lib/yuzu/filters/extension.rb",
|
|
78
|
+
"lib/yuzu/filters/images.rb",
|
|
79
|
+
"lib/yuzu/filters/linkroot.rb",
|
|
80
|
+
"lib/yuzu/filters/post_date.rb",
|
|
81
|
+
"lib/yuzu/filters/post_title.rb",
|
|
82
|
+
"lib/yuzu/filters/post_title_removed.rb",
|
|
83
|
+
"lib/yuzu/filters/sidebar.rb",
|
|
84
|
+
"lib/yuzu/filters/template.rb",
|
|
85
|
+
"lib/yuzu/generators/base.rb",
|
|
86
|
+
"lib/yuzu/generators/category_folders.rb",
|
|
87
|
+
"lib/yuzu/generators/index.rb",
|
|
88
|
+
"lib/yuzu/generators/paginate.rb",
|
|
89
|
+
"lib/yuzu/postprocessors/all_categories.rb",
|
|
90
|
+
"lib/yuzu/postprocessors/base.rb",
|
|
91
|
+
"lib/yuzu/postprocessors/contents_without_first_paragraph.rb",
|
|
92
|
+
"lib/yuzu/postprocessors/excerpt.rb",
|
|
93
|
+
"lib/yuzu/postprocessors/first_paragraph.rb",
|
|
94
|
+
"lib/yuzu/postprocessors/pagination.rb",
|
|
95
|
+
"lib/yuzu/postprocessors/recent_posts.rb",
|
|
96
|
+
"lib/yuzu/postprocessors/thumbnails.rb",
|
|
97
|
+
"lib/yuzu/preprocessors/base.rb",
|
|
98
|
+
"lib/yuzu/preprocessors/insert_contents.rb",
|
|
99
|
+
"lib/yuzu/renderers/base.rb",
|
|
100
|
+
"lib/yuzu/renderers/breadcrumb.rb",
|
|
101
|
+
"lib/yuzu/renderers/gallery.rb",
|
|
102
|
+
"lib/yuzu/renderers/title.rb",
|
|
103
|
+
"lib/yuzu/translators/base.rb",
|
|
104
|
+
"lib/yuzu/translators/markdown.rb",
|
|
105
|
+
"lib/yuzu/translators/plaintext.rb",
|
|
106
|
+
"lib/yuzu/version.rb",
|
|
107
|
+
"resources/config/compass.rb",
|
|
108
|
+
"resources/config/yuzu.yml",
|
|
109
|
+
"resources/git/post-commit",
|
|
110
|
+
"resources/sample_content/introduction/_snippets/about_insert_contents.md",
|
|
111
|
+
"resources/sample_content/introduction/about.md",
|
|
112
|
+
"resources/sample_content/introduction/advanced-posts.md",
|
|
113
|
+
"resources/sample_content/introduction/blog/blog-folder-is-special.md",
|
|
114
|
+
"resources/sample_content/introduction/getting-started.md",
|
|
115
|
+
"resources/sample_content/introduction/index.md",
|
|
116
|
+
"resources/sample_content/introduction/sample-post.md",
|
|
117
|
+
"resources/sample_projects.yml",
|
|
118
|
+
"resources/themes/minimal/_sass/print.sass",
|
|
119
|
+
"resources/themes/minimal/_sass/screen.sass",
|
|
120
|
+
"resources/themes/minimal/_templates/_block.haml",
|
|
121
|
+
"resources/themes/minimal/_templates/_blog.haml",
|
|
122
|
+
"resources/themes/minimal/_templates/_footer.haml",
|
|
123
|
+
"resources/themes/minimal/_templates/_gallery.haml",
|
|
124
|
+
"resources/themes/minimal/_templates/_head.haml",
|
|
125
|
+
"resources/themes/minimal/_templates/_header.haml",
|
|
126
|
+
"resources/themes/minimal/_templates/_menu.haml",
|
|
127
|
+
"resources/themes/minimal/_templates/blog.haml",
|
|
128
|
+
"resources/themes/minimal/_templates/generic.haml",
|
|
129
|
+
"resources/themes/minimal/_templates/home.haml",
|
|
130
|
+
"resources/themes/minimal/_templates/index.haml",
|
|
131
|
+
"resources/themes/minimal/css/print.css",
|
|
132
|
+
"resources/themes/minimal/css/screen.css",
|
|
133
|
+
"resources/themes/minimal/img/favicon.png",
|
|
134
|
+
"resources/yard/default/fulldoc/html/css/common.css",
|
|
135
|
+
"test/helper.rb",
|
|
136
|
+
"test/test_yuzu.rb",
|
|
137
|
+
"yuzu.gemspec"
|
|
138
|
+
]
|
|
139
|
+
s.homepage = %q{http://github.com/awmartin/yuzu}
|
|
140
|
+
s.licenses = ["MIT"]
|
|
141
|
+
s.require_paths = ["lib"]
|
|
142
|
+
s.rubygems_version = %q{1.3.6}
|
|
143
|
+
s.summary = %q{A blog-aware, static-website generator that converts a folder of text files and images into an HTML5 website.}
|
|
144
|
+
|
|
145
|
+
if s.respond_to? :specification_version then
|
|
146
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
147
|
+
s.specification_version = 3
|
|
148
|
+
|
|
149
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
|
150
|
+
s.add_runtime_dependency(%q<haml>, [">= 3.1.7"])
|
|
151
|
+
s.add_runtime_dependency(%q<kramdown>, [">= 0.13.7"])
|
|
152
|
+
s.add_development_dependency(%q<shoulda>, [">= 0"])
|
|
153
|
+
s.add_development_dependency(%q<bundler>, ["~> 1.2.3"])
|
|
154
|
+
s.add_development_dependency(%q<jeweler>, ["~> 1.8.4"])
|
|
155
|
+
s.add_development_dependency(%q<rcov>, [">= 0"])
|
|
156
|
+
s.add_development_dependency(%q<yard>, [">= 0.8.3"])
|
|
157
|
+
s.add_runtime_dependency(%q<kramdown>, [">= 0.13.7"])
|
|
158
|
+
s.add_runtime_dependency(%q<haml>, [">= 3.1.1"])
|
|
159
|
+
else
|
|
160
|
+
s.add_dependency(%q<haml>, [">= 3.1.7"])
|
|
161
|
+
s.add_dependency(%q<kramdown>, [">= 0.13.7"])
|
|
162
|
+
s.add_dependency(%q<shoulda>, [">= 0"])
|
|
163
|
+
s.add_dependency(%q<bundler>, ["~> 1.2.3"])
|
|
164
|
+
s.add_dependency(%q<jeweler>, ["~> 1.8.4"])
|
|
165
|
+
s.add_dependency(%q<rcov>, [">= 0"])
|
|
166
|
+
s.add_dependency(%q<yard>, [">= 0.8.3"])
|
|
167
|
+
s.add_dependency(%q<kramdown>, [">= 0.13.7"])
|
|
168
|
+
s.add_dependency(%q<haml>, [">= 3.1.1"])
|
|
169
|
+
end
|
|
170
|
+
else
|
|
171
|
+
s.add_dependency(%q<haml>, [">= 3.1.7"])
|
|
172
|
+
s.add_dependency(%q<kramdown>, [">= 0.13.7"])
|
|
173
|
+
s.add_dependency(%q<shoulda>, [">= 0"])
|
|
174
|
+
s.add_dependency(%q<bundler>, ["~> 1.2.3"])
|
|
175
|
+
s.add_dependency(%q<jeweler>, ["~> 1.8.4"])
|
|
176
|
+
s.add_dependency(%q<rcov>, [">= 0"])
|
|
177
|
+
s.add_dependency(%q<yard>, [">= 0.8.3"])
|
|
178
|
+
s.add_dependency(%q<kramdown>, [">= 0.13.7"])
|
|
179
|
+
s.add_dependency(%q<haml>, [">= 3.1.1"])
|
|
180
|
+
end
|
|
181
|
+
end
|
|
182
|
+
|
metadata
ADDED
|
@@ -0,0 +1,302 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: yuzu
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
prerelease: true
|
|
5
|
+
segments:
|
|
6
|
+
- 0
|
|
7
|
+
- 2
|
|
8
|
+
- 1
|
|
9
|
+
- pre
|
|
10
|
+
version: 0.2.1.pre
|
|
11
|
+
platform: ruby
|
|
12
|
+
authors:
|
|
13
|
+
- William Martin
|
|
14
|
+
autorequire:
|
|
15
|
+
bindir: bin
|
|
16
|
+
cert_chain: []
|
|
17
|
+
|
|
18
|
+
date: 2013-02-12 00:00:00 -05:00
|
|
19
|
+
default_executable: yuzu
|
|
20
|
+
dependencies:
|
|
21
|
+
- !ruby/object:Gem::Dependency
|
|
22
|
+
prerelease: false
|
|
23
|
+
type: :runtime
|
|
24
|
+
name: haml
|
|
25
|
+
version_requirements: &id001 !ruby/object:Gem::Requirement
|
|
26
|
+
requirements:
|
|
27
|
+
- - ">="
|
|
28
|
+
- !ruby/object:Gem::Version
|
|
29
|
+
segments:
|
|
30
|
+
- 3
|
|
31
|
+
- 1
|
|
32
|
+
- 7
|
|
33
|
+
version: 3.1.7
|
|
34
|
+
requirement: *id001
|
|
35
|
+
- !ruby/object:Gem::Dependency
|
|
36
|
+
prerelease: false
|
|
37
|
+
type: :runtime
|
|
38
|
+
name: kramdown
|
|
39
|
+
version_requirements: &id002 !ruby/object:Gem::Requirement
|
|
40
|
+
requirements:
|
|
41
|
+
- - ">="
|
|
42
|
+
- !ruby/object:Gem::Version
|
|
43
|
+
segments:
|
|
44
|
+
- 0
|
|
45
|
+
- 13
|
|
46
|
+
- 7
|
|
47
|
+
version: 0.13.7
|
|
48
|
+
requirement: *id002
|
|
49
|
+
- !ruby/object:Gem::Dependency
|
|
50
|
+
prerelease: false
|
|
51
|
+
type: :development
|
|
52
|
+
name: shoulda
|
|
53
|
+
version_requirements: &id003 !ruby/object:Gem::Requirement
|
|
54
|
+
requirements:
|
|
55
|
+
- - ">="
|
|
56
|
+
- !ruby/object:Gem::Version
|
|
57
|
+
segments:
|
|
58
|
+
- 0
|
|
59
|
+
version: "0"
|
|
60
|
+
requirement: *id003
|
|
61
|
+
- !ruby/object:Gem::Dependency
|
|
62
|
+
prerelease: false
|
|
63
|
+
type: :development
|
|
64
|
+
name: bundler
|
|
65
|
+
version_requirements: &id004 !ruby/object:Gem::Requirement
|
|
66
|
+
requirements:
|
|
67
|
+
- - ~>
|
|
68
|
+
- !ruby/object:Gem::Version
|
|
69
|
+
segments:
|
|
70
|
+
- 1
|
|
71
|
+
- 2
|
|
72
|
+
- 3
|
|
73
|
+
version: 1.2.3
|
|
74
|
+
requirement: *id004
|
|
75
|
+
- !ruby/object:Gem::Dependency
|
|
76
|
+
prerelease: false
|
|
77
|
+
type: :development
|
|
78
|
+
name: jeweler
|
|
79
|
+
version_requirements: &id005 !ruby/object:Gem::Requirement
|
|
80
|
+
requirements:
|
|
81
|
+
- - ~>
|
|
82
|
+
- !ruby/object:Gem::Version
|
|
83
|
+
segments:
|
|
84
|
+
- 1
|
|
85
|
+
- 8
|
|
86
|
+
- 4
|
|
87
|
+
version: 1.8.4
|
|
88
|
+
requirement: *id005
|
|
89
|
+
- !ruby/object:Gem::Dependency
|
|
90
|
+
prerelease: false
|
|
91
|
+
type: :development
|
|
92
|
+
name: rcov
|
|
93
|
+
version_requirements: &id006 !ruby/object:Gem::Requirement
|
|
94
|
+
requirements:
|
|
95
|
+
- - ">="
|
|
96
|
+
- !ruby/object:Gem::Version
|
|
97
|
+
segments:
|
|
98
|
+
- 0
|
|
99
|
+
version: "0"
|
|
100
|
+
requirement: *id006
|
|
101
|
+
- !ruby/object:Gem::Dependency
|
|
102
|
+
prerelease: false
|
|
103
|
+
type: :development
|
|
104
|
+
name: yard
|
|
105
|
+
version_requirements: &id007 !ruby/object:Gem::Requirement
|
|
106
|
+
requirements:
|
|
107
|
+
- - ">="
|
|
108
|
+
- !ruby/object:Gem::Version
|
|
109
|
+
segments:
|
|
110
|
+
- 0
|
|
111
|
+
- 8
|
|
112
|
+
- 3
|
|
113
|
+
version: 0.8.3
|
|
114
|
+
requirement: *id007
|
|
115
|
+
- !ruby/object:Gem::Dependency
|
|
116
|
+
prerelease: false
|
|
117
|
+
type: :runtime
|
|
118
|
+
name: kramdown
|
|
119
|
+
version_requirements: &id008 !ruby/object:Gem::Requirement
|
|
120
|
+
requirements:
|
|
121
|
+
- - ">="
|
|
122
|
+
- !ruby/object:Gem::Version
|
|
123
|
+
segments:
|
|
124
|
+
- 0
|
|
125
|
+
- 13
|
|
126
|
+
- 7
|
|
127
|
+
version: 0.13.7
|
|
128
|
+
requirement: *id008
|
|
129
|
+
- !ruby/object:Gem::Dependency
|
|
130
|
+
prerelease: false
|
|
131
|
+
type: :runtime
|
|
132
|
+
name: haml
|
|
133
|
+
version_requirements: &id009 !ruby/object:Gem::Requirement
|
|
134
|
+
requirements:
|
|
135
|
+
- - ">="
|
|
136
|
+
- !ruby/object:Gem::Version
|
|
137
|
+
segments:
|
|
138
|
+
- 3
|
|
139
|
+
- 1
|
|
140
|
+
- 1
|
|
141
|
+
version: 3.1.1
|
|
142
|
+
requirement: *id009
|
|
143
|
+
description: Yuzu is a blog-aware, static-website (and PDF) generator that converts a folder of text files and images into multiple forms and publishes them to an FTP server, file system, or Amazon Simple Storage Service (S3). It is extensible and designed to function with minimal setup.
|
|
144
|
+
email: william.martin@anomalus.com
|
|
145
|
+
executables:
|
|
146
|
+
- yuzu
|
|
147
|
+
extensions: []
|
|
148
|
+
|
|
149
|
+
extra_rdoc_files:
|
|
150
|
+
- ChangeLog.md
|
|
151
|
+
- LICENSE.txt
|
|
152
|
+
- README.md
|
|
153
|
+
files:
|
|
154
|
+
- .document
|
|
155
|
+
- .yardopts
|
|
156
|
+
- ChangeLog.md
|
|
157
|
+
- Gemfile
|
|
158
|
+
- Gemfile.lock
|
|
159
|
+
- LICENSE.txt
|
|
160
|
+
- README.md
|
|
161
|
+
- Rakefile
|
|
162
|
+
- bin/yuzu
|
|
163
|
+
- docs/About.md
|
|
164
|
+
- docs/GettingStarted.md
|
|
165
|
+
- docs/Reference.md
|
|
166
|
+
- lib/helpers/object.rb
|
|
167
|
+
- lib/helpers/path.rb
|
|
168
|
+
- lib/helpers/string.rb
|
|
169
|
+
- lib/helpers/system_checks.rb
|
|
170
|
+
- lib/helpers/url.rb
|
|
171
|
+
- lib/html/base.rb
|
|
172
|
+
- lib/uploader/base.rb
|
|
173
|
+
- lib/uploader/config.rb
|
|
174
|
+
- lib/uploader/filesystem_service.rb
|
|
175
|
+
- lib/uploader/ftp_service.rb
|
|
176
|
+
- lib/uploader/s3_service.rb
|
|
177
|
+
- lib/uploader/service.rb
|
|
178
|
+
- lib/uploader/suppressor.rb
|
|
179
|
+
- lib/yuzu.rb
|
|
180
|
+
- lib/yuzu/argparse.rb
|
|
181
|
+
- lib/yuzu/command.rb
|
|
182
|
+
- lib/yuzu/commands/base.rb
|
|
183
|
+
- lib/yuzu/commands/create.rb
|
|
184
|
+
- lib/yuzu/commands/generate.rb
|
|
185
|
+
- lib/yuzu/commands/help.rb
|
|
186
|
+
- lib/yuzu/commands/preview.rb
|
|
187
|
+
- lib/yuzu/commands/publish.rb
|
|
188
|
+
- lib/yuzu/commands/stage.rb
|
|
189
|
+
- lib/yuzu/commands/watch.rb
|
|
190
|
+
- lib/yuzu/content/blog_post.rb
|
|
191
|
+
- lib/yuzu/content/sample_project.rb
|
|
192
|
+
- lib/yuzu/core/config.rb
|
|
193
|
+
- lib/yuzu/core/layout.rb
|
|
194
|
+
- lib/yuzu/core/paginated_file.rb
|
|
195
|
+
- lib/yuzu/core/registrar.rb
|
|
196
|
+
- lib/yuzu/core/siteroot.rb
|
|
197
|
+
- lib/yuzu/core/template.rb
|
|
198
|
+
- lib/yuzu/core/updater.rb
|
|
199
|
+
- lib/yuzu/core/visitor.rb
|
|
200
|
+
- lib/yuzu/core/website_base.rb
|
|
201
|
+
- lib/yuzu/core/website_file.rb
|
|
202
|
+
- lib/yuzu/core/website_folder.rb
|
|
203
|
+
- lib/yuzu/filters/base.rb
|
|
204
|
+
- lib/yuzu/filters/catalog.rb
|
|
205
|
+
- lib/yuzu/filters/categories.rb
|
|
206
|
+
- lib/yuzu/filters/currentpath.rb
|
|
207
|
+
- lib/yuzu/filters/description.rb
|
|
208
|
+
- lib/yuzu/filters/extension.rb
|
|
209
|
+
- lib/yuzu/filters/images.rb
|
|
210
|
+
- lib/yuzu/filters/linkroot.rb
|
|
211
|
+
- lib/yuzu/filters/post_date.rb
|
|
212
|
+
- lib/yuzu/filters/post_title.rb
|
|
213
|
+
- lib/yuzu/filters/post_title_removed.rb
|
|
214
|
+
- lib/yuzu/filters/sidebar.rb
|
|
215
|
+
- lib/yuzu/filters/template.rb
|
|
216
|
+
- lib/yuzu/generators/base.rb
|
|
217
|
+
- lib/yuzu/generators/category_folders.rb
|
|
218
|
+
- lib/yuzu/generators/index.rb
|
|
219
|
+
- lib/yuzu/generators/paginate.rb
|
|
220
|
+
- lib/yuzu/postprocessors/all_categories.rb
|
|
221
|
+
- lib/yuzu/postprocessors/base.rb
|
|
222
|
+
- lib/yuzu/postprocessors/contents_without_first_paragraph.rb
|
|
223
|
+
- lib/yuzu/postprocessors/excerpt.rb
|
|
224
|
+
- lib/yuzu/postprocessors/first_paragraph.rb
|
|
225
|
+
- lib/yuzu/postprocessors/pagination.rb
|
|
226
|
+
- lib/yuzu/postprocessors/recent_posts.rb
|
|
227
|
+
- lib/yuzu/postprocessors/thumbnails.rb
|
|
228
|
+
- lib/yuzu/preprocessors/base.rb
|
|
229
|
+
- lib/yuzu/preprocessors/insert_contents.rb
|
|
230
|
+
- lib/yuzu/renderers/base.rb
|
|
231
|
+
- lib/yuzu/renderers/breadcrumb.rb
|
|
232
|
+
- lib/yuzu/renderers/gallery.rb
|
|
233
|
+
- lib/yuzu/renderers/title.rb
|
|
234
|
+
- lib/yuzu/translators/base.rb
|
|
235
|
+
- lib/yuzu/translators/markdown.rb
|
|
236
|
+
- lib/yuzu/translators/plaintext.rb
|
|
237
|
+
- lib/yuzu/version.rb
|
|
238
|
+
- resources/config/compass.rb
|
|
239
|
+
- resources/config/yuzu.yml
|
|
240
|
+
- resources/git/post-commit
|
|
241
|
+
- resources/sample_content/introduction/_snippets/about_insert_contents.md
|
|
242
|
+
- resources/sample_content/introduction/about.md
|
|
243
|
+
- resources/sample_content/introduction/advanced-posts.md
|
|
244
|
+
- resources/sample_content/introduction/blog/blog-folder-is-special.md
|
|
245
|
+
- resources/sample_content/introduction/getting-started.md
|
|
246
|
+
- resources/sample_content/introduction/index.md
|
|
247
|
+
- resources/sample_content/introduction/sample-post.md
|
|
248
|
+
- resources/sample_projects.yml
|
|
249
|
+
- resources/themes/minimal/_sass/print.sass
|
|
250
|
+
- resources/themes/minimal/_sass/screen.sass
|
|
251
|
+
- resources/themes/minimal/_templates/_block.haml
|
|
252
|
+
- resources/themes/minimal/_templates/_blog.haml
|
|
253
|
+
- resources/themes/minimal/_templates/_footer.haml
|
|
254
|
+
- resources/themes/minimal/_templates/_gallery.haml
|
|
255
|
+
- resources/themes/minimal/_templates/_head.haml
|
|
256
|
+
- resources/themes/minimal/_templates/_header.haml
|
|
257
|
+
- resources/themes/minimal/_templates/_menu.haml
|
|
258
|
+
- resources/themes/minimal/_templates/blog.haml
|
|
259
|
+
- resources/themes/minimal/_templates/generic.haml
|
|
260
|
+
- resources/themes/minimal/_templates/home.haml
|
|
261
|
+
- resources/themes/minimal/_templates/index.haml
|
|
262
|
+
- resources/themes/minimal/css/print.css
|
|
263
|
+
- resources/themes/minimal/css/screen.css
|
|
264
|
+
- resources/themes/minimal/img/favicon.png
|
|
265
|
+
- resources/yard/default/fulldoc/html/css/common.css
|
|
266
|
+
- test/helper.rb
|
|
267
|
+
- test/test_yuzu.rb
|
|
268
|
+
- yuzu.gemspec
|
|
269
|
+
has_rdoc: true
|
|
270
|
+
homepage: http://github.com/awmartin/yuzu
|
|
271
|
+
licenses:
|
|
272
|
+
- MIT
|
|
273
|
+
post_install_message:
|
|
274
|
+
rdoc_options: []
|
|
275
|
+
|
|
276
|
+
require_paths:
|
|
277
|
+
- lib
|
|
278
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
279
|
+
requirements:
|
|
280
|
+
- - ">="
|
|
281
|
+
- !ruby/object:Gem::Version
|
|
282
|
+
segments:
|
|
283
|
+
- 0
|
|
284
|
+
version: "0"
|
|
285
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
286
|
+
requirements:
|
|
287
|
+
- - ">"
|
|
288
|
+
- !ruby/object:Gem::Version
|
|
289
|
+
segments:
|
|
290
|
+
- 1
|
|
291
|
+
- 3
|
|
292
|
+
- 1
|
|
293
|
+
version: 1.3.1
|
|
294
|
+
requirements: []
|
|
295
|
+
|
|
296
|
+
rubyforge_project:
|
|
297
|
+
rubygems_version: 1.3.6
|
|
298
|
+
signing_key:
|
|
299
|
+
specification_version: 3
|
|
300
|
+
summary: A blog-aware, static-website generator that converts a folder of text files and images into an HTML5 website.
|
|
301
|
+
test_files: []
|
|
302
|
+
|