cyborg 0.5.6 → 0.5.7
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1cddb387475ec938aa53e54febb779a2661dfe48
|
4
|
+
data.tar.gz: 3fac26915273b3500334685edd6729edf417f36b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c804eee39819f9875e037bee952ce285cf1b1b1fd083ee9ff9544a29097a8751dd3f6ba0dd3f72e093a9a75e233bdc1e6e7e7c0585b904d863e04f250ec44bbc
|
7
|
+
data.tar.gz: 2fe26e3d1a9ec1d8293d553cb197c11ec0881680ba653cef5ac8811f4f0f52842beb44ab34cd522ca262c60079295e221739cc53e75daea947b734b6d04ec256
|
@@ -25,7 +25,11 @@ module Cyborg
|
|
25
25
|
compress(destination(file))
|
26
26
|
end
|
27
27
|
|
28
|
-
|
28
|
+
if File.exist? destination(file)
|
29
|
+
puts build_msg(file)
|
30
|
+
else
|
31
|
+
puts "FAILED TO WRITE: #{file}."
|
32
|
+
end
|
29
33
|
end
|
30
34
|
else
|
31
35
|
abort "JS BUILD FAILED: browserifyinc NPM module not found.\n" << "Please add browserifyinc to your package.json and run `npm install`"
|
@@ -25,7 +25,11 @@ module Cyborg
|
|
25
25
|
build_sass(file)
|
26
26
|
end
|
27
27
|
|
28
|
-
|
28
|
+
if File.exist? destination(file)
|
29
|
+
puts build_msg(file)
|
30
|
+
else
|
31
|
+
puts "FAILED TO WRITE: #{file}"
|
32
|
+
end
|
29
33
|
end
|
30
34
|
end
|
31
35
|
|
@@ -49,7 +53,6 @@ module Cyborg
|
|
49
53
|
compress(dest)
|
50
54
|
end
|
51
55
|
|
52
|
-
|
53
56
|
# Convert extension
|
54
57
|
def versioned(file)
|
55
58
|
super(file.sub(/(\.css)?\.s[ca]ss$/i,'.css'))
|
data/lib/cyborg/version.rb
CHANGED