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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e8d12ffb5c2585f184b4fd8e36c9deb9350c9e91
4
- data.tar.gz: 48158cf9f5c008bb0504657057fb389ca251301b
3
+ metadata.gz: 4cb19cd2a3dc408efeff7da1a5694779f35f1df6
4
+ data.tar.gz: c1745c50fd183216bc2841b5488d30325f32af38
5
5
  SHA512:
6
- metadata.gz: 0f17beb0648f2d58e02e584a9acdcf2e5f563093a0806552b811d0aff0a49727b3862fd227b353dfe4a8872b04975cc6ccb3afad454ea1b80c4630e2d6bd45ea
7
- data.tar.gz: 84505ffc1bd5996e728e674fe56a9b511e18a73ae4007b0075157b3cd4906ce9f733e06062c3fd8d9374f3cd46910a27a4288fce766692ed986d45a7f087cdac
6
+ metadata.gz: ff94f3da5d91c9cd20680d18e410f2041da63ef3693e8cf80b4a81a5b8a1af640beaf5ff74e53d259e92acf67bc2995f1651371a8fa47b1539d07ef37d89c781
7
+ data.tar.gz: ac3c91c25291acd8a8ba7e5dc47745564c5d5a639f2abeaa501cad3154ef598ba6dbdc104fdcfec8042e0004645f11d8001a94ec42918657573213a80be20beb
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ### 1.1.5 - 2015-01-05
4
+
5
+ - Fixed: Some files weren't getting added to the compiled output. [#7](https://github.com/octopress/asset-pipeline/issues/7)
6
+
3
7
  ### 1.1.4 - 2015-01-05
4
8
 
5
9
  - Removed unnecessary files from gem build.
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
  ```
@@ -1,5 +1,5 @@
1
1
  module Octopress
2
2
  module AssetPipeline
3
- VERSION = "1.1.4"
3
+ VERSION = "1.1.5"
4
4
  end
5
5
  end
@@ -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
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-05 00:00:00.000000000 Z
11
+ date: 2015-01-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: octopress-ink