henshin 0.2.1 → 0.2.2
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/VERSION +1 -1
- data/bin/henshin +149 -73
- data/henshin.gemspec +8 -3
- data/lib/henshin/ext.rb +42 -0
- data/lib/henshin/gen.rb +64 -44
- data/lib/henshin/plugin.rb +4 -0
- data/lib/henshin/plugins/maruku.rb +1 -1
- data/lib/henshin/plugins/sass.rb +9 -8
- data/lib/henshin/plugins/textile.rb +21 -0
- data/lib/henshin/post.rb +8 -6
- data/lib/henshin/site.rb +11 -64
- data/lib/henshin.rb +26 -19
- data/test/helper.rb +4 -1
- data/test/site/_site/2010/10/20-testing-stuff/index.html +2 -2
- data/test/site/_site/css/print.css +10 -24
- data/test/site/_site/index.html +29 -10
- data/test/site/{sass → css}/print.sass +0 -0
- data/test/site/index.html +2 -3
- data/test/site/options.yaml +2 -2
- data/test/site/posts/Testing-Stuff.markdown +2 -2
- data/test/site/posts/Textile-Test.textile +7 -0
- data/test/site/posts/cat/test.markdown +1 -1
- data/test/site/posts/same-date.markdown +7 -0
- data/test/test_gens.rb +33 -0
- data/test/test_henshin.rb +1 -24
- data/test/test_layouts.rb +1 -5
- data/test/test_options.rb +36 -7
- data/test/test_posts.rb +25 -4
- data/test/test_site.rb +36 -0
- metadata +9 -4
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 2
|
8
|
-
-
|
9
|
-
version: 0.2.
|
8
|
+
- 2
|
9
|
+
version: 0.2.2
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- hawx
|
@@ -14,7 +14,7 @@ autorequire:
|
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
16
|
|
17
|
-
date: 2010-
|
17
|
+
date: 2010-06-06 00:00:00 +01:00
|
18
18
|
default_executable: henshin
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
@@ -67,6 +67,7 @@ files:
|
|
67
67
|
- lib/henshin/plugins/maruku.rb
|
68
68
|
- lib/henshin/plugins/pygments.rb
|
69
69
|
- lib/henshin/plugins/sass.rb
|
70
|
+
- lib/henshin/plugins/textile.rb
|
70
71
|
- lib/henshin/post.rb
|
71
72
|
- lib/henshin/site.rb
|
72
73
|
- lib/henshin/static.rb
|
@@ -77,6 +78,7 @@ files:
|
|
77
78
|
- test/site/_site/css/print.css
|
78
79
|
- test/site/_site/index.html
|
79
80
|
- test/site/_site/static.html
|
81
|
+
- test/site/css/print.sass
|
80
82
|
- test/site/css/screen.css
|
81
83
|
- test/site/index.html
|
82
84
|
- test/site/layouts/category_index.html
|
@@ -88,10 +90,12 @@ files:
|
|
88
90
|
- test/site/options.yaml
|
89
91
|
- test/site/plugins/test.rb
|
90
92
|
- test/site/posts/Testing-Stuff.markdown
|
93
|
+
- test/site/posts/Textile-Test.textile
|
91
94
|
- test/site/posts/cat/test.markdown
|
92
95
|
- test/site/posts/lorem-ipsum.markdown
|
93
|
-
- test/site/
|
96
|
+
- test/site/posts/same-date.markdown
|
94
97
|
- test/site/static.html
|
98
|
+
- test/test_gens.rb
|
95
99
|
- test/test_henshin.rb
|
96
100
|
- test/test_layouts.rb
|
97
101
|
- test/test_options.rb
|
@@ -130,6 +134,7 @@ summary: Henshin is a static site generator
|
|
130
134
|
test_files:
|
131
135
|
- test/helper.rb
|
132
136
|
- test/site/plugins/test.rb
|
137
|
+
- test/test_gens.rb
|
133
138
|
- test/test_henshin.rb
|
134
139
|
- test/test_layouts.rb
|
135
140
|
- test/test_options.rb
|