octopress-asset-pipeline 1.1.5 → 1.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -1
- data/lib/octopress-asset-pipeline/version.rb +1 -1
- data/lib/octopress-asset-pipeline.rb +4 -4
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5399a157bed09b392503478d7beb4306cbe708bb
|
4
|
+
data.tar.gz: 9ea16b684e79fdef9525b797238c3150bf343c37
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a573b81b822f6de19fe54f92fa812e4bedeee29b7a2324c82cd9c55a544224838758ea5a56f415388720cf2ac0c448cb179771486b09f3eb4bf3eb40bc26e201
|
7
|
+
data.tar.gz: fce5b672fdb695ac313582e072e1614b64bc60d9b832562606b00fa102c14ec8730f015671e757c96efb8a6adae30175ddc517b423544243a0c19a72e06168f9
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,10 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
-
### 1.1.
|
3
|
+
### 1.1.6 - 2015-01-09
|
4
|
+
|
5
|
+
- Fixed: Enforced default sorting by path.
|
6
|
+
|
7
|
+
### 1.1.5 - 2015-01-09
|
4
8
|
|
5
9
|
- Fixed: Some files weren't getting added to the compiled output. [#7](https://github.com/octopress/asset-pipeline/issues/7)
|
6
10
|
|
@@ -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.dup.each do |f|
|
112
|
+
Octopress.site.pages.dup.sort_by{|f| f.path}.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.dup.each do |f|
|
123
|
+
Octopress.site.static_files.dup.sort_by{|f| f.path}.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.dup.each do |f|
|
134
|
+
Octopress.site.pages.dup.sort_by{|f| f.path}.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.dup.each do |f|
|
145
|
+
Octopress.site.static_files.dup.sort_by{|f| f.path}.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
|