staticpress 0.3.0 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (94) hide show
  1. data.tar.gz.sig +0 -0
  2. data/docs/Gemfile +8 -0
  3. data/{tests/sample_sites/test_blog → docs}/README.markdown +0 -0
  4. data/{tests/sample_sites/test_blog → docs}/config.ru +0 -0
  5. data/docs/config.yml +2 -0
  6. data/docs/content/docs/diving-deeper.markdown +3 -0
  7. data/docs/content/docs/setup.markdown +15 -0
  8. data/docs/content/index.markdown +1 -0
  9. data/features/happy_path.feature +36 -1
  10. data/features/step_definitions/staticpress_steps.rb +1 -1
  11. data/lib/skeleton/Gemfile +0 -2
  12. data/lib/staticpress/booter.rb +1 -1
  13. data/lib/staticpress/cli.rb +2 -2
  14. data/lib/staticpress/content/base.rb +66 -23
  15. data/lib/staticpress/content/category.rb +12 -3
  16. data/lib/staticpress/content/collection_content.rb +0 -4
  17. data/lib/staticpress/content/index.rb +10 -3
  18. data/lib/staticpress/content/page.rb +32 -17
  19. data/lib/staticpress/content/post.rb +22 -27
  20. data/lib/staticpress/content/resource_content.rb +11 -3
  21. data/lib/staticpress/content/static_content.rb +10 -4
  22. data/lib/staticpress/content/tag.rb +12 -3
  23. data/lib/staticpress/content/theme.rb +17 -19
  24. data/lib/staticpress/helpers.rb +4 -0
  25. data/lib/staticpress/route.rb +21 -95
  26. data/lib/staticpress/server.rb +1 -3
  27. data/lib/staticpress/site.rb +20 -16
  28. data/lib/staticpress/version.rb +1 -1
  29. data/tests/staticpress/configuration_test.rb +4 -0
  30. data/tests/staticpress/content/base_test.rb +271 -0
  31. data/tests/staticpress/content/category_test.rb +29 -0
  32. data/tests/staticpress/content/index_test.rb +6 -0
  33. data/tests/staticpress/content/page_test.rb +37 -0
  34. data/tests/staticpress/content/post_test.rb +45 -0
  35. data/tests/staticpress/content/tag_test.rb +33 -0
  36. data/tests/staticpress/content/theme_test.rb +29 -0
  37. data/tests/{lib/staticpress → staticpress}/helpers_test.rb +2 -2
  38. data/tests/staticpress/js_object_test.rb +43 -0
  39. data/tests/staticpress/metadata_test.rb +16 -0
  40. data/tests/staticpress/plugin_test.rb +4 -0
  41. data/tests/staticpress/pusher_test.rb +9 -0
  42. data/tests/{lib/staticpress → staticpress}/route_test.rb +19 -41
  43. data/tests/{lib/staticpress → staticpress}/server_test.rb +5 -14
  44. data/tests/staticpress/site_test.rb +21 -0
  45. data/tests/staticpress/theme_test.rb +86 -0
  46. data/tests/staticpress/view_helpers_test.rb +28 -0
  47. data/tests/{lib/staticpress_test.rb → staticpress_test.rb} +3 -3
  48. data/tests/{sample_sites/test_blog → test_blog}/Gemfile +0 -2
  49. data/tests/test_blog/README.markdown +21 -0
  50. data/tests/test_blog/config.ru +8 -0
  51. data/tests/{sample_sites/test_blog → test_blog}/config.yml +0 -0
  52. data/tests/{sample_sites/test_blog → test_blog}/content/_posts/2011-07-20-hello.markdown +0 -0
  53. data/tests/{sample_sites/test_blog → test_blog}/content/_posts/2011-08-01-announcing-staticpress.markdown +0 -0
  54. data/tests/{sample_sites/test_blog → test_blog}/content/_posts/2011-08-02-staticpress.markdown +0 -0
  55. data/tests/{sample_sites/test_blog → test_blog}/content/_posts/2011-08-06-blogging-with-staticpress.markdown +0 -0
  56. data/tests/{sample_sites/test_blog → test_blog}/content/_posts/2011-08-06-conferences.markdown +0 -0
  57. data/tests/{sample_sites/test_blog → test_blog}/content/_posts/2011-08-06-in-charlotte.markdown +0 -0
  58. data/tests/{sample_sites/test_blog → test_blog}/content/_posts/2011-08-20-forever.markdown +0 -0
  59. data/tests/{sample_sites/test_blog → test_blog}/content/about.markdown +0 -0
  60. data/tests/{sample_sites/test_blog → test_blog}/content/contact.markdown +0 -0
  61. data/tests/{sample_sites/test_blog → test_blog}/content/foo/bar/baz.markdown +0 -0
  62. data/tests/test_blog/content/index.markdown +1 -0
  63. data/tests/{sample_sites/test_blog → test_blog}/content/plain.txt +0 -0
  64. data/tests/{sample_sites/test_blog → test_blog}/content/ruby.png +0 -0
  65. data/tests/{sample_sites/test_blog → test_blog}/content/style1.css +0 -0
  66. data/tests/{sample_sites/test_blog → test_blog}/content/style2.css.sass +0 -0
  67. data/tests/{sample_sites/test_blog → test_blog}/content/style3.sass +0 -0
  68. data/tests/{sample_sites/test_blog → test_blog}/themes/test_theme/assets/scripts/application.js +0 -0
  69. data/tests/{sample_sites/test_blog → test_blog}/themes/test_theme/assets/styles/all.sass +0 -0
  70. data/tests/{sample_sites/test_blog → test_blog}/themes/test_theme/includes/list_posts.haml +0 -0
  71. data/tests/{sample_sites/test_blog → test_blog}/themes/test_theme/layouts/archive.haml +0 -0
  72. data/tests/{sample_sites/test_blog → test_blog}/themes/test_theme/layouts/atom.haml +0 -0
  73. data/tests/{sample_sites/test_blog → test_blog}/themes/test_theme/layouts/default.haml +0 -0
  74. data/tests/{sample_sites/test_blog → test_blog}/themes/test_theme/layouts/index.haml +0 -0
  75. data/tests/{sample_sites/test_blog → test_blog}/themes/test_theme/layouts/post_index.haml +0 -0
  76. data/tests/{sample_sites/test_blog → test_blog}/themes/test_theme/views/default.haml +0 -0
  77. data/tests/{test_helper.rb → test_case.rb} +9 -5
  78. metadata +81 -73
  79. metadata.gz.sig +0 -0
  80. data/tests/lib/staticpress/configuration_test.rb +0 -4
  81. data/tests/lib/staticpress/content/base_test.rb +0 -6
  82. data/tests/lib/staticpress/content/category_test.rb +0 -62
  83. data/tests/lib/staticpress/content/index_test.rb +0 -45
  84. data/tests/lib/staticpress/content/page_test.rb +0 -147
  85. data/tests/lib/staticpress/content/post_test.rb +0 -89
  86. data/tests/lib/staticpress/content/tag_test.rb +0 -60
  87. data/tests/lib/staticpress/content/theme_test.rb +0 -114
  88. data/tests/lib/staticpress/js_object_test.rb +0 -45
  89. data/tests/lib/staticpress/metadata_test.rb +0 -19
  90. data/tests/lib/staticpress/plugin_test.rb +0 -4
  91. data/tests/lib/staticpress/pusher_test.rb +0 -9
  92. data/tests/lib/staticpress/site_test.rb +0 -26
  93. data/tests/lib/staticpress/theme_test.rb +0 -86
  94. data/tests/lib/staticpress/view_helpers_test.rb +0 -33
