sprockets-derailleur 0.0.8 → 0.0.9
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +1 -1
- data/lib/sprockets-derailleur/manifest.rb +2 -1
- data/lib/sprockets-derailleur/version.rb +1 -1
- metadata +3 -2
data/README.md
CHANGED
@@ -30,7 +30,7 @@ module Sprockets
|
|
30
30
|
|
31
31
|
alias_method :compile_without_manifest, :compile
|
32
32
|
def compile
|
33
|
-
puts "Multithreading on " + SprocketsDerailleur.worker_count + " processors"
|
33
|
+
puts "Multithreading on " + SprocketsDerailleur.worker_count.to_s + " processors"
|
34
34
|
puts "Starting Asset Compile: " + Time.now.getutc.to_s
|
35
35
|
|
36
36
|
# Then initialize the manifest with the workers you just determined
|
@@ -115,6 +115,7 @@ module Sprockets
|
|
115
115
|
else
|
116
116
|
logger.debug "Writing #{target}"
|
117
117
|
asset.write_to target
|
118
|
+
asset.write_to "#{target}.gz" if asset.is_a?(BundledAsset)
|
118
119
|
end
|
119
120
|
|
120
121
|
Marshal.dump(data, child_write)
|
@@ -124,7 +125,7 @@ module Sprockets
|
|
124
125
|
end
|
125
126
|
end
|
126
127
|
|
127
|
-
logger.
|
128
|
+
logger.debug "Compiled #{path} (#{(time.real * 1000).round}ms, pid #{Process.pid})"
|
128
129
|
end
|
129
130
|
ensure
|
130
131
|
child_read.close
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sprockets-derailleur
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.9
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2014-
|
12
|
+
date: 2014-03-21 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: sprockets
|
@@ -69,3 +69,4 @@ signing_key:
|
|
69
69
|
specification_version: 3
|
70
70
|
summary: Multi process sprockets compiling
|
71
71
|
test_files: []
|
72
|
+
has_rdoc:
|