octopress-asset-pipeline 1.1.4 → 1.1.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/README.md +1 -1
- data/lib/octopress-asset-pipeline/version.rb +1 -1
- data/lib/octopress-asset-pipeline.rb +4 -4
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4cb19cd2a3dc408efeff7da1a5694779f35f1df6
|
4
|
+
data.tar.gz: c1745c50fd183216bc2841b5488d30325f32af38
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ff94f3da5d91c9cd20680d18e410f2041da63ef3693e8cf80b4a81a5b8a1af640beaf5ff74e53d259e92acf67bc2995f1651371a8fa47b1539d07ef37d89c781
|
7
|
+
data.tar.gz: ac3c91c25291acd8a8ba7e5dc47745564c5d5a639f2abeaa501cad3154ef598ba6dbdc104fdcfec8042e0004645f11d8001a94ec42918657573213a80be20beb
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -65,7 +65,7 @@ the configurations are set in the `_config.yml` configuration file under the `as
|
|
65
65
|
|
66
66
|
### Ordering assets
|
67
67
|
|
68
|
-
By default when scripts and stylesheets are combined, they added based on
|
68
|
+
By default when scripts and stylesheets are combined, they are added based on
|
69
69
|
their order in the file system. You can manually specify order like this:
|
70
70
|
|
71
71
|
```
|
@@ -109,7 +109,7 @@ module Octopress
|
|
109
109
|
# Finds all Sass files registered by Jekyll
|
110
110
|
#
|
111
111
|
def add_sass
|
112
|
-
Octopress.site.pages.each do |f|
|
112
|
+
Octopress.site.pages.dup.each do |f|
|
113
113
|
if f.ext =~ /\.s[ca]ss/
|
114
114
|
@sass << Sass.new(self, f)
|
115
115
|
Octopress.site.pages.delete(f)
|
@@ -120,7 +120,7 @@ module Octopress
|
|
120
120
|
# Finds all CSS files registered by Jekyll
|
121
121
|
#
|
122
122
|
def add_css
|
123
|
-
Octopress.site.static_files.each do |f|
|
123
|
+
Octopress.site.static_files.dup.each do |f|
|
124
124
|
if f.path =~ /\.css$/
|
125
125
|
@css << Css.new(self, f)
|
126
126
|
Octopress.site.static_files.delete(f) if combine_css
|
@@ -131,7 +131,7 @@ module Octopress
|
|
131
131
|
# Finds all Coffeescript files registered by Jekyll
|
132
132
|
#
|
133
133
|
def add_coffee
|
134
|
-
Octopress.site.pages.each do |f|
|
134
|
+
Octopress.site.pages.dup.each do |f|
|
135
135
|
if f.ext =~ /\.coffee$/
|
136
136
|
@coffee << Coffeescript.new(self, f)
|
137
137
|
Octopress.site.pages.delete(f) if combine_js
|
@@ -142,7 +142,7 @@ module Octopress
|
|
142
142
|
# Finds all Javascript files registered by Jekyll
|
143
143
|
#
|
144
144
|
def add_js
|
145
|
-
Octopress.site.static_files.each do |f|
|
145
|
+
Octopress.site.static_files.dup.each do |f|
|
146
146
|
if f.path =~ /\.js$/
|
147
147
|
@js << Javascript.new(self, f)
|
148
148
|
Octopress.site.static_files.delete(f) if combine_js
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brandon Mathis
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-01-
|
11
|
+
date: 2015-01-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: octopress-ink
|