emcee 0.2.0 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (52) hide show
  1. checksums.yaml +4 -4
  2. data/lib/emcee/helpers/asset_url_helper.rb +2 -2
  3. data/lib/emcee/processors/import_processor.rb +19 -24
  4. data/lib/emcee/processors/script_processor.rb +22 -50
  5. data/lib/emcee/processors/stylesheet_processor.rb +21 -72
  6. data/lib/emcee/railtie.rb +7 -6
  7. data/lib/emcee/version.rb +1 -1
  8. data/lib/generators/emcee/install/install_generator.rb +21 -6
  9. data/lib/generators/emcee/install/templates/application.html +1 -1
  10. data/test/dummy/app/assets/{elements → components}/application.html +1 -1
  11. data/test/dummy/app/assets/{elements → components}/compile/test5.css.scss +0 -0
  12. data/test/dummy/app/assets/components/compile/test5.html +3 -0
  13. data/test/dummy/app/assets/components/compile/test5.js.coffee +1 -0
  14. data/test/dummy/app/assets/{elements → components}/test/test2.html +0 -0
  15. data/test/dummy/app/assets/{elements → components}/test/test3.css +0 -0
  16. data/test/dummy/app/assets/{elements → components}/test/test3.html +0 -0
  17. data/test/dummy/app/assets/{elements → components}/test1.html +0 -0
  18. data/test/dummy/log/test.log +15605 -0
  19. data/test/dummy/tmp/cache/assets/test/sass/18faa83aed720fffcd7a34710aa03193f172abab/test5.css.scssc +0 -0
  20. data/test/dummy/tmp/cache/assets/test/sprockets/1c8291fe8af6356d96755211c7d6a2ba +0 -0
  21. data/test/dummy/tmp/cache/assets/test/sprockets/1f2c30f0861c8321be52261500c04c38 +0 -0
  22. data/test/dummy/tmp/cache/assets/test/sprockets/44a9ac6b51f151a84834b08402735b33 +0 -0
  23. data/test/dummy/tmp/cache/assets/test/sprockets/458351c9b3b38136f089d00567fa2ab9 +0 -0
  24. data/test/dummy/tmp/cache/assets/test/sprockets/48f3af8dc36be11e60903eb41623fda0 +0 -0
  25. data/test/dummy/tmp/cache/assets/test/sprockets/4b3d6e95ce70230728332b12931f5d0e +0 -0
  26. data/test/dummy/tmp/cache/assets/test/sprockets/83958b863f75dc6cbe887cc7e0db513f +0 -0
  27. data/test/dummy/tmp/cache/assets/test/sprockets/96626508ecce28b11270d0e13ca4edff +0 -0
  28. data/test/dummy/tmp/cache/assets/test/sprockets/de38944857ad9b137b1a944b4458197f +0 -0
  29. data/test/dummy/tmp/cache/assets/test/sprockets/e0561b1cebd62df57d5d6ac9d2b23033 +0 -0
  30. data/test/dummy/tmp/cache/assets/test/sprockets/ea6d25feb3cd8cc19f7982458443f784 +0 -0
  31. data/test/dummy/tmp/cache/assets/test/sprockets/f16d30b33e206690649697e498a2f1a8 +0 -0
  32. data/test/dummy/tmp/cache/assets/test/sprockets/fadf553480495a92d11dade99298bf7e +0 -0
  33. data/test/dummy/vendor/assets/{elements → components}/test4.html +0 -0
  34. data/test/dummy/vendor/assets/{elements → components}/test4.js +0 -0
  35. data/test/dummy_app_integration_test.rb +6 -1
  36. data/test/helpers_test.rb +1 -1
  37. data/test/processors_test.rb +46 -51
  38. metadata +83 -50
  39. data/test/dummy/app/assets/elements/compile/test5.html +0 -2
  40. data/test/dummy/tmp/cache/assets/test/sprockets/1b8013559a887e8b8d91472ef246fef9 +0 -0
  41. data/test/dummy/tmp/cache/assets/test/sprockets/1e24025f59396708b3bb44543bed32fc +0 -0
  42. data/test/dummy/tmp/cache/assets/test/sprockets/219d0afb67879a67bae32b4fe4c708ac +0 -0
  43. data/test/dummy/tmp/cache/assets/test/sprockets/2f90dac85033dad7b068860c3f6b7b27 +0 -0
  44. data/test/dummy/tmp/cache/assets/test/sprockets/32cae461a9446107294c8a0230f5080c +0 -0
  45. data/test/dummy/tmp/cache/assets/test/sprockets/4fd1effec4d6579ba9d4f03ed156a15b +0 -0
  46. data/test/dummy/tmp/cache/assets/test/sprockets/6c9d8a21af4539e19a3462e79ac4d70c +0 -0
  47. data/test/dummy/tmp/cache/assets/test/sprockets/a69c3d00e22ad6c0d6ece35c9fd5f316 +0 -0
  48. data/test/dummy/tmp/cache/assets/test/sprockets/af6ba4ae23c6790e0f474b01ceee8dd9 +0 -0
  49. data/test/dummy/tmp/cache/assets/test/sprockets/cf517b62bd978b748afe38d5beb317de +0 -0
  50. data/test/dummy/tmp/cache/assets/test/sprockets/df6cfcc50da209231a7d9e140e5bafdc +0 -0
  51. data/test/dummy/tmp/cache/assets/test/sprockets/e0949aa3dcdcab5f8b45d30e26f6ddd2 +0 -0
  52. data/test/dummy/tmp/cache/assets/test/sprockets/ffd4adb86602a60c7fcedd5d472166d3 +0 -0
