jekyll 1.0.1 → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of jekyll might be problematic. Click here for more details.

Files changed (45) hide show
  1. checksums.yaml +15 -0
  2. data/History.markdown +29 -0
  3. data/bin/jekyll +14 -0
  4. data/jekyll.gemspec +29 -28
  5. data/lib/jekyll.rb +1 -1
  6. data/lib/jekyll/commands/doctor.rb +29 -0
  7. data/lib/jekyll/configuration.rb +13 -1
  8. data/lib/jekyll/converters/markdown/redcarpet_parser.rb +2 -2
  9. data/lib/jekyll/page.rb +17 -2
  10. data/lib/jekyll/post.rb +1 -1
  11. data/lib/jekyll/site.rb +14 -0
  12. data/site/_config.yml +1 -1
  13. data/site/_includes/primary-nav-items.html +2 -2
  14. data/site/{_posts/2012-07-01-configuration.md → docs/configuration.md} +3 -0
  15. data/site/{_posts/2012-07-01-contributing.md → docs/contributing.md} +1 -0
  16. data/site/{_posts/2012-07-01-deployment-methods.md → docs/deployment-methods.md} +1 -0
  17. data/site/docs/extras.md +35 -0
  18. data/site/{_posts/2012-07-01-frontmatter.md → docs/frontmatter.md} +1 -0
  19. data/site/{_posts/2012-07-01-github-pages.md → docs/github-pages.md} +1 -0
  20. data/site/{_posts/2012-07-01-heroku.md → docs/heroku.md} +1 -0
  21. data/site/{_posts/2012-07-01-home.md → docs/index.md} +3 -1
  22. data/site/{_posts/2012-07-01-installation.md → docs/installation.md} +1 -0
  23. data/site/{_posts/2012-07-01-migrations.md → docs/migrations.md} +1 -0
  24. data/site/{_posts/2012-07-01-pages.md → docs/pages.md} +1 -0
  25. data/site/{_posts/2012-07-01-pagination.md → docs/pagination.md} +1 -0
  26. data/site/{_posts/2012-07-01-permalinks.md → docs/permalinks.md} +1 -0
  27. data/site/{_posts/2012-07-01-plugins.md → docs/plugins.md} +1 -0
  28. data/site/{_posts/2012-07-01-posts.md → docs/posts.md} +2 -1
  29. data/site/{_posts/2012-07-01-resources.md → docs/resources.md} +1 -0
  30. data/site/{_posts/2012-07-01-sites.md → docs/sites.md} +1 -0
  31. data/site/{_posts/2012-07-01-structure.md → docs/structure.md} +1 -0
  32. data/site/{_posts/2012-07-01-templates.md → docs/templates.md} +2 -1
  33. data/site/{_posts/2012-07-01-troubleshooting.md → docs/troubleshooting.md} +1 -0
  34. data/site/{_posts/2012-07-01-upgrading.md → docs/upgrading.md} +22 -1
  35. data/site/{_posts/2012-07-01-usage.md → docs/usage.md} +1 -0
  36. data/site/{_posts/2012-07-01-variables.md → docs/variables.md} +1 -0
  37. data/site/index.html +4 -4
  38. data/test/source/_posts/2013-05-10-number-category.textile +7 -0
  39. data/test/test_generated_site.rb +1 -1
  40. data/test/test_post.rb +6 -0
  41. data/test/test_redcarpet.rb +3 -3
  42. data/test/test_site.rb +1 -1
  43. metadata +33 -76
  44. data/site/_posts/2012-07-01-extras.md +0 -114
  45. data/site/docs/index.html +0 -11
@@ -2,6 +2,7 @@
2
2
  layout: docs
3
3
  title: Welcome
4
4
  next_section: installation
5
+ permalink: /docs/home/
5
6
  ---
6
7
 
7
8
  This site aims to be a comprehensive guide to Jekyll. We’ll cover topics such
@@ -15,7 +16,8 @@ development of Jekyll itself.
15
16
  Jekyll is a simple, blog-aware, static site generator. It takes a template
16
17
  directory containing raw text files in various formats, runs it through