@@ -0,0 +1,28 @@
1
+ require_relative '../test_case'
2
+
3
+ require 'staticpress/helpers'
4
+ require 'staticpress/view_helpers'
5
+
6
+ class ViewHelpersTest < TestCase
7
+ include Staticpress::Helpers
8
+
9
+ let(:post) { Staticpress::Content::Post.new :year => '2011', :month => '07', :day => '20', :title => 'hello' }
10
+ let(:view_helpers) { Staticpress::ViewHelpers.new post }
11
+
12
+ def test_partial_with_one_post
13
+ expected = <<-HTML
14
+ <section>
15
+ <article>#{post.render_partial.strip}</article>
16
+ </section>
17
+ HTML
18
+ assert_equal expected, view_helpers.partial(:list_posts, :posts => [ post ])
19
+ end
20
+
21
+ def test_partial_with_no_posts
22
+ expected = <<-HTML
23
+ <section>
24
+ </section>
25
+ HTML
26
+ assert_equal expected, view_helpers.partial(:list_posts, :posts => [ ])
27
+ end
28
+ end
@@ -1,10 +1,10 @@
1
- require_relative '../test_helper'
1
+ require_relative 'test_case'
2
2
 
3
3
  require 'pathname'
4
4
 
5
- class StaticpressTest < TestHelper
5
+ class StaticpressTest < TestCase
6
6
  def test_blog_path
