Skip to content

Commit 1a933cb

Browse files
committedApr 23, 2014
Rely on the sprockets path reader for deps tracking
1 parent cdae5ca commit 1a933cb

File tree

2 files changed

+11
-8
lines changed

2 files changed

+11
-8
lines changed
 

‎lib/opal/sprockets/processor.rb

+6-7
Original file line numberDiff line numberDiff line change
@@ -65,19 +65,22 @@ def self.stubbed_files
6565
end
6666

6767
class SprocketsPathReader
68-
def initialize(env)
68+
def initialize(env, context)
6969
@env ||= env
70+
@context ||= context
7071
end
7172

7273
def read path
7374
if path.end_with? '.js'
75+
context.depend_on_asset(path)
7476
env[path].to_s
7577
else
78+
context.depend_on(path)
7679
File.read(env.resolve(path))
7780
end
7881
end
7982

80-
attr_reader :env
83+
attr_reader :env, :context
8184
end
8285

8386
def evaluate(context, locals, &block)
@@ -95,14 +98,10 @@ def evaluate(context, locals, &block)
9598
builder = Builder.new(
9699
:compiler_options => options,
97100
:stubbed_files => stubbed_files,
98-
:path_reader => SprocketsPathReader.new(context.environment)
101+
:path_reader => SprocketsPathReader.new(context.environment, context)
99102
)
100103
result = builder.build_str(data, path, prerequired)
101104

102-
# prerequired is mutated by the builder
103-
dependencies = prerequired.uniq - stubbed_files.to_a
104-
dependencies.each { |asset| context.depend_on(asset) }
105-
106105
if self.class.source_map_enabled
107106
$OPAL_SOURCE_MAPS[context.pathname] = '' #compiler.source_map(source_file_url(context)).to_s
108107
"#{result}\n//# sourceMappingURL=#{source_map_url(context)}\n"

‎spec/cli/sprockets/processor_spec.rb

+5-1
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,13 @@
3535
end
3636

3737
describe Opal::Processor::SprocketsPathReader do
38-
subject(:path_reader) { described_class.new(env) }
38+
subject(:path_reader) { described_class.new(env, context) }
3939

4040
let(:env) { Opal::Environment.new }
41+
42+
# TODO: use stubs and expect calls on #depend_on and #depend_on_asset
43+
let(:context) { env.context_class.new(env, 'foo', Pathname('bar/baz/foo.js')) }
44+
4145
let(:logical_path) { 'sprockets_file' }
4246
let(:fixtures_dir) { File.expand_path('../../fixtures/', __FILE__) }
4347
let(:full_path) { File.join(fixtures_dir, logical_path+'.js.rb') }

0 commit comments

Comments
 (0)
Please sign in to comment.