@@ -31,7 +31,12 @@ class DummyAppIntegrationTest < ActionController::TestCase
31
31
  <style>p {
32
32
  color: red; }
33
33
  </style>
34
- <p>compiled scss</p>
34
+ <script>(function() {
35
+ var hello;
36
+ hello = \"world\";
37
+ }).call(this);
38
+ </script>
39
+ <p>compiled scss and CoffeeScript</p>
35
40
  <style>p {
36
41
  color: pink;
37
42
  }
data/test/helpers_test.rb CHANGED
@@ -2,6 +2,6 @@ require 'test_helper'
2
2
 
3
3
  class Helpers < ActionView::TestCase
4
4
  test "html_import should work" do
5
- assert_equal "<link href=\"/elements/test.html\" rel=\"import\" />", html_import_tag("test")
5
+ assert_equal "<link href=\"/components/test.html\" rel=\"import\" />", html_import_tag("test")
6
6
  end
7
7
  end
@@ -3,31 +3,8 @@ require 'emcee/processors/import_processor'
3
3
  require 'emcee/processors/script_processor'
4
4
  require 'emcee/processors/stylesheet_processor'
5
5
 
6
- class ScriptProcessorStub < Emcee::ScriptProcessor
7
- def read_file(path)
8
- "/* contents */"
9
- end
10
- end
11
-
12
- class StylesheetProcessorStub < Emcee::StylesheetProcessor
13
- def read_file(path)
14
- "/* contents */"
15
- end
16
- end
17
-
18
- class StylesheetSassProcessorStub < Emcee::StylesheetProcessor
19
- def read_file(path)
20
- "$color: red; p { color: $color; }"
21
- end
22
-
23
- def sass?(path)
24
- true
25
- end
26
-
27
- def get_sass_content(path)
28
- super(path).gsub(/\n\s?/, "")
29
- end
30
- end
6
+ require 'coffee-rails'
7
+ require 'sass'
31
8
 
32
9
  # Create a stub of Sprocket's Context class, so we can test if we're 'requiring'
33
10
  # assets correctly.
@@ -38,72 +15,90 @@ class ContextStub
38
15
  @assets = []
39
16
  end
40
17
 
18
+ def pathname
19
+ "/"
20
+ end
21
+
41
22
  def require_asset(asset)
42
23
  @assets << asset
43
24
  end
25
+
26
+ def evaluate(path, options = {})
27
+ "/* contents */"
28
+ end
44
29
  end
45
30
 
46
31
  class ProcessorsTest < ActiveSupport::TestCase
47
32
  setup do
48
33
  @context = ContextStub.new