7
- assert_equal Pathname.new('tests/sample_sites/test_blog').expand_path, Staticpress.blog_path
7
+ assert_equal Pathname.new('tests/test_blog').expand_path, Staticpress.blog_path
8
8
  end
9
9
 
10
10
  def test_blog_path=
@@ -5,6 +5,4 @@ gem 'staticpress', :path => '../../../'
5
5
  gem 'compass'
6
6
  gem 'haml'
7
7
  gem 'rdiscount'
8
- gem 'rubypants'
9
- gem 'RedCloth'
10
8
  gem 'sass'
@@ -0,0 +1,21 @@
1
+ * copies lib/skeletons/new to <path-to-blog>
2
+ * this should edit the blog's config.yml to include [name-of-blog] (prompt for [name-of-blog] if blank)
3
+ $ staticpress new <path-to-blog> [name-of-blog]
4
+ $ cd <path-to-blog>
5
+
6
+ * copies <plugin-name> into <path-to-blog>/plugins/
7
+ $ staticpress fork_plugin <plugin-name>
8
+
9
+ * setting the theme is done in the main config file, this command is optional and
10
+ * just copies the theme's file into <path-to-blog>/themes/[theme-name] for customizations
11
+ * if [theme-name] is blank, default to the currently configured theme
12
+ $ staticpress fork_theme [theme-name]
13
+
14
+ * turn on local server for development
15
+ $ staticpress serve
16
+
17
+ * prepare blog for deployment
18
+ $ staticpress package
19
+
20
+ * deploy blog
21
+ $ staticpress deploy
@@ -0,0 +1,8 @@
1
+ require 'staticpress/booter'
2
+ require 'staticpress/server'
3
+
4
+ use Rack::ShowStatus
5
+ use Rack::ShowExceptions
6
+
7
+ # TODO run on configured port
8
+ run Staticpress::Server.new
@@ -0,0 +1 @@
1
+ in page
@@ -8,9 +8,8 @@ require 'sass'
8
8
 
9
9
  require 'staticpress'
10
10
 
11
- class TestHelper < MiniTest::Unit::TestCase
12
- SAMPLE_SITES = (Staticpress.root + '..' + 'tests' + 'sample_sites').expand_path
13
- TEST_BLOG = SAMPLE_SITES + 'test_blog'
11
+ class TestCase < MiniTest::Spec
12
+ TEST_BLOG = (Staticpress.root + '..' + 'tests' + 'test_blog').expand_path
14
13
 
15
14
  def setup
16
15
  Staticpress.blog_path = TEST_BLOG
@@ -22,6 +21,12 @@ class TestHelper < MiniTest::Unit::TestCase
22
21
  FileUtils.rm_rf test_blog_public if test_blog_public.directory?
23
22
  end
24
23
 
24
+ def env(path)
25
+ {
26
+ 'REQUEST_PATH' => path
27
+ }
28
+ end
29
+
25
30
  def assert_eql(expected, actual, message = nil)
26
31
  assert actual.eql?(expected), (message || "Expected #{actual} to have same content as #{expected}")
27
32
  end
@@ -31,8 +36,7 @@ class TestHelper < MiniTest::Unit::TestCase
31
36
  block.call
32
37
  assert true
33
38
  rescue Exception => e
34
- # TODO improve error message
35
- refute e.class == exception, "#{exception} expected not to be raised, but was"
39
+ refute e.is_an?(exception), exception_details(e, "Expected #{e} not to be raised")
36
40
  raise e
37
41
  end
38
42
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: staticpress
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.4.0
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -50,11 +50,11 @@ cert_chain:
50
50
  -----END CERTIFICATE-----
51
51
 
52
52
  '
53
- date: 2011-11-12 00:00:00.000000000 Z
53
+ date: 2011-12-13 00:00:00.000000000 Z
54
54
  dependencies:
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: aruba
57
- requirement: &18923280 !ruby/object:Gem::Requirement
57
+ requirement: &15630400 !ruby/object:Gem::Requirement
58
58
  none: false
59
59
  requirements:
60
60
  - - ! '>='
@@ -62,10 +62,10 @@ dependencies:
62
62
  version: '0'
63
63
  type: :development
