monad 0.0.2 → 0.0.3

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 (188) hide show
  1. checksums.yaml +7 -0
  2. data/CONTRIBUTING.markdown +91 -0
  3. data/Gemfile +1 -1
  4. data/History.markdown +772 -0
  5. data/{README.md → README.markdown} +5 -2
  6. data/Rakefile +163 -1
  7. data/bin/monad +86 -30
  8. data/features/create_sites.feature +54 -25
  9. data/features/data.feature +65 -0
  10. data/features/data_sources.feature +10 -10
  11. data/features/drafts.feature +5 -5
  12. data/features/embed_filters.feature +10 -10
  13. data/features/include_tag.feature +48 -0
  14. data/features/markdown.feature +5 -5
  15. data/features/pagination.feature +38 -10
  16. data/features/permalinks.feature +31 -11
  17. data/features/post_data.feature +41 -41
  18. data/features/post_excerpts.feature +50 -0
  19. data/features/site_configuration.feature +47 -26
  20. data/features/site_data.feature +30 -24
  21. data/features/step_definitions/{monad_steps.rb → jekyll_steps.rb} +66 -52
  22. data/features/support/env.rb +27 -8
  23. data/lib/jekyll.rb +99 -0
  24. data/lib/jekyll/cleaner.rb +73 -0
  25. data/lib/{monad → jekyll}/command.rb +6 -6
  26. data/lib/{monad → jekyll}/commands/build.rb +9 -9
  27. data/lib/jekyll/commands/doctor.rb +67 -0
  28. data/lib/jekyll/commands/new.rb +67 -0
  29. data/lib/jekyll/commands/serve.rb +65 -0
  30. data/lib/{monad → jekyll}/configuration.rb +60 -18
  31. data/lib/{monad → jekyll}/converter.rb +1 -1
  32. data/lib/{monad → jekyll}/converters/identity.rb +1 -1
  33. data/lib/{monad → jekyll}/converters/markdown.rb +2 -2
  34. data/lib/jekyll/converters/markdown/kramdown_parser.rb +29 -0
  35. data/lib/{monad → jekyll}/converters/markdown/maruku_parser.rb +12 -8
  36. data/lib/{monad → jekyll}/converters/markdown/rdiscount_parser.rb +4 -2
  37. data/lib/{monad → jekyll}/converters/markdown/redcarpet_parser.rb +1 -1
  38. data/lib/{monad → jekyll}/converters/textile.rb +1 -1
  39. data/lib/{monad → jekyll}/convertible.rb +39 -17
  40. data/lib/{monad → jekyll}/core_ext.rb +22 -4
  41. data/lib/jekyll/deprecator.rb +36 -0
  42. data/lib/{monad → jekyll}/draft.rb +1 -1
  43. data/lib/{monad → jekyll}/drivers/json_driver.rb +1 -1
  44. data/lib/{monad → jekyll}/drivers/yaml_driver.rb +1 -1
  45. data/lib/{monad → jekyll}/errors.rb +1 -1
  46. data/lib/jekyll/excerpt.rb +113 -0
  47. data/lib/{monad → jekyll}/filters.rb +16 -6
  48. data/lib/{monad → jekyll}/generator.rb +1 -1
  49. data/lib/jekyll/generators/pagination.rb +214 -0
  50. data/lib/{monad → jekyll}/layout.rb +4 -1
  51. data/lib/{monad → jekyll}/mime.types +0 -0
  52. data/lib/{monad → jekyll}/page.rb +36 -39
  53. data/lib/{monad → jekyll}/plugin.rb +1 -1
  54. data/lib/{monad → jekyll}/post.rb +58 -123
  55. data/lib/jekyll/related_posts.rb +59 -0
  56. data/lib/{monad → jekyll}/site.rb +120 -123
  57. data/lib/{monad → jekyll}/static_file.rb +1 -1
  58. data/lib/jekyll/stevenson.rb +89 -0
  59. data/lib/jekyll/tags/gist.rb +48 -0
  60. data/lib/{monad → jekyll}/tags/highlight.rb +3 -3
  61. data/lib/jekyll/tags/include.rb +135 -0
  62. data/lib/{monad → jekyll}/tags/post_url.rb +8 -6
  63. data/lib/jekyll/url.rb +67 -0
  64. data/lib/monad.rb +36 -27
  65. data/lib/site_template/_config.yml +2 -1
  66. data/lib/site_template/_layouts/default.html +21 -23
  67. data/lib/site_template/_layouts/post.html +1 -1
  68. data/lib/site_template/_posts/{0000-00-00-welcome-to-monad.markdown.erb → 0000-00-00-welcome-to-jekyll.markdown.erb} +6 -6
  69. data/lib/site_template/css/main.css +22 -27
  70. data/lib/site_template/index.html +2 -2
  71. data/monad.gemspec +153 -52
  72. data/site/.gitignore +4 -0
  73. data/site/CNAME +1 -0
  74. data/site/README +1 -0
  75. data/site/_config.yml +6 -0
  76. data/site/_includes/analytics.html +32 -0
  77. data/site/_includes/docs_contents.html +16 -0
  78. data/site/_includes/docs_contents_mobile.html +23 -0
  79. data/site/_includes/docs_option.html +11 -0
  80. data/site/_includes/docs_ul.html +20 -0
  81. data/site/_includes/footer.html +15 -0
  82. data/site/_includes/header.html +18 -0
  83. data/site/_includes/news_contents.html +23 -0
  84. data/site/_includes/news_contents_mobile.html +11 -0
  85. data/site/_includes/news_item.html +24 -0
  86. data/site/_includes/primary-nav-items.html +14 -0
  87. data/site/_includes/section_nav.html +22 -0
  88. data/site/_includes/top.html +17 -0
  89. data/site/_layouts/default.html +12 -0
  90. data/site/_layouts/docs.html +23 -0
  91. data/site/_layouts/news.html +19 -0
  92. data/site/_layouts/news_item.html +27 -0
  93. data/site/_posts/2013-05-06-jekyll-1-0-0-released.markdown +23 -0
  94. data/site/_posts/2013-05-08-jekyll-1-0-1-released.markdown +27 -0
  95. data/site/_posts/2013-05-12-jekyll-1-0-2-released.markdown +28 -0
  96. data/site/_posts/2013-06-07-jekyll-1-0-3-released.markdown +25 -0
  97. data/site/_posts/2013-07-14-jekyll-1-1-0-released.markdown +27 -0
  98. data/site/_posts/2013-07-24-jekyll-1-1-1-released.markdown +31 -0
  99. data/site/_posts/2013-07-25-jekyll-1-0-4-released.markdown +20 -0
  100. data/site/_posts/2013-07-25-jekyll-1-1-2-released.markdown +20 -0
  101. data/site/_posts/2013-09-06-jekyll-1-2-0-released.markdown +23 -0
  102. data/site/_posts/2013-09-14-jekyll-1-2-1-released.markdown +19 -0
  103. data/site/css/gridism.css +110 -0
  104. data/site/css/normalize.css +1 -0
  105. data/site/css/pygments.css +70 -0
  106. data/site/css/style.css +946 -0
  107. data/site/docs/configuration.md +373 -0
  108. data/site/docs/contributing.md +128 -0
  109. data/site/docs/datafiles.md +63 -0
  110. data/site/docs/deployment-methods.md +109 -0
  111. data/site/docs/drafts.md +20 -0
  112. data/site/docs/extras.md +56 -0
  113. data/site/docs/frontmatter.md +180 -0
  114. data/site/docs/github-pages.md +91 -0
  115. data/site/docs/heroku.md +9 -0
  116. data/site/docs/history.md +722 -0
  117. data/site/docs/index.md +52 -0
  118. data/site/docs/installation.md +76 -0
  119. data/site/docs/migrations.md +257 -0
  120. data/site/docs/pages.md +86 -0
  121. data/site/docs/pagination.md +211 -0
  122. data/site/docs/permalinks.md +180 -0
  123. data/site/docs/plugins.md +508 -0
  124. data/site/docs/posts.md +181 -0
  125. data/site/docs/quickstart.md +32 -0
  126. data/site/docs/resources.md +46 -0
  127. data/site/docs/sites.md +29 -0
  128. data/site/docs/structure.md +190 -0
  129. data/site/docs/templates.md +319 -0
  130. data/site/docs/troubleshooting.md +150 -0
  131. data/site/docs/upgrading.md +146 -0
  132. data/site/docs/usage.md +63 -0
  133. data/site/docs/variables.md +322 -0
  134. data/site/favicon.png +0 -0
  135. data/site/feed.xml +36 -0
  136. data/site/freenode.txt +1 -0
  137. data/site/img/article-footer.png +0 -0
  138. data/site/img/footer-arrow.png +0 -0
  139. data/site/img/footer-logo.png +0 -0
  140. data/site/img/logo-2x.png +0 -0
  141. data/site/img/octojekyll.png +0 -0
  142. data/site/img/tube.png +0 -0
  143. data/site/img/tube1x.png +0 -0
  144. data/site/index.html +90 -0
  145. data/site/js/modernizr-2.5.3.min.js +4 -0
  146. data/site/news/index.html +10 -0
  147. data/site/news/releases/index.html +10 -0
  148. data/test/helper.rb +6 -3
  149. data/test/source/+/foo.md +7 -0
  150. data/test/source/_data/languages.yml +2 -0
  151. data/test/source/_data/members.yaml +7 -0
  152. data/test/source/_data/products.yml +4 -0
  153. data/test/source/_includes/params.html +7 -0
  154. data/test/source/_layouts/default.html +1 -1
  155. data/test/source/_layouts/post/simple.html +1 -0
  156. data/test/source/_plugins/dummy.rb +1 -1
  157. data/test/source/_posts/2013-01-02-post-excerpt.markdown +1 -1
  158. data/test/source/_posts/2013-07-22-post-excerpt-with-layout.markdown +23 -0
  159. data/test/source/_posts/2013-08-01-mkdn-extension.mkdn +0 -0
  160. data/test/source/deal.with.dots.html +1 -1
  161. data/test/source/products.yml +4 -0
  162. data/test/test_configuration.rb +46 -11
  163. data/test/test_convertible.rb +2 -2
  164. data/test/test_excerpt.rb +78 -0
  165. data/test/test_filters.rb +4 -4
  166. data/test/test_generated_site.rb +13 -13
  167. data/test/test_json_driver.rb +9 -9
  168. data/test/test_kramdown.rb +32 -5
  169. data/test/test_new_command.rb +8 -8
  170. data/test/test_page.rb +12 -3
  171. data/test/test_pager.rb +34 -33
  172. data/test/test_post.rb +34 -26
  173. data/test/test_redcloth.rb +3 -3
  174. data/test/test_related_posts.rb +47 -0
  175. data/test/test_site.rb +102 -44
  176. data/test/test_tags.rb +168 -23
  177. data/test/test_url.rb +28 -0
  178. data/test/test_yaml_driver.rb +6 -6
  179. metadata +215 -137
  180. data/lib/monad/commands/doctor.rb +0 -29
  181. data/lib/monad/commands/new.rb +0 -50
  182. data/lib/monad/commands/serve.rb +0 -33
  183. data/lib/monad/converters/markdown/kramdown_parser.rb +0 -44
  184. data/lib/monad/deprecator.rb +0 -32
  185. data/lib/monad/generators/pagination.rb +0 -143
  186. data/lib/monad/logger.rb +0 -54
  187. data/lib/monad/tags/gist.rb +0 -30
  188. data/lib/monad/tags/include.rb +0 -37
