staticpress 0.3.0 → 0.4.0
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.tar.gz.sig +0 -0
- data/docs/Gemfile +8 -0
- data/{tests/sample_sites/test_blog → docs}/README.markdown +0 -0
- data/{tests/sample_sites/test_blog → docs}/config.ru +0 -0
- data/docs/config.yml +2 -0
- data/docs/content/docs/diving-deeper.markdown +3 -0
- data/docs/content/docs/setup.markdown +15 -0
- data/docs/content/index.markdown +1 -0
- data/features/happy_path.feature +36 -1
- data/features/step_definitions/staticpress_steps.rb +1 -1
- data/lib/skeleton/Gemfile +0 -2
- data/lib/staticpress/booter.rb +1 -1
- data/lib/staticpress/cli.rb +2 -2
- data/lib/staticpress/content/base.rb +66 -23
- data/lib/staticpress/content/category.rb +12 -3
- data/lib/staticpress/content/collection_content.rb +0 -4
- data/lib/staticpress/content/index.rb +10 -3
- data/lib/staticpress/content/page.rb +32 -17
- data/lib/staticpress/content/post.rb +22 -27
- data/lib/staticpress/content/resource_content.rb +11 -3
- data/lib/staticpress/content/static_content.rb +10 -4
- data/lib/staticpress/content/tag.rb +12 -3
- data/lib/staticpress/content/theme.rb +17 -19
- data/lib/staticpress/helpers.rb +4 -0
- data/lib/staticpress/route.rb +21 -95
- data/lib/staticpress/server.rb +1 -3
- data/lib/staticpress/site.rb +20 -16
- data/lib/staticpress/version.rb +1 -1
- data/tests/staticpress/configuration_test.rb +4 -0
- data/tests/staticpress/content/base_test.rb +271 -0
- data/tests/staticpress/content/category_test.rb +29 -0
- data/tests/staticpress/content/index_test.rb +6 -0
- data/tests/staticpress/content/page_test.rb +37 -0
- data/tests/staticpress/content/post_test.rb +45 -0
- data/tests/staticpress/content/tag_test.rb +33 -0
- data/tests/staticpress/content/theme_test.rb +29 -0
- data/tests/{lib/staticpress → staticpress}/helpers_test.rb +2 -2
- data/tests/staticpress/js_object_test.rb +43 -0
- data/tests/staticpress/metadata_test.rb +16 -0
- data/tests/staticpress/plugin_test.rb +4 -0
- data/tests/staticpress/pusher_test.rb +9 -0
- data/tests/{lib/staticpress → staticpress}/route_test.rb +19 -41
- data/tests/{lib/staticpress → staticpress}/server_test.rb +5 -14
- data/tests/staticpress/site_test.rb +21 -0
- data/tests/staticpress/theme_test.rb +86 -0
- data/tests/staticpress/view_helpers_test.rb +28 -0
- data/tests/{lib/staticpress_test.rb → staticpress_test.rb} +3 -3
- data/tests/{sample_sites/test_blog → test_blog}/Gemfile +0 -2
- data/tests/test_blog/README.markdown +21 -0
- data/tests/test_blog/config.ru +8 -0
- data/tests/{sample_sites/test_blog → test_blog}/config.yml +0 -0
- data/tests/{sample_sites/test_blog → test_blog}/content/_posts/2011-07-20-hello.markdown +0 -0
- data/tests/{sample_sites/test_blog → test_blog}/content/_posts/2011-08-01-announcing-staticpress.markdown +0 -0
- data/tests/{sample_sites/test_blog → test_blog}/content/_posts/2011-08-02-staticpress.markdown +0 -0
- data/tests/{sample_sites/test_blog → test_blog}/content/_posts/2011-08-06-blogging-with-staticpress.markdown +0 -0
- data/tests/{sample_sites/test_blog → test_blog}/content/_posts/2011-08-06-conferences.markdown +0 -0
- data/tests/{sample_sites/test_blog → test_blog}/content/_posts/2011-08-06-in-charlotte.markdown +0 -0
- data/tests/{sample_sites/test_blog → test_blog}/content/_posts/2011-08-20-forever.markdown +0 -0
- data/tests/{sample_sites/test_blog → test_blog}/content/about.markdown +0 -0
- data/tests/{sample_sites/test_blog → test_blog}/content/contact.markdown +0 -0
- data/tests/{sample_sites/test_blog → test_blog}/content/foo/bar/baz.markdown +0 -0
- data/tests/test_blog/content/index.markdown +1 -0
- data/tests/{sample_sites/test_blog → test_blog}/content/plain.txt +0 -0
- data/tests/{sample_sites/test_blog → test_blog}/content/ruby.png +0 -0
- data/tests/{sample_sites/test_blog → test_blog}/content/style1.css +0 -0
- data/tests/{sample_sites/test_blog → test_blog}/content/style2.css.sass +0 -0
- data/tests/{sample_sites/test_blog → test_blog}/content/style3.sass +0 -0
- data/tests/{sample_sites/test_blog → test_blog}/themes/test_theme/assets/scripts/application.js +0 -0
- data/tests/{sample_sites/test_blog → test_blog}/themes/test_theme/assets/styles/all.sass +0 -0
- data/tests/{sample_sites/test_blog → test_blog}/themes/test_theme/includes/list_posts.haml +0 -0
- data/tests/{sample_sites/test_blog → test_blog}/themes/test_theme/layouts/archive.haml +0 -0
- data/tests/{sample_sites/test_blog → test_blog}/themes/test_theme/layouts/atom.haml +0 -0
- data/tests/{sample_sites/test_blog → test_blog}/themes/test_theme/layouts/default.haml +0 -0
- data/tests/{sample_sites/test_blog → test_blog}/themes/test_theme/layouts/index.haml +0 -0
- data/tests/{sample_sites/test_blog → test_blog}/themes/test_theme/layouts/post_index.haml +0 -0
- data/tests/{sample_sites/test_blog → test_blog}/themes/test_theme/views/default.haml +0 -0
- data/tests/{test_helper.rb → test_case.rb} +9 -5
- metadata +81 -73
- metadata.gz.sig +0 -0
- data/tests/lib/staticpress/configuration_test.rb +0 -4
- data/tests/lib/staticpress/content/base_test.rb +0 -6
- data/tests/lib/staticpress/content/category_test.rb +0 -62
- data/tests/lib/staticpress/content/index_test.rb +0 -45
- data/tests/lib/staticpress/content/page_test.rb +0 -147
- data/tests/lib/staticpress/content/post_test.rb +0 -89
- data/tests/lib/staticpress/content/tag_test.rb +0 -60
- data/tests/lib/staticpress/content/theme_test.rb +0 -114
- data/tests/lib/staticpress/js_object_test.rb +0 -45
- data/tests/lib/staticpress/metadata_test.rb +0 -19
- data/tests/lib/staticpress/plugin_test.rb +0 -4
- data/tests/lib/staticpress/pusher_test.rb +0 -9
- data/tests/lib/staticpress/site_test.rb +0 -26
- data/tests/lib/staticpress/theme_test.rb +0 -86
- 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 '
|
|
1
|
+
require_relative 'test_case'
|
|
2
2
|
|
|
3
3
|
require 'pathname'
|
|
4
4
|
|
|
5
|
-
class StaticpressTest <
|
|
5
|
+
class StaticpressTest < TestCase
|
|
6
6
|
def test_blog_path
|
|
7
|
-
assert_equal Pathname.new('tests/
|
|
7
|
+
assert_equal Pathname.new('tests/test_blog').expand_path, Staticpress.blog_path
|
|
8
8
|
end
|
|
9
9
|
|
|
10
10
|
def test_blog_path=
|
|
@@ -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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
data/tests/{sample_sites/test_blog → test_blog}/content/_posts/2011-08-02-staticpress.markdown
RENAMED
|
File without changes
|
|
File without changes
|
data/tests/{sample_sites/test_blog → test_blog}/content/_posts/2011-08-06-conferences.markdown
RENAMED
|
File without changes
|
data/tests/{sample_sites/test_blog → test_blog}/content/_posts/2011-08-06-in-charlotte.markdown
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
in page
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
data/tests/{sample_sites/test_blog → test_blog}/themes/test_theme/assets/scripts/application.js
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -8,9 +8,8 @@ require 'sass'
|
|
|
8
8
|
|
|
9
9
|
require 'staticpress'
|
|
10
10
|
|
|
11
|
-
class
|
|
12
|
-
|
|
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
|
-
#
|
|
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.
|
|
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-
|
|
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: &
|
|
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: *
|
|
65
|
+
version_requirements: *15630400
|
|
66
66
|
- !ruby/object:Gem::Dependency
|
|
67
67
|
name: compass
|
|
68
|
-
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: *
|
|
76
|
+
version_requirements: *15646340
|
|
77
77
|
- !ruby/object:Gem::Dependency
|
|
78
78
|
name: cucumber
|
|
79
|
-
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: *
|
|
87
|
+
version_requirements: *15645920
|
|
88
88
|
- !ruby/object:Gem::Dependency
|
|
89
89
|
name: haml
|
|
90
|
-
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: *
|
|
98
|
+
version_requirements: *15645500
|
|
99
99
|
- !ruby/object:Gem::Dependency
|
|
100
100
|
name: minitest
|
|
101
|
-
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: *
|
|
109
|
+
version_requirements: *15645080
|
|
110
110
|
- !ruby/object:Gem::Dependency
|
|
111
111
|
name: ruby-debug19
|
|
112
|
-
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: *
|
|
120
|
+
version_requirements: *15644660
|
|
121
121
|
- !ruby/object:Gem::Dependency
|
|
122
122
|
name: sass
|
|
123
|
-
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: *
|
|
131
|
+
version_requirements: *15644240
|
|
132
132
|
- !ruby/object:Gem::Dependency
|
|
133
133
|
name: bundler
|
|
134
|
-
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: *
|
|
142
|
+
version_requirements: *15643820
|
|
143
143
|
- !ruby/object:Gem::Dependency
|
|
144
144
|
name: rack
|
|
145
|
-
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: *
|
|
153
|
+
version_requirements: *15643400
|
|
154
154
|
- !ruby/object:Gem::Dependency
|
|
155
155
|
name: thor
|
|
156
|
-
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: *
|
|
164
|
+
version_requirements: *15642980
|
|
165
165
|
- !ruby/object:Gem::Dependency
|
|
166
166
|
name: tilt
|
|
167
|
-
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: *
|
|
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/
|
|
241
|
-
- tests/
|
|
242
|
-
- tests/
|
|
243
|
-
- tests/
|
|
244
|
-
- tests/
|
|
245
|
-
- tests/
|
|
246
|
-
- tests/
|
|
247
|
-
- tests/
|
|
248
|
-
- tests/
|
|
249
|
-
- tests/
|
|
250
|
-
- tests/
|
|
251
|
-
- tests/
|
|
252
|
-
- tests/
|
|
253
|
-
- tests/
|
|
254
|
-
- tests/
|
|
255
|
-
- tests/
|
|
256
|
-
- tests/
|
|
257
|
-
- tests/
|
|
258
|
-
- tests/
|
|
259
|
-
- tests/
|
|
260
|
-
- tests/
|
|
261
|
-
- tests/
|
|
262
|
-
- tests/
|
|
263
|
-
- tests/
|
|
264
|
-
- tests/
|
|
265
|
-
- tests/
|
|
266
|
-
- tests/
|
|
267
|
-
- tests/
|
|
268
|
-
- tests/
|
|
269
|
-
- tests/
|
|
270
|
-
- tests/
|
|
271
|
-
- tests/
|
|
272
|
-
- tests/
|
|
273
|
-
- tests/
|
|
274
|
-
- tests/
|
|
275
|
-
- tests/
|
|
276
|
-
- tests/
|
|
277
|
-
- tests/
|
|
278
|
-
- tests/
|
|
279
|
-
- tests/
|
|
280
|
-
- tests/
|
|
281
|
-
- tests/
|
|
282
|
-
- tests/
|
|
283
|
-
- tests/
|
|
284
|
-
- tests/
|
|
285
|
-
- tests/
|
|
286
|
-
- tests/
|
|
287
|
-
- tests/
|
|
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.
|
|
317
|
+
rubygems_version: 1.8.12
|
|
310
318
|
signing_key:
|
|
311
319
|
specification_version: 3
|
|
312
320
|
summary: Blog-centric static site builder
|