64
64
  prerelease: false
65
- version_requirements: *18923280
65
+ version_requirements: *15630400
66
66
  - !ruby/object:Gem::Dependency
67
67
  name: compass
68
- requirement: &18922300 !ruby/object:Gem::Requirement
68
+ requirement: &15646340 !ruby/object:Gem::Requirement
69
69
  none: false
70
70
  requirements:
71
71
  - - ! '>='
@@ -73,10 +73,10 @@ dependencies:
73
73
  version: '0'
74
74
  type: :development
75
75
  prerelease: false
76
- version_requirements: *18922300
76
+ version_requirements: *15646340
77
77
  - !ruby/object:Gem::Dependency
78
78
  name: cucumber
79
- requirement: &18920520 !ruby/object:Gem::Requirement
79
+ requirement: &15645920 !ruby/object:Gem::Requirement
80
80
  none: false
81
81
  requirements:
82
82
  - - ! '>='
@@ -84,10 +84,10 @@ dependencies:
84
84
  version: '0'
85
85
  type: :development
86
86
  prerelease: false
87
- version_requirements: *18920520
87
+ version_requirements: *15645920
88
88
  - !ruby/object:Gem::Dependency
89
89
  name: haml
90
- requirement: &18919060 !ruby/object:Gem::Requirement
90
+ requirement: &15645500 !ruby/object:Gem::Requirement
91
91
  none: false
92
92
  requirements:
93
93
  - - ! '>='
@@ -95,10 +95,10 @@ dependencies:
95
95
  version: '0'
96
96
  type: :development
97
97
  prerelease: false
98
- version_requirements: *18919060
98
+ version_requirements: *15645500
99
99
  - !ruby/object:Gem::Dependency
100
100
  name: minitest
101
- requirement: &18917720 !ruby/object:Gem::Requirement
101
+ requirement: &15645080 !ruby/object:Gem::Requirement
102
102
  none: false
103
103
  requirements:
104
104
  - - ! '>='
@@ -106,10 +106,10 @@ dependencies:
106
106
  version: '0'
107
107
  type: :development
108
108
  prerelease: false
109
- version_requirements: *18917720
109
+ version_requirements: *15645080
110
110
  - !ruby/object:Gem::Dependency
111
111
  name: ruby-debug19
112
- requirement: &18917020 !ruby/object:Gem::Requirement
112
+ requirement: &15644660 !ruby/object:Gem::Requirement
113
113
  none: false
114
114
  requirements:
115
115
  - - ! '>='
@@ -117,10 +117,10 @@ dependencies:
117
117
  version: '0'
118
118
  type: :development
119
119
  prerelease: false
120
- version_requirements: *18917020
120
+ version_requirements: *15644660
121
121
  - !ruby/object:Gem::Dependency
122
122
  name: sass
123
- requirement: &18915080 !ruby/object:Gem::Requirement
123
+ requirement: &15644240 !ruby/object:Gem::Requirement
124
124
  none: false
125
125
  requirements:
126
126
  - - ! '>='
@@ -128,10 +128,10 @@ dependencies:
128
128
  version: '0'
129
129
  type: :development
130
130
  prerelease: false
131
- version_requirements: *18915080
131
+ version_requirements: *15644240
132
132
  - !ruby/object:Gem::Dependency
133
133
  name: bundler
134
- requirement: &18914420 !ruby/object:Gem::Requirement
134
+ requirement: &15643820 !ruby/object:Gem::Requirement
135
135
  none: false
136
136
  requirements:
137
137
  - - ! '>='
@@ -139,10 +139,10 @@ dependencies:
139
139
  version: '0'
140
140
  type: :runtime
141
141
  prerelease: false
142
- version_requirements: *18914420
142
+ version_requirements: *15643820
143
143
  - !ruby/object:Gem::Dependency
144
144
  name: rack
145
- requirement: &18913380 !ruby/object:Gem::Requirement
145
+ requirement: &15643400 !ruby/object:Gem::Requirement
146
146
  none: false
147
147
  requirements:
148
148
  - - ! '>='
@@ -150,10 +150,10 @@ dependencies:
150
150
  version: '0'
151
151
  type: :runtime
152
152
  prerelease: false
153
- version_requirements: *18913380
153
+ version_requirements: *15643400
154
154
  - !ruby/object:Gem::Dependency
155
155
  name: thor