49
- @directory = "/dir"
50
- @body = %q{
34
+ @body = <<-EOS.strip_heredoc
51
35
  <link rel="import" href="test.html">
52
36
  <link rel="stylesheet" href="test.css">
53
37
  <script src="test.js"></script>
54
38
  <p>test</p>
55
- }
39
+ EOS
56
40
  end
57
41
 
58
42
  test "processing imports should work" do
59
- processor = Emcee::ImportProcessor.new
60
- processed = processor.process(@context, @body, @directory)
43
+ processor = Emcee::ImportProcessor.new(@context)
44
+ processed = processor.process(@body)
61
45
 
62
46
  assert_equal 1, @context.assets.length
63
- assert_equal "/dir/test.html", @context.assets[0]
64
- assert_equal processed, %q{
47
+ assert_equal "/test.html", @context.assets[0]
48
+ assert_equal processed, <<-EOS.strip_heredoc
65
49
  <link rel="stylesheet" href="test.css">
66
50
  <script src="test.js"></script>
67
51
  <p>test</p>
68
- }
52
+ EOS
69
53
  end
70
54
 
71
55
  test "processing stylesheets should work" do
72
- processor = StylesheetProcessorStub.new
73
- processed = processor.process(@context, @body, @directory)
56
+ processor = Emcee::StylesheetProcessor.new(@context)
57
+ processed = processor.process(@body)
74
58
 
75
- assert_equal processed, %q{
59
+ assert_equal processed, <<-EOS.strip_heredoc
76
60
  <link rel="import" href="test.html">
77
- <style>/* contents */
78
- </style>
61
+ <style>/* contents */</style>
79
62
  <script src="test.js"></script>
80
63
  <p>test</p>
81
- }
64
+ EOS
82
65
  end
83
66
 
84
67
  test "processing scripts should work" do
85
- processor = ScriptProcessorStub.new
86
- processed = processor.process(@context, @body, @directory)
68
+ processor = Emcee::ScriptProcessor.new(@context)
69
+ processed = processor.process(@body)
87
70
 
88
- assert_equal processed, %q{
71
+ assert_equal processed, <<-EOS.strip_heredoc
89
72
  <link rel="import" href="test.html">
90
73
  <link rel="stylesheet" href="test.css">
91
- <script>/* contents */
92
- </script>
74
+ <script>/* contents */</script>
93
75
  <p>test</p>
94
- }
76
+ EOS
95
77
  end
96
78
 
97
79
  test "processing sass stylesheets should work" do
98
- processor = StylesheetSassProcessorStub.new
99
- processed = processor.process(@context, @body, @directory)
80
+ @body.gsub!("test.css", "test.css.scss")
81
+ processor = Emcee::StylesheetProcessor.new(@context)
82
+ processed = processor.process(@body)
100
83
 
101
- assert_equal processed, %q{
84
+ assert_equal processed, <<-EOS.strip_heredoc
102
85
  <link rel="import" href="test.html">
103
- <style>p { color: red; }
104
- </style>
86
+ <style>/* contents */</style>
105
87
  <script src="test.js"></script>
106
88
  <p>test</p>
107
- }
89
+ EOS
90
+ end
91
+
92
+ test "processing CoffeeScript should work" do
93
+ @body.gsub!("test.js", "test.js.coffee")
94
+ processor = Emcee::ScriptProcessor.new(@context)
95
+ processed = processor.process(@body)
96
+
97
+ assert_equal processed, <<-EOS.strip_heredoc
98
+ <link rel="import" href="test.html">
99
+ <link rel="stylesheet" href="test.css">
100
+ <script>/* contents */</script>
101
+ <p>test</p>
102
+ EOS
108
103
  end
109
104
  end
metadata CHANGED
@@ -1,15 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: emcee
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Huth
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-06-17 00:00:00.000000000 Z
11
+ date: 2014-06-28 00:00:00.000000000 Z
12
12
  dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: nokogiri
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.0'
13
27
  - !ruby/object:Gem::Dependency
14
28
  name: rails
15
29
  requirement: !ruby/object:Gem::Requirement
@@ -24,6 +38,20 @@ dependencies:
24
38
  - - "~>"
