octopress-content-for 1.0.3 → 1.0.4

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: 4ff49350cd5e8101073b19a2b09156372567145a
4
- data.tar.gz: 2da66db5d885858554a0675f07075bd5ed6c15d3
3
+ metadata.gz: 85dfd258b6dfc437b3363caa9dc10e9f22c360bd
4
+ data.tar.gz: 1170e5e09feb79bf87e72a876148a705700201d8
5
5
  SHA512:
6
- metadata.gz: d2d654d559fb534d7c033332bb8d80581ab70f2dc562ff382e3865ea9563271833569bd7b4c4e5e9f7a0c9e9ce2393dadb02c7a9d770df7efc74ffd07ad30789
7
- data.tar.gz: e15abc38b4dd9782dc7da97e3bc71ebc1fb0dae2b80e5addb153cb9318c2f15c55ab1b2c1ce44fa150e90f10d27e599015607120b95ff3c2c9421e51cbd14788
6
+ metadata.gz: 1f251912cebc9a06b55cec82dcc2cb23f7c18cda3c1160460b5684b485f6053cc31f3baec856dfb77b11a64ff80770405963e649fa93fbf7a79d67eea38a119d
7
+ data.tar.gz: 4aaf8216ff1b88124c1d1c10c11aecca9be95d1a3f0ffabe4528b9385eae879595c5d100d41ea4cc8e8c411643f9004b7f2f6d05bc1175d441f7034fdf77419b
@@ -1,6 +1,10 @@
1
1
  # Changelog
2
2
 
3
- ### 1.0.2 - 2015-01-11
3
+ ### 1.0.4 - 2015-01-11
4
+
5
+ - Removed additional outdated docs.
6
+
7
+ ### 1.0.3 - 2015-01-11
4
8
 
5
9
  - Docs description fix
6
10
 
@@ -1,7 +1,7 @@
1
1
  module Octopress
2
2
  module Tags
3
3
  module ContentFor
4
- VERSION = "1.0.3"
4
+ VERSION = "1.0.4"
5
5
  end
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: octopress-content-for
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.3
4
+ version: 1.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brandon Mathis
@@ -110,8 +110,6 @@ files:
110
110
  - LICENSE.txt
111
111
  - README.md
112
112
  - Rakefile
113
- - assets/docs/changelog.markdown
114
- - assets/docs/index.markdown
115
113
  - lib/octopress-content-for.rb
116
114
  - lib/octopress-content-for/version.rb
117
115
  - octopress-content-for.gemspec
@@ -1,12 +0,0 @@
1
- ---
2
- title: "Changelog"
3
- permalink: /changelog/
4
- ---
5
-
6
- ### 1.0.1 - 2014-07-16
7
-
8
- - Fixed Octopress Ink docs plugin.
9
-
10
- ### 1.0.0 - 2014-07-15
11
-
12
- - Initial release
@@ -1,58 +0,0 @@
1
- ---
2
- title: "Octopress Content For"
3
- ---
4
-
5
- Add content_for and yield tags to Jekyll with conditional rendering and in-line filters.
6
-
7
- [![Build Status](https://travis-ci.org/octopress/content-for.svg)](https://travis-ci.org/octopress/content-for)
8
- [![Gem Version](http://img.shields.io/gem/v/octopress-content-for.svg)](https://rubygems.org/gems/octopress-content-for)
9
- [![License](http://img.shields.io/:license-mit-blue.svg)](http://octopress.mit-license.org)
10
-
11
- ## Installation
12
-
13
- Add this line to your application's Gemfile:
14
-
15
- gem 'octopress-content-for'
16
-
17
- And then execute:
18
-
19
- $ bundle
20
-
21
- Or install it yourself as:
22
-
23
- $ gem install octopress-content-for
24
-
25
- Next add it to your gems list in Jekyll's `_config.yml`
26
-
27
- gems:
28
- - octopress-content-for
29
-
30
- ## Usage
31
-
32
- Use it like a typical `content_for` tag.
33
-
34
- {% content_for awesome_content %}
35
- some content
36
- {% endcontent_for %}
37
-
38
- {% yield awesome_content %} //=> some content
39
-
40
- Use in-line filters.
41
-
42
- {% yield awesome_content | upcase %} //=> SOME CONTENT
43
-
44
- Use conditional rendering in both `content_for` and `yield` tags.
45
-
46
- {% content_for footer unless page.footer == false %}
47
- Footer!
48
- {% endcontent_for %}
49
-
50
- {% yield footer if page.footer %}
51
-
52
- ## Contributing
53
-
54
- 1. Fork it ( https://github.com/octopress/content-for/fork )
55
- 2. Create your feature branch (`git checkout -b my-new-feature`)
56
- 3. Commit your changes (`git commit -am 'Add some feature'`)
57
- 4. Push to the branch (`git push origin my-new-feature`)
58
- 5. Create a new Pull Request