156
- requirement: &18912880 !ruby/object:Gem::Requirement
156
+ requirement: &15642980 !ruby/object:Gem::Requirement
157
157
  none: false
158
158
  requirements:
159
159
  - - ! '>='
@@ -161,10 +161,10 @@ dependencies:
161
161
  version: '0'
162
162
  type: :runtime
163
163
  prerelease: false
164
- version_requirements: *18912880
164
+ version_requirements: *15642980
165
165
  - !ruby/object:Gem::Dependency
166
166
  name: tilt
167
- requirement: &18912280 !ruby/object:Gem::Requirement
167
+ requirement: &15642560 !ruby/object:Gem::Requirement
168
168
  none: false
169
169
  requirements:
170
170
  - - ! '>='
@@ -172,7 +172,7 @@ dependencies:
172
172
  version: '0'
173
173
  type: :runtime
174
174
  prerelease: false
175
- version_requirements: *18912280
175
+ version_requirements: *15642560
176
176
  description: ! 'Staticpress is a blog-focused static site generator. It uses Tilt
177
177
  for rendering nearly any template you can think of and come with a built-in Rack
178
178
  server for easy development previews.
@@ -191,6 +191,13 @@ files:
191
191
  - README.markdown
192
192
  - Rakefile
193
193
  - bin/staticpress
194
+ - docs/Gemfile
195
+ - docs/README.markdown
196
+ - docs/config.ru
197
+ - docs/config.yml
198
+ - docs/content/docs/diving-deeper.markdown
199
+ - docs/content/docs/setup.markdown
200
+ - docs/content/index.markdown
194
201
  - features/happy_path.feature
195
202
  - features/step_definitions/staticpress_steps.rb
196
203
  - features/support/env.rb
@@ -237,54 +244,55 @@ files:
237
244
  - lib/themes/basic/layouts/post_index.haml
238
245
  - lib/themes/basic/views/default.haml
239
246
  - staticpress.gemspec