25
39
  - !ruby/object:Gem::Version
26
40
  version: '4.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: coffee-rails
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '4.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '4.0'
27
55
  - !ruby/object:Gem::Dependency
28
56
  name: sass
29
57
  requirement: !ruby/object:Gem::Requirement
@@ -31,7 +59,7 @@ dependencies:
31
59
  - - "~>"
32
60
  - !ruby/object:Gem::Version
33
61
  version: '3.0'
34
- type: :runtime
62
+ type: :development
35
63
  prerelease: false
36
64
  version_requirements: !ruby/object:Gem::Requirement
37
65
  requirements:
@@ -52,9 +80,9 @@ dependencies:
52
80
  - - ">="
53
81
  - !ruby/object:Gem::Version
54
82
  version: '0'
55
- description: Add web components to the rails asset pipeline
83
+ description: Add web components to the Rails asset pipeline
56
84
  email:
57
- - andrew@legion.io
85
+ - andrew@huth.me
58
86
  executables: []
59
87
  extensions: []
60
88
  extra_rdoc_files: []
@@ -78,13 +106,14 @@ files:
78
106
  - test/compressors_test.rb
79
107
  - test/dummy/README.rdoc
80
108
  - test/dummy/Rakefile
81
- - test/dummy/app/assets/elements/application.html
82
- - test/dummy/app/assets/elements/compile/test5.css.scss
83
- - test/dummy/app/assets/elements/compile/test5.html
84
- - test/dummy/app/assets/elements/test/test2.html
85
- - test/dummy/app/assets/elements/test/test3.css
86
- - test/dummy/app/assets/elements/test/test3.html
87
- - test/dummy/app/assets/elements/test1.html
109
+ - test/dummy/app/assets/components/application.html
110
+ - test/dummy/app/assets/components/compile/test5.css.scss
111
+ - test/dummy/app/assets/components/compile/test5.html
112
+ - test/dummy/app/assets/components/compile/test5.js.coffee
113
+ - test/dummy/app/assets/components/test/test2.html
114
+ - test/dummy/app/assets/components/test/test3.css
115
+ - test/dummy/app/assets/components/test/test3.html
116
+ - test/dummy/app/assets/components/test1.html
88
117
  - test/dummy/app/assets/javascripts/application.js
89
118
  - test/dummy/app/assets/stylesheets/application.css
90
119
  - test/dummy/app/controllers/application_controller.rb
@@ -120,27 +149,28 @@ files:
120
149
  - test/dummy/public/422.html
121
150
  - test/dummy/public/500.html
122
151
  - test/dummy/public/favicon.ico
152
+ - test/dummy/tmp/cache/assets/test/sass/18faa83aed720fffcd7a34710aa03193f172abab/test5.css.scssc
123
153
  - test/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705
124
- - test/dummy/tmp/cache/assets/test/sprockets/1b8013559a887e8b8d91472ef246fef9
125
- - test/dummy/tmp/cache/assets/test/sprockets/1e24025f59396708b3bb44543bed32fc
126
- - test/dummy/tmp/cache/assets/test/sprockets/219d0afb67879a67bae32b4fe4c708ac
154
+ - test/dummy/tmp/cache/assets/test/sprockets/1c8291fe8af6356d96755211c7d6a2ba
155
+ - test/dummy/tmp/cache/assets/test/sprockets/1f2c30f0861c8321be52261500c04c38
127
156
  - test/dummy/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af
128
- - test/dummy/tmp/cache/assets/test/sprockets/2f90dac85033dad7b068860c3f6b7b27
129
- - test/dummy/tmp/cache/assets/test/sprockets/32cae461a9446107294c8a0230f5080c
130
157
  - test/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953
