sprockets-rails 3.2.2 → 3.4.1
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/README.md +0 -1
- data/lib/sprockets/rails/asset_url_processor.rb +17 -0
- data/lib/sprockets/rails/helper.rb +1 -1
- data/lib/sprockets/rails/sourcemapping_url_processor.rb +54 -0
- data/lib/sprockets/rails/version.rb +1 -1
- data/lib/sprockets/railtie.rb +11 -0
- metadata +12 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6be530b798270a9a8b0590e0faecb2189cd3c0c6b921c483c7361831885b1a5a
|
4
|
+
data.tar.gz: '09b0e1f10512e0c51797736ea6eae9c79d174b45897b54326ae22aabc8773277'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 37622f84b510b136e07544cee58151e02dc2db4ab489255afbfacc8e51b2f50a6751beeaec3c96b585b249f9f654fa8357c6caca8d07337a7d1400d624f31950
|
7
|
+
data.tar.gz: 159688118eab9c77ba8820895324fbd6b13cf7c28d5626c1fb56fa3bb8dc71274f5a0422b742e3136d55a41ba2711258d881d2005d0cdeeef6fb0f766c3380c5
|
data/README.md
CHANGED
@@ -196,5 +196,4 @@ Sprockets Rails is released under the [MIT License](MIT-LICENSE).
|
|
196
196
|
|
197
197
|
## Code Status
|
198
198
|
|
199
|
-
* [](http://travis-ci.org/rails/sprockets-rails)
|
200
199
|
* [](http://badge.fury.io/rb/sprockets-rails)
|
@@ -0,0 +1,17 @@
|
|
1
|
+
module Sprockets
|
2
|
+
module Rails
|
3
|
+
# Rewrites urls in CSS files with the digested paths
|
4
|
+
class AssetUrlProcessor
|
5
|
+
REGEX = /url\(\s*["']?(?!(?:\#|data|http))(?<relativeToCurrentDir>.\/)?(?<path>[^"'\s)]+)\s*["']?\)/
|
6
|
+
def self.call(input)
|
7
|
+
context = input[:environment].context_class.new(input)
|
8
|
+
data = input[:data].gsub(REGEX) do |_match|
|
9
|
+
path = Regexp.last_match[:path]
|
10
|
+
"url(#{context.asset_path(path)})"
|
11
|
+
end
|
12
|
+
|
13
|
+
context.metadata.merge(data: data)
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
@@ -369,7 +369,7 @@ module Sprockets
|
|
369
369
|
end
|
370
370
|
|
371
371
|
def raise_unless_precompiled_asset(path)
|
372
|
-
raise Helper::
|
372
|
+
raise Helper::AssetNotPrecompiledError.new(path) if @check_precompiled_asset && !precompiled?(path)
|
373
373
|
end
|
374
374
|
end
|
375
375
|
end
|
@@ -0,0 +1,54 @@
|
|
1
|
+
module Sprockets
|
2
|
+
module Rails
|
3
|
+
# Rewrites source mapping urls with the digested paths and protect against semicolon appending with a dummy comment line
|
4
|
+
class SourcemappingUrlProcessor
|
5
|
+
REGEX = /\/\/# sourceMappingURL=(.*\.map)/
|
6
|
+
|
7
|
+
class << self
|
8
|
+
def call(input)
|
9
|
+
env = input[:environment]
|
10
|
+
context = env.context_class.new(input)
|
11
|
+
data = input[:data].gsub(REGEX) do |_match|
|
12
|
+
sourcemap_logical_path = combine_sourcemap_logical_path(sourcefile: input[:name], sourcemap: $1)
|
13
|
+
|
14
|
+
begin
|
15
|
+
resolved_sourcemap_comment(sourcemap_logical_path, context: context)
|
16
|
+
rescue Sprockets::FileNotFound
|
17
|
+
removed_sourcemap_comment(sourcemap_logical_path, filename: input[:filename], env: env)
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
{ data: data }
|
22
|
+
end
|
23
|
+
|
24
|
+
private
|
25
|
+
def combine_sourcemap_logical_path(sourcefile:, sourcemap:)
|
26
|
+
if (parts = sourcefile.split("/")).many?
|
27
|
+
parts[0..-2].append(sourcemap).join("/")
|
28
|
+
else
|
29
|
+
sourcemap
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
def resolved_sourcemap_comment(sourcemap_logical_path, context:)
|
34
|
+
"//# sourceMappingURL=#{sourcemap_asset_path(sourcemap_logical_path, context: context)}\n//!\n"
|
35
|
+
end
|
36
|
+
|
37
|
+
def sourcemap_asset_path(sourcemap_logical_path, context:)
|
38
|
+
# FIXME: Work-around for bug where if the sourcemap is nested two levels deep, it'll resolve as the source file
|
39
|
+
# that's being mapped, rather than the map itself. So context.resolve("a/b/c.js.map") will return "c.js?"
|
40
|
+
if context.resolve(sourcemap_logical_path) =~ /\.map/
|
41
|
+
context.asset_path(sourcemap_logical_path)
|
42
|
+
else
|
43
|
+
raise Sprockets::FileNotFound, "Failed to resolve source map asset due to nesting depth"
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
def removed_sourcemap_comment(sourcemap_logical_path, filename:, env:)
|
48
|
+
env.logger.warn "Removed sourceMappingURL comment for missing asset '#{sourcemap_logical_path}' from #{filename}"
|
49
|
+
nil
|
50
|
+
end
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
54
|
+
end
|
data/lib/sprockets/railtie.rb
CHANGED
@@ -4,6 +4,9 @@ require 'action_controller/railtie'
|
|
4
4
|
require 'active_support/core_ext/module/remove_method'
|
5
5
|
require 'active_support/core_ext/numeric/bytes'
|
6
6
|
require 'sprockets'
|
7
|
+
|
8
|
+
require 'sprockets/rails/asset_url_processor'
|
9
|
+
require 'sprockets/rails/sourcemapping_url_processor'
|
7
10
|
require 'sprockets/rails/context'
|
8
11
|
require 'sprockets/rails/helper'
|
9
12
|
require 'sprockets/rails/quiet_assets'
|
@@ -116,6 +119,14 @@ module Sprockets
|
|
116
119
|
end
|
117
120
|
end
|
118
121
|
|
122
|
+
initializer :asset_url_processor do |app|
|
123
|
+
Sprockets.register_postprocessor "text/css", ::Sprockets::Rails::AssetUrlProcessor
|
124
|
+
end
|
125
|
+
|
126
|
+
initializer :asset_sourcemap_url_processor do |app|
|
127
|
+
Sprockets.register_postprocessor "application/javascript", ::Sprockets::Rails::SourcemappingUrlProcessor
|
128
|
+
end
|
129
|
+
|
119
130
|
config.assets.version = ""
|
120
131
|
config.assets.debug = false
|
121
132
|
config.assets.compile = true
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sprockets-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.4.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Joshua Peek
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-11-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: sprockets
|
@@ -30,42 +30,42 @@ dependencies:
|
|
30
30
|
requirements:
|
31
31
|
- - ">="
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: '
|
33
|
+
version: '5.2'
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - ">="
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: '
|
40
|
+
version: '5.2'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: activesupport
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
45
|
- - ">="
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: '
|
47
|
+
version: '5.2'
|
48
48
|
type: :runtime
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
52
|
- - ">="
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version: '
|
54
|
+
version: '5.2'
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: railties
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
58
58
|
requirements:
|
59
59
|
- - ">="
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version: '
|
61
|
+
version: '5.2'
|
62
62
|
type: :development
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
66
|
- - ">="
|
67
67
|
- !ruby/object:Gem::Version
|
68
|
-
version: '
|
68
|
+
version: '5.2'
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
70
|
name: rake
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
@@ -117,10 +117,12 @@ files:
|
|
117
117
|
- MIT-LICENSE
|
118
118
|
- README.md
|
119
119
|
- lib/sprockets/rails.rb
|
120
|
+
- lib/sprockets/rails/asset_url_processor.rb
|
120
121
|
- lib/sprockets/rails/context.rb
|
121
122
|
- lib/sprockets/rails/helper.rb
|
122
123
|
- lib/sprockets/rails/quiet_assets.rb
|
123
124
|
- lib/sprockets/rails/route_wrapper.rb
|
125
|
+
- lib/sprockets/rails/sourcemapping_url_processor.rb
|
124
126
|
- lib/sprockets/rails/task.rb
|
125
127
|
- lib/sprockets/rails/utils.rb
|
126
128
|
- lib/sprockets/rails/version.rb
|
@@ -137,14 +139,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
137
139
|
requirements:
|
138
140
|
- - ">="
|
139
141
|
- !ruby/object:Gem::Version
|
140
|
-
version:
|
142
|
+
version: '2.5'
|
141
143
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
142
144
|
requirements:
|
143
145
|
- - ">="
|
144
146
|
- !ruby/object:Gem::Version
|
145
147
|
version: '0'
|
146
148
|
requirements: []
|
147
|
-
rubygems_version: 3.
|
149
|
+
rubygems_version: 3.2.22
|
148
150
|
signing_key:
|
149
151
|
specification_version: 4
|
150
152
|
summary: Sprockets Rails integration
|