octopress-ink 1.0.0.rc.11 → 1.0.0.rc.13
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/.travis.yml +1 -1
- data/CHANGELOG.md +12 -3
- data/assets/docs/creating-a-plugin.markdown +85 -23
- data/assets/docs/plugin-reference.markdown +1 -1
- data/assets/docs/working-with-plugins.markdown +188 -0
- data/lib/octopress-ink.rb +40 -93
- data/lib/octopress-ink/assets/asset.rb +8 -10
- data/lib/octopress-ink/assets/doc_page.rb +3 -6
- data/lib/octopress-ink/assets/file.rb +2 -2
- data/lib/octopress-ink/assets/layout.rb +1 -1
- data/lib/octopress-ink/assets/page.rb +17 -4
- data/lib/octopress-ink/assets/sass.rb +1 -1
- data/lib/octopress-ink/commands/helpers.rb +1 -1
- data/lib/octopress-ink/commands/list.rb +1 -1
- data/lib/octopress-ink/commands/new.rb +1 -4
- data/lib/octopress-ink/configuration.rb +10 -27
- data/lib/octopress-ink/jekyll/hooks.rb +23 -149
- data/lib/octopress-ink/jekyll/page.rb +12 -0
- data/lib/octopress-ink/plugin.rb +1 -1
- data/lib/octopress-ink/plugin_asset_pipeline.rb +4 -5
- data/lib/octopress-ink/plugins.rb +5 -5
- data/lib/octopress-ink/tags.rb +0 -11
- data/lib/octopress-ink/version.rb +1 -1
- data/octopress-ink.gemspec +7 -5
- data/test/.clash.yml +46 -0
- data/test/Gemfile +1 -3
- data/test/_config.yml +7 -6
- data/test/{combine_css_false/stylesheets → _expected/combine_css_false}/awesome-sauce/plugin-media-test.css +0 -0
- data/test/{combine_css_false/stylesheets → _expected/combine_css_false}/awesome-sauce/plugin-test.css +0 -0
- data/test/_expected/combine_css_false/theme/main.css +2 -0
- data/test/{combine_css_false/stylesheets → _expected/combine_css_false}/theme/theme-media-test.css +0 -0
- data/test/{combine_css_false/stylesheets → _expected/combine_css_false}/theme/theme-test.css +0 -0
- data/test/{combine_css_false/stylesheets → _expected/combine_css_false}/theme/theme-test2.css +0 -0
- data/test/{combine_js_false/javascripts → _expected/combine_js_false}/theme/bar.js +0 -0
- data/test/{combine_js_false/javascripts → _expected/combine_js_false}/theme/blah.js +0 -0
- data/test/{combine_js_false/javascripts → _expected/combine_js_false}/theme/foo.js +0 -0
- data/test/{compress_false → _expected/compress_false}/javascripts/all-.js +0 -0
- data/test/{compress_false → _expected/compress_false}/stylesheets/all-.css +1 -1
- data/test/{compress_false → _expected/compress_false}/stylesheets/print-.css +0 -0
- data/test/{copy_layouts_pages/_copy → _expected/copy_layouts_pages}/layouts/default.html +0 -0
- data/test/{copy_layouts_pages/_copy → _expected/copy_layouts_pages}/layouts/test.html +0 -0
- data/test/{copy_layouts_pages/_copy → _expected/copy_layouts_pages}/pages/disable-test.html +0 -0
- data/test/{copy_layouts_pages/_copy → _expected/copy_layouts_pages}/pages/four.xml +0 -0
- data/test/{copy_layouts_pages/_copy → _expected/copy_layouts_pages}/pages/one.xml +0 -0
- data/test/{copy_layouts_pages/_copy → _expected/copy_layouts_pages}/pages/three.md +1 -1
- data/test/{copy_layouts_pages/_copy → _expected/copy_layouts_pages}/pages/two.md +0 -0
- data/test/{plugins/test-theme → _expected/copy_test}/config.yml +3 -0
- data/test/{copy_test/_copy → _expected/copy_test}/files/disabled-file.txt +0 -0
- data/test/{copy_test/_copy → _expected/copy_test}/files/favicon.ico +0 -0
- data/test/{copy_test/_copy → _expected/copy_test}/files/favicon.png +0 -0
- data/test/{copy_test/_copy → _expected/copy_test}/files/test.html +0 -0
- data/test/{copy_test/_copy → _expected/copy_test}/fonts/font-one.otf +0 -0
- data/test/{copy_test/_copy → _expected/copy_test}/fonts/font-two.ttf +0 -0
- data/test/{copy_test/_copy → _expected/copy_test}/includes/bar.html +0 -0
- data/test/{copy_test/_copy → _expected/copy_test}/includes/greet.html +0 -0
- data/test/{copy_test/_copy → _expected/copy_test}/javascripts/bar.js +0 -0
- data/test/{copy_test/_copy → _expected/copy_test}/javascripts/blah.coffee +0 -0
- data/test/{copy_test/_copy → _expected/copy_test}/javascripts/disable-this.js +0 -0
- data/test/{copy_test/_copy → _expected/copy_test}/javascripts/foo.js +0 -0
- data/test/{copy_test/_copy → _expected/copy_test}/layouts/default.html +0 -0
- data/test/{copy_test/_copy → _expected/copy_test}/layouts/test.html +0 -0
- data/test/{copy_test/_copy → _expected/copy_test}/pages/disable-test.html +0 -0
- data/test/{copy_test/_copy → _expected/copy_test}/pages/four.xml +0 -0
- data/test/{copy_test/_copy → _expected/copy_test}/pages/one.xml +0 -0
- data/test/{copy_test/_copy → _expected/copy_test}/pages/three.md +1 -1
- data/test/{copy_test/_copy → _expected/copy_test}/pages/two.md +0 -0
- data/test/{copy_test/_copy → _expected/copy_test}/stylesheets/_colors.scss +0 -0
- data/test/_expected/copy_test/stylesheets/disable-this.css +1 -0
- data/test/{copy_test/_copy → _expected/copy_test}/stylesheets/disable.sass +0 -0
- data/test/_expected/copy_test/stylesheets/main.scss +5 -0
- data/test/{copy_test/_copy → _expected/copy_test}/stylesheets/theme-media-test@print.css +0 -0
- data/test/{copy_test/_copy → _expected/copy_test}/stylesheets/theme-test.css +0 -0
- data/test/{copy_test/_copy → _expected/copy_test}/stylesheets/theme-test2.css +0 -0
- data/test/{expected → _expected/site}/2014/02/01/test-post.html +0 -0
- data/test/{expected → _expected/site}/2014/02/02/test-post-2.html +0 -0
- data/test/{expected → _expected/site}/favicon.ico +0 -0
- data/test/{expected → _expected/site}/favicon.png +0 -0
- data/test/{expected → _expected/site}/four/index.xml +0 -0
- data/test/_expected/site/index.html +15 -0
- data/test/{expected → _expected/site}/javascripts/all-.js +0 -0
- data/test/{expected → _expected/site}/robots.txt +0 -0
- data/test/_expected/site/stylesheets/all-.css +1 -0
- data/test/{expected → _expected/site}/stylesheets/print-.css +0 -0
- data/test/{expected → _expected/site}/test.html +0 -0
- data/test/{expected → _expected/site}/test_config/plugin_config.html +0 -0
- data/test/{expected → _expected/site}/test_config/theme_config.html +0 -0
- data/test/{expected → _expected/site}/test_layouts/local.html +0 -0
- data/test/{expected → _expected/site}/test_layouts/plugin_layout.html +0 -0
- data/test/{expected → _expected/site}/test_layouts/test_markdown.html +0 -0
- data/test/{expected → _expected/site}/test_layouts/theme.html +0 -0
- data/test/{expected → _expected/site}/test_layouts/theme_override.html +0 -0
- data/test/{expected → _expected/site}/test_pages/feed/index.xml +0 -0
- data/test/{expected → _expected/site}/test_pages/plugin_page.html +0 -0
- data/test/{expected → _expected/site}/test_pages/plugin_page_override.html +0 -0
- data/test/{expected → _expected/site}/test_pages/theme_page.html +0 -0
- data/test/_expected/site/test_pages/three.html +13 -0
- data/test/{test-plugin-expected → _expected/test-plugin-expected}/.gitignore +0 -0
- data/test/{test-plugin-expected → _expected/test-plugin-expected}/Gemfile +0 -0
- data/test/{test-plugin-expected → _expected/test-plugin-expected}/LICENSE.txt +0 -0
- data/test/{test-plugin-expected → _expected/test-plugin-expected}/README.md +0 -0
- data/test/{test-plugin-expected → _expected/test-plugin-expected}/Rakefile +0 -0
- data/test/{test-plugin-expected → _expected/test-plugin-expected}/assets/config.yml +0 -0
- data/test/_expected/test-plugin-expected/demo/Gemfile +3 -0
- data/test/{test-plugin-expected → _expected/test-plugin-expected}/demo/_config.yml +0 -0
- data/test/{plugins/awesome-sauce/docs → _expected/test-plugin-expected/demo}/index.html +0 -0
- data/test/{test-plugin-expected → _expected/test-plugin-expected}/lib/test-plugin.rb +0 -0
- data/test/{test-plugin-expected → _expected/test-plugin-expected}/lib/test-plugin/version.rb +0 -0
- data/test/{test-plugin-expected → _expected/test-plugin-expected}/test-plugin.gemspec +0 -0
- data/test/{test-theme-expected → _expected/test-theme-expected}/.gitignore +0 -0
- data/test/{test-theme-expected → _expected/test-theme-expected}/Gemfile +0 -0
- data/test/{test-theme-expected → _expected/test-theme-expected}/LICENSE.txt +0 -0
- data/test/{test-theme-expected → _expected/test-theme-expected}/README.md +0 -0
- data/test/{test-theme-expected → _expected/test-theme-expected}/Rakefile +0 -0
- data/test/{test-theme-expected → _expected/test-theme-expected}/assets/config.yml +0 -0
- data/test/_expected/test-theme-expected/demo/Gemfile +3 -0
- data/test/{test-theme-expected → _expected/test-theme-expected}/demo/_config.yml +0 -0
- data/test/{test-plugin-expected → _expected/test-theme-expected}/demo/index.html +0 -0
- data/test/{test-theme-expected → _expected/test-theme-expected}/lib/test-theme.rb +0 -0
- data/test/{test-theme-expected → _expected/test-theme-expected}/lib/test-theme/version.rb +0 -0
- data/test/{test-theme-expected → _expected/test-theme-expected}/test-theme.gemspec +0 -0
- data/test/{uglify_js_false/javascripts → _expected/uglify_js_false}/all-.js +0 -0
- data/test/{plugins → _ink_plugins}/awesome-sauce/config.yml +0 -0
- data/test/{test-theme-expected/demo → _ink_plugins/awesome-sauce/docs}/index.html +0 -0
- data/test/{plugins → _ink_plugins}/awesome-sauce/files/robots.txt +0 -0
- data/test/{plugins → _ink_plugins}/awesome-sauce/includes/some-include.html +0 -0
- data/test/{plugins → _ink_plugins}/awesome-sauce/layouts/test-layout.html +0 -0
- data/test/{plugins → _ink_plugins}/awesome-sauce/pages/a.html +0 -0
- data/test/{plugins → _ink_plugins}/awesome-sauce/pages/b.html +0 -0
- data/test/{plugins → _ink_plugins}/awesome-sauce/plugin.rb +0 -0
- data/test/{plugins → _ink_plugins}/awesome-sauce/stylesheets/plugin-media-test@print.css +0 -0
- data/test/{plugins → _ink_plugins}/awesome-sauce/stylesheets/plugin-test.css +0 -0
- data/test/{copy_test/_copy → _ink_plugins/test-theme}/config.yml +3 -0
- data/test/{plugins → _ink_plugins}/test-theme/files/disabled-file.txt +0 -0
- data/test/{plugins → _ink_plugins}/test-theme/files/favicon.ico +0 -0
- data/test/{plugins → _ink_plugins}/test-theme/files/favicon.png +0 -0
- data/test/{plugins → _ink_plugins}/test-theme/files/test.html +0 -0
- data/test/{plugins → _ink_plugins}/test-theme/fonts/font-one.otf +0 -0
- data/test/{plugins → _ink_plugins}/test-theme/fonts/font-two.ttf +0 -0
- data/test/{plugins → _ink_plugins}/test-theme/includes/bar.html +0 -0
- data/test/{plugins → _ink_plugins}/test-theme/includes/greet.html +0 -0
- data/test/{plugins → _ink_plugins}/test-theme/javascripts/bar.js +0 -0
- data/test/{plugins → _ink_plugins}/test-theme/javascripts/blah.coffee +0 -0
- data/test/{plugins → _ink_plugins}/test-theme/javascripts/disable-this.js +0 -0
- data/test/{plugins → _ink_plugins}/test-theme/javascripts/foo.js +0 -0
- data/test/{plugins → _ink_plugins}/test-theme/layouts/default.html +0 -0
- data/test/{plugins → _ink_plugins}/test-theme/layouts/test.html +0 -0
- data/test/{plugins → _ink_plugins}/test-theme/pages/disable-test.html +0 -0
- data/test/{plugins → _ink_plugins}/test-theme/pages/four.xml +0 -0
- data/test/{plugins → _ink_plugins}/test-theme/pages/one.xml +0 -0
- data/test/{plugins → _ink_plugins}/test-theme/pages/three.md +1 -1
- data/test/{plugins → _ink_plugins}/test-theme/pages/two.md +0 -0
- data/test/{plugins → _ink_plugins}/test-theme/plugin.rb +0 -0
- data/test/{plugins → _ink_plugins}/test-theme/stylesheets/_colors.scss +0 -0
- data/test/_ink_plugins/test-theme/stylesheets/disable-this.css +1 -0
- data/test/{plugins → _ink_plugins}/test-theme/stylesheets/disable.sass +0 -0
- data/test/_ink_plugins/test-theme/stylesheets/main.scss +5 -0
- data/test/{plugins → _ink_plugins}/test-theme/stylesheets/theme-media-test@print.css +0 -0
- data/test/{plugins → _ink_plugins}/test-theme/stylesheets/theme-test.css +0 -0
- data/test/{plugins → _ink_plugins}/test-theme/stylesheets/theme-test2.css +0 -0
- data/test/_templates/page +4 -0
- data/test/_templates/post +5 -0
- data/test/source/_layouts/local.html +2 -0
- data/test/source/_plugins/loader.rb +2 -2
- data/test/source/_plugins/theme/stylesheets/_colors.sass +1 -1
- data/test/source/index.html +3 -15
- metadata +309 -351
- data/lib/octopress-ink/filters.rb +0 -111
- data/lib/octopress-ink/generators/plugin_assets.rb +0 -13
- data/lib/octopress-ink/helpers.rb +0 -10
- data/lib/octopress-ink/helpers/conditional.rb +0 -24
- data/lib/octopress-ink/helpers/content_for.rb +0 -32
- data/lib/octopress-ink/helpers/path.rb +0 -74
- data/lib/octopress-ink/helpers/var.rb +0 -105
- data/lib/octopress-ink/tags/abort.rb +0 -22
- data/lib/octopress-ink/tags/assign.rb +0 -33
- data/lib/octopress-ink/tags/capture.rb +0 -38
- data/lib/octopress-ink/tags/content_for.rb +0 -24
- data/lib/octopress-ink/tags/filter.rb +0 -24
- data/lib/octopress-ink/tags/include.rb +0 -53
- data/lib/octopress-ink/tags/line_comment.rb +0 -10
- data/lib/octopress-ink/tags/render.rb +0 -85
- data/lib/octopress-ink/tags/return.rb +0 -19
- data/lib/octopress-ink/tags/wrap.rb +0 -81
- data/lib/octopress-ink/tags/yield.rb +0 -36
- data/lib/octopress-ink/utils.rb +0 -42
- data/test/combine_css_false/stylesheets/theme/main.css +0 -2
- data/test/copy_test/_copy/stylesheets/disable-this.css +0 -1
- data/test/copy_test/_copy/stylesheets/main.scss +0 -5
- data/test/expected/index.html +0 -71
- data/test/expected/stylesheets/all-.css +0 -1
- data/test/expected/test_pages/three.html +0 -1
- data/test/expected/test_tags/abort_false.html +0 -1
- data/test/expected/test_tags/assign.html +0 -23
- data/test/expected/test_tags/capture.html +0 -21
- data/test/expected/test_tags/content_for.html +0 -1
- data/test/expected/test_tags/filter.html +0 -4
- data/test/expected/test_tags/include.html +0 -33
- data/test/expected/test_tags/render.html +0 -34
- data/test/expected/test_tags/return.html +0 -23
- data/test/expected/test_tags/wrap.html +0 -29
- data/test/plugins/test-theme/stylesheets/disable-this.css +0 -1
- data/test/plugins/test-theme/stylesheets/main.scss +0 -5
- data/test/source/.gitignore +0 -1
- data/test/source/test_render/_f.html +0 -1
- data/test/source/test_render/_var.html +0 -1
- data/test/source/test_tags/_test_render.md +0 -4
- data/test/source/test_tags/abort_false.html +0 -5
- data/test/source/test_tags/abort_posts.html +0 -5
- data/test/source/test_tags/abort_true.html +0 -5
- data/test/source/test_tags/assign.html +0 -26
- data/test/source/test_tags/capture.html +0 -31
- data/test/source/test_tags/content_for.html +0 -7
- data/test/source/test_tags/filter.html +0 -6
- data/test/source/test_tags/include.html +0 -36
- data/test/source/test_tags/render.html +0 -36
- data/test/source/test_tags/return.html +0 -30
- data/test/source/test_tags/wrap.html +0 -32
- data/test/test-plugin-expected/demo/Gemfile +0 -6
- data/test/test-theme-expected/demo/Gemfile +0 -6
- data/test/test.rb +0 -110
- data/test/test_suite.rb +0 -161
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
data/test/{test-plugin-expected → _expected/test-plugin-expected}/lib/test-plugin/version.rb
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -0,0 +1 @@
|
|
1
|
+
.do-not-exist { background: #bcbcbc; }
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -1,2 +1,2 @@
|
|
1
|
-
require './
|
2
|
-
require './
|
1
|
+
require './_ink_plugins/test-theme/plugin.rb'
|
2
|
+
require './_ink_plugins/awesome-sauce/plugin.rb'
|
@@ -1 +1 @@
|
|
1
|
-
$bg:
|
1
|
+
$bg: #bcbcbc
|
data/test/source/index.html
CHANGED
@@ -4,24 +4,12 @@ title: Your New Jekyll Site
|
|
4
4
|
index: true
|
5
5
|
---
|
6
6
|
|
7
|
-
{% assign separator =
|
8
|
-
{% capture foo
|
7
|
+
{% assign separator = " <span class='separator'></b> " %}
|
8
|
+
{% capture foo %}
|
9
9
|
one
|
10
10
|
two
|
11
11
|
three
|
12
12
|
|
13
13
|
four five
|
14
14
|
|
15
|
-
{% endcapture %}{{ foo }}
|
16
|
-
|
17
|
-
{% for post in site.posts %}
|
18
|
-
{% include post_data.html %}
|
19
|
-
{% endfor %}
|
20
|
-
|
21
|
-
{% for post in site.articles %}
|
22
|
-
{% include post_data.html %}
|
23
|
-
{% endfor %}
|
24
|
-
|
25
|
-
{% for post in site.linkposts %}
|
26
|
-
{% include post_data.html %}
|
27
|
-
{% endfor %}
|
15
|
+
{% endcapture %}{{ foo | join_lines:separator }}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: octopress-ink
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.0.rc.
|
4
|
+
version: 1.0.0.rc.13
|
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-
|
11
|
+
date: 2014-08-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -39,39 +39,47 @@ dependencies:
|
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '2.5'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
|
-
name:
|
42
|
+
name: octopress-hooks
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
45
|
- - "~>"
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: '
|
48
|
-
- - ">="
|
49
|
-
- !ruby/object:Gem::Version
|
50
|
-
version: 1.1.20140403
|
47
|
+
version: '2.2'
|
51
48
|
type: :runtime
|
52
49
|
prerelease: false
|
53
50
|
version_requirements: !ruby/object:Gem::Requirement
|
54
51
|
requirements:
|
55
52
|
- - "~>"
|
56
53
|
- !ruby/object:Gem::Version
|
57
|
-
version: '
|
58
|
-
|
54
|
+
version: '2.2'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: octopress-include-tag
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
59
60
|
- !ruby/object:Gem::Version
|
60
|
-
version: 1.
|
61
|
+
version: '1.0'
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '1.0'
|
61
69
|
- !ruby/object:Gem::Dependency
|
62
|
-
name:
|
70
|
+
name: octopress-filters
|
63
71
|
requirement: !ruby/object:Gem::Requirement
|
64
72
|
requirements:
|
65
73
|
- - "~>"
|
66
74
|
- !ruby/object:Gem::Version
|
67
|
-
version: '1.
|
75
|
+
version: '1.1'
|
68
76
|
type: :runtime
|
69
77
|
prerelease: false
|
70
78
|
version_requirements: !ruby/object:Gem::Requirement
|
71
79
|
requirements:
|
72
80
|
- - "~>"
|
73
81
|
- !ruby/object:Gem::Version
|
74
|
-
version: '1.
|
82
|
+
version: '1.1'
|
75
83
|
- !ruby/object:Gem::Dependency
|
76
84
|
name: octopress
|
77
85
|
requirement: !ruby/object:Gem::Requirement
|
@@ -79,7 +87,7 @@ dependencies:
|
|
79
87
|
- - ">="
|
80
88
|
- !ruby/object:Gem::Version
|
81
89
|
version: '0'
|
82
|
-
type: :
|
90
|
+
type: :runtime
|
83
91
|
prerelease: false
|
84
92
|
version_requirements: !ruby/object:Gem::Requirement
|
85
93
|
requirements:
|
@@ -128,7 +136,21 @@ dependencies:
|
|
128
136
|
- - ">="
|
129
137
|
- !ruby/object:Gem::Version
|
130
138
|
version: '0'
|
131
|
-
|
139
|
+
- !ruby/object:Gem::Dependency
|
140
|
+
name: clash
|
141
|
+
requirement: !ruby/object:Gem::Requirement
|
142
|
+
requirements:
|
143
|
+
- - ">="
|
144
|
+
- !ruby/object:Gem::Version
|
145
|
+
version: '0'
|
146
|
+
type: :development
|
147
|
+
prerelease: false
|
148
|
+
version_requirements: !ruby/object:Gem::Requirement
|
149
|
+
requirements:
|
150
|
+
- - ">="
|
151
|
+
- !ruby/object:Gem::Version
|
152
|
+
version: '0'
|
153
|
+
description: A framework creating Jekyll/Octopress themes and plugins
|
132
154
|
email:
|
133
155
|
- brandon@imathis.com
|
134
156
|
executables: []
|
@@ -147,6 +169,7 @@ files:
|
|
147
169
|
- assets/docs/creating-a-plugin.markdown
|
148
170
|
- assets/docs/index.markdown
|
149
171
|
- assets/docs/plugin-reference.markdown
|
172
|
+
- assets/docs/working-with-plugins.markdown
|
150
173
|
- lib/octopress-ink.rb
|
151
174
|
- lib/octopress-ink/assets.rb
|
152
175
|
- lib/octopress-ink/assets/asset.rb
|
@@ -166,13 +189,6 @@ files:
|
|
166
189
|
- lib/octopress-ink/commands/list.rb
|
167
190
|
- lib/octopress-ink/commands/new.rb
|
168
191
|
- lib/octopress-ink/configuration.rb
|
169
|
-
- lib/octopress-ink/filters.rb
|
170
|
-
- lib/octopress-ink/generators/plugin_assets.rb
|
171
|
-
- lib/octopress-ink/helpers.rb
|
172
|
-
- lib/octopress-ink/helpers/conditional.rb
|
173
|
-
- lib/octopress-ink/helpers/content_for.rb
|
174
|
-
- lib/octopress-ink/helpers/path.rb
|
175
|
-
- lib/octopress-ink/helpers/var.rb
|
176
192
|
- lib/octopress-ink/jekyll/hooks.rb
|
177
193
|
- lib/octopress-ink/jekyll/page.rb
|
178
194
|
- lib/octopress-ink/jekyll/static_file.rb
|
@@ -182,144 +198,150 @@ files:
|
|
182
198
|
- lib/octopress-ink/plugins.rb
|
183
199
|
- lib/octopress-ink/plugins/ink.rb
|
184
200
|
- lib/octopress-ink/tags.rb
|
185
|
-
- lib/octopress-ink/tags/abort.rb
|
186
|
-
- lib/octopress-ink/tags/assign.rb
|
187
|
-
- lib/octopress-ink/tags/capture.rb
|
188
|
-
- lib/octopress-ink/tags/content_for.rb
|
189
201
|
- lib/octopress-ink/tags/doc_url.rb
|
190
|
-
- lib/octopress-ink/tags/filter.rb
|
191
|
-
- lib/octopress-ink/tags/include.rb
|
192
202
|
- lib/octopress-ink/tags/javascript.rb
|
193
|
-
- lib/octopress-ink/tags/line_comment.rb
|
194
|
-
- lib/octopress-ink/tags/render.rb
|
195
|
-
- lib/octopress-ink/tags/return.rb
|
196
203
|
- lib/octopress-ink/tags/stylesheet.rb
|
197
|
-
- lib/octopress-ink/tags/wrap.rb
|
198
|
-
- lib/octopress-ink/tags/yield.rb
|
199
|
-
- lib/octopress-ink/utils.rb
|
200
204
|
- lib/octopress-ink/version.rb
|
201
205
|
- octopress-ink.gemspec
|
206
|
+
- test/.clash.yml
|
202
207
|
- test/Gemfile
|
203
208
|
- test/_combine_false.yml
|
204
209
|
- test/_compress_false.yml
|
205
210
|
- test/_config.yml
|
206
|
-
- test/combine_css_false/
|
207
|
-
- test/combine_css_false/
|
208
|
-
- test/combine_css_false/
|
209
|
-
- test/combine_css_false/
|
210
|
-
- test/combine_css_false/
|
211
|
-
- test/combine_css_false/
|
212
|
-
- test/combine_js_false/
|
213
|
-
- test/combine_js_false/
|
214
|
-
- test/combine_js_false/
|
215
|
-
- test/compress_false/javascripts/all-.js
|
216
|
-
- test/compress_false/stylesheets/all-.css
|
217
|
-
- test/compress_false/stylesheets/print-.css
|
218
|
-
- test/copy_layouts_pages/
|
219
|
-
- test/copy_layouts_pages/
|
220
|
-
- test/copy_layouts_pages/
|
221
|
-
- test/copy_layouts_pages/
|
222
|
-
- test/copy_layouts_pages/
|
223
|
-
- test/copy_layouts_pages/
|
224
|
-
- test/copy_layouts_pages/
|
225
|
-
- test/copy_test/
|
226
|
-
- test/copy_test/
|
227
|
-
- test/copy_test/
|
228
|
-
- test/copy_test/
|
229
|
-
- test/copy_test/
|
230
|
-
- test/copy_test/
|
231
|
-
- test/copy_test/
|
232
|
-
- test/copy_test/
|
233
|
-
- test/copy_test/
|
234
|
-
- test/copy_test/
|
235
|
-
- test/copy_test/
|
236
|
-
- test/copy_test/
|
237
|
-
- test/copy_test/
|
238
|
-
- test/copy_test/
|
239
|
-
- test/copy_test/
|
240
|
-
- test/copy_test/
|
241
|
-
- test/copy_test/
|
242
|
-
- test/copy_test/
|
243
|
-
- test/copy_test/
|
244
|
-
- test/copy_test/
|
245
|
-
- test/copy_test/
|
246
|
-
- test/copy_test/
|
247
|
-
- test/copy_test/
|
248
|
-
- test/copy_test/
|
249
|
-
- test/copy_test/
|
250
|
-
- test/copy_test/
|
251
|
-
- test/copy_test/
|
252
|
-
- test/
|
253
|
-
- test/
|
254
|
-
- test/
|
255
|
-
- test/
|
256
|
-
- test/
|
257
|
-
- test/
|
258
|
-
- test/
|
259
|
-
- test/
|
260
|
-
- test/
|
261
|
-
- test/
|
262
|
-
- test/
|
263
|
-
- test/
|
264
|
-
- test/
|
265
|
-
- test/
|
266
|
-
- test/
|
267
|
-
- test/
|
268
|
-
- test/
|
269
|
-
- test/
|
270
|
-
- test/
|
271
|
-
- test/
|
272
|
-
- test/
|
273
|
-
- test/
|
274
|
-
- test/
|
275
|
-
- test/expected
|
276
|
-
- test/expected/
|
277
|
-
- test/expected/
|
278
|
-
- test/expected/
|
279
|
-
- test/expected/
|
280
|
-
- test/expected/
|
281
|
-
- test/expected/
|
282
|
-
- test/expected/
|
283
|
-
- test/expected/
|
284
|
-
- test/
|
285
|
-
- test/
|
286
|
-
- test/
|
287
|
-
- test/
|
288
|
-
- test/
|
289
|
-
- test/
|
290
|
-
- test/
|
291
|
-
- test/
|
292
|
-
- test/
|
293
|
-
- test/
|
294
|
-
- test/
|
295
|
-
- test/
|
296
|
-
- test/
|
297
|
-
- test/
|
298
|
-
- test/
|
299
|
-
- test/
|
300
|
-
- test/
|
301
|
-
- test/
|
302
|
-
- test/
|
303
|
-
- test/
|
304
|
-
- test/
|
305
|
-
- test/
|
306
|
-
- test/
|
307
|
-
- test/
|
308
|
-
- test/
|
309
|
-
- test/
|
310
|
-
- test/
|
311
|
-
- test/
|
312
|
-
- test/
|
313
|
-
- test/
|
314
|
-
- test/
|
315
|
-
- test/
|
316
|
-
- test/
|
317
|
-
- test/
|
318
|
-
- test/
|
319
|
-
- test/
|
320
|
-
- test/
|
321
|
-
- test/
|
322
|
-
- test/
|
211
|
+
- test/_expected/combine_css_false/awesome-sauce/plugin-media-test.css
|
212
|
+
- test/_expected/combine_css_false/awesome-sauce/plugin-test.css
|
213
|
+
- test/_expected/combine_css_false/theme/main.css
|
214
|
+
- test/_expected/combine_css_false/theme/theme-media-test.css
|
215
|
+
- test/_expected/combine_css_false/theme/theme-test.css
|
216
|
+
- test/_expected/combine_css_false/theme/theme-test2.css
|
217
|
+
- test/_expected/combine_js_false/theme/bar.js
|
218
|
+
- test/_expected/combine_js_false/theme/blah.js
|
219
|
+
- test/_expected/combine_js_false/theme/foo.js
|
220
|
+
- test/_expected/compress_false/javascripts/all-.js
|
221
|
+
- test/_expected/compress_false/stylesheets/all-.css
|
222
|
+
- test/_expected/compress_false/stylesheets/print-.css
|
223
|
+
- test/_expected/copy_layouts_pages/layouts/default.html
|
224
|
+
- test/_expected/copy_layouts_pages/layouts/test.html
|
225
|
+
- test/_expected/copy_layouts_pages/pages/disable-test.html
|
226
|
+
- test/_expected/copy_layouts_pages/pages/four.xml
|
227
|
+
- test/_expected/copy_layouts_pages/pages/one.xml
|
228
|
+
- test/_expected/copy_layouts_pages/pages/three.md
|
229
|
+
- test/_expected/copy_layouts_pages/pages/two.md
|
230
|
+
- test/_expected/copy_test/config.yml
|
231
|
+
- test/_expected/copy_test/files/disabled-file.txt
|
232
|
+
- test/_expected/copy_test/files/favicon.ico
|
233
|
+
- test/_expected/copy_test/files/favicon.png
|
234
|
+
- test/_expected/copy_test/files/test.html
|
235
|
+
- test/_expected/copy_test/fonts/font-one.otf
|
236
|
+
- test/_expected/copy_test/fonts/font-two.ttf
|
237
|
+
- test/_expected/copy_test/includes/bar.html
|
238
|
+
- test/_expected/copy_test/includes/greet.html
|
239
|
+
- test/_expected/copy_test/javascripts/bar.js
|
240
|
+
- test/_expected/copy_test/javascripts/blah.coffee
|
241
|
+
- test/_expected/copy_test/javascripts/disable-this.js
|
242
|
+
- test/_expected/copy_test/javascripts/foo.js
|
243
|
+
- test/_expected/copy_test/layouts/default.html
|
244
|
+
- test/_expected/copy_test/layouts/test.html
|
245
|
+
- test/_expected/copy_test/pages/disable-test.html
|
246
|
+
- test/_expected/copy_test/pages/four.xml
|
247
|
+
- test/_expected/copy_test/pages/one.xml
|
248
|
+
- test/_expected/copy_test/pages/three.md
|
249
|
+
- test/_expected/copy_test/pages/two.md
|
250
|
+
- test/_expected/copy_test/stylesheets/_colors.scss
|
251
|
+
- test/_expected/copy_test/stylesheets/disable-this.css
|
252
|
+
- test/_expected/copy_test/stylesheets/disable.sass
|
253
|
+
- test/_expected/copy_test/stylesheets/main.scss
|
254
|
+
- test/_expected/copy_test/stylesheets/theme-media-test@print.css
|
255
|
+
- test/_expected/copy_test/stylesheets/theme-test.css
|
256
|
+
- test/_expected/copy_test/stylesheets/theme-test2.css
|
257
|
+
- test/_expected/site/2014/02/01/test-post.html
|
258
|
+
- test/_expected/site/2014/02/02/test-post-2.html
|
259
|
+
- test/_expected/site/favicon.ico
|
260
|
+
- test/_expected/site/favicon.png
|
261
|
+
- test/_expected/site/four/index.xml
|
262
|
+
- test/_expected/site/index.html
|
263
|
+
- test/_expected/site/javascripts/all-.js
|
264
|
+
- test/_expected/site/robots.txt
|
265
|
+
- test/_expected/site/stylesheets/all-.css
|
266
|
+
- test/_expected/site/stylesheets/print-.css
|
267
|
+
- test/_expected/site/test.html
|
268
|
+
- test/_expected/site/test_config/plugin_config.html
|
269
|
+
- test/_expected/site/test_config/theme_config.html
|
270
|
+
- test/_expected/site/test_layouts/local.html
|
271
|
+
- test/_expected/site/test_layouts/plugin_layout.html
|
272
|
+
- test/_expected/site/test_layouts/test_markdown.html
|
273
|
+
- test/_expected/site/test_layouts/theme.html
|
274
|
+
- test/_expected/site/test_layouts/theme_override.html
|
275
|
+
- test/_expected/site/test_pages/feed/index.xml
|
276
|
+
- test/_expected/site/test_pages/plugin_page.html
|
277
|
+
- test/_expected/site/test_pages/plugin_page_override.html
|
278
|
+
- test/_expected/site/test_pages/theme_page.html
|
279
|
+
- test/_expected/site/test_pages/three.html
|
280
|
+
- test/_expected/test-plugin-expected/.gitignore
|
281
|
+
- test/_expected/test-plugin-expected/Gemfile
|
282
|
+
- test/_expected/test-plugin-expected/LICENSE.txt
|
283
|
+
- test/_expected/test-plugin-expected/README.md
|
284
|
+
- test/_expected/test-plugin-expected/Rakefile
|
285
|
+
- test/_expected/test-plugin-expected/assets/config.yml
|
286
|
+
- test/_expected/test-plugin-expected/demo/Gemfile
|
287
|
+
- test/_expected/test-plugin-expected/demo/_config.yml
|
288
|
+
- test/_expected/test-plugin-expected/demo/index.html
|
289
|
+
- test/_expected/test-plugin-expected/lib/test-plugin.rb
|
290
|
+
- test/_expected/test-plugin-expected/lib/test-plugin/version.rb
|
291
|
+
- test/_expected/test-plugin-expected/test-plugin.gemspec
|
292
|
+
- test/_expected/test-theme-expected/.gitignore
|
293
|
+
- test/_expected/test-theme-expected/Gemfile
|
294
|
+
- test/_expected/test-theme-expected/LICENSE.txt
|
295
|
+
- test/_expected/test-theme-expected/README.md
|
296
|
+
- test/_expected/test-theme-expected/Rakefile
|
297
|
+
- test/_expected/test-theme-expected/assets/config.yml
|
298
|
+
- test/_expected/test-theme-expected/demo/Gemfile
|
299
|
+
- test/_expected/test-theme-expected/demo/_config.yml
|
300
|
+
- test/_expected/test-theme-expected/demo/index.html
|
301
|
+
- test/_expected/test-theme-expected/lib/test-theme.rb
|
302
|
+
- test/_expected/test-theme-expected/lib/test-theme/version.rb
|
303
|
+
- test/_expected/test-theme-expected/test-theme.gemspec
|
304
|
+
- test/_expected/uglify_js_false/all-.js
|
305
|
+
- test/_ink_plugins/awesome-sauce/config.yml
|
306
|
+
- test/_ink_plugins/awesome-sauce/docs/index.html
|
307
|
+
- test/_ink_plugins/awesome-sauce/files/robots.txt
|
308
|
+
- test/_ink_plugins/awesome-sauce/includes/some-include.html
|
309
|
+
- test/_ink_plugins/awesome-sauce/layouts/test-layout.html
|
310
|
+
- test/_ink_plugins/awesome-sauce/pages/a.html
|
311
|
+
- test/_ink_plugins/awesome-sauce/pages/b.html
|
312
|
+
- test/_ink_plugins/awesome-sauce/plugin.rb
|
313
|
+
- test/_ink_plugins/awesome-sauce/stylesheets/plugin-media-test@print.css
|
314
|
+
- test/_ink_plugins/awesome-sauce/stylesheets/plugin-test.css
|
315
|
+
- test/_ink_plugins/test-theme/config.yml
|
316
|
+
- test/_ink_plugins/test-theme/files/disabled-file.txt
|
317
|
+
- test/_ink_plugins/test-theme/files/favicon.ico
|
318
|
+
- test/_ink_plugins/test-theme/files/favicon.png
|
319
|
+
- test/_ink_plugins/test-theme/files/test.html
|
320
|
+
- test/_ink_plugins/test-theme/fonts/font-one.otf
|
321
|
+
- test/_ink_plugins/test-theme/fonts/font-two.ttf
|
322
|
+
- test/_ink_plugins/test-theme/includes/bar.html
|
323
|
+
- test/_ink_plugins/test-theme/includes/greet.html
|
324
|
+
- test/_ink_plugins/test-theme/javascripts/bar.js
|
325
|
+
- test/_ink_plugins/test-theme/javascripts/blah.coffee
|
326
|
+
- test/_ink_plugins/test-theme/javascripts/disable-this.js
|
327
|
+
- test/_ink_plugins/test-theme/javascripts/foo.js
|
328
|
+
- test/_ink_plugins/test-theme/layouts/default.html
|
329
|
+
- test/_ink_plugins/test-theme/layouts/test.html
|
330
|
+
- test/_ink_plugins/test-theme/pages/disable-test.html
|
331
|
+
- test/_ink_plugins/test-theme/pages/four.xml
|
332
|
+
- test/_ink_plugins/test-theme/pages/one.xml
|
333
|
+
- test/_ink_plugins/test-theme/pages/three.md
|
334
|
+
- test/_ink_plugins/test-theme/pages/two.md
|
335
|
+
- test/_ink_plugins/test-theme/plugin.rb
|
336
|
+
- test/_ink_plugins/test-theme/stylesheets/_colors.scss
|
337
|
+
- test/_ink_plugins/test-theme/stylesheets/disable-this.css
|
338
|
+
- test/_ink_plugins/test-theme/stylesheets/disable.sass
|
339
|
+
- test/_ink_plugins/test-theme/stylesheets/main.scss
|
340
|
+
- test/_ink_plugins/test-theme/stylesheets/theme-media-test@print.css
|
341
|
+
- test/_ink_plugins/test-theme/stylesheets/theme-test.css
|
342
|
+
- test/_ink_plugins/test-theme/stylesheets/theme-test2.css
|
343
|
+
- test/_templates/page
|
344
|
+
- test/_templates/post
|
323
345
|
- test/source/_includes/foo.html
|
324
346
|
- test/source/_includes/post_data.html
|
325
347
|
- test/source/_layouts/head.html
|
@@ -343,47 +365,6 @@ files:
|
|
343
365
|
- test/source/test_layouts/theme.html
|
344
366
|
- test/source/test_layouts/theme_override.html
|
345
367
|
- test/source/test_pages/plugin_page_override.html
|
346
|
-
- test/source/test_render/_f.html
|
347
|
-
- test/source/test_render/_var.html
|
348
|
-
- test/source/test_tags/_test_render.md
|
349
|
-
- test/source/test_tags/abort_false.html
|
350
|
-
- test/source/test_tags/abort_posts.html
|
351
|
-
- test/source/test_tags/abort_true.html
|
352
|
-
- test/source/test_tags/assign.html
|
353
|
-
- test/source/test_tags/capture.html
|
354
|
-
- test/source/test_tags/content_for.html
|
355
|
-
- test/source/test_tags/filter.html
|
356
|
-
- test/source/test_tags/include.html
|
357
|
-
- test/source/test_tags/render.html
|
358
|
-
- test/source/test_tags/return.html
|
359
|
-
- test/source/test_tags/wrap.html
|
360
|
-
- test/test-plugin-expected/.gitignore
|
361
|
-
- test/test-plugin-expected/Gemfile
|
362
|
-
- test/test-plugin-expected/LICENSE.txt
|
363
|
-
- test/test-plugin-expected/README.md
|
364
|
-
- test/test-plugin-expected/Rakefile
|
365
|
-
- test/test-plugin-expected/assets/config.yml
|
366
|
-
- test/test-plugin-expected/demo/Gemfile
|
367
|
-
- test/test-plugin-expected/demo/_config.yml
|
368
|
-
- test/test-plugin-expected/demo/index.html
|
369
|
-
- test/test-plugin-expected/lib/test-plugin.rb
|
370
|
-
- test/test-plugin-expected/lib/test-plugin/version.rb
|
371
|
-
- test/test-plugin-expected/test-plugin.gemspec
|
372
|
-
- test/test-theme-expected/.gitignore
|
373
|
-
- test/test-theme-expected/Gemfile
|
374
|
-
- test/test-theme-expected/LICENSE.txt
|
375
|
-
- test/test-theme-expected/README.md
|
376
|
-
- test/test-theme-expected/Rakefile
|
377
|
-
- test/test-theme-expected/assets/config.yml
|
378
|
-
- test/test-theme-expected/demo/Gemfile
|
379
|
-
- test/test-theme-expected/demo/_config.yml
|
380
|
-
- test/test-theme-expected/demo/index.html
|
381
|
-
- test/test-theme-expected/lib/test-theme.rb
|
382
|
-
- test/test-theme-expected/lib/test-theme/version.rb
|
383
|
-
- test/test-theme-expected/test-theme.gemspec
|
384
|
-
- test/test.rb
|
385
|
-
- test/test_suite.rb
|
386
|
-
- test/uglify_js_false/javascripts/all-.js
|
387
368
|
homepage: https://github.com/octopress/ink
|
388
369
|
licenses:
|
389
370
|
- MIT
|
@@ -407,129 +388,147 @@ rubyforge_project:
|
|
407
388
|
rubygems_version: 2.2.2
|
408
389
|
signing_key:
|
409
390
|
specification_version: 4
|
410
|
-
summary: A
|
391
|
+
summary: A framework creating Jekyll/Octopress themes and plugins
|
411
392
|
test_files:
|
393
|
+
- test/.clash.yml
|
412
394
|
- test/Gemfile
|
413
395
|
- test/_combine_false.yml
|
414
396
|
- test/_compress_false.yml
|
415
397
|
- test/_config.yml
|
416
|
-
- test/combine_css_false/
|
417
|
-
- test/combine_css_false/
|
418
|
-
- test/combine_css_false/
|
419
|
-
- test/combine_css_false/
|
420
|
-
- test/combine_css_false/
|
421
|
-
- test/combine_css_false/
|
422
|
-
- test/combine_js_false/
|
423
|
-
- test/combine_js_false/
|
424
|
-
- test/combine_js_false/
|
425
|
-
- test/compress_false/javascripts/all-.js
|
426
|
-
- test/compress_false/stylesheets/all-.css
|
427
|
-
- test/compress_false/stylesheets/print-.css
|
428
|
-
- test/copy_layouts_pages/
|
429
|
-
- test/copy_layouts_pages/
|
430
|
-
- test/copy_layouts_pages/
|
431
|
-
- test/copy_layouts_pages/
|
432
|
-
- test/copy_layouts_pages/
|
433
|
-
- test/copy_layouts_pages/
|
434
|
-
- test/copy_layouts_pages/
|
435
|
-
- test/copy_test/
|
436
|
-
- test/copy_test/
|
437
|
-
- test/copy_test/
|
438
|
-
- test/copy_test/
|
439
|
-
- test/copy_test/
|
440
|
-
- test/copy_test/
|
441
|
-
- test/copy_test/
|
442
|
-
- test/copy_test/
|
443
|
-
- test/copy_test/
|
444
|
-
- test/copy_test/
|
445
|
-
- test/copy_test/
|
446
|
-
- test/copy_test/
|
447
|
-
- test/copy_test/
|
448
|
-
- test/copy_test/
|
449
|
-
- test/copy_test/
|
450
|
-
- test/copy_test/
|
451
|
-
- test/copy_test/
|
452
|
-
- test/copy_test/
|
453
|
-
- test/copy_test/
|
454
|
-
- test/copy_test/
|
455
|
-
- test/copy_test/
|
456
|
-
- test/copy_test/
|
457
|
-
- test/copy_test/
|
458
|
-
- test/copy_test/
|
459
|
-
- test/copy_test/
|
460
|
-
- test/copy_test/
|
461
|
-
- test/copy_test/
|
462
|
-
- test/
|
463
|
-
- test/
|
464
|
-
- test/
|
465
|
-
- test/
|
466
|
-
- test/
|
467
|
-
- test/
|
468
|
-
- test/
|
469
|
-
- test/
|
470
|
-
- test/
|
471
|
-
- test/
|
472
|
-
- test/
|
473
|
-
- test/
|
474
|
-
- test/
|
475
|
-
- test/
|
476
|
-
- test/
|
477
|
-
- test/
|
478
|
-
- test/
|
479
|
-
- test/
|
480
|
-
- test/
|
481
|
-
- test/
|
482
|
-
- test/
|
483
|
-
- test/
|
484
|
-
- test/
|
485
|
-
- test/expected
|
486
|
-
- test/expected/
|
487
|
-
- test/expected/
|
488
|
-
- test/expected/
|
489
|
-
- test/expected/
|
490
|
-
- test/expected/
|
491
|
-
- test/expected/
|
492
|
-
- test/expected/
|
493
|
-
- test/expected/
|
494
|
-
- test/
|
495
|
-
- test/
|
496
|
-
- test/
|
497
|
-
- test/
|
498
|
-
- test/
|
499
|
-
- test/
|
500
|
-
- test/
|
501
|
-
- test/
|
502
|
-
- test/
|
503
|
-
- test/
|
504
|
-
- test/
|
505
|
-
- test/
|
506
|
-
- test/
|
507
|
-
- test/
|
508
|
-
- test/
|
509
|
-
- test/
|
510
|
-
- test/
|
511
|
-
- test/
|
512
|
-
- test/
|
513
|
-
- test/
|
514
|
-
- test/
|
515
|
-
- test/
|
516
|
-
- test/
|
517
|
-
- test/
|
518
|
-
- test/
|
519
|
-
- test/
|
520
|
-
- test/
|
521
|
-
- test/
|
522
|
-
- test/
|
523
|
-
- test/
|
524
|
-
- test/
|
525
|
-
- test/
|
526
|
-
- test/
|
527
|
-
- test/
|
528
|
-
- test/
|
529
|
-
- test/
|
530
|
-
- test/
|
531
|
-
- test/
|
532
|
-
- test/
|
398
|
+
- test/_expected/combine_css_false/awesome-sauce/plugin-media-test.css
|
399
|
+
- test/_expected/combine_css_false/awesome-sauce/plugin-test.css
|
400
|
+
- test/_expected/combine_css_false/theme/main.css
|
401
|
+
- test/_expected/combine_css_false/theme/theme-media-test.css
|
402
|
+
- test/_expected/combine_css_false/theme/theme-test.css
|
403
|
+
- test/_expected/combine_css_false/theme/theme-test2.css
|
404
|
+
- test/_expected/combine_js_false/theme/bar.js
|
405
|
+
- test/_expected/combine_js_false/theme/blah.js
|
406
|
+
- test/_expected/combine_js_false/theme/foo.js
|
407
|
+
- test/_expected/compress_false/javascripts/all-.js
|
408
|
+
- test/_expected/compress_false/stylesheets/all-.css
|
409
|
+
- test/_expected/compress_false/stylesheets/print-.css
|
410
|
+
- test/_expected/copy_layouts_pages/layouts/default.html
|
411
|
+
- test/_expected/copy_layouts_pages/layouts/test.html
|
412
|
+
- test/_expected/copy_layouts_pages/pages/disable-test.html
|
413
|
+
- test/_expected/copy_layouts_pages/pages/four.xml
|
414
|
+
- test/_expected/copy_layouts_pages/pages/one.xml
|
415
|
+
- test/_expected/copy_layouts_pages/pages/three.md
|
416
|
+
- test/_expected/copy_layouts_pages/pages/two.md
|
417
|
+
- test/_expected/copy_test/config.yml
|
418
|
+
- test/_expected/copy_test/files/disabled-file.txt
|
419
|
+
- test/_expected/copy_test/files/favicon.ico
|
420
|
+
- test/_expected/copy_test/files/favicon.png
|
421
|
+
- test/_expected/copy_test/files/test.html
|
422
|
+
- test/_expected/copy_test/fonts/font-one.otf
|
423
|
+
- test/_expected/copy_test/fonts/font-two.ttf
|
424
|
+
- test/_expected/copy_test/includes/bar.html
|
425
|
+
- test/_expected/copy_test/includes/greet.html
|
426
|
+
- test/_expected/copy_test/javascripts/bar.js
|
427
|
+
- test/_expected/copy_test/javascripts/blah.coffee
|
428
|
+
- test/_expected/copy_test/javascripts/disable-this.js
|
429
|
+
- test/_expected/copy_test/javascripts/foo.js
|
430
|
+
- test/_expected/copy_test/layouts/default.html
|
431
|
+
- test/_expected/copy_test/layouts/test.html
|
432
|
+
- test/_expected/copy_test/pages/disable-test.html
|
433
|
+
- test/_expected/copy_test/pages/four.xml
|
434
|
+
- test/_expected/copy_test/pages/one.xml
|
435
|
+
- test/_expected/copy_test/pages/three.md
|
436
|
+
- test/_expected/copy_test/pages/two.md
|
437
|
+
- test/_expected/copy_test/stylesheets/_colors.scss
|
438
|
+
- test/_expected/copy_test/stylesheets/disable-this.css
|
439
|
+
- test/_expected/copy_test/stylesheets/disable.sass
|
440
|
+
- test/_expected/copy_test/stylesheets/main.scss
|
441
|
+
- test/_expected/copy_test/stylesheets/theme-media-test@print.css
|
442
|
+
- test/_expected/copy_test/stylesheets/theme-test.css
|
443
|
+
- test/_expected/copy_test/stylesheets/theme-test2.css
|
444
|
+
- test/_expected/site/2014/02/01/test-post.html
|
445
|
+
- test/_expected/site/2014/02/02/test-post-2.html
|
446
|
+
- test/_expected/site/favicon.ico
|
447
|
+
- test/_expected/site/favicon.png
|
448
|
+
- test/_expected/site/four/index.xml
|
449
|
+
- test/_expected/site/index.html
|
450
|
+
- test/_expected/site/javascripts/all-.js
|
451
|
+
- test/_expected/site/robots.txt
|
452
|
+
- test/_expected/site/stylesheets/all-.css
|
453
|
+
- test/_expected/site/stylesheets/print-.css
|
454
|
+
- test/_expected/site/test.html
|
455
|
+
- test/_expected/site/test_config/plugin_config.html
|
456
|
+
- test/_expected/site/test_config/theme_config.html
|
457
|
+
- test/_expected/site/test_layouts/local.html
|
458
|
+
- test/_expected/site/test_layouts/plugin_layout.html
|
459
|
+
- test/_expected/site/test_layouts/test_markdown.html
|
460
|
+
- test/_expected/site/test_layouts/theme.html
|
461
|
+
- test/_expected/site/test_layouts/theme_override.html
|
462
|
+
- test/_expected/site/test_pages/feed/index.xml
|
463
|
+
- test/_expected/site/test_pages/plugin_page.html
|
464
|
+
- test/_expected/site/test_pages/plugin_page_override.html
|
465
|
+
- test/_expected/site/test_pages/theme_page.html
|
466
|
+
- test/_expected/site/test_pages/three.html
|
467
|
+
- test/_expected/test-plugin-expected/.gitignore
|
468
|
+
- test/_expected/test-plugin-expected/Gemfile
|
469
|
+
- test/_expected/test-plugin-expected/LICENSE.txt
|
470
|
+
- test/_expected/test-plugin-expected/README.md
|
471
|
+
- test/_expected/test-plugin-expected/Rakefile
|
472
|
+
- test/_expected/test-plugin-expected/assets/config.yml
|
473
|
+
- test/_expected/test-plugin-expected/demo/Gemfile
|
474
|
+
- test/_expected/test-plugin-expected/demo/_config.yml
|
475
|
+
- test/_expected/test-plugin-expected/demo/index.html
|
476
|
+
- test/_expected/test-plugin-expected/lib/test-plugin.rb
|
477
|
+
- test/_expected/test-plugin-expected/lib/test-plugin/version.rb
|
478
|
+
- test/_expected/test-plugin-expected/test-plugin.gemspec
|
479
|
+
- test/_expected/test-theme-expected/.gitignore
|
480
|
+
- test/_expected/test-theme-expected/Gemfile
|
481
|
+
- test/_expected/test-theme-expected/LICENSE.txt
|
482
|
+
- test/_expected/test-theme-expected/README.md
|
483
|
+
- test/_expected/test-theme-expected/Rakefile
|
484
|
+
- test/_expected/test-theme-expected/assets/config.yml
|
485
|
+
- test/_expected/test-theme-expected/demo/Gemfile
|
486
|
+
- test/_expected/test-theme-expected/demo/_config.yml
|
487
|
+
- test/_expected/test-theme-expected/demo/index.html
|
488
|
+
- test/_expected/test-theme-expected/lib/test-theme.rb
|
489
|
+
- test/_expected/test-theme-expected/lib/test-theme/version.rb
|
490
|
+
- test/_expected/test-theme-expected/test-theme.gemspec
|
491
|
+
- test/_expected/uglify_js_false/all-.js
|
492
|
+
- test/_ink_plugins/awesome-sauce/config.yml
|
493
|
+
- test/_ink_plugins/awesome-sauce/docs/index.html
|
494
|
+
- test/_ink_plugins/awesome-sauce/files/robots.txt
|
495
|
+
- test/_ink_plugins/awesome-sauce/includes/some-include.html
|
496
|
+
- test/_ink_plugins/awesome-sauce/layouts/test-layout.html
|
497
|
+
- test/_ink_plugins/awesome-sauce/pages/a.html
|
498
|
+
- test/_ink_plugins/awesome-sauce/pages/b.html
|
499
|
+
- test/_ink_plugins/awesome-sauce/plugin.rb
|
500
|
+
- test/_ink_plugins/awesome-sauce/stylesheets/plugin-media-test@print.css
|
501
|
+
- test/_ink_plugins/awesome-sauce/stylesheets/plugin-test.css
|
502
|
+
- test/_ink_plugins/test-theme/config.yml
|
503
|
+
- test/_ink_plugins/test-theme/files/disabled-file.txt
|
504
|
+
- test/_ink_plugins/test-theme/files/favicon.ico
|
505
|
+
- test/_ink_plugins/test-theme/files/favicon.png
|
506
|
+
- test/_ink_plugins/test-theme/files/test.html
|
507
|
+
- test/_ink_plugins/test-theme/fonts/font-one.otf
|
508
|
+
- test/_ink_plugins/test-theme/fonts/font-two.ttf
|
509
|
+
- test/_ink_plugins/test-theme/includes/bar.html
|
510
|
+
- test/_ink_plugins/test-theme/includes/greet.html
|
511
|
+
- test/_ink_plugins/test-theme/javascripts/bar.js
|
512
|
+
- test/_ink_plugins/test-theme/javascripts/blah.coffee
|
513
|
+
- test/_ink_plugins/test-theme/javascripts/disable-this.js
|
514
|
+
- test/_ink_plugins/test-theme/javascripts/foo.js
|
515
|
+
- test/_ink_plugins/test-theme/layouts/default.html
|
516
|
+
- test/_ink_plugins/test-theme/layouts/test.html
|
517
|
+
- test/_ink_plugins/test-theme/pages/disable-test.html
|
518
|
+
- test/_ink_plugins/test-theme/pages/four.xml
|
519
|
+
- test/_ink_plugins/test-theme/pages/one.xml
|
520
|
+
- test/_ink_plugins/test-theme/pages/three.md
|
521
|
+
- test/_ink_plugins/test-theme/pages/two.md
|
522
|
+
- test/_ink_plugins/test-theme/plugin.rb
|
523
|
+
- test/_ink_plugins/test-theme/stylesheets/_colors.scss
|
524
|
+
- test/_ink_plugins/test-theme/stylesheets/disable-this.css
|
525
|
+
- test/_ink_plugins/test-theme/stylesheets/disable.sass
|
526
|
+
- test/_ink_plugins/test-theme/stylesheets/main.scss
|
527
|
+
- test/_ink_plugins/test-theme/stylesheets/theme-media-test@print.css
|
528
|
+
- test/_ink_plugins/test-theme/stylesheets/theme-test.css
|
529
|
+
- test/_ink_plugins/test-theme/stylesheets/theme-test2.css
|
530
|
+
- test/_templates/page
|
531
|
+
- test/_templates/post
|
533
532
|
- test/source/_includes/foo.html
|
534
533
|
- test/source/_includes/post_data.html
|
535
534
|
- test/source/_layouts/head.html
|
@@ -553,44 +552,3 @@ test_files:
|
|
553
552
|
- test/source/test_layouts/theme.html
|
554
553
|
- test/source/test_layouts/theme_override.html
|
555
554
|
- test/source/test_pages/plugin_page_override.html
|
556
|
-
- test/source/test_render/_f.html
|
557
|
-
- test/source/test_render/_var.html
|
558
|
-
- test/source/test_tags/_test_render.md
|
559
|
-
- test/source/test_tags/abort_false.html
|
560
|
-
- test/source/test_tags/abort_posts.html
|
561
|
-
- test/source/test_tags/abort_true.html
|
562
|
-
- test/source/test_tags/assign.html
|
563
|
-
- test/source/test_tags/capture.html
|
564
|
-
- test/source/test_tags/content_for.html
|
565
|
-
- test/source/test_tags/filter.html
|
566
|
-
- test/source/test_tags/include.html
|
567
|
-
- test/source/test_tags/render.html
|
568
|
-
- test/source/test_tags/return.html
|
569
|
-
- test/source/test_tags/wrap.html
|
570
|
-
- test/test-plugin-expected/.gitignore
|
571
|
-
- test/test-plugin-expected/Gemfile
|
572
|
-
- test/test-plugin-expected/LICENSE.txt
|
573
|
-
- test/test-plugin-expected/README.md
|
574
|
-
- test/test-plugin-expected/Rakefile
|
575
|
-
- test/test-plugin-expected/assets/config.yml
|
576
|
-
- test/test-plugin-expected/demo/Gemfile
|
577
|
-
- test/test-plugin-expected/demo/_config.yml
|
578
|
-
- test/test-plugin-expected/demo/index.html
|
579
|
-
- test/test-plugin-expected/lib/test-plugin.rb
|
580
|
-
- test/test-plugin-expected/lib/test-plugin/version.rb
|
581
|
-
- test/test-plugin-expected/test-plugin.gemspec
|
582
|
-
- test/test-theme-expected/.gitignore
|
583
|
-
- test/test-theme-expected/Gemfile
|
584
|
-
- test/test-theme-expected/LICENSE.txt
|
585
|
-
- test/test-theme-expected/README.md
|
586
|
-
- test/test-theme-expected/Rakefile
|
587
|
-
- test/test-theme-expected/assets/config.yml
|
588
|
-
- test/test-theme-expected/demo/Gemfile
|
589
|
-
- test/test-theme-expected/demo/_config.yml
|
590
|
-
- test/test-theme-expected/demo/index.html
|
591
|
-
- test/test-theme-expected/lib/test-theme.rb
|
592
|
-
- test/test-theme-expected/lib/test-theme/version.rb
|
593
|
-
- test/test-theme-expected/test-theme.gemspec
|
594
|
-
- test/test.rb
|
595
|
-
- test/test_suite.rb
|
596
|
-
- test/uglify_js_false/javascripts/all-.js
|