131
- - test/dummy/tmp/cache/assets/test/sprockets/4fd1effec4d6579ba9d4f03ed156a15b
132
- - test/dummy/tmp/cache/assets/test/sprockets/6c9d8a21af4539e19a3462e79ac4d70c
133
- - test/dummy/tmp/cache/assets/test/sprockets/a69c3d00e22ad6c0d6ece35c9fd5f316
134
- - test/dummy/tmp/cache/assets/test/sprockets/af6ba4ae23c6790e0f474b01ceee8dd9
135
- - test/dummy/tmp/cache/assets/test/sprockets/cf517b62bd978b748afe38d5beb317de
158
+ - test/dummy/tmp/cache/assets/test/sprockets/44a9ac6b51f151a84834b08402735b33
159
+ - test/dummy/tmp/cache/assets/test/sprockets/458351c9b3b38136f089d00567fa2ab9
160
+ - test/dummy/tmp/cache/assets/test/sprockets/48f3af8dc36be11e60903eb41623fda0
161
+ - test/dummy/tmp/cache/assets/test/sprockets/4b3d6e95ce70230728332b12931f5d0e
162
+ - test/dummy/tmp/cache/assets/test/sprockets/83958b863f75dc6cbe887cc7e0db513f
163
+ - test/dummy/tmp/cache/assets/test/sprockets/96626508ecce28b11270d0e13ca4edff
136
164
  - test/dummy/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994
137
165
  - test/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6
138
- - test/dummy/tmp/cache/assets/test/sprockets/df6cfcc50da209231a7d9e140e5bafdc
139
- - test/dummy/tmp/cache/assets/test/sprockets/e0949aa3dcdcab5f8b45d30e26f6ddd2
166
+ - test/dummy/tmp/cache/assets/test/sprockets/de38944857ad9b137b1a944b4458197f
167
+ - test/dummy/tmp/cache/assets/test/sprockets/e0561b1cebd62df57d5d6ac9d2b23033
168
+ - test/dummy/tmp/cache/assets/test/sprockets/ea6d25feb3cd8cc19f7982458443f784
169
+ - test/dummy/tmp/cache/assets/test/sprockets/f16d30b33e206690649697e498a2f1a8
140
170
  - test/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655
141
- - test/dummy/tmp/cache/assets/test/sprockets/ffd4adb86602a60c7fcedd5d472166d3
142
- - test/dummy/vendor/assets/elements/test4.html
143
- - test/dummy/vendor/assets/elements/test4.js
171
+ - test/dummy/tmp/cache/assets/test/sprockets/fadf553480495a92d11dade99298bf7e
172
+ - test/dummy/vendor/assets/components/test4.html
173
+ - test/dummy/vendor/assets/components/test4.js
144
174
  - test/dummy_app_integration_test.rb
145
175
  - test/helpers_test.rb
146
176
  - test/processors_test.rb
@@ -168,16 +198,17 @@ rubyforge_project:
168
198
  rubygems_version: 2.2.2
169
199
  signing_key:
170
200
  specification_version: 4
171
- summary: Add web components to the asset pipeline.
201
+ summary: Add web components to the Rails asset pipeline.
172
202
  test_files:
173
203
  - test/compressors_test.rb
174
- - test/dummy/app/assets/elements/application.html
175
- - test/dummy/app/assets/elements/compile/test5.css.scss
176
- - test/dummy/app/assets/elements/compile/test5.html
177
- - test/dummy/app/assets/elements/test/test2.html
178
- - test/dummy/app/assets/elements/test/test3.css
179
- - test/dummy/app/assets/elements/test/test3.html
180
- - test/dummy/app/assets/elements/test1.html
204
+ - test/dummy/app/assets/components/application.html
205
+ - test/dummy/app/assets/components/compile/test5.css.scss
206
+ - test/dummy/app/assets/components/compile/test5.html
207
+ - test/dummy/app/assets/components/compile/test5.js.coffee
208
+ - test/dummy/app/assets/components/test/test2.html
209
+ - test/dummy/app/assets/components/test/test3.css
210
+ - test/dummy/app/assets/components/test/test3.html
211
+ - test/dummy/app/assets/components/test1.html
181
212
  - test/dummy/app/assets/javascripts/application.js
182
213
  - test/dummy/app/assets/stylesheets/application.css
183
214
  - test/dummy/app/controllers/application_controller.rb
@@ -215,28 +246,30 @@ test_files:
215
246
  - test/dummy/public/favicon.ico
216
247
  - test/dummy/Rakefile
217
248
  - test/dummy/README.rdoc