@@ -4,6 +4,6 @@ layout: default
4
4
  <h2>{{ page.title }}</h2>
5
5
  <p class="meta">{{ page.date | date_to_string }}</p>
6
6
 
7
- <div id="post">
7
+ <div class="post">
8
8
  {{ content }}
9
9
  </div>
@@ -1,14 +1,14 @@
1
1
  ---
2
2
  layout: post
3
- title: "Welcome to Monad!"
3
+ title: "Welcome to Jekyll!"
4
4
  date: <%= Time.now.strftime('%Y-%m-%d %H:%M:%S') %>
5
- categories: monad update
5
+ categories: jekyll update
6
6
  ---
7
7
 
8
8
  You'll find this post in your `_posts` directory - edit this post and re-build (or run with the `-w` switch) to see your changes!
9
9
  To add new posts, simply add a file in the `_posts` directory that follows the convention: YYYY-MM-DD-name-of-post.ext.
10
10
 
11
- Monad also offers powerful support for code snippets:
11
+ Jekyll also offers powerful support for code snippets:
12
12
 
13
13
  {% highlight ruby %}
14
14
  def print_hi(name)
@@ -18,7 +18,7 @@ print_hi('Tom')
18
18
  #=> prints 'Hi, Tom' to STDOUT.
19
19
  {% endhighlight %}
