moft 1.0.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.
Files changed (48) hide show
  1. data/Gemfile +2 -0
  2. data/LICENSE +21 -0
  3. data/bin/moft +83 -0
  4. data/lib/moft.rb +89 -0
  5. data/lib/moft/command.rb +27 -0
  6. data/lib/moft/commands/build.rb +64 -0
  7. data/lib/moft/commands/new.rb +50 -0
  8. data/lib/moft/commands/serve.rb +33 -0
  9. data/lib/moft/configuration.rb +171 -0
  10. data/lib/moft/converter.rb +48 -0
  11. data/lib/moft/converters/identity.rb +21 -0
  12. data/lib/moft/converters/markdown.rb +43 -0
  13. data/lib/moft/converters/markdown/kramdown_parser.rb +44 -0
  14. data/lib/moft/converters/markdown/maruku_parser.rb +47 -0
  15. data/lib/moft/converters/markdown/rdiscount_parser.rb +26 -0
  16. data/lib/moft/converters/markdown/redcarpet_parser.rb +40 -0
  17. data/lib/moft/converters/textile.rb +50 -0
  18. data/lib/moft/convertible.rb +152 -0
  19. data/lib/moft/core_ext.rb +68 -0
  20. data/lib/moft/deprecator.rb +34 -0
  21. data/lib/moft/draft.rb +35 -0
  22. data/lib/moft/errors.rb +4 -0
  23. data/lib/moft/filters.rb +141 -0
  24. data/lib/moft/generator.rb +4 -0
  25. data/lib/moft/generators/pagination.rb +131 -0
  26. data/lib/moft/layout.rb +42 -0
  27. data/lib/moft/logger.rb +52 -0
  28. data/lib/moft/mime.types +85 -0
  29. data/lib/moft/page.rb +147 -0
  30. data/lib/moft/plugin.rb +75 -0
  31. data/lib/moft/post.rb +377 -0
  32. data/lib/moft/site.rb +422 -0
  33. data/lib/moft/static_file.rb +70 -0
  34. data/lib/moft/tags/gist.rb +30 -0
  35. data/lib/moft/tags/highlight.rb +83 -0
  36. data/lib/moft/tags/include.rb +37 -0
  37. data/lib/moft/tags/post_url.rb +46 -0
  38. data/lib/site_template/_config.yml +1 -0
  39. data/lib/site_template/_layouts/default.html +38 -0
  40. data/lib/site_template/_layouts/post.html +6 -0
  41. data/lib/site_template/_posts/0000-00-00-welcome-to-jekyll.markdown.erb +24 -0
  42. data/lib/site_template/css/screen.css +189 -0
  43. data/lib/site_template/css/syntax.css +60 -0
  44. data/lib/site_template/images/.gitkeep +0 -0
  45. data/lib/site_template/images/rss.png +0 -0
  46. data/lib/site_template/index.html +13 -0
  47. data/moft.gemspec +100 -0
  48. metadata +412 -0