249
+ - test/dummy/tmp/cache/assets/test/sass/18faa83aed720fffcd7a34710aa03193f172abab/test5.css.scssc
218
250
  - test/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705
219
- - test/dummy/tmp/cache/assets/test/sprockets/1b8013559a887e8b8d91472ef246fef9
220
- - test/dummy/tmp/cache/assets/test/sprockets/1e24025f59396708b3bb44543bed32fc
221
- - test/dummy/tmp/cache/assets/test/sprockets/219d0afb67879a67bae32b4fe4c708ac
251
+ - test/dummy/tmp/cache/assets/test/sprockets/1c8291fe8af6356d96755211c7d6a2ba
252
+ - test/dummy/tmp/cache/assets/test/sprockets/1f2c30f0861c8321be52261500c04c38
222
253
  - test/dummy/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af
223
- - test/dummy/tmp/cache/assets/test/sprockets/2f90dac85033dad7b068860c3f6b7b27
224
- - test/dummy/tmp/cache/assets/test/sprockets/32cae461a9446107294c8a0230f5080c
225
254
  - test/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953
226
- - test/dummy/tmp/cache/assets/test/sprockets/4fd1effec4d6579ba9d4f03ed156a15b
227
- - test/dummy/tmp/cache/assets/test/sprockets/6c9d8a21af4539e19a3462e79ac4d70c
228
- - test/dummy/tmp/cache/assets/test/sprockets/a69c3d00e22ad6c0d6ece35c9fd5f316
229
- - test/dummy/tmp/cache/assets/test/sprockets/af6ba4ae23c6790e0f474b01ceee8dd9
230
- - test/dummy/tmp/cache/assets/test/sprockets/cf517b62bd978b748afe38d5beb317de
255
+ - test/dummy/tmp/cache/assets/test/sprockets/44a9ac6b51f151a84834b08402735b33
256
+ - test/dummy/tmp/cache/assets/test/sprockets/458351c9b3b38136f089d00567fa2ab9
257
+ - test/dummy/tmp/cache/assets/test/sprockets/48f3af8dc36be11e60903eb41623fda0
258
+ - test/dummy/tmp/cache/assets/test/sprockets/4b3d6e95ce70230728332b12931f5d0e
259
+ - test/dummy/tmp/cache/assets/test/sprockets/83958b863f75dc6cbe887cc7e0db513f
260
+ - test/dummy/tmp/cache/assets/test/sprockets/96626508ecce28b11270d0e13ca4edff
231
261
  - test/dummy/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994
232
262
  - test/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6
233
- - test/dummy/tmp/cache/assets/test/sprockets/df6cfcc50da209231a7d9e140e5bafdc
234
- - test/dummy/tmp/cache/assets/test/sprockets/e0949aa3dcdcab5f8b45d30e26f6ddd2
263
+ - test/dummy/tmp/cache/assets/test/sprockets/de38944857ad9b137b1a944b4458197f
264
+ - test/dummy/tmp/cache/assets/test/sprockets/e0561b1cebd62df57d5d6ac9d2b23033
265
+ - test/dummy/tmp/cache/assets/test/sprockets/ea6d25feb3cd8cc19f7982458443f784
266
+ - test/dummy/tmp/cache/assets/test/sprockets/f16d30b33e206690649697e498a2f1a8
235
267
  - test/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655
236
- - test/dummy/tmp/cache/assets/test/sprockets/ffd4adb86602a60c7fcedd5d472166d3
237
- - test/dummy/vendor/assets/elements/test4.html
238
- - test/dummy/vendor/assets/elements/test4.js
268
+ - test/dummy/tmp/cache/assets/test/sprockets/fadf553480495a92d11dade99298bf7e
269
+ - test/dummy/vendor/assets/components/test4.html
270
+ - test/dummy/vendor/assets/components/test4.js
239
271
  - test/dummy_app_integration_test.rb
240
272
  - test/helpers_test.rb
241
273
  - test/processors_test.rb
242
274
  - test/test_helper.rb
275
+ has_rdoc:
@@ -1,2 +0,0 @@
1
- <link rel="stylesheet" href="test5.css">
2
- <p>compiled scss</p>