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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 975276a6f1b0e7448feb40e788826fd291059939
4
- data.tar.gz: 4a0f0fb6fb4c8e261ca8e02dc1becd92894abe44
3
+ metadata.gz: 357925324638cdab20f5c2da6181287eaee7f525
4
+ data.tar.gz: 91f6994e85409428d08a1a97194544a9332a45c9
5
5
  SHA512:
6
- metadata.gz: ce254e70f5868125a6d03f8e77fd88d5d629a97454c5b44fda28e2cc33f67243ed249f2002d0c9f77e3c1c783e4ac4bdc6e6db44c139da37ceac16ff733d6edf
7
- data.tar.gz: 25c2657e2f75922859475272ac491b309652d5eca5b286c75febb5c401aae504eed977d49319434b15016fe2606d040872cd7c95d4c09ae58062ecb6e2998e8b
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 'coffee-script' #make sure CoffeeScript is loaded before we overwrite it.
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='#{pathname.basename}';\n"
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
@@ -1,3 +1,3 @@
1
1
  module CoffeeRailsSourceMaps
2
- VERSION = "0.0.3"
2
+ VERSION = "0.0.4"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: coffee-rails-source-paths
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Damian Trojnar