octopress-comment-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: 8f5cab43ac27e9bfe06c5e202978a1aec6e3353a
4
- data.tar.gz: dd02b849c944a2bb059870a458bca5c7ec23c67a
3
+ metadata.gz: 20acc5b20d33d17e24002caf18036476e73b28d3
4
+ data.tar.gz: 9c2340fac2466e6dea925700a7538d60cf7ed201
5
5
  SHA512:
6
- metadata.gz: 5e02125ce06cf60eb1a1a097d4380fb8a2c22508b197806847ec8d4016bad71396787878930523e84f193de3a4d40f80c049cc8f3bf7edc7bba2fe5e6fa8fe58
7
- data.tar.gz: 6e507475c626e01cea402e5ccb4d4fdfdd8f4b922922067247a2d4a5bfbf9142d02c835a5210ea95cb61b22d0e1ea411bd58cc262a36bb26ebb94569f269a8d8
6
+ metadata.gz: 8a016a5684769a26af9d0131704c886d568102585999e5c978a42ba4dd2e2915b1980128b3f3b74a03ee8fe2de0c86d29faff1745f798692096bbc5c36ccab63
7
+ data.tar.gz: 7251427c91b89ce158e03f980df09df695c54f0ed4339864458b38de2b14d1d4a319f46fd52c968aa6b41ab6a190d4280af51bb86c954fa4ea77fef35380f5d1
@@ -0,0 +1,9 @@
1
+ # Changelog
2
+
3
+ # 1.0.0 (2015-01-11)
4
+
5
+ - Added support for Octopress docs
6
+
7
+ # 1.0.0 (2014-07-18)
8
+
9
+ - Initial release
@@ -3,7 +3,7 @@ require "jekyll"
3
3
 
4
4
  module Octopress
5
5
  module Tags
6
- module CommentTag
6
+ module Comment
7
7
  class Tag < Liquid::Tag
8
8
  def render(context); end
9
9
  end
@@ -11,4 +11,15 @@ module Octopress
11
11
  end
12
12
  end
13
13
 
14
- Liquid::Template.register_tag('_', Octopress::Tags::CommentTag::Tag)
14
+ Liquid::Template.register_tag('_', Octopress::Tags::Comment::Tag)
15
+
16
+ if defined? Octopress::Docs
17
+ Octopress::Docs.add({
18
+ name: "Octopress Comment Tag",
19
+ gem: "octopress-comment-tag",
20
+ version: Octopress::Tags::Comment::VERSION,
21
+ description: "An inline comment tag for liquid.",
22
+ path: File.expand_path(File.join(File.dirname(__FILE__), "../")),
23
+ source_url: "https://github.com/octopress/comment-tag"
24
+ })
25
+ end
@@ -1,7 +1,7 @@
1
1
  module Octopress
2
2
  module Tags
3
- module CommentTag
4
- VERSION = "1.0.0"
3
+ module Comment
4
+ VERSION = "1.0.1"
5
5
  end
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: octopress-comment-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-18 00:00:00.000000000 Z
11
+ date: 2015-01-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -73,20 +73,11 @@ executables: []
73
73
  extensions: []
74
74
  extra_rdoc_files: []
75
75
  files:
76
- - ".gitignore"
77
- - ".travis.yml"
78
- - Gemfile
76
+ - CHANGELOG.md
79
77
  - LICENSE.txt
80
78
  - README.md
81
- - Rakefile
82
79
  - lib/octopress-comment-tag.rb
83
80
  - lib/octopress-comment-tag/version.rb
84
- - octopress-comment-tag.gemspec
85
- - test/.clash.yml
86
- - test/Gemfile
87
- - test/_config.yml
88
- - test/_expected/index.html
89
- - test/index.html
90
81
  homepage: https://github.com/octopress/comment-tag
91
82
  licenses:
92
83
  - MIT
@@ -111,9 +102,4 @@ rubygems_version: 2.2.2
111
102
  signing_key:
112
103
  specification_version: 4
113
104
  summary: Liquid tag for single-line comments
114
- test_files:
115
- - test/.clash.yml
116
- - test/Gemfile
117
- - test/_config.yml
118
- - test/_expected/index.html
119
- - test/index.html
105
+ test_files: []
data/.gitignore DELETED
@@ -1,23 +0,0 @@
1
- *.gem
2
- *.rbc
3
- .bundle
4
- .config
5
- .yardoc
6
- Gemfile.lock
7
- InstalledFiles
8
- _yardoc
9
- coverage
10
- doc/
11
- lib/bundler/man
12
- pkg
13
- rdoc
14
- spec/reports
15
- test/tmp
16
- test/version_tmp
17
- tmp
18
- *.bundle
19
- *.so
20
- *.o
21
- *.a
22
- mkmf.log
23
- _site
@@ -1,5 +0,0 @@
1
- language: ruby
2
- rvm:
3
- - 2.0.0
4
- - 1.9.3
5
- script: cd test && bundle exec clash
data/Gemfile DELETED
@@ -1,4 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- # Specify your gem's dependencies in octopress_render_tag.gemspec
4
- gemspec
data/Rakefile DELETED
@@ -1,2 +0,0 @@
1
- require "bundler/gem_tasks"
2
-
@@ -1,26 +0,0 @@
1
- # coding: utf-8
2
- lib = File.expand_path('../lib', __FILE__)
3
- $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'octopress-comment-tag/version'
5
-
6
- Gem::Specification.new do |spec|
7
- spec.name = "octopress-comment-tag"
8
- spec.version = Octopress::Tags::CommentTag::VERSION
9
- spec.authors = ["Brandon Mathis"]
10
- spec.email = ["brandon@imathis.com"]
11
- spec.summary = %q{Liquid tag for single-line comments}
12
- spec.description = %q{Liquid tag for single-line comments}
13
- spec.homepage = "https://github.com/octopress/comment-tag"
14
- spec.license = "MIT"
15
-
16
- spec.files = `git ls-files -z`.split("\x0")
17
- spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
- spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
- spec.require_paths = ["lib"]
20
-
21
- spec.add_runtime_dependency "jekyll"
22
-
23
- spec.add_development_dependency "bundler", "~> 1.6"
24
- spec.add_development_dependency "rake"
25
- spec.add_development_dependency "clash"
26
- end
@@ -1,2 +0,0 @@
1
- build: true
2
- compare: _expected _site
@@ -1,5 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- gem 'octopress-comment-tag', path: '../'
4
- gem 'pry-debugger'
5
- gem 'clash'
@@ -1,13 +0,0 @@
1
- # Site settings
2
- title: Your awesome title
3
- email: your-email@domain.com
4
- baseurl: ""
5
- url: "http://yourdomain.com"
6
-
7
- exclude:
8
- - Gemfile*
9
-
10
- # Build settings
11
- markdown: kramdown
12
- gems:
13
- - octopress-comment-tag
@@ -1 +0,0 @@
1
-
@@ -1,3 +0,0 @@
1
- ---
2
- ---
3
- {% _// this should not output anything %}{%_%}