17
18
  [Markdown](http://daringfireball.net/projects/markdown/) (or
18
- [Textile](http://textile.sitemonks.com/)) and [Liquid](http://liquidmarkup.org/)
19
+ [Textile](http://textile.sitemonks.com/)) and
20
+ [Liquid](http://wiki.shopify.com/Liquid)
19
21
  converters, and spits out a complete, ready-to-publish static website suitable
20
22
  for serving with your favorite web server. Jekyll also happens to be the engine
21
23
  behind [GitHub Pages](http://pages.github.com), which means you can use Jekyll
@@ -3,6 +3,7 @@ layout: docs
3
3
  title: Installation
4
4
  prev_section: home
5
5
  next_section: usage
6
+ permalink: /docs/installation/
6
7
  ---
7
8
 
8
9
  Getting Jekyll installed and ready-to-go should only take a few minutes. If it
@@ -3,6 +3,7 @@ layout: docs
3
3
  title: Blog migrations
4
4
  prev_section: variables
5
5
  next_section: templates
6
+ permalink: /docs/migrations/
6
7
  ---
7
8
 
8
9
  If you’re switching to Jekyll from another blogging system, Jekyll’s importers
@@ -3,6 +3,7 @@ layout: docs
3
3
  title: Creating pages
4
4
  prev_section: posts
5
5
  next_section: variables
6
+ permalink: /docs/pages/
6
7
  ---
7
8
 
8
9
  In addition to [writing posts](../posts), another thing you may want to do with
@@ -3,6 +3,7 @@ layout: docs
3
3
  title: Pagination
4
4
  prev_section: permalinks
5
5
  next_section: plugins
6
+ permalink: /docs/pagination/
6
7
  ---
7
8
 
8
9
  With many websites—especially blogs—it’s very common to break the main listing
@@ -3,6 +3,7 @@ layout: docs
3
3
  title: Permalinks
4
4
  prev_section: templates
5
5
  next_section: pagination
6
+ permalink: /docs/permalinks/
6
7
  ---
7
8
 
8
9
  Jekyll supports a flexible way to build your site’s URLs. You can specify the
@@ -3,6 +3,7 @@ layout: docs
3
3
  title: Plugins
4
4
  prev_section: assets
5
5
  next_section: extras
6
+ permalink: /docs/plugins/
6
7
  ---
7
8
 
8
9
  Jekyll has a plugin system with hooks that allow you to create custom generated
@@ -3,6 +3,7 @@ layout: docs
3
3
  title: Writing posts
4
4
  prev_section: frontmatter
5
5
  next_section: pages
6
+ permalink: /docs/posts/
6
7
  ---
7
8
 
8
9
  One of Jekyll’s best aspects is that it is “blog aware”. What does this mean,
@@ -95,7 +96,7 @@ Linking to a PDF for readers to download:
95
96
  It’s all well and good to have posts in a folder, but a blog is no use unless
96
97
  you have a list of posts somewhere. Creating an index of posts on another page
97
98
  (or in a [template](../templates)) is easy, thanks to the [Liquid template
98
- language](http://liquidmarkup.org/) and its tags. Here’s a basic example of how
99
+ language](http://wiki.shopify.com/Liquid) and its tags. Here’s a basic example of how
99
100
  to create a list of links to your blog posts:
100
101
 
101
102
  {% highlight html %}
@@ -3,6 +3,7 @@ layout: docs
3
3
  title: Resources
4
4
  prev_section: sites
5
5
  next_section: upgrading
6
+ permalink: /docs/resources/
6
7
  ---
7
8
 
8
9
  Jekyll’s growing use is producing a wide variety of tutorials, frameworks, extensions, examples, and other resources that can be very helpful. Below is a collection of links to some of the most popular Jekyll resources.
@@ -3,6 +3,7 @@ layout: docs
3
3
  title: Sites using Jekyll
4
4
  prev_section: troubleshooting
5
5
  next_section: resources
6
+ permalink: /docs/sites/
6
7
  ---
7
8
 
8
9
  It’s interesting to see what designs and features others have come up
@@ -3,6 +3,7 @@ layout: docs
3
3
  title: Directory structure
4
4
  prev_section: usage
5
5
  next_section: configuration
6
+ permalink: /docs/structure/
6
7
  ---
7
8
 
8
9
  Jekyll is, at its core, a text transformation engine. The concept behind the
@@ -3,9 +3,10 @@ layout: docs
3
3
  title: Templates
4
4
  prev_section: migrations
5
5
  next_section: permalinks
6
+ permalink: /docs/templates/
6
7
  ---
7
8
 
8
- Jekyll uses the [Liquid](http://www.liquidmarkup.org/) templating language to
9
+ Jekyll uses the [Liquid](http://wiki.shopify.com/Liquid) templating language to
9
10
  process templates. All of the [standard Liquid tags and
10
11
  filters](http://wiki.github.com/shopify/liquid/liquid-for-designers) are
11
12
  supported, Jekyll even adds a few handy filters and tags of its own to make
@@ -3,6 +3,7 @@ layout: docs
3
3
  title: Troubleshooting
4
4
  prev_section: contributing
5
5
  next_section: sites
6
+ permalink: /docs/troubleshooting/
6
7
  ---
7
8
 
8
9
  If you ever run into problems installing or using Jekyll, here’s a few tips that might be of help. If the problem you’re experiencing isn’t covered below, please [report an issue](https://github.com/mojombo/jekyll/issues/new) so the Jekyll community can make everyone’s experience better.
@@ -2,9 +2,10 @@
2
2
  layout: docs
3
3
  title: Upgrading
4
4
  prev_section: resources
5
+ permalink: /docs/upgrading/
5
6
  ---
6
7
 
7
- Upgrading from an older version of Jekyll? A few things have changed in 1.0.0
8
+ Upgrading from an older version of Jekyll? A few things have changed in 1.0
8
9
  that you'll want to know about.
9
10
 
10
11
 
@@ -32,6 +33,26 @@ rebuild each time a file changes, just add the `--watch` flag at the end.
32
33
  or `jekyll build`.</p>
33
34
  </div>
34
35
 
36
+ ### Absolute Permalinks
37
+
38
+ In older Jekyll versions, one could use relative permalinks for pages in
39
+ subdirectories. As of Jekyll v1.0, **we introduced absolute permalinks**,
40
+ which do not take advantage of the page's directory position to write the
41
+ permalink. As of Jekyll v1.0.2, a new switch, `relative_permalinks`,
42
+ allows the user to turn relative permalinks on and off at will, in order
43
+ to preserve the old behaviour, or use the new behaviour. As of v1.0.2,
44
+ this switch defaults to `true`, but it will default to `false`
45
+ in v1.1.0 and beyond.
46
+
47
+ <div class="note warning" id="absolute-permalinks-warning">
48
+ <h5 markdown="1">Absolute permalinks will be default in v1.1 and on</h5>
49
+ <p markdown="1">
50
+ Starting with Jekyll v1.1.0, `relative_permalinks` will default to `false`,
51
+ meaning all pages will be built using the absolute permalink behaviour.
52
+ The switch will still exist until v2.0.
53
+ </p>
54
+ </div>
55
+
35
56
  ### Custom Config File
36
57
 
37
58
  Rather than passing individual flags via the command line, you can now pass an
@@ -3,6 +3,7 @@ layout: docs
3
3
  title: Basic Usage
4
4
  prev_section: installation
5
5
  next_section: structure
6
+ permalink: /docs/usage/
6
7
  ---
7
8
 
8
9
  The Jekyll gem makes a `jekyll` executable available to you in your Terminal
@@ -3,6 +3,7 @@ layout: docs
3
3
  title: Variables
4
4
  prev_section: pages
5
5
  next_section: migrations
6
+ permalink: /docs/variables/
6
7
  ---
7
8
 
8
9
  Jekyll traverses your site looking for files to process. Any files with [YAML
@@ -18,19 +18,19 @@ overview: true
18
18
  <p>
19
19
  No more databases, comment moderation, or pesky updates to install—just <em>your content</em>.
20
20
  </p>
21
- <a href="{% post_url 2012-07-01-usage %}" class="">How Jekyll works &rarr;</a>
21
+ <a href="/docs/usage" class="">How Jekyll works &rarr;</a>
22
22
  </div>
23
23
  <div class="unit one-third">
24
24
  <h2>Static</h2>
25
- <p><a href="http://daringfireball.net/projects/markdown/">Markdown</a> (or <a href="http://textile.sitemonks.com/">Textile</a>), <a href="http://liquidmarkup.org/">Liquid</a>, HTML <span class="amp">&amp;</span> CSS go in. Static sites come out ready for deployment.</p>
26
- <a href="{% post_url 2012-07-01-templates %}" class="">Jekyll template guide &rarr;</a>
25
+ <p><a href="http://daringfireball.net/projects/markdown/">Markdown</a> (or <a href="http://textile.sitemonks.com/">Textile</a>), <a href="http://wiki.shopify.com/Liquid">Liquid</a>, HTML <span class="amp">&amp;</span> CSS go in. Static sites come out ready for deployment.</p>
26
+ <a href="/docs/templates" class="">Jekyll template guide &rarr;</a>
27
27
  </div>
28
28
  <div class="unit one-third">
29
29
  <h2>Blog-aware</h2>
30
30
  <p>
31
31
  Permalinks, categories, pages, posts, and custom layouts are all first-class citizens here.
32
32
  </p>
33
- <a href="{% post_url 2012-07-01-migrations %}" class="">Migrate your blog &rarr;</a>
33
+ <a href="/docs/migrations" class="">Migrate your blog &rarr;</a>
34
34
  </div>
35
35
  <div class="clear"></div>
36
36
  </div>
@@ -0,0 +1,7 @@
1
+ ---
2
+ layout: default
3
+ title: Number Category in YAML
4
+ category: 2013
5
+ ---
6
+
7
+ Please make me pass
@@ -14,7 +14,7 @@ class TestGeneratedSite < Test::Unit::TestCase
14
14
  end
15
15
 
16
16
  should "ensure post count is as expected" do
17
- assert_equal 33, @site.posts.size
17
+ assert_equal 34, @site.posts.size
18
18
  end
19
19
 
20
20
  should "insert site.posts into the index" do
@@ -422,6 +422,12 @@ class TestPost < Test::Unit::TestCase
422
422
  post = setup_post("2009-01-27-empty-categories.textile")
423
423
  assert_equal [], post.categories
424
424
  end
425
+
426
+ should "recognize number category in yaml" do
427
+ post = setup_post("2013-05-10-number-category.textile")
428
+ assert post.categories.include?('2013')
429
+ assert !post.categories.include?(2013)
430
+ end
425
431
 
426
432
  should "recognize tag in yaml" do
427
433
  post = setup_post("2009-05-18-tag.textile")
@@ -30,9 +30,9 @@ class TestRedcarpet < Test::Unit::TestCase
30
30
  setup do
31
31
  @markdown = Converters::Markdown.new @config.merge({ 'pygments' => true })
32
32
  end
33
-
33
+
34
34
  should "render fenced code blocks with syntax highlighting" do
35
- assert_equal "<div class=\"highlight\"><pre><code class=\"ruby language-ruby\"><span class=\"nb\">puts</span> <span class=\"s2\">&quot;Hello world&quot;</span>\n</code></pre></div>", @markdown.convert(
35
+ assert_equal "<div class=\"highlight\"><pre><code class=\"ruby language-ruby\" data-lang=\"ruby\"><span class=\"nb\">puts</span> <span class=\"s2\">&quot;Hello world&quot;</span>\n</code></pre></div>", @markdown.convert(
36
36
  <<-EOS
37
37
  ```ruby
38
38
  puts "Hello world"
@@ -48,7 +48,7 @@ puts "Hello world"
48
48
  end
49
49
 
50
50
  should "render fenced code blocks without syntax highlighting" do
51
- assert_equal "<div class=\"highlight\"><pre><code class=\"ruby language-ruby\">puts &quot;Hello world&quot;\n</code></pre></div>", @markdown.convert(
51
+ assert_equal "<div class=\"highlight\"><pre><code class=\"ruby language-ruby\" data-lang=\"ruby\">puts &quot;Hello world&quot;\n</code></pre></div>", @markdown.convert(
52
52
  <<-EOS
53
53
  ```ruby
54
54
  puts "Hello world"
@@ -172,7 +172,7 @@ class TestSite < Test::Unit::TestCase
172
172
 
173
173
  posts = Dir[source_dir("**", "_posts", "**", "*")]
174
174
  posts.delete_if { |post| File.directory?(post) && !Post.valid?(post) }
175
- categories = %w(bar baz category foo z_category publish_test win).sort
175
+ categories = %w(2013 bar baz category foo z_category publish_test win).sort
176
176
 
177
177
  assert_equal posts.size - @num_invalid_posts, @site.posts.size
178
178
  assert_equal categories, @site.categories.keys.sort
metadata CHANGED
@@ -1,20 +1,18 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
5
- prerelease:
4
+ version: 1.0.2
6
5
  platform: ruby
7
6
  authors:
8
7
  - Tom Preston-Werner
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2013-05-08 00:00:00.000000000 Z
11
+ date: 2013-05-12 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: liquid
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
17
  - - ~>
20
18
  - !ruby/object:Gem::Version
@@ -22,7 +20,6 @@ dependencies:
22
20
  type: :runtime
23
21
  prerelease: false
24
22
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
23
  requirements:
27
24
  - - ~>
28
25
  - !ruby/object:Gem::Version
@@ -30,7 +27,6 @@ dependencies:
30
27
  - !ruby/object:Gem::Dependency
31
28
  name: classifier
32
29
  requirement: !ruby/object:Gem::Requirement
33
- none: false
34
30
  requirements:
35
31
  - - ~>
36
32
  - !ruby/object:Gem::Version
@@ -38,7 +34,6 @@ dependencies:
38
34
  type: :runtime
39
35
  prerelease: false
40
36
  version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
37
  requirements:
43
38
  - - ~>
44
39
  - !ruby/object:Gem::Version
@@ -46,7 +41,6 @@ dependencies:
46
41
  - !ruby/object:Gem::Dependency
47
42
  name: directory_watcher
48
43
  requirement: !ruby/object:Gem::Requirement
49
- none: false
50
44
  requirements:
51
45
  - - ~>
52
46
  - !ruby/object:Gem::Version
@@ -54,7 +48,6 @@ dependencies:
54
48
  type: :runtime
55
49
  prerelease: false
56
50
  version_requirements: !ruby/object:Gem::Requirement
57
- none: false
58
51
  requirements:
59
52
  - - ~>
60
53
  - !ruby/object:Gem::Version
@@ -62,7 +55,6 @@ dependencies:
62
55
  - !ruby/object:Gem::Dependency
63
56
  name: maruku
64
57
  requirement: !ruby/object:Gem::Requirement
65
- none: false
66
58
  requirements:
67
59
  - - ~>
68
60
  - !ruby/object:Gem::Version
@@ -70,7 +62,6 @@ dependencies:
70
62
  type: :runtime
71
63
  prerelease: false
72
64
  version_requirements: !ruby/object:Gem::Requirement
73
- none: false
74
65
  requirements:
75
66
  - - ~>
76
67
  - !ruby/object:Gem::Version
@@ -78,39 +69,34 @@ dependencies:
78
69
  - !ruby/object:Gem::Dependency
79
70
  name: kramdown
80
71
  requirement: !ruby/object:Gem::Requirement
81
- none: false
82
72
  requirements:
83
73
  - - ~>
84
74
  - !ruby/object:Gem::Version
85
- version: '0.14'
75
+ version: 1.0.2
86
76
  type: :runtime
87
77
  prerelease: false
88
78
  version_requirements: !ruby/object:Gem::Requirement
89
- none: false
90
79
  requirements:
91
80
  - - ~>
92
81
  - !ruby/object:Gem::Version
93
- version: '0.14'
82
+ version: 1.0.2
94
83
  - !ruby/object:Gem::Dependency
95
84
  name: pygments.rb
96
85
  requirement: !ruby/object:Gem::Requirement
97
- none: false
98
86
  requirements:
99
87
  - - ~>
100
88
  - !ruby/object:Gem::Version
101
- version: 0.4.2
89
+ version: 0.5.0
102
90
  type: :runtime
103
91
  prerelease: false
104
92
  version_requirements: !ruby/object:Gem::Requirement
105
- none: false
106
93
  requirements:
107
94
  - - ~>
108
95
  - !ruby/object:Gem::Version
109
- version: 0.4.2
96
+ version: 0.5.0
110
97
  - !ruby/object:Gem::Dependency
111
98
  name: commander
112
99
  requirement: !ruby/object:Gem::Requirement
113
- none: false
114
100
  requirements:
115
101
  - - ~>
116
102
  - !ruby/object:Gem::Version
@@ -118,7 +104,6 @@ dependencies:
118
104
  type: :runtime
119
105
  prerelease: false
120
106
  version_requirements: !ruby/object:Gem::Requirement
121
- none: false
122
107
  requirements:
123
108
  - - ~>
124
109
  - !ruby/object:Gem::Version
@@ -126,7 +111,6 @@ dependencies:
126
111
  - !ruby/object:Gem::Dependency
127
112
  name: safe_yaml
128
113
  requirement: !ruby/object:Gem::Requirement
129
- none: false
130
114
  requirements:
131
115
  - - ~>
132
116
  - !ruby/object:Gem::Version
@@ -134,7 +118,6 @@ dependencies:
134
118
  type: :runtime
135
119
  prerelease: false
136
120
  version_requirements: !ruby/object:Gem::Requirement
137
- none: false
138
121
  requirements:
139
122
  - - ~>
140
123
  - !ruby/object:Gem::Version
@@ -142,7 +125,6 @@ dependencies:
142
125
  - !ruby/object:Gem::Dependency
143
126
  name: colorator
144
127
  requirement: !ruby/object:Gem::Requirement
145
- none: false
146
128
  requirements:
147
129
  - - ~>
148
130
  - !ruby/object:Gem::Version
@@ -150,7 +132,6 @@ dependencies:
150
132
  type: :runtime
151
133
  prerelease: false
152
134
  version_requirements: !ruby/object:Gem::Requirement
153
- none: false
154
135
  requirements:
155
136
  - - ~>
156
137
  - !ruby/object:Gem::Version
@@ -158,7 +139,6 @@ dependencies:
158
139
  - !ruby/object:Gem::Dependency
159
140
  name: rake
160
141
  requirement: !ruby/object:Gem::Requirement
161
- none: false
162
142
  requirements:
163
143
  - - ~>
164
144
  - !ruby/object:Gem::Version
@@ -166,7 +146,6 @@ dependencies:
166
146
  type: :development
167
147
  prerelease: false
168
148
  version_requirements: !ruby/object:Gem::Requirement
169
- none: false
170
149
  requirements:
171
150
  - - ~>
172
151
  - !ruby/object:Gem::Version
@@ -174,7 +153,6 @@ dependencies:
174
153
  - !ruby/object:Gem::Dependency
175
154
  name: rdoc
176
155
  requirement: !ruby/object:Gem::Requirement
177
- none: false
178
156
  requirements:
179
157
  - - ~>
180
158
  - !ruby/object:Gem::Version
@@ -182,7 +160,6 @@ dependencies:
182
160
  type: :development
183
161
  prerelease: false
184
162
  version_requirements: !ruby/object:Gem::Requirement
185
- none: false
186
163
  requirements:
187
164
  - - ~>
188
165
  - !ruby/object:Gem::Version
@@ -190,7 +167,6 @@ dependencies:
190
167
  - !ruby/object:Gem::Dependency
191
168
  name: redgreen
192
169
  requirement: !ruby/object:Gem::Requirement
193
- none: false
194
170
  requirements:
195
171
  - - ~>
196
172
  - !ruby/object:Gem::Version
@@ -198,7 +174,6 @@ dependencies:
198
174
  type: :development
199
175
  prerelease: false
200
176
  version_requirements: !ruby/object:Gem::Requirement
201
- none: false
202
177
  requirements:
203
178
  - - ~>
204
179
  - !ruby/object:Gem::Version
@@ -206,7 +181,6 @@ dependencies:
206
181
  - !ruby/object:Gem::Dependency
207
182
  name: shoulda
208
183
  requirement: !ruby/object:Gem::Requirement
209
- none: false
210
184
  requirements:
211
185
  - - ~>
212
186
  - !ruby/object:Gem::Version
@@ -214,7 +188,6 @@ dependencies:
214
188
  type: :development
215
189
  prerelease: false
216
190
  version_requirements: !ruby/object:Gem::Requirement
217
- none: false
218
191
  requirements:
219
192
  - - ~>
220
193
  - !ruby/object:Gem::Version
@@ -222,7 +195,6 @@ dependencies:
222
195
  - !ruby/object:Gem::Dependency
223
196
  name: rr
224
197
  requirement: !ruby/object:Gem::Requirement
225
- none: false
226
198
  requirements:
227
199
  - - ~>
228
200
  - !ruby/object:Gem::Version
@@ -230,7 +202,6 @@ dependencies:
230
202
  type: :development
231
203
  prerelease: false
232
204
  version_requirements: !ruby/object:Gem::Requirement
233
- none: false
234
205
  requirements:
235
206
  - - ~>
236
207
  - !ruby/object:Gem::Version
@@ -238,7 +209,6 @@ dependencies:
238
209
  - !ruby/object:Gem::Dependency
239
210
  name: cucumber
240
211
  requirement: !ruby/object:Gem::Requirement
241
- none: false
242
212
  requirements:
243
213
  - - ~>
244
214
  - !ruby/object:Gem::Version
@@ -249,7 +219,6 @@ dependencies:
249
219
  type: :development
250
220
  prerelease: false
251
221
  version_requirements: !ruby/object:Gem::Requirement
252
- none: false
253
222
  requirements:
254
223
  - - ~>
255
224
  - !ruby/object:Gem::Version
@@ -260,7 +229,6 @@ dependencies:
260
229
  - !ruby/object:Gem::Dependency
261
230
  name: RedCloth
262
231
  requirement: !ruby/object:Gem::Requirement
263
- none: false
264
232
  requirements:
265
233
  - - ~>
266
234
  - !ruby/object:Gem::Version
@@ -268,7 +236,6 @@ dependencies:
268
236
  type: :development
269
237
  prerelease: false
270
238
  version_requirements: !ruby/object:Gem::Requirement
271
- none: false
272
239
  requirements:
273
240
  - - ~>
274
241
  - !ruby/object:Gem::Version
@@ -276,7 +243,6 @@ dependencies:
276
243
  - !ruby/object:Gem::Dependency
277
244
  name: rdiscount
278
245
  requirement: !ruby/object:Gem::Requirement
279
- none: false
280
246
  requirements:
281
247
  - - ~>
282
248
  - !ruby/object:Gem::Version
@@ -284,7 +250,6 @@ dependencies:
284
250
  type: :development
285
251
  prerelease: false
286
252
  version_requirements: !ruby/object:Gem::Requirement
287
- none: false
288
253
  requirements:
289
254
  - - ~>
290
255
  - !ruby/object:Gem::Version
@@ -292,7 +257,6 @@ dependencies:
292
257
  - !ruby/object:Gem::Dependency
293
258
  name: redcarpet
294
259
  requirement: !ruby/object:Gem::Requirement
295
- none: false
296
260
  requirements:
297
261
  - - ~>
298
262
  - !ruby/object:Gem::Version
@@ -300,7 +264,6 @@ dependencies:
300
264
  type: :development
301
265
  prerelease: false
302
266
  version_requirements: !ruby/object:Gem::Requirement
303
- none: false
304
267
  requirements:
305
268
  - - ~>
306
269
  - !ruby/object:Gem::Version
@@ -308,7 +271,6 @@ dependencies:
308
271
  - !ruby/object:Gem::Dependency
309
272
  name: launchy
310
273
  requirement: !ruby/object:Gem::Requirement
311
- none: false
312
274
  requirements:
313
275
  - - ~>
314
276
  - !ruby/object:Gem::Version
@@ -316,7 +278,6 @@ dependencies:
316
278
  type: :development
317
279
  prerelease: false
318
280
  version_requirements: !ruby/object:Gem::Requirement
319
- none: false
320
281
  requirements:
321
282
  - - ~>
322
283
  - !ruby/object:Gem::Version
@@ -324,7 +285,6 @@ dependencies:
324
285
  - !ruby/object:Gem::Dependency
325
286
  name: simplecov
326
287
  requirement: !ruby/object:Gem::Requirement
327
- none: false
328
288
  requirements:
329
289
  - - ~>
330
290
  - !ruby/object:Gem::Version
@@ -332,7 +292,6 @@ dependencies:
332
292
  type: :development
333
293
  prerelease: false
334
294
  version_requirements: !ruby/object:Gem::Requirement
335
- none: false
336
295
  requirements:
337
296
  - - ~>
338
297
  - !ruby/object:Gem::Version
@@ -340,7 +299,6 @@ dependencies:
340
299
  - !ruby/object:Gem::Dependency
341
300
  name: simplecov-gem-adapter
342
301
  requirement: !ruby/object:Gem::Requirement
343
- none: false
344
302
  requirements:
345
303
  - - ~>
346
304
  - !ruby/object:Gem::Version
@@ -348,7 +306,6 @@ dependencies:
348
306
  type: :development
349
307
  prerelease: false
350
308
  version_requirements: !ruby/object:Gem::Requirement
351
- none: false
352
309
  requirements:
353
310
  - - ~>
354
311
  - !ruby/object:Gem::Version
@@ -385,6 +342,7 @@ files:
385
342
  - lib/jekyll.rb
386
343
  - lib/jekyll/command.rb
387
344
  - lib/jekyll/commands/build.rb
345
+ - lib/jekyll/commands/doctor.rb
388
346
  - lib/jekyll/commands/new.rb
389
347
  - lib/jekyll/commands/serve.rb
390
348
  - lib/jekyll/configuration.rb
@@ -439,34 +397,33 @@ files:
439
397
  - site/_includes/top.html
440
398
  - site/_layouts/default.html
441
399
  - site/_layouts/docs.html
442
- - site/_posts/2012-07-01-configuration.md
443
- - site/_posts/2012-07-01-contributing.md
444
- - site/_posts/2012-07-01-deployment-methods.md
445
- - site/_posts/2012-07-01-extras.md
446
- - site/_posts/2012-07-01-frontmatter.md
447
- - site/_posts/2012-07-01-github-pages.md
448
- - site/_posts/2012-07-01-heroku.md
449
- - site/_posts/2012-07-01-home.md
450
- - site/_posts/2012-07-01-installation.md
451
- - site/_posts/2012-07-01-migrations.md
452
- - site/_posts/2012-07-01-pages.md
453
- - site/_posts/2012-07-01-pagination.md
454
- - site/_posts/2012-07-01-permalinks.md
455
- - site/_posts/2012-07-01-plugins.md
456
- - site/_posts/2012-07-01-posts.md
457
- - site/_posts/2012-07-01-resources.md
458
- - site/_posts/2012-07-01-sites.md
459
- - site/_posts/2012-07-01-structure.md
460
- - site/_posts/2012-07-01-templates.md
461
- - site/_posts/2012-07-01-troubleshooting.md
462
- - site/_posts/2012-07-01-upgrading.md
463
- - site/_posts/2012-07-01-usage.md
464
- - site/_posts/2012-07-01-variables.md
465
400
  - site/css/gridism.css
466
401
  - site/css/normalize.css
467
402
  - site/css/pygments.css
468
403
  - site/css/style.css
469
- - site/docs/index.html
404
+ - site/docs/configuration.md
405
+ - site/docs/contributing.md
406
+ - site/docs/deployment-methods.md
407
+ - site/docs/extras.md
408
+ - site/docs/frontmatter.md
409
+ - site/docs/github-pages.md
410
+ - site/docs/heroku.md
411
+ - site/docs/index.md
412
+ - site/docs/installation.md
413
+ - site/docs/migrations.md
414
+ - site/docs/pages.md
415
+ - site/docs/pagination.md
416
+ - site/docs/permalinks.md
417
+ - site/docs/plugins.md
418
+ - site/docs/posts.md
419
+ - site/docs/resources.md
420
+ - site/docs/sites.md
421
+ - site/docs/structure.md
422
+ - site/docs/templates.md
423
+ - site/docs/troubleshooting.md
424
+ - site/docs/upgrading.md
425
+ - site/docs/usage.md
426
+ - site/docs/variables.md
470
427
  - site/favicon.png
471
428
  - site/img/article-footer.png
472
429
  - site/img/footer-arrow.png
@@ -518,6 +475,7 @@ files:
518
475
  - test/source/_posts/2013-01-12-no-layout.textile
519
476
  - test/source/_posts/2013-03-19-not-a-post.markdown/.gitkeep
520
477
  - test/source/_posts/2013-04-11-custom-excerpt.markdown
478
+ - test/source/_posts/2013-05-10-number-category.textile
521
479
  - test/source/_posts/es/2008-11-21-nested.textile
522
480
  - test/source/about.html
523
481
  - test/source/category/_posts/2008-9-23-categories.textile
@@ -552,26 +510,25 @@ files:
552
510
  homepage: http://github.com/mojombo/jekyll
553
511
  licenses:
554
512
  - MIT
513
+ metadata: {}
555
514
  post_install_message:
556
515
  rdoc_options:
557
516
  - --charset=UTF-8
558
517
  require_paths:
559
518
  - lib
560
519
  required_ruby_version: !ruby/object:Gem::Requirement
561
- none: false
562
520
  requirements:
563
521
  - - ! '>='
564
522
  - !ruby/object:Gem::Version
565
523
  version: '0'
566
524
  required_rubygems_version: !ruby/object:Gem::Requirement
567
- none: false
568
525
  requirements:
569
526
  - - ! '>='
570
527
  - !ruby/object:Gem::Version
571
528
  version: '0'
572
529
  requirements: []
573
530
  rubyforge_project: jekyll
574
- rubygems_version: 1.8.23
531
+ rubygems_version: 2.0.3
575
532
  signing_key:
576
533
  specification_version: 2
577
534
  summary: A simple, blog aware, static site generator.