20
20
 
21
- Check out the [Monad docs][monad] for more info on how to get the most out of Monad. File all bugs/feature requests at [Monad's GitHub repo][monad-gh].
21
+ Check out the [Jekyll docs][jekyll] for more info on how to get the most out of Jekyll. File all bugs/feature requests at [Jekyll's GitHub repo][jekyll-gh].
22
22
 
23
- [monad-gh]: https://github.com/mojombo/monad
24
- [monad]: http://monadrb.com
23
+ [jekyll-gh]: https://github.com/mojombo/jekyll
24
+ [jekyll]: http://jekyllrb.com
@@ -29,26 +29,21 @@ a { color: #00a; }
29
29
  a:hover { color: #000; }
30
30
  a:visited { color: #a0a; }
31
31
 
32
- table {
33
- font-size: inherit;
34
- font: 100%;
35
- }
36
-
37
32
  /*****************************************************************************/
38
33
  /*
39
34
  /* Home
40
35
  /*
41
36
  /*****************************************************************************/
42
- ul.posts {
37
+ .posts {
43
38
  list-style-type: none;
44
39
  margin-bottom: 2em;
45
40
  }
46
41
 
47
- ul.posts li {
42
+ .posts li {
48
43
  line-height: 1.75em;
49
44
  }
50
45
 
51
- ul.posts span {
46
+ .posts span {
52
47
  color: #aaa;
53
48
  font-family: Monaco, "Courier New", monospace;
54
49
  font-size: 80%;
@@ -68,38 +63,38 @@ ul.posts span {
68
63
  line-height: 1.5em;
69
64
  }
70
65
 
71
- .site .header a {
66
+ .header a {
72
67
  font-weight: bold;
73
68
  text-decoration: none;
74
69
  }
75
70
 
76
- .site .header h1.title {
71
+ .title {
77
72
  display: inline-block;
78
73
  margin-bottom: 2em;
79
74
  }
80
75
 
81
- .site .header h1.title a {
76
+ .title a {
82
77
  color: #a00;
83
78
  }
84
79
 
85
- .site .header h1.title a:hover {
80
+ .title a:hover {
86
81
  color: #000;
87
82
  }
88
83
 
89
- .site .header a.extra {
84
+ .header a.extra {
90
85
  color: #aaa;
91
86
  margin-left: 1em;
92
87
  }
93
88
 
94
- .site .header a.extra:hover {
89
+ .header a.extra:hover {
95
90
  color: #000;
96
91
  }
97
92
 
98
- .site .meta {
93
+ .meta {
99
94
  color: #aaa;
100
95
  }
101
96
 
102
- .site .footer {
97
+ .footer {
103
98
  font-size: 80%;
104
99
  color: #666;
105
100
  border-top: 4px solid #eee;
@@ -107,22 +102,22 @@ ul.posts span {
107
102
  overflow: hidden;
108
103
  }
109
104
 
110
- .site .footer .contact {
105
+ .footer .contact {
111
106
  float: left;
112
107
  margin-right: 3em;
113
108
  }
114
109
 
115
- .site .footer .contact a {
110
+ .footer .contact a {
116
111
  color: #8085C1;
117
112
  }
118
113
 
119
- .site .footer .rss {
114
+ .footer .rss {
120
115
  margin-top: 1.1em;
121
116
  margin-right: -.2em;
122
117
  float: right;
123
118
  }
124
119
 
125
- .site .footer .rss img {
120
+ .footer .rss img {
126
121
  border: 0;
127
122
  }
128
123
 
@@ -133,33 +128,33 @@ ul.posts span {
133
128
  /*****************************************************************************/
134
129
 
135
130
  /* standard */
136
- #post pre {
131
+ .post pre {
137
132
  border: 1px solid #ddd;
138
133
  background-color: #eef;
139
134
  padding: 0 .4em;
140
135
  }
141
136
 
142
- #post ul, #post ol {
137
+ .post ul, .post ol {
143
138
  margin-left: 1.35em;
144
139
  }
145
140
 
146
- #post code {
141
+ .post code {
147
142
  border: 1px solid #ddd;
148
143
  background-color: #eef;
149
144
  padding: 0 .2em;
150
145
  }
151
146
 
152
- #post pre code {
147
+ .post pre code {
153
148
  border: none;
154
149
  }
155
150
 
156
151
  /* terminal */
157
- #post pre.terminal {
152
+ .post pre.terminal {
158
153
  border: 1px solid #000;
159
154
  background-color: #333;
160
155
  color: #FFF;
161
156
  }
162
157
 
163
- #post pre.terminal code {
158
+ .post pre.terminal code {
164
159
  background-color: #333;
165
- }
160
+ }
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  layout: default
3
- title: Your New Monad Site
3
+ title: Your New Jekyll Site
4
4
  ---
5
5
 
6
6
  <div id="home">
@@ -10,4 +10,4 @@ title: Your New Monad Site
10
10
  <li><span>{{ post.date | date_to_string }}</span> &raquo; <a href="{{ post.url }}">{{ post.title }}</a></li>
11
11
  {% endfor %}
12
12
  </ul>
13
- </div>
13
+ </div>
@@ -4,9 +4,9 @@ Gem::Specification.new do |s|
4
4
  s.rubygems_version = '1.3.5'
5
5
 
6
6
  s.name = 'monad'
7
- s.version = '0.0.2'
7
+ s.version = '0.0.3'
8
8
  s.license = 'MIT'
9
- s.date = '2013-07-02'
9
+ s.date = '2013-10-21'
10
10
 
11
11
  s.summary = "A simple, blog aware, static site generator based on jekyll."
12
12
  s.description = "Monad is a simple, blog aware, static site generator based on jekyll."
@@ -20,99 +20,187 @@ Gem::Specification.new do |s|
20
20
  s.executables = ["monad"]
21
21
 
22
22
  s.rdoc_options = ["--charset=UTF-8"]
23
- s.extra_rdoc_files = %w[README.md LICENSE]
23
+ s.extra_rdoc_files = %w[README.markdown LICENSE]
24
24
 
25
- s.add_runtime_dependency('liquid', "~> 2.3")
25
+ s.add_runtime_dependency('liquid', "~> 2.5.2")
26
26
  s.add_runtime_dependency('classifier', "~> 1.3")
27
27
  s.add_runtime_dependency('directory_watcher', "~> 1.4.1")
28
- s.add_runtime_dependency('maruku', "~> 0.5")
29
- s.add_runtime_dependency('kramdown', "~> 1.0.2")
28
+ s.add_runtime_dependency('maruku', "~> 0.6.0")
30
29
  s.add_runtime_dependency('pygments.rb', "~> 0.5.0")
31
30
  s.add_runtime_dependency('commander', "~> 4.1.3")
32
- s.add_runtime_dependency('safe_yaml', "~> 0.7.0")
31
+ s.add_runtime_dependency('safe_yaml', "~> 0.9.7")
33
32
  s.add_runtime_dependency('colorator', "~> 0.1")
33
+ s.add_runtime_dependency('redcarpet', "~> 2.3.0")
34
34
 
35
- s.add_development_dependency('rake', "~> 10.0.3")
35
+ s.add_development_dependency('rake', "~> 10.1")
36
36
  s.add_development_dependency('rdoc', "~> 3.11")
37
37
  s.add_development_dependency('redgreen', "~> 1.2")
38
- s.add_development_dependency('webmock', "~> 1.9.3")
39
38
  s.add_development_dependency('shoulda', "~> 3.3.2")
40
- s.add_development_dependency('rr', "~> 1.0")
41
- s.add_development_dependency('cucumber', "~> 1.2.1", '!= 1.2.4')
39
+ s.add_development_dependency('webmock', "~> 1.9.3")
40
+ s.add_development_dependency('rr', "~> 1.1")
41
+ s.add_development_dependency('cucumber', "~> 1.3")
42
42
  s.add_development_dependency('RedCloth', "~> 4.2")
43
+ s.add_development_dependency('kramdown', "~> 1.2")
43
44
  s.add_development_dependency('rdiscount', "~> 1.6")
44
- s.add_development_dependency('redcarpet', "~> 2.2.2")
45
- s.add_development_dependency('launchy', "~> 2.1.2")
45
+ s.add_development_dependency('launchy', "~> 2.3")
46
46
  s.add_development_dependency('simplecov', "~> 0.7")
47
47
  s.add_development_dependency('simplecov-gem-adapter', "~> 1.0.1")
48
+ s.add_development_dependency('coveralls', "~> 0.7.0")
49
+ s.add_development_dependency('activesupport', '~> 3.2.13')
48
50
 
49
51
  # = MANIFEST =
50
52
  s.files = %w[
53
+ CONTRIBUTING.markdown
51
54
  Gemfile
55
+ History.markdown
52
56
  LICENSE
53
- README.md
57
+ README.markdown
54
58
  Rakefile
55
59
  bin/monad
56
60
  cucumber.yml
57
61
  features/create_sites.feature
62
+ features/data.feature
58
63
  features/data_sources.feature
59
64
  features/drafts.feature
60
65
  features/embed_filters.feature
66
+ features/include_tag.feature
61
67
  features/markdown.feature
62
68
  features/pagination.feature
63
69
  features/permalinks.feature
64
70
  features/post_data.feature
71
+ features/post_excerpts.feature
65
72
  features/site_configuration.feature
66
73
  features/site_data.feature
67
- features/step_definitions/monad_steps.rb
74
+ features/step_definitions/jekyll_steps.rb
68
75
  features/support/env.rb
76
+ lib/jekyll.rb
77
+ lib/jekyll/cleaner.rb
78
+ lib/jekyll/command.rb
79
+ lib/jekyll/commands/build.rb
80
+ lib/jekyll/commands/doctor.rb
81
+ lib/jekyll/commands/new.rb
82
+ lib/jekyll/commands/serve.rb
83
+ lib/jekyll/configuration.rb
84
+ lib/jekyll/converter.rb
85
+ lib/jekyll/converters/identity.rb
86
+ lib/jekyll/converters/markdown.rb
87
+ lib/jekyll/converters/markdown/kramdown_parser.rb
88
+ lib/jekyll/converters/markdown/maruku_parser.rb
89
+ lib/jekyll/converters/markdown/rdiscount_parser.rb
90
+ lib/jekyll/converters/markdown/redcarpet_parser.rb
91
+ lib/jekyll/converters/textile.rb
92
+ lib/jekyll/convertible.rb
93
+ lib/jekyll/core_ext.rb
94
+ lib/jekyll/deprecator.rb
95
+ lib/jekyll/draft.rb
96
+ lib/jekyll/drivers/json_driver.rb
97
+ lib/jekyll/drivers/yaml_driver.rb
98
+ lib/jekyll/errors.rb
99
+ lib/jekyll/excerpt.rb
100
+ lib/jekyll/filters.rb
101
+ lib/jekyll/generator.rb
102
+ lib/jekyll/generators/pagination.rb
103
+ lib/jekyll/layout.rb
104
+ lib/jekyll/mime.types
105
+ lib/jekyll/page.rb
106
+ lib/jekyll/plugin.rb
107
+ lib/jekyll/post.rb
108
+ lib/jekyll/related_posts.rb
109
+ lib/jekyll/site.rb
110
+ lib/jekyll/static_file.rb
111
+ lib/jekyll/stevenson.rb
112
+ lib/jekyll/tags/gist.rb
113
+ lib/jekyll/tags/highlight.rb
114
+ lib/jekyll/tags/include.rb
115
+ lib/jekyll/tags/post_url.rb
116
+ lib/jekyll/url.rb
69
117
  lib/monad.rb
70
- lib/monad/command.rb
71
- lib/monad/commands/build.rb
72
- lib/monad/commands/doctor.rb
73
- lib/monad/commands/new.rb
74
- lib/monad/commands/serve.rb
75
- lib/monad/configuration.rb
76
- lib/monad/converter.rb
77
- lib/monad/converters/identity.rb
78
- lib/monad/converters/markdown.rb
79
- lib/monad/converters/markdown/kramdown_parser.rb
80
- lib/monad/converters/markdown/maruku_parser.rb
81
- lib/monad/converters/markdown/rdiscount_parser.rb
82
- lib/monad/converters/markdown/redcarpet_parser.rb
83
- lib/monad/converters/textile.rb
84
- lib/monad/convertible.rb
85
- lib/monad/core_ext.rb
86
- lib/monad/deprecator.rb
87
- lib/monad/draft.rb
88
- lib/monad/drivers/json_driver.rb
89
- lib/monad/drivers/yaml_driver.rb
90
- lib/monad/errors.rb
91
- lib/monad/filters.rb
92
- lib/monad/generator.rb
93
- lib/monad/generators/pagination.rb
94
- lib/monad/layout.rb
95
- lib/monad/logger.rb
96
- lib/monad/mime.types
97
- lib/monad/page.rb
98
- lib/monad/plugin.rb
99
- lib/monad/post.rb
100
- lib/monad/site.rb
101
- lib/monad/static_file.rb
102
- lib/monad/tags/gist.rb
103
- lib/monad/tags/highlight.rb
104
- lib/monad/tags/include.rb
105
- lib/monad/tags/post_url.rb
106
118
  lib/site_template/.gitignore
107
119
  lib/site_template/_config.yml
108
120
  lib/site_template/_layouts/default.html
109
121
  lib/site_template/_layouts/post.html
110
- lib/site_template/_posts/0000-00-00-welcome-to-monad.markdown.erb
122
+ lib/site_template/_posts/0000-00-00-welcome-to-jekyll.markdown.erb
111
123
  lib/site_template/css/main.css
112
124
  lib/site_template/css/syntax.css
113
125
  lib/site_template/index.html
114
126
  monad.gemspec
115
127
  script/bootstrap
128
+ site/.gitignore
129
+ site/CNAME
130
+ site/README
131
+ site/_config.yml
132
+ site/_includes/analytics.html
133
+ site/_includes/docs_contents.html
134
+ site/_includes/docs_contents_mobile.html
135
+ site/_includes/docs_option.html
136
+ site/_includes/docs_ul.html
137
+ site/_includes/footer.html
138
+ site/_includes/header.html
139
+ site/_includes/news_contents.html
140
+ site/_includes/news_contents_mobile.html
141
+ site/_includes/news_item.html
142
+ site/_includes/primary-nav-items.html
143
+ site/_includes/section_nav.html
144
+ site/_includes/top.html
145
+ site/_layouts/default.html
146
+ site/_layouts/docs.html
147
+ site/_layouts/news.html
148
+ site/_layouts/news_item.html
149
+ site/_posts/2013-05-06-jekyll-1-0-0-released.markdown
150
+ site/_posts/2013-05-08-jekyll-1-0-1-released.markdown
151
+ site/_posts/2013-05-12-jekyll-1-0-2-released.markdown
152
+ site/_posts/2013-06-07-jekyll-1-0-3-released.markdown
153
+ site/_posts/2013-07-14-jekyll-1-1-0-released.markdown
154
+ site/_posts/2013-07-24-jekyll-1-1-1-released.markdown
155
+ site/_posts/2013-07-25-jekyll-1-0-4-released.markdown
156
+ site/_posts/2013-07-25-jekyll-1-1-2-released.markdown
157
+ site/_posts/2013-09-06-jekyll-1-2-0-released.markdown
158
+ site/_posts/2013-09-14-jekyll-1-2-1-released.markdown
159
+ site/css/gridism.css
160
+ site/css/normalize.css
161
+ site/css/pygments.css
162
+ site/css/style.css
163
+ site/docs/configuration.md
164
+ site/docs/contributing.md
165
+ site/docs/datafiles.md
166
+ site/docs/deployment-methods.md
167
+ site/docs/drafts.md
168
+ site/docs/extras.md
169
+ site/docs/frontmatter.md
170
+ site/docs/github-pages.md
171
+ site/docs/heroku.md
172
+ site/docs/history.md
173
+ site/docs/index.md
174
+ site/docs/installation.md
175
+ site/docs/migrations.md
176
+ site/docs/pages.md
177
+ site/docs/pagination.md
178
+ site/docs/permalinks.md
179
+ site/docs/plugins.md
180
+ site/docs/posts.md
181
+ site/docs/quickstart.md
182
+ site/docs/resources.md
183
+ site/docs/sites.md
184
+ site/docs/structure.md
185
+ site/docs/templates.md
186
+ site/docs/troubleshooting.md
187
+ site/docs/upgrading.md
188
+ site/docs/usage.md
189
+ site/docs/variables.md
190
+ site/favicon.png
191
+ site/feed.xml
192
+ site/freenode.txt
193
+ site/img/article-footer.png
194
+ site/img/footer-arrow.png
195
+ site/img/footer-logo.png
196
+ site/img/logo-2x.png
197
+ site/img/octojekyll.png
198
+ site/img/tube.png
199
+ site/img/tube1x.png
200
+ site/index.html
201
+ site/js/modernizr-2.5.3.min.js
202
+ site/news/index.html
203
+ site/news/releases/index.html
116
204
  test/fixtures/broken_front_matter1.erb
117
205
  test/fixtures/broken_front_matter2.erb
118
206
  test/fixtures/broken_front_matter3.erb
@@ -120,9 +208,15 @@ Gem::Specification.new do |s|
120
208
  test/fixtures/front_matter.erb
121
209
  test/fixtures/members.yaml
122
210
  test/helper.rb
211
+ test/source/+/foo.md
123
212
  test/source/.htaccess
213
+ test/source/_data/languages.yml
214
+ test/source/_data/members.yaml
215
+ test/source/_data/products.yml
216
+ test/source/_includes/params.html
124
217
  test/source/_includes/sig.markdown
125
218
  test/source/_layouts/default.html
219
+ test/source/_layouts/post/simple.html
126
220
  test/source/_layouts/simple.html
127
221
  test/source/_plugins/dummy.rb
128
222
  test/source/_posts/2008-02-02-not-published.textile
@@ -156,6 +250,8 @@ Gem::Specification.new do |s|
156
250
  test/source/_posts/2013-03-19-not-a-post.markdown/.gitkeep
157
251
  test/source/_posts/2013-04-11-custom-excerpt.markdown
158
252
  test/source/_posts/2013-05-10-number-category.textile
253
+ test/source/_posts/2013-07-22-post-excerpt-with-layout.markdown
254
+ test/source/_posts/2013-08-01-mkdn-extension.mkdn
159
255
  test/source/_posts/es/2008-11-21-nested.textile
160
256
  test/source/about.html
161
257
  test/source/category/_posts/2008-9-23-categories.textile
@@ -166,7 +262,9 @@ Gem::Specification.new do |s|
166
262
  test/source/deal.with.dots.html
167
263
  test/source/foo/_posts/bar/2008-12-12-topical-post.textile
168
264
  test/source/index.html
265
+ test/source/products.yml
169
266
  test/source/sitemap.xml
267
+ test/source/symlink-test/_data
170
268
  test/source/symlink-test/symlinked-dir
171
269
  test/source/symlink-test/symlinked-file
172
270
  test/source/win/_posts/2009-05-24-yaml-linebreak.markdown
@@ -176,6 +274,7 @@ Gem::Specification.new do |s|
176
274
  test/test_configuration.rb
177
275
  test/test_convertible.rb
178
276
  test/test_core_ext.rb
277
+ test/test_excerpt.rb
179
278
  test/test_filters.rb
180
279
  test/test_generated_site.rb
181
280
  test/test_json_driver.rb
@@ -187,8 +286,10 @@ Gem::Specification.new do |s|
187
286
  test/test_rdiscount.rb
188
287
  test/test_redcarpet.rb
189
288
  test/test_redcloth.rb
289
+ test/test_related_posts.rb
190
290
  test/test_site.rb
191
291
  test/test_tags.rb
292
+ test/test_url.rb
192
293
  test/test_yaml_driver.rb
193
294
  ]
194
295
  # = MANIFEST =