@@ -0,0 +1,60 @@
1
+ .highlight { background: #ffffff; }
2
+ .highlight .c { color: #999988; font-style: italic } /* Comment */
3
+ .highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
4
+ .highlight .k { font-weight: bold } /* Keyword */
5
+ .highlight .o { font-weight: bold } /* Operator */
6
+ .highlight .cm { color: #999988; font-style: italic } /* Comment.Multiline */
7
+ .highlight .cp { color: #999999; font-weight: bold } /* Comment.Preproc */
8
+ .highlight .c1 { color: #999988; font-style: italic } /* Comment.Single */
9
+ .highlight .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */
10
+ .highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
11
+ .highlight .gd .x { color: #000000; background-color: #ffaaaa } /* Generic.Deleted.Specific */
12
+ .highlight .ge { font-style: italic } /* Generic.Emph */
13
+ .highlight .gr { color: #aa0000 } /* Generic.Error */
14
+ .highlight .gh { color: #999999 } /* Generic.Heading */
15
+ .highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
16
+ .highlight .gi .x { color: #000000; background-color: #aaffaa } /* Generic.Inserted.Specific */
17
+ .highlight .go { color: #888888 } /* Generic.Output */
18
+ .highlight .gp { color: #555555 } /* Generic.Prompt */
19
+ .highlight .gs { font-weight: bold } /* Generic.Strong */
20
+ .highlight .gu { color: #aaaaaa } /* Generic.Subheading */
21
+ .highlight .gt { color: #aa0000 } /* Generic.Traceback */
22
+ .highlight .kc { font-weight: bold } /* Keyword.Constant */
23
+ .highlight .kd { font-weight: bold } /* Keyword.Declaration */
24
+ .highlight .kp { font-weight: bold } /* Keyword.Pseudo */
25
+ .highlight .kr { font-weight: bold } /* Keyword.Reserved */
26
+ .highlight .kt { color: #445588; font-weight: bold } /* Keyword.Type */
27
+ .highlight .m { color: #009999 } /* Literal.Number */
28
+ .highlight .s { color: #d14 } /* Literal.String */
29
+ .highlight .na { color: #008080 } /* Name.Attribute */
30
+ .highlight .nb { color: #0086B3 } /* Name.Builtin */
31
+ .highlight .nc { color: #445588; font-weight: bold } /* Name.Class */
32
+ .highlight .no { color: #008080 } /* Name.Constant */
33
+ .highlight .ni { color: #800080 } /* Name.Entity */
34
+ .highlight .ne { color: #990000; font-weight: bold } /* Name.Exception */
35
+ .highlight .nf { color: #990000; font-weight: bold } /* Name.Function */
36
+ .highlight .nn { color: #555555 } /* Name.Namespace */
37
+ .highlight .nt { color: #000080 } /* Name.Tag */
38
+ .highlight .nv { color: #008080 } /* Name.Variable */
39
+ .highlight .ow { font-weight: bold } /* Operator.Word */
40
+ .highlight .w { color: #bbbbbb } /* Text.Whitespace */
41
+ .highlight .mf { color: #009999 } /* Literal.Number.Float */
42
+ .highlight .mh { color: #009999 } /* Literal.Number.Hex */
43
+ .highlight .mi { color: #009999 } /* Literal.Number.Integer */
44
+ .highlight .mo { color: #009999 } /* Literal.Number.Oct */
45
+ .highlight .sb { color: #d14 } /* Literal.String.Backtick */
46
+ .highlight .sc { color: #d14 } /* Literal.String.Char */
47
+ .highlight .sd { color: #d14 } /* Literal.String.Doc */
48
+ .highlight .s2 { color: #d14 } /* Literal.String.Double */
49
+ .highlight .se { color: #d14 } /* Literal.String.Escape */
50
+ .highlight .sh { color: #d14 } /* Literal.String.Heredoc */
51
+ .highlight .si { color: #d14 } /* Literal.String.Interpol */
52
+ .highlight .sx { color: #d14 } /* Literal.String.Other */
53
+ .highlight .sr { color: #009926 } /* Literal.String.Regex */
54
+ .highlight .s1 { color: #d14 } /* Literal.String.Single */
55
+ .highlight .ss { color: #990073 } /* Literal.String.Symbol */
56
+ .highlight .bp { color: #999999 } /* Name.Builtin.Pseudo */
57
+ .highlight .vc { color: #008080 } /* Name.Variable.Class */
58
+ .highlight .vg { color: #008080 } /* Name.Variable.Global */
59
+ .highlight .vi { color: #008080 } /* Name.Variable.Instance */
60
+ .highlight .il { color: #009999 } /* Literal.Number.Integer.Long */
File without changes
@@ -0,0 +1,13 @@
1
+ ---
2
+ layout: default
3
+ title: Your New Moft Site
4
+ ---
5
+
6
+ <div id="home">
7
+ <h1>Blog Posts</h1>
8
+ <ul class="posts">
9
+ {% for post in site.posts %}
10
+ <li><span>{{ post.date | date_to_string }}</span> &raquo; <a href="{{ post.url }}">{{ post.title }}</a></li>
11
+ {% endfor %}
12
+ </ul>
13
+ </div>
@@ -0,0 +1,100 @@
1
+ Gem::Specification.new do |s|
2
+ s.specification_version = 2 if s.respond_to? :specification_version=
3
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
4
+ s.rubygems_version = '1.3.5'
5
+
6
+ s.name = 'moft'
7
+ s.version = '1.0.0'
8
+ s.license = 'MIT'
9
+ s.date = '2013-05-02'
10
+ s.rubyforge_project = 'moft'
11
+
12
+ s.summary = "A simple, blog aware, static site generator."
13
+ s.description = "Moft is a simple, blog aware, static site generator."
14
+
15
+ s.authors = ["Alex Dowgailenko"]
16
+ s.email = 'v0idnull@psikon.com'
17
+ s.homepage = 'http://www.psikon.com/'
18
+
19
+ s.require_paths = %w[lib]
20
+
21
+ s.executables = ["moft"]
22
+
23
+ # s.rdoc_options = ["--charset=UTF-8"]
24
+ # s.extra_rdoc_files = %w[README.textile LICENSE]
25
+
26
+ s.add_runtime_dependency('liquid', "~> 2.3")
27
+ s.add_runtime_dependency('directory_watcher', "~> 1.4.1")
28
+ s.add_runtime_dependency('maruku', "~> 0.5")
29
+ s.add_runtime_dependency('kramdown', "~> 0.14")
30
+ s.add_runtime_dependency('commander', "~> 4.1.3")
31
+ s.add_runtime_dependency('safe_yaml', "~> 0.7.0")
32
+ s.add_runtime_dependency('colorator', "~> 0.1")
33
+
34
+ s.add_development_dependency('rake', "~> 10.0.3")
35
+ s.add_development_dependency('rdoc', "~> 3.11")
36
+ s.add_development_dependency('redgreen', "~> 1.2")
37
+ s.add_development_dependency('shoulda', "~> 3.3.2")
38
+ s.add_development_dependency('rr', "~> 1.0")
39
+ s.add_development_dependency('cucumber', "~> 1.2.1", '!= 1.2.4')
40
+ s.add_development_dependency('RedCloth', "~> 4.2")
41
+ s.add_development_dependency('rdiscount', "~> 1.6")
42
+ s.add_development_dependency('redcarpet', "~> 2.2.2")
43
+ s.add_development_dependency('launchy', "~> 2.1.2")
44
+ s.add_development_dependency('simplecov', "~> 0.7")
45
+ s.add_development_dependency('simplecov-gem-adapter', "~> 1.0.1")
46
+
47
+ # = MANIFEST =
48
+ s.files = %w[
49
+ Gemfile
50
+ LICENSE
51
+ bin/moft
52
+ moft.gemspec
53
+ lib/moft.rb
54
+ lib/moft/command.rb
55
+ lib/moft/commands/build.rb
56
+ lib/moft/commands/new.rb
57
+ lib/moft/commands/serve.rb
58
+ lib/moft/configuration.rb
59
+ lib/moft/converter.rb
60
+ lib/moft/converters/identity.rb
61
+ lib/moft/converters/markdown.rb
62
+ lib/moft/converters/markdown/kramdown_parser.rb
63
+ lib/moft/converters/markdown/maruku_parser.rb
64
+ lib/moft/converters/markdown/rdiscount_parser.rb
65
+ lib/moft/converters/markdown/redcarpet_parser.rb
66
+ lib/moft/converters/textile.rb
67
+ lib/moft/convertible.rb
68
+ lib/moft/core_ext.rb
69
+ lib/moft/deprecator.rb
70
+ lib/moft/draft.rb
71
+ lib/moft/errors.rb
72
+ lib/moft/filters.rb
73
+ lib/moft/generator.rb
74
+ lib/moft/generators/pagination.rb
75
+ lib/moft/layout.rb
76
+ lib/moft/logger.rb
77
+ lib/moft/mime.types
78
+ lib/moft/page.rb
79
+ lib/moft/plugin.rb
80
+ lib/moft/post.rb
81
+ lib/moft/site.rb
82
+ lib/moft/static_file.rb
83
+ lib/moft/tags/gist.rb
84
+ lib/moft/tags/highlight.rb
85
+ lib/moft/tags/include.rb
86
+ lib/moft/tags/post_url.rb
87
+ lib/site_template/_config.yml
88
+ lib/site_template/_layouts/default.html
89
+ lib/site_template/_layouts/post.html
90
+ lib/site_template/_posts/0000-00-00-welcome-to-jekyll.markdown.erb
91
+ lib/site_template/css/screen.css
92
+ lib/site_template/css/syntax.css
93
+ lib/site_template/images/.gitkeep
94
+ lib/site_template/images/rss.png
95
+ lib/site_template/index.html
96
+ ]
97
+ # = MANIFEST =
98
+
99
+ # s.test_files = s.files.select { |path| path =~ /^test\/test_.*\.rb/ }
100
+ end
metadata ADDED
@@ -0,0 +1,412 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: moft
3
+ version: !ruby/object:Gem::Version
4
+ hash: 23
5
+ prerelease:
6
+ segments:
7
+ - 1
8
+ - 0
9
+ - 0
10
+ version: 1.0.0
11
+ platform: ruby
12
+ authors:
13
+ - Alex Dowgailenko
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2013-05-02 00:00:00 Z
19
+ dependencies:
20
+ - !ruby/object:Gem::Dependency
21
+ name: liquid
22
+ prerelease: false
23
+ requirement: &id001 !ruby/object:Gem::Requirement
24
+ none: false
25
+ requirements:
26
+ - - ~>
27
+ - !ruby/object:Gem::Version
28
+ hash: 5
29
+ segments:
30
+ - 2
31
+ - 3
32
+ version: "2.3"
33
+ type: :runtime
34
+ version_requirements: *id001
35
+ - !ruby/object:Gem::Dependency
36
+ name: directory_watcher
37
+ prerelease: false
38
+ requirement: &id002 !ruby/object:Gem::Requirement
39
+ none: false
40
+ requirements:
41
+ - - ~>
42
+ - !ruby/object:Gem::Version
43
+ hash: 5
44
+ segments:
45
+ - 1
46
+ - 4
47
+ - 1
48
+ version: 1.4.1
49
+ type: :runtime
50
+ version_requirements: *id002
51
+ - !ruby/object:Gem::Dependency
52
+ name: maruku
53
+ prerelease: false
54
+ requirement: &id003 !ruby/object:Gem::Requirement
55
+ none: false
56
+ requirements:
57
+ - - ~>
58
+ - !ruby/object:Gem::Version
59
+ hash: 1
60
+ segments:
61
+ - 0
62
+ - 5
63
+ version: "0.5"
64
+ type: :runtime
65
+ version_requirements: *id003
66
+ - !ruby/object:Gem::Dependency
67
+ name: kramdown
68
+ prerelease: false
69
+ requirement: &id004 !ruby/object:Gem::Requirement
70
+ none: false
71
+ requirements:
72
+ - - ~>
73
+ - !ruby/object:Gem::Version
74
+ hash: 23
75
+ segments:
76
+ - 0
77
+ - 14
78
+ version: "0.14"
79
+ type: :runtime
80
+ version_requirements: *id004
81
+ - !ruby/object:Gem::Dependency
82
+ name: commander
83
+ prerelease: false
84
+ requirement: &id005 !ruby/object:Gem::Requirement
85
+ none: false
86
+ requirements:
87
+ - - ~>
88
+ - !ruby/object:Gem::Version
89
+ hash: 61
90
+ segments:
91
+ - 4
92
+ - 1
93
+ - 3
94
+ version: 4.1.3
95
+ type: :runtime
96
+ version_requirements: *id005
97
+ - !ruby/object:Gem::Dependency
98
+ name: safe_yaml
99
+ prerelease: false
100
+ requirement: &id006 !ruby/object:Gem::Requirement
101
+ none: false
102
+ requirements:
103
+ - - ~>
104
+ - !ruby/object:Gem::Version
105
+ hash: 3
106
+ segments:
107
+ - 0
108
+ - 7
109
+ - 0
110
+ version: 0.7.0
111
+ type: :runtime
112
+ version_requirements: *id006
113
+ - !ruby/object:Gem::Dependency
114
+ name: colorator
115
+ prerelease: false
116
+ requirement: &id007 !ruby/object:Gem::Requirement
117
+ none: false
118
+ requirements:
119
+ - - ~>
120
+ - !ruby/object:Gem::Version
121
+ hash: 9
122
+ segments:
123
+ - 0
124
+ - 1
125
+ version: "0.1"
126
+ type: :runtime
127
+ version_requirements: *id007
128
+ - !ruby/object:Gem::Dependency
129
+ name: rake
130
+ prerelease: false
131
+ requirement: &id008 !ruby/object:Gem::Requirement
132
+ none: false
133
+ requirements:
134
+ - - ~>
135
+ - !ruby/object:Gem::Version
136
+ hash: 73
137
+ segments:
138
+ - 10
139
+ - 0
140
+ - 3
141
+ version: 10.0.3
142
+ type: :development
143
+ version_requirements: *id008
144
+ - !ruby/object:Gem::Dependency
145
+ name: rdoc
146
+ prerelease: false
147
+ requirement: &id009 !ruby/object:Gem::Requirement
148
+ none: false
149
+ requirements:
150
+ - - ~>
151
+ - !ruby/object:Gem::Version
152
+ hash: 17
153
+ segments:
154
+ - 3
155
+ - 11
156
+ version: "3.11"
157
+ type: :development
158
+ version_requirements: *id009
159
+ - !ruby/object:Gem::Dependency
160
+ name: redgreen
161
+ prerelease: false
162
+ requirement: &id010 !ruby/object:Gem::Requirement
163
+ none: false
164
+ requirements:
165
+ - - ~>
166
+ - !ruby/object:Gem::Version
167
+ hash: 11
168
+ segments:
169
+ - 1
170
+ - 2
171
+ version: "1.2"
172
+ type: :development
173
+ version_requirements: *id010
174
+ - !ruby/object:Gem::Dependency
175
+ name: shoulda
176
+ prerelease: false
177
+ requirement: &id011 !ruby/object:Gem::Requirement
178
+ none: false
179
+ requirements:
180
+ - - ~>
181
+ - !ruby/object:Gem::Version
182
+ hash: 15
183
+ segments:
184
+ - 3
185
+ - 3
186
+ - 2
187
+ version: 3.3.2
188
+ type: :development
189
+ version_requirements: *id011
190
+ - !ruby/object:Gem::Dependency
191
+ name: rr
192
+ prerelease: false
193
+ requirement: &id012 !ruby/object:Gem::Requirement
194
+ none: false
195
+ requirements:
196
+ - - ~>
197
+ - !ruby/object:Gem::Version
198
+ hash: 15
199
+ segments:
200
+ - 1
201
+ - 0
202
+ version: "1.0"
203
+ type: :development
204
+ version_requirements: *id012
205
+ - !ruby/object:Gem::Dependency
206
+ name: cucumber
207
+ prerelease: false
208
+ requirement: &id013 !ruby/object:Gem::Requirement
209
+ none: false
210
+ requirements:
211
+ - - ~>
212
+ - !ruby/object:Gem::Version
213
+ hash: 29
214
+ segments:
215
+ - 1
216
+ - 2
217
+ - 1
218
+ version: 1.2.1
219
+ - - "!="
220
+ - !ruby/object:Gem::Version
221
+ hash: 23
222
+ segments:
223
+ - 1
224
+ - 2
225
+ - 4
226
+ version: 1.2.4
227
+ type: :development
228
+ version_requirements: *id013
229
+ - !ruby/object:Gem::Dependency
230
+ name: RedCloth
231
+ prerelease: false
232
+ requirement: &id014 !ruby/object:Gem::Requirement
233
+ none: false
234
+ requirements:
235
+ - - ~>
236
+ - !ruby/object:Gem::Version
237
+ hash: 31
238
+ segments:
239
+ - 4
240
+ - 2
241
+ version: "4.2"
242
+ type: :development
243
+ version_requirements: *id014
244
+ - !ruby/object:Gem::Dependency
245
+ name: rdiscount
246
+ prerelease: false
247
+ requirement: &id015 !ruby/object:Gem::Requirement
248
+ none: false
249
+ requirements:
250
+ - - ~>
251
+ - !ruby/object:Gem::Version
252
+ hash: 3
253
+ segments:
254
+ - 1
255
+ - 6
256
+ version: "1.6"
257
+ type: :development
258
+ version_requirements: *id015
259
+ - !ruby/object:Gem::Dependency
260
+ name: redcarpet
261
+ prerelease: false
262
+ requirement: &id016 !ruby/object:Gem::Requirement
263
+ none: false
264
+ requirements:
265
+ - - ~>
266
+ - !ruby/object:Gem::Version
267
+ hash: 3
268
+ segments:
269
+ - 2
270
+ - 2
271
+ - 2
272
+ version: 2.2.2
273
+ type: :development
274
+ version_requirements: *id016
275
+ - !ruby/object:Gem::Dependency
276
+ name: launchy
277
+ prerelease: false
278
+ requirement: &id017 !ruby/object:Gem::Requirement
279
+ none: false
280
+ requirements:
281
+ - - ~>
282
+ - !ruby/object:Gem::Version
283
+ hash: 15
284
+ segments:
285
+ - 2
286
+ - 1
287
+ - 2
288
+ version: 2.1.2
289
+ type: :development
290
+ version_requirements: *id017
291
+ - !ruby/object:Gem::Dependency
292
+ name: simplecov
293
+ prerelease: false
294
+ requirement: &id018 !ruby/object:Gem::Requirement
295
+ none: false
296
+ requirements:
297
+ - - ~>
298
+ - !ruby/object:Gem::Version
299
+ hash: 5
300
+ segments:
301
+ - 0
302
+ - 7
303
+ version: "0.7"
304
+ type: :development
305
+ version_requirements: *id018
306
+ - !ruby/object:Gem::Dependency
307
+ name: simplecov-gem-adapter
308
+ prerelease: false
309
+ requirement: &id019 !ruby/object:Gem::Requirement
310
+ none: false
311
+ requirements:
312
+ - - ~>
313
+ - !ruby/object:Gem::Version
314
+ hash: 21
315
+ segments:
316
+ - 1
317
+ - 0
318
+ - 1
319
+ version: 1.0.1
320
+ type: :development
321
+ version_requirements: *id019
322
+ description: Moft is a simple, blog aware, static site generator.
323
+ email: v0idnull@psikon.com
324
+ executables:
325
+ - moft
326
+ extensions: []
327
+
328
+ extra_rdoc_files: []
329
+
330
+ files:
331
+ - Gemfile
332
+ - LICENSE
333
+ - bin/moft
334
+ - moft.gemspec
335
+ - lib/moft.rb
336
+ - lib/moft/command.rb
337
+ - lib/moft/commands/build.rb
338
+ - lib/moft/commands/new.rb
339
+ - lib/moft/commands/serve.rb
340
+ - lib/moft/configuration.rb
341
+ - lib/moft/converter.rb
342
+ - lib/moft/converters/identity.rb
343
+ - lib/moft/converters/markdown.rb
344
+ - lib/moft/converters/markdown/kramdown_parser.rb
345
+ - lib/moft/converters/markdown/maruku_parser.rb
346
+ - lib/moft/converters/markdown/rdiscount_parser.rb
347
+ - lib/moft/converters/markdown/redcarpet_parser.rb
348
+ - lib/moft/converters/textile.rb
349
+ - lib/moft/convertible.rb
350
+ - lib/moft/core_ext.rb
351
+ - lib/moft/deprecator.rb
352
+ - lib/moft/draft.rb
353
+ - lib/moft/errors.rb
354
+ - lib/moft/filters.rb
355
+ - lib/moft/generator.rb
356
+ - lib/moft/generators/pagination.rb
357
+ - lib/moft/layout.rb
358
+ - lib/moft/logger.rb
359
+ - lib/moft/mime.types
360
+ - lib/moft/page.rb
361
+ - lib/moft/plugin.rb
362
+ - lib/moft/post.rb
363
+ - lib/moft/site.rb
364
+ - lib/moft/static_file.rb
365
+ - lib/moft/tags/gist.rb
366
+ - lib/moft/tags/highlight.rb
367
+ - lib/moft/tags/include.rb
368
+ - lib/moft/tags/post_url.rb
369
+ - lib/site_template/_config.yml
370
+ - lib/site_template/_layouts/default.html
371
+ - lib/site_template/_layouts/post.html
372
+ - lib/site_template/_posts/0000-00-00-welcome-to-jekyll.markdown.erb
373
+ - lib/site_template/css/screen.css
374
+ - lib/site_template/css/syntax.css
375
+ - lib/site_template/images/.gitkeep
376
+ - lib/site_template/images/rss.png
377
+ - lib/site_template/index.html
378
+ homepage: http://www.psikon.com/
379
+ licenses:
380
+ - MIT
381
+ post_install_message:
382
+ rdoc_options: []
383
+
384
+ require_paths:
385
+ - lib
386
+ required_ruby_version: !ruby/object:Gem::Requirement
387
+ none: false
388
+ requirements:
389
+ - - ">="
390
+ - !ruby/object:Gem::Version
391
+ hash: 3
392
+ segments:
393
+ - 0
394
+ version: "0"
395
+ required_rubygems_version: !ruby/object:Gem::Requirement
396
+ none: false
397
+ requirements:
398
+ - - ">="
399
+ - !ruby/object:Gem::Version
400
+ hash: 3
401
+ segments:
402
+ - 0
403
+ version: "0"
404
+ requirements: []
405
+
406
+ rubyforge_project: moft
407
+ rubygems_version: 1.8.24
408
+ signing_key:
409
+ specification_version: 2
410
+ summary: A simple, blog aware, static site generator.
411
+ test_files: []
412
+