jekyll 2.0.1 → 2.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.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1e695fdd3b864f67e5922d55041c4a55027f1cd8
4
- data.tar.gz: 3ef02a2bd0c86ba96715616ef22d12842e2f8683
3
+ metadata.gz: 5684903622e5f92d2f68afb075d5748a49b925ca
4
+ data.tar.gz: de0dc20b4663a52ef365ee00662dde4ada3e56a3
5
5
  SHA512:
6
- metadata.gz: 17007860ae3438013a112ef79af3ab25eaeaa8eb345e913b8c9ecc75829408989489bfbfef6e82fd675a436ac6e09e8697f93c3af0369e23e8ac57959249d1a9
7
- data.tar.gz: 4405b6e57b1ad602b2ae4e3750bb2011b4b209cddc7daa961f2498ad5ddc9767a51a0b826ee7ae2482d0afcd9daff0eb56aebe4e2911ca869062ef2f834a81a8
6
+ metadata.gz: 31d796e3a2a4cbf892437021da4f5f1a5bac9ad53de19e050751a85494649c94c2c2db984a55c1bdd9e1a4aab6300612202da1f232fa05f4e975f34fcec8c2eb
7
+ data.tar.gz: db93aa64708dea8c5b3d7f7d825b22f471a0a6c15a67f00560e2308d04c64d7e09b4a99e39914135ed6c5717e1dcb7eda9c37d0d64ff372014e6369dcb4fdc1e
@@ -10,6 +10,18 @@
10
10
 
11
11
  ### Site Enhancements
12
12
 
13
+ ## v2.0.2 / 2014-05-07
14
+
15
+ ### Bug Fixes
16
+
17
+ * Correct use of `url` and `baseurl` in the site template. (#2317)
18
+ * Default `baseurl` to `""` (#2317)
19
+
20
+ ### Site Enhancements
21
+
22
+ * Correct docs for the `gist` plugin so it always includes the username. (#2314)
23
+ * Clarify new (defaults, `where` filter) features in docs (#2316)
24
+
13
25
  ## 2.0.1 / 2014-05-06
14
26
 
15
27
  ### Bug Fixes
@@ -159,7 +171,7 @@
159
171
  * Refactor `Commands::Serve`. (#2269)
160
172
  * Refactor `highlight` tag (#2154)
161
173
  * Update `Util` hash functions with latest from Rails (#2273)
162
- * Workaround for Travis bug (#2290)
174
+ * Workaround for Travis bug (#2290)
163
175
 
164
176
  ### Site Enhancements
165
177
  * Document Kramdown's GFM parser option (#1791)
@@ -32,7 +32,7 @@ module Jekyll
32
32
  'markdown' => 'kramdown',
33
33
  'highlighter' => 'pygments',
34
34
  'permalink' => 'date',
35
- 'baseurl' => '/',
35
+ 'baseurl' => '',
36
36
  'include' => ['.htaccess'],
37
37
  'exclude' => [],
38
38
  'paginate_path' => '/page:num',
@@ -1,3 +1,3 @@
1
1
  module Jekyll
2
- VERSION = '2.0.1'
2
+ VERSION = '2.0.2'
3
3
  end
@@ -3,7 +3,8 @@ name: Dat site title tho
3
3
  title: Your awesome title
4
4
  email: your-email@domain.com
5
5
  description: "Write an awesome description for your new site here. You can edit this line in _config.yml. It will appear in your document head meta (for Google search results) and in your feed.xml site description."
6
- baseurl: "http://yourdomain.com"
6
+ baseurl: ""
7
+ url: "http://yourdomain.com"
7
8
 
8
9
  # Build settings
9
10
  markdown: kramdown
@@ -284,7 +284,7 @@ defaults for your custom variables. Of course, any variable actually specified i
284
284
  the front matter overrides the defaults.
285
285
 
286
286
  All defaults go under the `defaults` key, which holds a list of scope-values combinations ("default sets").
287
- The `scope` key defines for which files the defaults apply, limiting them by their `path` and
287
+ The `scope` key defines for which files the defaults apply, limiting them by their source file `path` and
288
288
  optionally by their `type` (`page`, `post` or `draft`). The `values` key holds the actual list of defaults.
289
289
 
290
290
  For example:
@@ -152,7 +152,7 @@ prev_section: contributing
152
152
  - Refactor `Commands::Serve`. ([#2269]({{ site.repository }}/issues/2269))
153
153
  - Refactor `highlight` tag ([#2154]({{ site.repository }}/issues/2154))
154
154
  - Update `Util` hash functions with latest from Rails ([#2273]({{ site.repository }}/issues/2273))
155
- - Workaround for Travis bug ([#2290]({{ site.repository }}/issues/2290))
155
+ - Workaround for Travis bug ([#2290]({{ site.repository }}/issues/2290))
156
156
 
157
157
  ### Site Enhancements
158
158
  - Document Kramdown's GFM parser option ([#1791]({{ site.repository }}/issues/1791))
@@ -82,7 +82,7 @@ common tasks easier.
82
82
  <tr>
83
83
  <td>
84
84
  <p class="name"><strong>Where</strong></p>
85
- <p>Select all the object in an array where the key has the given.</p>
85
+ <p>Select all the objects in an array where the key has the given value.</p>
86
86
  </td>
87
87
  <td class="align-center">
88
88
  <p>
@@ -359,11 +359,11 @@ You can also use this tag to create a link to a post in Markdown as follows:
359
359
 
360
360
  ### Gist
361
361
 
362
- Use the `gist` tag to easily embed a GitHub Gist onto your site:
362
+ Use the `gist` tag to easily embed a GitHub Gist onto your site. This works with public or secret gists:
363
363
 
364
364
  {% highlight text %}
365
365
  {% raw %}
366
- {% gist 5555251 %}
366
+ {% gist parkr/931c1c8d465a04042403 %}
367
367
  {% endraw %}
368
368
  {% endhighlight %}
369
369
 
@@ -371,17 +371,6 @@ You may also optionally specify the filename in the gist to display:
371
371
 
372
372
  {% highlight text %}
373
373
  {% raw %}
374
- {% gist 5555251 result.md %}
374
+ {% gist parkr/931c1c8d465a04042403 jekyll-private-gist.markdown %}
375
375
  {% endraw %}
376
376
  {% endhighlight %}
377
-
378
- The `gist` tag also works with private gists, which require the gist owner's
379
- github username:
380
-
381
- {% highlight text %}
382
- {% raw %}
383
- {% gist parkr/931c1c8d465a04042403 %}
384
- {% endraw %}
385
- {% endhighlight %}
386
-
387
- The private gist syntax also supports filenames.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.1
4
+ version: 2.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tom Preston-Werner