octopress-abort-tag 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 375fc1f4db28b34fdbc71ad821a209eef311169a
4
- data.tar.gz: 911b34b3a5adc12944efb008e502419847a89faa
3
+ metadata.gz: 001b84b9a12b4fbd0fc198955c4cd14fb01cf514
4
+ data.tar.gz: 90ac388c60876a7e92c8734c3efe4c8173b230de
5
5
  SHA512:
6
- metadata.gz: fa72df82cf9a5151931959d10a7abe213dc47f6d1e73b34b9176e35e5acf1fe18cb38a269140d57095db3358be293bdf7416c061c0eeaa4c04cd84e59e22eea8
7
- data.tar.gz: b7d35ef01f792c63bbb0ec541182b65bea46ebcb5287f52461daa888dca60814e8bdb6e55d9c1f9292c6638f6f70027b154540ba157529161c195a8ea34b2923
6
+ metadata.gz: 87e1ef7acad96de47ab501ddf5ede0828062c56638f69d15b2c8fd7a059da603be6256b7671cdbd17e4ce6a5de5036cd746217273402e031cd9994876b332cf8
7
+ data.tar.gz: d77fe6cb1da916d6d92e1cd5f5ea72bc92eb5a641315452cab6098b9125bc3619611a69aed9cc9d4a5a408401a8d5336fd7d97fe41ba8a1a93fb15d47554a20b
@@ -0,0 +1,7 @@
1
+ # Changelog
2
+
3
+ ### 1.0.1 - 2015-01-02
4
+ - Added support for Octopress docs
5
+
6
+ ### 1.0.0 - 2014-07-16
7
+ - Initial release
data/README.md CHANGED
@@ -20,6 +20,11 @@ Or install it yourself as:
20
20
 
21
21
  $ gem install octopress-abort-tag
22
22
 
23
+ Next add it to your gems list in Jekyll's `_config.yml`
24
+
25
+ gems:
26
+ - octopress-abort-tag
27
+
23
28
  ## Usage
24
29
 
25
30
  Syntax:
@@ -30,3 +30,13 @@ module Octopress
30
30
  end
31
31
 
32
32
  Liquid::Template.register_tag('abort', Octopress::Tags::AbortTag::Tag)
33
+
34
+ if defined? Octopress::Docs
35
+ Octopress::Docs.add({
36
+ name: "Octopress Abort Tag",
37
+ description: "Conditionally prevent a page from being rendered.",
38
+ type: "tag",
39
+ path: File.expand_path(File.join(File.dirname(__FILE__), "../")),
40
+ source_url: "https://github.com/octopress/"
41
+ })
42
+ end
@@ -1,7 +1,7 @@
1
1
  module Octopress
2
2
  module Tags
3
3
  module AbortTag
4
- VERSION = "1.0.0"
4
+ VERSION = "1.0.1"
5
5
  end
6
6
  end
7
7
  end
@@ -1,2 +1,2 @@
1
1
  build: true
2
- compare: _site _expected
2
+ compare: _expected _site
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: octopress-abort-tag
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brandon Mathis
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-07-08 00:00:00.000000000 Z
11
+ date: 2015-01-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: octopress-tag-helpers
@@ -89,6 +89,7 @@ extra_rdoc_files: []
89
89
  files:
90
90
  - ".gitignore"
91
91
  - ".travis.yml"
92
+ - CHANGELOG.md
92
93
  - Gemfile
93
94
  - LICENSE.txt
94
95
  - README.md