coffee-rails-source-paths 0.0.3 → 0.0.4
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/lib/coffee-rails-source-maps.rb +3 -2
- data/lib/coffee-rails-source-maps/version.rb +1 -1
- 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: 357925324638cdab20f5c2da6181287eaee7f525
|
4
|
+
data.tar.gz: 91f6994e85409428d08a1a97194544a9332a45c9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7ceccc59b66c32e98efc15a144021c722b70adbb43b3bac274d04d753c4fed2110df13a5fb18203bd5e241cf26b4dee433a7dbfb5a2ca15ef37a9cb9ecac8ab8
|
7
|
+
data.tar.gz: b166352f0b80b6e0021520f9fcc6b6a57ba5c6e81efb3da9619a23480814f6d4f2ee680902a798100ab8bdee9a1a694b340f3f8e1eca9d42fe55028b6bc81f84
|
@@ -4,7 +4,7 @@ require "coffee-rails-source-maps/version"
|
|
4
4
|
# config/initializers/source_maps.rb
|
5
5
|
|
6
6
|
if Rails.env.development?
|
7
|
-
require
|
7
|
+
require "coffee-script" # make sure CoffeeScript is loaded before we overwrite it.
|
8
8
|
module CoffeeScript
|
9
9
|
|
10
10
|
class << self
|
@@ -54,7 +54,7 @@ if Rails.env.development?
|
|
54
54
|
})
|
55
55
|
WRAPPER
|
56
56
|
|
57
|
-
file_path = "var sourcePath='#{
|
57
|
+
file_path = "var sourcePath='#{rel_path}';\n"
|
58
58
|
ret = Source.context.call(wrapper, file_path + script, options)
|
59
59
|
|
60
60
|
puts file_path
|
@@ -62,6 +62,7 @@ if Rails.env.development?
|
|
62
62
|
map_file.open('w') {|f| f.puts ret["v3SourceMap"]}
|
63
63
|
|
64
64
|
comment = "//# sourceMappingURL=/#{map_file.relative_path_from(Rails.root.join("public"))}\n"
|
65
|
+
comment += "//# Hello :)\n"
|
65
66
|
# This will add file source that can be used in directives or controllers
|
66
67
|
return file_path + ret['js'] + comment
|
67
68
|
end
|