240
- - tests/lib/staticpress/configuration_test.rb
241
- - tests/lib/staticpress/content/base_test.rb
242
- - tests/lib/staticpress/content/category_test.rb
243
- - tests/lib/staticpress/content/index_test.rb
244
- - tests/lib/staticpress/content/page_test.rb
245
- - tests/lib/staticpress/content/post_test.rb
246
- - tests/lib/staticpress/content/tag_test.rb
247
- - tests/lib/staticpress/content/theme_test.rb
248
- - tests/lib/staticpress/helpers_test.rb
249
- - tests/lib/staticpress/js_object_test.rb
250
- - tests/lib/staticpress/metadata_test.rb
251
- - tests/lib/staticpress/plugin_test.rb
252
- - tests/lib/staticpress/pusher_test.rb
253
- - tests/lib/staticpress/route_test.rb
254
- - tests/lib/staticpress/server_test.rb
255
- - tests/lib/staticpress/site_test.rb
256
- - tests/lib/staticpress/theme_test.rb
257
- - tests/lib/staticpress/view_helpers_test.rb
258
- - tests/lib/staticpress_test.rb
259
- - tests/sample_sites/test_blog/Gemfile
260
- - tests/sample_sites/test_blog/README.markdown
261
- - tests/sample_sites/test_blog/config.ru
262
- - tests/sample_sites/test_blog/config.yml
263
- - tests/sample_sites/test_blog/content/_posts/2011-07-20-hello.markdown
264
- - tests/sample_sites/test_blog/content/_posts/2011-08-01-announcing-staticpress.markdown
265
- - tests/sample_sites/test_blog/content/_posts/2011-08-02-staticpress.markdown
266
- - tests/sample_sites/test_blog/content/_posts/2011-08-06-blogging-with-staticpress.markdown
267
- - tests/sample_sites/test_blog/content/_posts/2011-08-06-conferences.markdown
268
- - tests/sample_sites/test_blog/content/_posts/2011-08-06-in-charlotte.markdown
269
- - tests/sample_sites/test_blog/content/_posts/2011-08-20-forever.markdown
270
- - tests/sample_sites/test_blog/content/about.markdown
271
- - tests/sample_sites/test_blog/content/contact.markdown
272
- - tests/sample_sites/test_blog/content/foo/bar/baz.markdown
273
- - tests/sample_sites/test_blog/content/plain.txt
274
- - tests/sample_sites/test_blog/content/ruby.png
275
- - tests/sample_sites/test_blog/content/style1.css
276
- - tests/sample_sites/test_blog/content/style2.css.sass
277
- - tests/sample_sites/test_blog/content/style3.sass
278
- - tests/sample_sites/test_blog/themes/test_theme/assets/scripts/application.js
279
- - tests/sample_sites/test_blog/themes/test_theme/assets/styles/all.sass
280
- - tests/sample_sites/test_blog/themes/test_theme/includes/list_posts.haml
281
- - tests/sample_sites/test_blog/themes/test_theme/layouts/archive.haml
282
- - tests/sample_sites/test_blog/themes/test_theme/layouts/atom.haml
283
- - tests/sample_sites/test_blog/themes/test_theme/layouts/default.haml
284
- - tests/sample_sites/test_blog/themes/test_theme/layouts/index.haml
285
- - tests/sample_sites/test_blog/themes/test_theme/layouts/post_index.haml
286
- - tests/sample_sites/test_blog/themes/test_theme/views/default.haml
287
- - tests/test_helper.rb
247
+ - tests/staticpress/configuration_test.rb
248
+ - tests/staticpress/content/base_test.rb
249
+ - tests/staticpress/content/category_test.rb
250
+ - tests/staticpress/content/index_test.rb
251
+ - tests/staticpress/content/page_test.rb
252
+ - tests/staticpress/content/post_test.rb
253
+ - tests/staticpress/content/tag_test.rb
254
+ - tests/staticpress/content/theme_test.rb
255
+ - tests/staticpress/helpers_test.rb
256
+ - tests/staticpress/js_object_test.rb
257
+ - tests/staticpress/metadata_test.rb
258
+ - tests/staticpress/plugin_test.rb
259
+ - tests/staticpress/pusher_test.rb
260
+ - tests/staticpress/route_test.rb
261
+ - tests/staticpress/server_test.rb
262
+ - tests/staticpress/site_test.rb
263
+ - tests/staticpress/theme_test.rb
264
+ - tests/staticpress/view_helpers_test.rb
265
+ - tests/staticpress_test.rb
266
+ - tests/test_blog/Gemfile
267
+ - tests/test_blog/README.markdown
268
+ - tests/test_blog/config.ru
269
+ - tests/test_blog/config.yml
270
+ - tests/test_blog/content/_posts/2011-07-20-hello.markdown
271
+ - tests/test_blog/content/_posts/2011-08-01-announcing-staticpress.markdown
272
+ - tests/test_blog/content/_posts/2011-08-02-staticpress.markdown
273
+ - tests/test_blog/content/_posts/2011-08-06-blogging-with-staticpress.markdown
274
+ - tests/test_blog/content/_posts/2011-08-06-conferences.markdown
275
+ - tests/test_blog/content/_posts/2011-08-06-in-charlotte.markdown
276
+ - tests/test_blog/content/_posts/2011-08-20-forever.markdown
277
+ - tests/test_blog/content/about.markdown
278
+ - tests/test_blog/content/contact.markdown
279
+ - tests/test_blog/content/foo/bar/baz.markdown
280
+ - tests/test_blog/content/index.markdown
281
+ - tests/test_blog/content/plain.txt
282
+ - tests/test_blog/content/ruby.png
283
+ - tests/test_blog/content/style1.css
284
+ - tests/test_blog/content/style2.css.sass
285
+ - tests/test_blog/content/style3.sass
286
+ - tests/test_blog/themes/test_theme/assets/scripts/application.js
287
+ - tests/test_blog/themes/test_theme/assets/styles/all.sass
288
+ - tests/test_blog/themes/test_theme/includes/list_posts.haml
289
+ - tests/test_blog/themes/test_theme/layouts/archive.haml
290
+ - tests/test_blog/themes/test_theme/layouts/atom.haml
291
+ - tests/test_blog/themes/test_theme/layouts/default.haml
292
+ - tests/test_blog/themes/test_theme/layouts/index.haml
293
+ - tests/test_blog/themes/test_theme/layouts/post_index.haml
294
+ - tests/test_blog/themes/test_theme/views/default.haml
295
+ - tests/test_case.rb
288
296
  homepage:
289
297
  licenses:
290
298
  - MIT
@@ -306,7 +314,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
306
314
  version: '0'
307
315
  requirements: []
308
316
  rubyforge_project: staticpress
309
- rubygems_version: 1.8.11
317
+ rubygems_version: 1.8.12
310
318
  signing_key:
311
319
  specification_version: 3
312
320
  summary: Blog-centric static site builder