octopress-asset-pipeline 1.1.3 → 1.1.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -2
- data/README.md +3 -0
- data/lib/octopress-asset-pipeline/version.rb +1 -1
- metadata +2 -71
- data/.clash.yml +0 -20
- data/.gitignore +0 -25
- data/.travis.yml +0 -5
- data/Gemfile +0 -4
- data/Rakefile +0 -8
- data/demo/Gemfile +0 -8
- data/demo/_config.yml +0 -5
- data/demo/_octopress.yml +0 -2
- data/demo/_sass/_partial.sass +0 -1
- data/demo/blah.js +0 -1
- data/demo/foo.coffee +0 -3
- data/demo/index.html +0 -4
- data/demo/sass-test.scss +0 -5
- data/demo/test.css +0 -2
- data/octopress-asset-pipeline.gemspec +0 -30
- data/test/Gemfile +0 -3
- data/test/_combine_css_only.yml +0 -2
- data/test/_combine_false.yml +0 -5
- data/test/_config.yml +0 -5
- data/test/expected/css_tag_only/blah.js +0 -1
- data/test/expected/css_tag_only/foo.js +0 -6
- data/test/expected/css_tag_only/index.html +0 -2
- data/test/expected/css_tag_only/stylesheets/all-.css +0 -1
- data/test/expected/no_combining/blah.js +0 -1
- data/test/expected/no_combining/foo.js +0 -6
- data/test/expected/no_combining/index.html +0 -2
- data/test/expected/no_combining/sass-test.css +0 -2
- data/test/expected/no_combining/test.css +0 -2
- data/test/expected/standard/index.html +0 -2
- data/test/expected/standard/javascripts/all-.js +0 -1
- data/test/expected/standard/stylesheets/all-.css +0 -1
- data/test/site/blah.js +0 -1
- data/test/site/foo.js +0 -6
- data/test/site/index.html +0 -2
- data/test/site/sass-test.css +0 -2
- data/test/site/test.css +0 -2
- data/test/source/_sass/_partial.sass +0 -1
- data/test/source/blah.js +0 -1
- data/test/source/foo.coffee +0 -3
- data/test/source/index.html +0 -4
- data/test/source/sass-test.scss +0 -5
- data/test/source/test.css +0 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e8d12ffb5c2585f184b4fd8e36c9deb9350c9e91
|
4
|
+
data.tar.gz: 48158cf9f5c008bb0504657057fb389ca251301b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0f17beb0648f2d58e02e584a9acdcf2e5f563093a0806552b811d0aff0a49727b3862fd227b353dfe4a8872b04975cc6ccb3afad454ea1b80c4630e2d6bd45ea
|
7
|
+
data.tar.gz: 84505ffc1bd5996e728e674fe56a9b511e18a73ae4007b0075157b3cd4906ce9f733e06062c3fd8d9374f3cd46910a27a4288fce766692ed986d45a7f087cdac
|
data/CHANGELOG.md
CHANGED
@@ -1,12 +1,16 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 1.1.4 - 2015-01-05
|
4
|
+
|
5
|
+
- Removed unnecessary files from gem build.
|
6
|
+
|
3
7
|
### 1.1.3 - 2015-01-05
|
4
8
|
|
5
|
-
- Improvements to README
|
9
|
+
- Improvements to README.
|
6
10
|
|
7
11
|
### 1.1.2 - 2015-01-02
|
8
12
|
|
9
|
-
- Updated integration with Octopress Docs
|
13
|
+
- Updated integration with Octopress Docs.
|
10
14
|
|
11
15
|
### 1.1.1 - 2015-01-02
|
12
16
|
|
data/README.md
CHANGED
@@ -2,6 +2,9 @@
|
|
2
2
|
|
3
3
|
Combine and compress and fingerprint Stylesheets (CSS and Sass) and Javascripts (JS and Coffeescript) to a single fingerprinted .css or .js file.
|
4
4
|
|
5
|
+
[![Build Status](https://travis-ci.org/octopress/asset-pipeline.png?branch=master)](https://travis-ci.org/octopress/asset-pipeline)
|
6
|
+
[![Gem Version](https://badge.fury.io/rb/octopress-asset-pipeline.png)](http://badge.fury.io/rb/octopress-asset-pipeline)
|
7
|
+
|
5
8
|
**How it works:** This plugin will automatically search Jekyll's site index for .js, .coffee, .css, .scss and .sass
|
6
9
|
files and combine, compress and fingerprint them so they're ready for deployment. Then add the liquid tags to your site layout to write
|
7
10
|
the necessary script or link tags.
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: octopress-asset-pipeline
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brandon Mathis
|
@@ -88,23 +88,9 @@ executables: []
|
|
88
88
|
extensions: []
|
89
89
|
extra_rdoc_files: []
|
90
90
|
files:
|
91
|
-
- ".clash.yml"
|
92
|
-
- ".gitignore"
|
93
|
-
- ".travis.yml"
|
94
91
|
- CHANGELOG.md
|
95
|
-
- Gemfile
|
96
92
|
- LICENSE.txt
|
97
93
|
- README.md
|
98
|
-
- Rakefile
|
99
|
-
- demo/Gemfile
|
100
|
-
- demo/_config.yml
|
101
|
-
- demo/_octopress.yml
|
102
|
-
- demo/_sass/_partial.sass
|
103
|
-
- demo/blah.js
|
104
|
-
- demo/foo.coffee
|
105
|
-
- demo/index.html
|
106
|
-
- demo/sass-test.scss
|
107
|
-
- demo/test.css
|
108
94
|
- lib/octopress-asset-pipeline.rb
|
109
95
|
- lib/octopress-asset-pipeline/assets/coffeescript.rb
|
110
96
|
- lib/octopress-asset-pipeline/assets/css.rb
|
@@ -112,34 +98,6 @@ files:
|
|
112
98
|
- lib/octopress-asset-pipeline/assets/local.rb
|
113
99
|
- lib/octopress-asset-pipeline/assets/sass.rb
|
114
100
|
- lib/octopress-asset-pipeline/version.rb
|
115
|
-
- octopress-asset-pipeline.gemspec
|
116
|
-
- test/Gemfile
|
117
|
-
- test/_combine_css_only.yml
|
118
|
-
- test/_combine_false.yml
|
119
|
-
- test/_config.yml
|
120
|
-
- test/expected/css_tag_only/blah.js
|
121
|
-
- test/expected/css_tag_only/foo.js
|
122
|
-
- test/expected/css_tag_only/index.html
|
123
|
-
- test/expected/css_tag_only/stylesheets/all-.css
|
124
|
-
- test/expected/no_combining/blah.js
|
125
|
-
- test/expected/no_combining/foo.js
|
126
|
-
- test/expected/no_combining/index.html
|
127
|
-
- test/expected/no_combining/sass-test.css
|
128
|
-
- test/expected/no_combining/test.css
|
129
|
-
- test/expected/standard/index.html
|
130
|
-
- test/expected/standard/javascripts/all-.js
|
131
|
-
- test/expected/standard/stylesheets/all-.css
|
132
|
-
- test/site/blah.js
|
133
|
-
- test/site/foo.js
|
134
|
-
- test/site/index.html
|
135
|
-
- test/site/sass-test.css
|
136
|
-
- test/site/test.css
|
137
|
-
- test/source/_sass/_partial.sass
|
138
|
-
- test/source/blah.js
|
139
|
-
- test/source/foo.coffee
|
140
|
-
- test/source/index.html
|
141
|
-
- test/source/sass-test.scss
|
142
|
-
- test/source/test.css
|
143
101
|
homepage: https://github.com/octopress/asset-pipeline
|
144
102
|
licenses:
|
145
103
|
- MIT
|
@@ -165,31 +123,4 @@ signing_key:
|
|
165
123
|
specification_version: 4
|
166
124
|
summary: Combine and compress CSS and Sass, Javascript and Coffeescript to a single
|
167
125
|
fingerprinted file.
|
168
|
-
test_files:
|
169
|
-
- test/Gemfile
|
170
|
-
- test/_combine_css_only.yml
|
171
|
-
- test/_combine_false.yml
|
172
|
-
- test/_config.yml
|
173
|
-
- test/expected/css_tag_only/blah.js
|
174
|
-
- test/expected/css_tag_only/foo.js
|
175
|
-
- test/expected/css_tag_only/index.html
|
176
|
-
- test/expected/css_tag_only/stylesheets/all-.css
|
177
|
-
- test/expected/no_combining/blah.js
|
178
|
-
- test/expected/no_combining/foo.js
|
179
|
-
- test/expected/no_combining/index.html
|
180
|
-
- test/expected/no_combining/sass-test.css
|
181
|
-
- test/expected/no_combining/test.css
|
182
|
-
- test/expected/standard/index.html
|
183
|
-
- test/expected/standard/javascripts/all-.js
|
184
|
-
- test/expected/standard/stylesheets/all-.css
|
185
|
-
- test/site/blah.js
|
186
|
-
- test/site/foo.js
|
187
|
-
- test/site/index.html
|
188
|
-
- test/site/sass-test.css
|
189
|
-
- test/site/test.css
|
190
|
-
- test/source/_sass/_partial.sass
|
191
|
-
- test/source/blah.js
|
192
|
-
- test/source/foo.coffee
|
193
|
-
- test/source/index.html
|
194
|
-
- test/source/sass-test.scss
|
195
|
-
- test/source/test.css
|
126
|
+
test_files: []
|
data/.clash.yml
DELETED
@@ -1,20 +0,0 @@
|
|
1
|
-
-
|
2
|
-
title: Typical build (combined and compressed)
|
3
|
-
build: true
|
4
|
-
compare: expected/standard site
|
5
|
-
-
|
6
|
-
title: Combine CSS only
|
7
|
-
build: true
|
8
|
-
config:
|
9
|
-
jekyll:
|
10
|
-
- _config.yml
|
11
|
-
- _combine_css_only.yml
|
12
|
-
compare: expected/css_tag_only site
|
13
|
-
-
|
14
|
-
title: Separate asset files
|
15
|
-
build: true
|
16
|
-
config:
|
17
|
-
jekyll:
|
18
|
-
- _config.yml
|
19
|
-
- _combine_false.yml
|
20
|
-
compare: expected/no_combining site
|
data/.gitignore
DELETED
@@ -1,25 +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
|
24
|
-
.sass-cache
|
25
|
-
.DS_Store
|
data/.travis.yml
DELETED
data/Gemfile
DELETED
data/Rakefile
DELETED
@@ -1,8 +0,0 @@
|
|
1
|
-
require "bundler/gem_tasks"
|
2
|
-
require "octopress-ink"
|
3
|
-
|
4
|
-
desc "Copy Readme and Changelog into docs"
|
5
|
-
task :update_docs do
|
6
|
-
Octopress::Ink.copy_doc 'README.md', 'assets/docs/index.markdown'
|
7
|
-
Octopress::Ink.copy_doc 'CHANGELOG.md', 'assets/docs/changelog.markdown', '/changelog/'
|
8
|
-
end
|
data/demo/Gemfile
DELETED
data/demo/_config.yml
DELETED
data/demo/_octopress.yml
DELETED
data/demo/_sass/_partial.sass
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
$bg: black
|
data/demo/blah.js
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
console.log("Yo I'm a javascript")
|
data/demo/foo.coffee
DELETED
data/demo/index.html
DELETED
data/demo/sass-test.scss
DELETED
data/demo/test.css
DELETED
@@ -1,30 +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-asset-pipeline/version'
|
5
|
-
|
6
|
-
Gem::Specification.new do |spec|
|
7
|
-
spec.name = "octopress-asset-pipeline"
|
8
|
-
spec.version = Octopress::AssetPipeline::VERSION
|
9
|
-
spec.authors = ["Brandon Mathis"]
|
10
|
-
spec.email = ["brandon@imathis.com"]
|
11
|
-
spec.summary = %q{Combine and compress CSS and Sass, Javascript and Coffeescript to a single fingerprinted file.}
|
12
|
-
spec.description = %q{Combine and compress CSS and Sass, Javascript and Coffeescript to a single fingerprinted file.}
|
13
|
-
spec.homepage = "https://github.com/octopress/asset-pipeline"
|
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 "octopress-ink", "~> 1.0.0.rc"
|
22
|
-
|
23
|
-
spec.add_development_dependency "bundler"
|
24
|
-
spec.add_development_dependency "clash"
|
25
|
-
spec.add_development_dependency "rake"
|
26
|
-
|
27
|
-
if RUBY_VERSION >= "2"
|
28
|
-
spec.add_development_dependency "pry-byebug"
|
29
|
-
end
|
30
|
-
end
|
data/test/Gemfile
DELETED
data/test/_combine_css_only.yml
DELETED
data/test/_combine_false.yml
DELETED
data/test/_config.yml
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
console.log("Yo I'm a javascript")
|
@@ -1 +0,0 @@
|
|
1
|
-
body{color:#444}body{background:#00ffaa}
|
@@ -1 +0,0 @@
|
|
1
|
-
console.log("Yo I'm a javascript")
|
@@ -1 +0,0 @@
|
|
1
|
-
console.log("Yo I'm a javascript")(function(){console.log("hi")}).call(this);
|
@@ -1 +0,0 @@
|
|
1
|
-
body{color:#444}body{background:#00ffaa}
|
data/test/site/blah.js
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
console.log("Yo I'm a javascript")
|
data/test/site/foo.js
DELETED
data/test/site/index.html
DELETED
data/test/site/sass-test.css
DELETED
data/test/site/test.css
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
$bg: #00ffaa
|
data/test/source/blah.js
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
console.log("Yo I'm a javascript")
|
data/test/source/foo.coffee
DELETED
data/test/source/index.html
DELETED
data/test/source/sass-test.scss
DELETED
data/test/source/test.css
DELETED