octopress-escape-code 2.0.5 → 2.0.6

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6cbc0881b03f94478b02987c58fa37613ad6f870
4
- data.tar.gz: 80995e2e9a41ea8bdce646a15242c9a6a84b8303
3
+ metadata.gz: e6e19a131fa4bfd5277e042268ea9f8abaa68a3b
4
+ data.tar.gz: 7abed373b0bf90b6a80ce17369ba3a256c642770
5
5
  SHA512:
6
- metadata.gz: 0a160b60d9a79a12ea62eca8d08e899ba432bf27a322402cb514930351cc3839448c2bbefe29033836e28885e4bd610bdd06257e5bdd9219ef35e9000bdd3203
7
- data.tar.gz: 40f698c97e87c299be2c0efd0c4130de9841cb5ef49b4383610ef8a57463c90c5dea12fd7ed8eff2cc587a86c24fe0f4cae1dbda7b97609a53169fe276287889
6
+ metadata.gz: 88fd53be135cffef8078d0ef04f8776d5f959cd8c226a6a23cd9ef4a087f87267249ea85092990a46e71dbfbe4cecd31416919a6fddb337c70e6e103fe2cf4dc
7
+ data.tar.gz: c6ed8ea8ff13fea03434ace836d04d20f40127306415c56aec45e3b770efbc34016b900ecc9a0daea2fe912050b57a53062ea268fc616da4a842092cf440cd58
data/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ### 2.0.6 - 2015-01-04
4
+ - Updated docs with better installation instructions.
5
+
6
+ ### 2.0.5 - 2015-01-04
7
+ - Updated docs
8
+
3
9
  ### 2.0.5 - 2015-01-04
4
10
  - Simplified code escaping system, reducing use of raw tags.
5
11
 
data/README.md CHANGED
@@ -11,24 +11,29 @@ Markdown indented code blocks, and in-line back tick code tags.
11
11
  [![Gem Version](http://img.shields.io/gem/v/octopress-escape-code.svg)](https://rubygems.org/gems/octopress-escape-code)
12
12
  [![License](http://img.shields.io/:license-mit-blue.svg)](http://octopress.mit-license.org)
13
13
 
14
+
14
15
  ## Installation
15
16
 
16
- Add this line to your application's Gemfile:
17
+ ### Using Bundler
18
+
19
+ Add this gem to your site's Gemfile in the `:jekyll_plugins` group:
17
20
 
18
- gem 'octopress-escape-code'
21
+ group :jekyll_plugins do
22
+ gem 'octopress-escape-code'
23
+ end
19
24
 
20
- And then execute:
25
+ Then install the gem with Bundler
21
26
 
22
27
  $ bundle
23
28
 
24
- Or install it yourself as:
29
+ ### Manual Installation
25
30
 
26
31
  $ gem install octopress-escape-code
27
32
 
28
- Next add it to your gems list in Jekyll's `_config.yml`
33
+ Then add the gem to your Jekyll configuration.
29
34
 
30
35
  gems:
31
- - octopress-escape-code
36
+ -octopress-escape-code
32
37
 
33
38
  ### Configuration
34
39
 
@@ -1,5 +1,5 @@
1
1
  module Octopress
2
2
  module EscapeCode
3
- VERSION = "2.0.5"
3
+ VERSION = "2.0.6"
4
4
  end
5
5
  end
@@ -108,6 +108,8 @@ end
108
108
  if defined? Octopress::Docs
109
109
  Octopress::Docs.add({
110
110
  name: "Octopress Escape Code",
111
+ gem: "octopress-escape-code",
112
+ version: Octopress::EscapeCode::VERSION,
111
113
  description: "Automatically escape code with {% raw %} blocks, preventing internal Liquid processing.",
112
114
  source_url: "https://github.com/octopress/escape-code",
113
115
  path: File.expand_path(File.join(File.dirname(__FILE__), "../"))
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: octopress-escape-code
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.5
4
+ version: 2.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brandon Mathis
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-01-04 00:00:00.000000000 Z
11
+ date: 2015-01-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: octopress-hooks