middleman-blog 3.0.0 → 3.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.md +18 -0
- data/Gemfile +1 -0
- data/features/article_dirs.feature +7 -0
- data/features/blog_sources.feature +5 -0
- data/features/calendar-and-tag.feature +56 -0
- data/features/calendar.feature +71 -12
- data/features/future_date.feature +36 -0
- data/features/layouts.feature +21 -0
- data/features/no_date.feature +9 -0
- data/features/paginate.feature +157 -0
- data/features/published.feature +33 -0
- data/features/support/time_steps.rb +24 -0
- data/features/tags.feature +15 -2
- data/fixtures/article-dirs-app/config.rb +3 -0
- data/fixtures/article-dirs-app/source/blog/2011-01-01-new-article.html.markdown +6 -0
- data/fixtures/article-dirs-app/source/blog/2011-01-01-new-article/example.txt +1 -0
- data/fixtures/article-dirs-app/source/index.html.erb +9 -0
- data/fixtures/article-dirs-app/source/layout.erb +13 -0
- data/fixtures/calendar-and-tag-app/config-directory-indexes.rb +10 -0
- data/fixtures/calendar-and-tag-app/config.rb +7 -0
- data/fixtures/calendar-and-tag-app/source/archive.html.erb +17 -0
- data/fixtures/calendar-and-tag-app/source/blog/2011-01-01-new-article.html.markdown +7 -0
- data/fixtures/calendar-and-tag-app/source/blog/2011-01-02-another-article.html.markdown +8 -0
- data/fixtures/calendar-and-tag-app/source/index.html.erb +7 -0
- data/fixtures/calendar-and-tag-app/source/layout.erb +15 -0
- data/fixtures/calendar-app/config-directory-indexes.rb +10 -0
- data/fixtures/calendar-app/config.rb +3 -1
- data/fixtures/calendar-app/source/calendar.html.erb +4 -4
- data/fixtures/calendar-app/source/index.html.erb +4 -0
- data/fixtures/filename-date-app/config.rb +3 -1
- data/fixtures/filename-date-app/source/layout.erb +1 -1
- data/fixtures/future-date-app/config.rb +5 -0
- data/fixtures/future-date-app/source/_article_template.erb +1 -0
- data/fixtures/future-date-app/source/blog/2011-01-01-new-article.html.markdown +6 -0
- data/fixtures/future-date-app/source/blog/2012-06-19-future-article.html.markdown +6 -0
- data/fixtures/future-date-app/source/blog/2012-06-19-future-article/example.txt +1 -0
- data/fixtures/future-date-app/source/index.html.erb +9 -0
- data/fixtures/future-date-app/source/layout.erb +13 -0
- data/fixtures/layouts-app/config.rb +5 -0
- data/fixtures/layouts-app/source/2011/01/01/first-article.html.markdown +7 -0
- data/fixtures/layouts-app/source/2011/01/01/second-article.html.markdown +7 -0
- data/fixtures/layouts-app/source/2011/01/01/third-article.html.markdown +7 -0
- data/fixtures/layouts-app/source/2011/01/02/article-in-normal-layout.markdown +6 -0
- data/fixtures/layouts-app/source/2011/01/03/article-without-layout.markdown +7 -0
- data/fixtures/layouts-app/source/layouts/first.html.erb +2 -0
- data/fixtures/layouts-app/source/layouts/layout.erb +9 -0
- data/fixtures/layouts-app/source/layouts/second.html.erb +2 -0
- data/fixtures/layouts-app/source/layouts/third.html.erb +2 -0
- data/fixtures/no-date-app/config.rb +3 -0
- data/fixtures/no-date-app/source/_article_template.erb +1 -0
- data/fixtures/no-date-app/source/blog/new-article.html.markdown +6 -0
- data/fixtures/no-date-app/source/index.html.erb +9 -0
- data/fixtures/no-date-app/source/layout.erb +13 -0
- data/fixtures/no-day-app/config.rb +3 -0
- data/fixtures/no-day-app/source/2012-08-testing.html.markdown +6 -0
- data/fixtures/no-day-app/source/layout.erb +13 -0
- data/fixtures/paginate-app/config-directory-indexes.rb +11 -0
- data/fixtures/paginate-app/config-paginate-off.rb +8 -0
- data/fixtures/paginate-app/config.rb +8 -0
- data/fixtures/paginate-app/source/blog/2011-01-01-test-article.html.markdown +6 -0
- data/fixtures/paginate-app/source/blog/2011-01-02-test-article.html.markdown +6 -0
- data/fixtures/paginate-app/source/blog/2011-01-03-test-article.html.markdown +6 -0
- data/fixtures/paginate-app/source/blog/2011-01-04-test-article.html.markdown +6 -0
- data/fixtures/paginate-app/source/blog/2011-01-05-test-article.html.markdown +6 -0
- data/fixtures/paginate-app/source/blog/2011-02-01-test-article.html.markdown +6 -0
- data/fixtures/paginate-app/source/blog/2011-02-02-test-article.html.markdown +6 -0
- data/fixtures/paginate-app/source/calendar.html.erb +28 -0
- data/fixtures/paginate-app/source/index.html.erb +19 -0
- data/fixtures/paginate-app/source/layout.erb +15 -0
- data/fixtures/paginate-app/source/tag.html.erb +23 -0
- data/fixtures/published-app/config.rb +3 -0
- data/fixtures/published-app/source/_article_template.erb +1 -0
- data/fixtures/published-app/source/blog/2011-01-01-new-article.html.markdown +6 -0
- data/fixtures/published-app/source/blog/2012-06-19-draft-article.html.markdown +7 -0
- data/fixtures/published-app/source/blog/2012-06-19-draft-article/example.txt +1 -0
- data/fixtures/published-app/source/index.html.erb +9 -0
- data/fixtures/published-app/source/layout.erb +13 -0
- data/fixtures/tags-app/config-directory-indexes.rb +9 -0
- data/fixtures/tags-app/source/index.html.erb +2 -0
- data/fixtures/tags-app/source/tag.html.erb +3 -3
- data/lib/middleman-blog/blog_article.rb +59 -21
- data/lib/middleman-blog/blog_data.rb +59 -7
- data/lib/middleman-blog/calendar_pages.rb +50 -3
- data/lib/middleman-blog/extension.rb +37 -8
- data/lib/middleman-blog/paginator.rb +127 -0
- data/lib/middleman-blog/tag_pages.rb +20 -1
- data/lib/middleman-blog/template/config.tt +8 -1
- data/lib/middleman-blog/template/source/calendar.html.erb +27 -9
- data/lib/middleman-blog/template/source/index.html.erb +21 -7
- data/lib/middleman-blog/template/source/tag.html.erb +22 -4
- data/lib/middleman-blog/version.rb +1 -1
- data/middleman-blog.gemspec +3 -2
- metadata +211 -55
@@ -1,7 +1,25 @@
|
|
1
|
-
|
1
|
+
---
|
2
|
+
pageable: true
|
3
|
+
per_page: 12
|
4
|
+
---
|
5
|
+
<h1>Articles tagged '<%= tagname %>'</h1>
|
2
6
|
|
3
|
-
<% if
|
4
|
-
|
5
|
-
|
7
|
+
<% if paginate %>
|
8
|
+
<p>Page <%= page_number %> of <%= num_pages %></p>
|
9
|
+
|
10
|
+
<% if prev_page %>
|
11
|
+
<p><%= link_to 'Previous page', prev_page %></p>
|
12
|
+
<% end %>
|
13
|
+
<% end %>
|
14
|
+
|
15
|
+
<ul>
|
16
|
+
<% page_articles.each_with_index do |article, i| %>
|
17
|
+
<li><%= link_to article.title, article %> <span><%= article.date.strftime('%b %e') %></span></li>
|
18
|
+
<% end %>
|
19
|
+
</ul>
|
20
|
+
|
21
|
+
<% if paginate %>
|
22
|
+
<% if next_page %>
|
23
|
+
<p><%= link_to 'Next page', next_page %></p>
|
6
24
|
<% end %>
|
7
25
|
<% end %>
|
data/middleman-blog.gemspec
CHANGED
@@ -18,6 +18,7 @@ Gem::Specification.new do |s|
|
|
18
18
|
s.test_files = `git ls-files -z -- {fixtures,features}/*`.split("\0")
|
19
19
|
s.require_paths = ["lib"]
|
20
20
|
|
21
|
-
s.add_dependency("middleman-core", ["~> 3.0.
|
21
|
+
s.add_dependency("middleman-core", ["~> 3.0.1"])
|
22
22
|
s.add_dependency("maruku", ["~> 0.6.0"])
|
23
|
-
|
23
|
+
s.add_dependency("tzinfo", ["~> 0.3.0"])
|
24
|
+
end
|
metadata
CHANGED
@@ -1,80 +1,121 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: middleman-blog
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease: false
|
5
|
+
segments:
|
6
|
+
- 3
|
7
|
+
- 1
|
8
|
+
- 0
|
9
|
+
version: 3.1.0
|
6
10
|
platform: ruby
|
7
|
-
authors:
|
11
|
+
authors:
|
8
12
|
- Thomas Reynolds
|
9
13
|
- Ben Hollis
|
10
14
|
autorequire:
|
11
15
|
bindir: bin
|
12
16
|
cert_chain: []
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
none: false
|
19
|
-
requirements:
|
20
|
-
- - ~>
|
21
|
-
- !ruby/object:Gem::Version
|
22
|
-
version: 3.0.0
|
17
|
+
|
18
|
+
date: 2012-09-10 00:00:00 -07:00
|
19
|
+
default_executable:
|
20
|
+
dependencies:
|
21
|
+
- !ruby/object:Gem::Dependency
|
23
22
|
type: :runtime
|
24
|
-
|
25
|
-
|
26
|
-
none: false
|
27
|
-
requirements:
|
23
|
+
version_requirements: &id001 !ruby/object:Gem::Requirement
|
24
|
+
requirements:
|
28
25
|
- - ~>
|
29
|
-
- !ruby/object:Gem::Version
|
30
|
-
|
31
|
-
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
26
|
+
- !ruby/object:Gem::Version
|
27
|
+
segments:
|
28
|
+
- 3
|
29
|
+
- 0
|
30
|
+
- 1
|
31
|
+
version: 3.0.1
|
32
|
+
name: middleman-core
|
33
|
+
requirement: *id001
|
34
|
+
prerelease: false
|
35
|
+
- !ruby/object:Gem::Dependency
|
36
|
+
type: :runtime
|
37
|
+
version_requirements: &id002 !ruby/object:Gem::Requirement
|
38
|
+
requirements:
|
36
39
|
- - ~>
|
37
|
-
- !ruby/object:Gem::Version
|
40
|
+
- !ruby/object:Gem::Version
|
41
|
+
segments:
|
42
|
+
- 0
|
43
|
+
- 6
|
44
|
+
- 0
|
38
45
|
version: 0.6.0
|
39
|
-
|
46
|
+
name: maruku
|
47
|
+
requirement: *id002
|
40
48
|
prerelease: false
|
41
|
-
|
42
|
-
|
43
|
-
|
49
|
+
- !ruby/object:Gem::Dependency
|
50
|
+
type: :runtime
|
51
|
+
version_requirements: &id003 !ruby/object:Gem::Requirement
|
52
|
+
requirements:
|
44
53
|
- - ~>
|
45
|
-
- !ruby/object:Gem::Version
|
46
|
-
|
54
|
+
- !ruby/object:Gem::Version
|
55
|
+
segments:
|
56
|
+
- 0
|
57
|
+
- 3
|
58
|
+
- 0
|
59
|
+
version: 0.3.0
|
60
|
+
name: tzinfo
|
61
|
+
requirement: *id003
|
62
|
+
prerelease: false
|
47
63
|
description: A blog foundation using Middleman
|
48
|
-
email:
|
64
|
+
email:
|
49
65
|
- me@tdreyno.com
|
50
66
|
- ben@benhollis.net
|
51
67
|
executables: []
|
68
|
+
|
52
69
|
extensions: []
|
70
|
+
|
53
71
|
extra_rdoc_files: []
|
54
|
-
|
72
|
+
|
73
|
+
files:
|
55
74
|
- .gemtest
|
56
75
|
- .gitignore
|
57
76
|
- .travis.yml
|
58
77
|
- .yardopts
|
78
|
+
- CHANGELOG.md
|
59
79
|
- Gemfile
|
60
80
|
- LICENSE
|
61
81
|
- README.md
|
62
82
|
- Rakefile
|
63
83
|
- features/article_cli.feature
|
84
|
+
- features/article_dirs.feature
|
64
85
|
- features/blog_sources.feature
|
86
|
+
- features/calendar-and-tag.feature
|
65
87
|
- features/calendar.feature
|
66
88
|
- features/directory_indexes.feature
|
67
89
|
- features/encoding.feature
|
68
90
|
- features/filename_date.feature
|
91
|
+
- features/future_date.feature
|
92
|
+
- features/layouts.feature
|
69
93
|
- features/next_previous.feature
|
94
|
+
- features/no_date.feature
|
95
|
+
- features/paginate.feature
|
70
96
|
- features/preview.feature
|
97
|
+
- features/published.feature
|
71
98
|
- features/support/env.rb
|
99
|
+
- features/support/time_steps.rb
|
72
100
|
- features/tags.feature
|
101
|
+
- fixtures/article-dirs-app/config.rb
|
102
|
+
- fixtures/article-dirs-app/source/blog/2011-01-01-new-article.html.markdown
|
103
|
+
- fixtures/article-dirs-app/source/blog/2011-01-01-new-article/example.txt
|
104
|
+
- fixtures/article-dirs-app/source/index.html.erb
|
105
|
+
- fixtures/article-dirs-app/source/layout.erb
|
73
106
|
- fixtures/blog-sources-app/config.rb
|
74
107
|
- fixtures/blog-sources-app/source/_article_template.erb
|
75
108
|
- fixtures/blog-sources-app/source/blog/2011-01-01-new-article.html.markdown
|
76
109
|
- fixtures/blog-sources-app/source/index.html.erb
|
77
110
|
- fixtures/blog-sources-app/source/layout.erb
|
111
|
+
- fixtures/calendar-and-tag-app/config-directory-indexes.rb
|
112
|
+
- fixtures/calendar-and-tag-app/config.rb
|
113
|
+
- fixtures/calendar-and-tag-app/source/archive.html.erb
|
114
|
+
- fixtures/calendar-and-tag-app/source/blog/2011-01-01-new-article.html.markdown
|
115
|
+
- fixtures/calendar-and-tag-app/source/blog/2011-01-02-another-article.html.markdown
|
116
|
+
- fixtures/calendar-and-tag-app/source/index.html.erb
|
117
|
+
- fixtures/calendar-and-tag-app/source/layout.erb
|
118
|
+
- fixtures/calendar-app/config-directory-indexes.rb
|
78
119
|
- fixtures/calendar-app/config.rb
|
79
120
|
- fixtures/calendar-app/source/blog/2011-01-01-new-article.html.markdown
|
80
121
|
- fixtures/calendar-app/source/blog/2011-01-02-another-article.html.markdown
|
@@ -85,14 +126,61 @@ files:
|
|
85
126
|
- fixtures/filename-date-app/source/2011-01-01-new-article.html.markdown
|
86
127
|
- fixtures/filename-date-app/source/2011-01-03-filename-and-frontmatter.html.markdown
|
87
128
|
- fixtures/filename-date-app/source/layout.erb
|
129
|
+
- fixtures/future-date-app/config.rb
|
130
|
+
- fixtures/future-date-app/source/_article_template.erb
|
131
|
+
- fixtures/future-date-app/source/blog/2011-01-01-new-article.html.markdown
|
132
|
+
- fixtures/future-date-app/source/blog/2012-06-19-future-article.html.markdown
|
133
|
+
- fixtures/future-date-app/source/blog/2012-06-19-future-article/example.txt
|
134
|
+
- fixtures/future-date-app/source/index.html.erb
|
135
|
+
- fixtures/future-date-app/source/layout.erb
|
88
136
|
- fixtures/indexes-app/config.rb
|
89
137
|
- fixtures/indexes-app/source/2011/01/01/new-article.html.markdown
|
90
138
|
- fixtures/indexes-app/source/index.html.erb
|
91
139
|
- fixtures/indexes-app/source/layout.erb
|
140
|
+
- fixtures/layouts-app/config.rb
|
141
|
+
- fixtures/layouts-app/source/2011/01/01/first-article.html.markdown
|
142
|
+
- fixtures/layouts-app/source/2011/01/01/second-article.html.markdown
|
143
|
+
- fixtures/layouts-app/source/2011/01/01/third-article.html.markdown
|
144
|
+
- fixtures/layouts-app/source/2011/01/02/article-in-normal-layout.markdown
|
145
|
+
- fixtures/layouts-app/source/2011/01/03/article-without-layout.markdown
|
146
|
+
- fixtures/layouts-app/source/layouts/first.html.erb
|
147
|
+
- fixtures/layouts-app/source/layouts/layout.erb
|
148
|
+
- fixtures/layouts-app/source/layouts/second.html.erb
|
149
|
+
- fixtures/layouts-app/source/layouts/third.html.erb
|
150
|
+
- fixtures/no-date-app/config.rb
|
151
|
+
- fixtures/no-date-app/source/_article_template.erb
|
152
|
+
- fixtures/no-date-app/source/blog/new-article.html.markdown
|
153
|
+
- fixtures/no-date-app/source/index.html.erb
|
154
|
+
- fixtures/no-date-app/source/layout.erb
|
155
|
+
- fixtures/no-day-app/config.rb
|
156
|
+
- fixtures/no-day-app/source/2012-08-testing.html.markdown
|
157
|
+
- fixtures/no-day-app/source/layout.erb
|
158
|
+
- fixtures/paginate-app/config-directory-indexes.rb
|
159
|
+
- fixtures/paginate-app/config-paginate-off.rb
|
160
|
+
- fixtures/paginate-app/config.rb
|
161
|
+
- fixtures/paginate-app/source/blog/2011-01-01-test-article.html.markdown
|
162
|
+
- fixtures/paginate-app/source/blog/2011-01-02-test-article.html.markdown
|
163
|
+
- fixtures/paginate-app/source/blog/2011-01-03-test-article.html.markdown
|
164
|
+
- fixtures/paginate-app/source/blog/2011-01-04-test-article.html.markdown
|
165
|
+
- fixtures/paginate-app/source/blog/2011-01-05-test-article.html.markdown
|
166
|
+
- fixtures/paginate-app/source/blog/2011-02-01-test-article.html.markdown
|
167
|
+
- fixtures/paginate-app/source/blog/2011-02-02-test-article.html.markdown
|
168
|
+
- fixtures/paginate-app/source/calendar.html.erb
|
169
|
+
- fixtures/paginate-app/source/index.html.erb
|
170
|
+
- fixtures/paginate-app/source/layout.erb
|
171
|
+
- fixtures/paginate-app/source/tag.html.erb
|
92
172
|
- fixtures/preview-app/config.rb
|
93
173
|
- fixtures/preview-app/source/2011/01/01/new-article.html.markdown
|
94
174
|
- fixtures/preview-app/source/index.html.erb
|
95
175
|
- fixtures/preview-app/source/layout.erb
|
176
|
+
- fixtures/published-app/config.rb
|
177
|
+
- fixtures/published-app/source/_article_template.erb
|
178
|
+
- fixtures/published-app/source/blog/2011-01-01-new-article.html.markdown
|
179
|
+
- fixtures/published-app/source/blog/2012-06-19-draft-article.html.markdown
|
180
|
+
- fixtures/published-app/source/blog/2012-06-19-draft-article/example.txt
|
181
|
+
- fixtures/published-app/source/index.html.erb
|
182
|
+
- fixtures/published-app/source/layout.erb
|
183
|
+
- fixtures/tags-app/config-directory-indexes.rb
|
96
184
|
- fixtures/tags-app/config.rb
|
97
185
|
- fixtures/tags-app/source/blog/2011-01-01-new-article.html.markdown
|
98
186
|
- fixtures/tags-app/source/blog/2011-01-02-another-article.html.markdown
|
@@ -106,6 +194,7 @@ files:
|
|
106
194
|
- lib/middleman-blog/commands/article.rb
|
107
195
|
- lib/middleman-blog/commands/article.tt
|
108
196
|
- lib/middleman-blog/extension.rb
|
197
|
+
- lib/middleman-blog/paginator.rb
|
109
198
|
- lib/middleman-blog/tag_pages.rb
|
110
199
|
- lib/middleman-blog/template.rb
|
111
200
|
- lib/middleman-blog/template/config.tt
|
@@ -119,52 +208,73 @@ files:
|
|
119
208
|
- lib/middleman-blog/version.rb
|
120
209
|
- lib/middleman_extension.rb
|
121
210
|
- middleman-blog.gemspec
|
211
|
+
has_rdoc: true
|
122
212
|
homepage: https://github.com/middleman/middleman-blog
|
123
213
|
licenses: []
|
214
|
+
|
124
215
|
post_install_message:
|
125
216
|
rdoc_options: []
|
126
|
-
|
217
|
+
|
218
|
+
require_paths:
|
127
219
|
- lib
|
128
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
version: '0'
|
134
|
-
segments:
|
220
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
221
|
+
requirements:
|
222
|
+
- - ">="
|
223
|
+
- !ruby/object:Gem::Version
|
224
|
+
segments:
|
135
225
|
- 0
|
136
|
-
|
137
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
version: '0'
|
143
|
-
segments:
|
226
|
+
version: "0"
|
227
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
228
|
+
requirements:
|
229
|
+
- - ">="
|
230
|
+
- !ruby/object:Gem::Version
|
231
|
+
segments:
|
144
232
|
- 0
|
145
|
-
|
233
|
+
version: "0"
|
146
234
|
requirements: []
|
235
|
+
|
147
236
|
rubyforge_project: middleman-blog
|
148
|
-
rubygems_version: 1.
|
237
|
+
rubygems_version: 1.3.6
|
149
238
|
signing_key:
|
150
239
|
specification_version: 3
|
151
240
|
summary: A blog foundation using Middleman
|
152
|
-
test_files:
|
241
|
+
test_files:
|
153
242
|
- features/article_cli.feature
|
243
|
+
- features/article_dirs.feature
|
154
244
|
- features/blog_sources.feature
|
245
|
+
- features/calendar-and-tag.feature
|
155
246
|
- features/calendar.feature
|
156
247
|
- features/directory_indexes.feature
|
157
248
|
- features/encoding.feature
|
158
249
|
- features/filename_date.feature
|
250
|
+
- features/future_date.feature
|
251
|
+
- features/layouts.feature
|
159
252
|
- features/next_previous.feature
|
253
|
+
- features/no_date.feature
|
254
|
+
- features/paginate.feature
|
160
255
|
- features/preview.feature
|
256
|
+
- features/published.feature
|
161
257
|
- features/support/env.rb
|
258
|
+
- features/support/time_steps.rb
|
162
259
|
- features/tags.feature
|
260
|
+
- fixtures/article-dirs-app/config.rb
|
261
|
+
- fixtures/article-dirs-app/source/blog/2011-01-01-new-article.html.markdown
|
262
|
+
- fixtures/article-dirs-app/source/blog/2011-01-01-new-article/example.txt
|
263
|
+
- fixtures/article-dirs-app/source/index.html.erb
|
264
|
+
- fixtures/article-dirs-app/source/layout.erb
|
163
265
|
- fixtures/blog-sources-app/config.rb
|
164
266
|
- fixtures/blog-sources-app/source/_article_template.erb
|
165
267
|
- fixtures/blog-sources-app/source/blog/2011-01-01-new-article.html.markdown
|
166
268
|
- fixtures/blog-sources-app/source/index.html.erb
|
167
269
|
- fixtures/blog-sources-app/source/layout.erb
|
270
|
+
- fixtures/calendar-and-tag-app/config-directory-indexes.rb
|
271
|
+
- fixtures/calendar-and-tag-app/config.rb
|
272
|
+
- fixtures/calendar-and-tag-app/source/archive.html.erb
|
273
|
+
- fixtures/calendar-and-tag-app/source/blog/2011-01-01-new-article.html.markdown
|
274
|
+
- fixtures/calendar-and-tag-app/source/blog/2011-01-02-another-article.html.markdown
|
275
|
+
- fixtures/calendar-and-tag-app/source/index.html.erb
|
276
|
+
- fixtures/calendar-and-tag-app/source/layout.erb
|
277
|
+
- fixtures/calendar-app/config-directory-indexes.rb
|
168
278
|
- fixtures/calendar-app/config.rb
|
169
279
|
- fixtures/calendar-app/source/blog/2011-01-01-new-article.html.markdown
|
170
280
|
- fixtures/calendar-app/source/blog/2011-01-02-another-article.html.markdown
|
@@ -175,18 +285,64 @@ test_files:
|
|
175
285
|
- fixtures/filename-date-app/source/2011-01-01-new-article.html.markdown
|
176
286
|
- fixtures/filename-date-app/source/2011-01-03-filename-and-frontmatter.html.markdown
|
177
287
|
- fixtures/filename-date-app/source/layout.erb
|
288
|
+
- fixtures/future-date-app/config.rb
|
289
|
+
- fixtures/future-date-app/source/_article_template.erb
|
290
|
+
- fixtures/future-date-app/source/blog/2011-01-01-new-article.html.markdown
|
291
|
+
- fixtures/future-date-app/source/blog/2012-06-19-future-article.html.markdown
|
292
|
+
- fixtures/future-date-app/source/blog/2012-06-19-future-article/example.txt
|
293
|
+
- fixtures/future-date-app/source/index.html.erb
|
294
|
+
- fixtures/future-date-app/source/layout.erb
|
178
295
|
- fixtures/indexes-app/config.rb
|
179
296
|
- fixtures/indexes-app/source/2011/01/01/new-article.html.markdown
|
180
297
|
- fixtures/indexes-app/source/index.html.erb
|
181
298
|
- fixtures/indexes-app/source/layout.erb
|
299
|
+
- fixtures/layouts-app/config.rb
|
300
|
+
- fixtures/layouts-app/source/2011/01/01/first-article.html.markdown
|
301
|
+
- fixtures/layouts-app/source/2011/01/01/second-article.html.markdown
|
302
|
+
- fixtures/layouts-app/source/2011/01/01/third-article.html.markdown
|
303
|
+
- fixtures/layouts-app/source/2011/01/02/article-in-normal-layout.markdown
|
304
|
+
- fixtures/layouts-app/source/2011/01/03/article-without-layout.markdown
|
305
|
+
- fixtures/layouts-app/source/layouts/first.html.erb
|
306
|
+
- fixtures/layouts-app/source/layouts/layout.erb
|
307
|
+
- fixtures/layouts-app/source/layouts/second.html.erb
|
308
|
+
- fixtures/layouts-app/source/layouts/third.html.erb
|
309
|
+
- fixtures/no-date-app/config.rb
|
310
|
+
- fixtures/no-date-app/source/_article_template.erb
|
311
|
+
- fixtures/no-date-app/source/blog/new-article.html.markdown
|
312
|
+
- fixtures/no-date-app/source/index.html.erb
|
313
|
+
- fixtures/no-date-app/source/layout.erb
|
314
|
+
- fixtures/no-day-app/config.rb
|
315
|
+
- fixtures/no-day-app/source/2012-08-testing.html.markdown
|
316
|
+
- fixtures/no-day-app/source/layout.erb
|
317
|
+
- fixtures/paginate-app/config-directory-indexes.rb
|
318
|
+
- fixtures/paginate-app/config-paginate-off.rb
|
319
|
+
- fixtures/paginate-app/config.rb
|
320
|
+
- fixtures/paginate-app/source/blog/2011-01-01-test-article.html.markdown
|
321
|
+
- fixtures/paginate-app/source/blog/2011-01-02-test-article.html.markdown
|
322
|
+
- fixtures/paginate-app/source/blog/2011-01-03-test-article.html.markdown
|
323
|
+
- fixtures/paginate-app/source/blog/2011-01-04-test-article.html.markdown
|
324
|
+
- fixtures/paginate-app/source/blog/2011-01-05-test-article.html.markdown
|
325
|
+
- fixtures/paginate-app/source/blog/2011-02-01-test-article.html.markdown
|
326
|
+
- fixtures/paginate-app/source/blog/2011-02-02-test-article.html.markdown
|
327
|
+
- fixtures/paginate-app/source/calendar.html.erb
|
328
|
+
- fixtures/paginate-app/source/index.html.erb
|
329
|
+
- fixtures/paginate-app/source/layout.erb
|
330
|
+
- fixtures/paginate-app/source/tag.html.erb
|
182
331
|
- fixtures/preview-app/config.rb
|
183
332
|
- fixtures/preview-app/source/2011/01/01/new-article.html.markdown
|
184
333
|
- fixtures/preview-app/source/index.html.erb
|
185
334
|
- fixtures/preview-app/source/layout.erb
|
335
|
+
- fixtures/published-app/config.rb
|
336
|
+
- fixtures/published-app/source/_article_template.erb
|
337
|
+
- fixtures/published-app/source/blog/2011-01-01-new-article.html.markdown
|
338
|
+
- fixtures/published-app/source/blog/2012-06-19-draft-article.html.markdown
|
339
|
+
- fixtures/published-app/source/blog/2012-06-19-draft-article/example.txt
|
340
|
+
- fixtures/published-app/source/index.html.erb
|
341
|
+
- fixtures/published-app/source/layout.erb
|
342
|
+
- fixtures/tags-app/config-directory-indexes.rb
|
186
343
|
- fixtures/tags-app/config.rb
|
187
344
|
- fixtures/tags-app/source/blog/2011-01-01-new-article.html.markdown
|
188
345
|
- fixtures/tags-app/source/blog/2011-01-02-another-article.html.markdown
|
189
346
|
- fixtures/tags-app/source/index.html.erb
|
190
347
|
- fixtures/tags-app/source/layout.erb
|
191
348
|
- fixtures/tags-app/source/tag.html.erb
|
192
|
-
has_rdoc:
|