view_assets 1.0.4 → 1.1.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.
Files changed (37) hide show
  1. data/lib/tasks/tool.rb +29 -0
  2. data/lib/view_assets/finder/directive.rb +26 -26
  3. data/lib/view_assets/finder/finder.rb +46 -15
  4. data/lib/view_assets/manager/manager.rb +6 -18
  5. data/lib/view_assets/manager/map.rb +110 -0
  6. data/lib/view_assets/manager/modifier.rb +214 -0
  7. data/lib/view_assets/packager/actions_map.rb +1 -9
  8. data/lib/view_assets/packager/packager.rb +34 -9
  9. data/lib/view_assets/path_info.rb +4 -0
  10. data/lib/view_assets/railtie.rb +1 -0
  11. data/lib/view_assets/version.rb +1 -1
  12. data/test/dummy/public/assets/javascripts_assets.yml +133 -0
  13. metadata +52 -61
  14. data/MIT-LICENSE +0 -20
  15. data/test/dummy/db/development.sqlite3 +0 -0
  16. data/test/dummy/db/production.sqlite3 +0 -0
  17. data/test/dummy/db/test.sqlite3 +0 -0
  18. data/test/dummy/log/development.log +0 -1842
  19. data/test/dummy/log/production.log +0 -591
  20. data/test/dummy/public/assets/javascripts/application-984fbe5ea1e3d5e4aaa99059a02281ef.js +0 -31
  21. data/test/dummy/public/assets/javascripts/application-e6c5fe847d07144f1b32520af2550e6f.js +0 -122202
  22. data/test/dummy/public/assets/javascripts/controller-e6c5fe847d07144f1b32520af2550e6f.js +0 -122202
  23. data/test/dummy/public/assets/javascripts/controller_action-e6c5fe847d07144f1b32520af2550e6f.js +0 -122202
  24. data/test/dummy/public/assets/javascripts/cutting_records-984fbe5ea1e3d5e4aaa99059a02281ef.js +0 -31
  25. data/test/dummy/public/assets/javascripts/cutting_records-e6c5fe847d07144f1b32520af2550e6f.js +0 -122202
  26. data/test/dummy/public/assets/javascripts/cutting_records_index-1edda21952a9f03edc5ecd1492947fbf.js +0 -122340
  27. data/test/dummy/public/assets/javascripts/material_attributes-984fbe5ea1e3d5e4aaa99059a02281ef.js +0 -31
  28. data/test/dummy/public/assets/javascripts/purchasing_orders-984fbe5ea1e3d5e4aaa99059a02281ef.js +0 -31
  29. data/test/dummy/public/assets/javascripts/sample_orders-984fbe5ea1e3d5e4aaa99059a02281ef.js +0 -31
  30. data/test/dummy/public/assets/javascripts/workshop_reports-984fbe5ea1e3d5e4aaa99059a02281ef.js +0 -31
  31. data/test/dummy/public/assets/stylesheets/application-084630668892a3d31830a3759745a582.css +0 -10478
  32. data/test/dummy/public/assets/stylesheets/application-9097e8fd786603bf9b4f22c0ad4aab7b.css +0 -6
  33. data/test/dummy/public/assets/stylesheets/controller-084630668892a3d31830a3759745a582.css +0 -10478
  34. data/test/dummy/public/assets/stylesheets/controller_action-084630668892a3d31830a3759745a582.css +0 -10478
  35. data/test/dummy/public/assets/stylesheets/cutting_records-084630668892a3d31830a3759745a582.css +0 -10478
  36. data/test/dummy/public/assets/stylesheets/cutting_records_index-084630668892a3d31830a3759745a582.css +0 -10478
  37. data/test/dummy/public/assets/stylesheets/homes-60aed35175c8508853f14087857e6224.css +0 -6
@@ -1,11 +1,7 @@
1
1
  module ViewAssets
2
2
  module Packager
3
3
  class ActionsMap
4
- # # =>
5
- # {
6
- # :controller1 => [:action1, :action2, ..],
7
- # ..
8
- # }
4
+ # @return => { :controller1 => [:action1, :action2, ..], ..}
9
5
  def retrieve
10
6
  action_path.children.select(&:directory?).each_with_object({}) do |controller, action_map|
11
7
  all_children = controller.children.map do |action|
@@ -28,10 +24,6 @@ module ViewAssets
28
24
  def asset_path
29
25
  JS_PATH
30
26
  end
31
-
32
- def method_name
33
-
34
- end
35
27
  end
36
28
 
37
29
  class CssActionsMap < ActionsMap
@@ -1,6 +1,8 @@
1
1
  module ViewAssets
2
2
  module Packager
3
3
  require 'yui/compressor'
4
+ require 'closure-compiler'
5
+ require 'uglifier'
4
6
  require 'openssl'
5
7
  require 'pathname'
6
8
  require 'yaml'
@@ -9,8 +11,11 @@ module ViewAssets
9
11
  # targets = { :controller => [:action1, :action2], ... }
10
12
  # options:
11
13
  # :verbal => false
14
+ # :compress => true
15
+ # :compress_engine => 'yui-compressor'
16
+ # :manifest => true
12
17
  def package(targets = {}, options = {})
13
- options = { :verbal => false, :compress => true, :manifest => true }.update(options)
18
+ options = { :verbal => false, :compress => true, :manifest => true, :compress_engine => 'yui-compressor' }.update(options)
14
19
  targets = actions_map.retrieve if targets.empty?
15
20
 
16
21
  # Preparing Envs
@@ -19,11 +24,9 @@ module ViewAssets
19
24
 
20
25
  # Packaging
21
26
  @manifest = {}
22
- # TODO: retrieve application-required assets
23
27
  meta_package('', '', options)
24
28
 
25
29
  targets.each do |controller, actions|
26
- # TODO: retrieve controller-dependent assets
27
30
  meta_package(controller, '', options)
28
31
 
29
32
  actions.map do |action|
@@ -63,7 +66,7 @@ module ViewAssets
63
66
 
64
67
  # Package Assets: Concatenate | Compress | Fingerprint
65
68
  content = concatenate(sources)
66
- compressed_content = options[:compress] ? compress(content) : content
69
+ compressed_content = options[:compress] ? compress(options[:compress_engine], content) : content
67
70
  file_name = "#{ca_name}-#{fingerprint(compressed_content)}.#{asset_ext}"
68
71
 
69
72
  # Save Indices of Packaged Assets
@@ -80,8 +83,8 @@ module ViewAssets
80
83
  end
81
84
  end
82
85
 
83
- def compress(content)
84
- compressor.compress(content)
86
+ def compress(engine_id, content)
87
+ compressor.compress(engine_id, content)
85
88
  end
86
89
 
87
90
  Digestor = OpenSSL::Digest::MD5.new
@@ -90,12 +93,28 @@ module ViewAssets
90
93
  end
91
94
  end
92
95
 
96
+ class Compressor
97
+ def initialize
98
+ @engines = {} # { :engine_id => engine }
99
+ end
100
+
101
+ def register(engine_id, engine)
102
+ @engines[engine_id] = engine
103
+ end
104
+
105
+ def compress(engine_id, content)
106
+ raise Error.new("Compress Engine #{engine_id} Is Not Supported") if @engines[engine_id].nil?
107
+
108
+ @engines[engine_id].compress(content)
109
+ end
110
+ end
111
+
93
112
  class JsPackager < Packager
94
113
  def actions_map
95
114
  JsActionsMap.new
96
115
  end
97
116
 
98
- FINDER = ViewAssets::Finder::JsFinder.new
117
+ FINDER = ViewAssets::Finder::JsFinder.new
99
118
  def finder
100
119
  FINDER
101
120
  end
@@ -104,7 +123,11 @@ module ViewAssets
104
123
  JS_EXT
105
124
  end
106
125
 
107
- COMPRESSOR = YUI::JavaScriptCompressor.new(:munge => true)
126
+ # COMPRESSOR = YUI::JavaScriptCompressor.new(:munge => true)
127
+ COMPRESSOR = Compressor.new
128
+ COMPRESSOR.register("yui-compressor", YUI::JavaScriptCompressor.new(:munge => true))
129
+ COMPRESSOR.register("google-closure", Closure::Compiler.new)
130
+ COMPRESSOR.register("uglifier", Uglifier.new(:mangle => false))
108
131
  def compressor
109
132
  COMPRESSOR
110
133
  end
@@ -128,7 +151,9 @@ module ViewAssets
128
151
  CSS_EXT
129
152
  end
130
153
 
131
- COMPRESSOR = YUI::CssCompressor.new
154
+ # COMPRESSOR = YUI::CssCompressor.new
155
+ COMPRESSOR = Compressor.new
156
+ COMPRESSOR.register("yui-compressor", YUI::CssCompressor.new)
132
157
  def compressor
133
158
  COMPRESSOR
134
159
  end
@@ -33,6 +33,10 @@ module ViewAssets
33
33
  !!match(/\.(#{JS_EXT}|#{CSS_EXT})$/)
34
34
  end
35
35
 
36
+ def basename
37
+ PathInfo.new(with_ext? ? chomp(File.extname(self)) : self)
38
+ end
39
+
36
40
  # alter path string
37
41
  # '/path/to/app/:dir/assets/:asset_type/file.js'
38
42
  # =>
@@ -6,6 +6,7 @@ module ViewAssets
6
6
 
7
7
  rake_tasks do
8
8
  require 'tasks/basic'
9
+ require 'tasks/tool'
9
10
  end
10
11
  end
11
12
  end
@@ -1,3 +1,3 @@
1
1
  module ViewAssets
2
- VERSION = "1.0.4"
2
+ VERSION = "1.1.1"
3
3
  end
@@ -0,0 +1,133 @@
1
+ ---
2
+ :vendor:
3
+ vendor/javascripts/ext-all-debug:
4
+ - vendor/javascripts/ext-all-debug.js
5
+ vendor/javascripts/ext-all:
6
+ - vendor/javascripts/ext-all.js
7
+ vendor/javascripts/gridfilters:
8
+ - vendor/javascripts/gridfilters/filter/BooleanFilter.js
9
+ - vendor/javascripts/gridfilters/filter/DateFilter.js
10
+ - vendor/javascripts/gridfilters/filter/Filter.js
11
+ - vendor/javascripts/gridfilters/filter/ListFilter.js
12
+ - vendor/javascripts/gridfilters/filter/NumericFilter.js
13
+ - vendor/javascripts/gridfilters/filter/StringFilter.js
14
+ - vendor/javascripts/gridfilters/FiltersFeature.js
15
+ - vendor/javascripts/gridfilters/menu/ListMenu.js
16
+ - vendor/javascripts/gridfilters/menu/RangeMenu.js
17
+ - vendor/javascripts/gridfilters/TransformGrid.js
18
+ vendor/javascripts/jquery:
19
+ - vendor/javascripts/jquery.js
20
+ vendor/javascripts/menu:
21
+ - vendor/javascripts/jquery
22
+ - vendor/javascripts/menu/hoverIntent.js
23
+ - vendor/javascripts/menu/index.js
24
+ - vendor/javascripts/menu/superfish.js
25
+ vendor/javascripts/readme.md: []
26
+ vendor/javascripts/string.min:
27
+ - vendor/javascripts/string.min.js
28
+ vendor/javascripts/vendor1:
29
+ - vendor/javascripts/vendor1.js
30
+ vendor/javascripts/vendor2:
31
+ - vendor/javascripts/vendor2.js
32
+ :lib:
33
+ lib/javascripts/.js$:-min:
34
+ - lib/javascripts/.js$:-min.js
35
+ lib/javascripts/callback-min:
36
+ - lib/javascripts/callback-min.js
37
+ lib/javascripts/callback:
38
+ - lib/javascripts/msg
39
+ - lib/javascripts/callback.js
40
+ lib/javascripts/color_field-min:
41
+ - lib/javascripts/color_field-min.js
42
+ lib/javascripts/color_field:
43
+ - lib/javascripts/color_field.js
44
+ lib/javascripts/desktop_notifications-min:
45
+ - lib/javascripts/desktop_notifications-min.js
46
+ lib/javascripts/desktop_notifications:
47
+ - lib/javascripts/desktop_notifications.js
48
+ lib/javascripts/icons-min:
49
+ - lib/javascripts/icons-min.js
50
+ lib/javascripts/icons:
51
+ - lib/javascripts/lib3
52
+ - lib/javascripts/icons.js
53
+ lib/javascripts/js_extension-min:
54
+ - lib/javascripts/js_extension-min.js
55
+ lib/javascripts/js_extension:
56
+ - lib/javascripts/js_extension.js
57
+ lib/javascripts/lib1-min:
58
+ - lib/javascripts/lib1-min.js
59
+ lib/javascripts/lib2-min:
60
+ - lib/javascripts/lib2-min.js
61
+ lib/javascripts/lib2:
62
+ - lib/javascripts/lib2.js
63
+ lib/javascripts/lib3:
64
+ - lib/javascripts/lib3/index-min.js
65
+ - lib/javascripts/lib3/index.js
66
+ - lib/javascripts/lib3/other-min.js
67
+ - lib/javascripts/lib3/other.js
68
+ lib/javascripts/login:
69
+ - lib/javascripts/login/login.js
70
+ lib/javascripts/msg-min:
71
+ - lib/javascripts/msg-min.js
72
+ lib/javascripts/msg:
73
+ - lib/javascripts/msg.js
74
+ lib/javascripts/renderer-min:
75
+ - lib/javascripts/renderer-min.js
76
+ lib/javascripts/renderer:
77
+ - lib/javascripts/renderer.js
78
+ lib/javascripts/row_spanning-min:
79
+ - lib/javascripts/row_spanning-min.js
80
+ lib/javascripts/row_spanning:
81
+ - lib/javascripts/row_spanning.js
82
+ lib/javascripts/tbar:
83
+ - lib/javascripts/tbar.js
84
+ lib/javascripts/tool_box:
85
+ - lib/javascripts/tool_box/app_info.js
86
+ - lib/javascripts/tool_box/data_view_more.js
87
+ - lib/javascripts/tool_box/help.js
88
+ - lib/javascripts/tool_box/init.js
89
+ lib/javascripts/wando:
90
+ - vendor/javascripts/string.min
91
+ - lib/javascripts/wando.js
92
+ :app:
93
+ app/javascripts/application:
94
+ - vendor/javascripts/ext-all-debug
95
+ - vendor/javascripts/jquery
96
+ - vendor/javascripts/menu
97
+ - vendor/javascripts/gridfilters/FiltersFeature.js
98
+ - lib/javascripts/wando
99
+ - lib/javascripts/icons
100
+ - lib/javascripts/msg
101
+ - lib/javascripts/tool_box/app_info
102
+ - lib/javascripts/tool_box/data_view_more
103
+ - lib/javascripts/tool_box/help
104
+ - lib/javascripts/tool_box/init
105
+ - lib/javascripts/desktop_notifications
106
+ - lib/javascripts/js_extension
107
+ - lib/javascripts/callback
108
+ - lib/javascripts/renderer
109
+ - lib/javascripts/color_field
110
+ - lib/javascripts/tbar
111
+ - lib/javascripts/lib3
112
+ - app/javascripts/application.js
113
+ app/javascripts/cutting_records/cutting_calculate:
114
+ - app/javascripts/application
115
+ - app/javascripts/cutting_records/cutting_calculate.js
116
+ app/javascripts/cutting_records/index:
117
+ - app/javascripts/application
118
+ - app/javascripts/cutting_records/index.js
119
+ app/javascripts/material_attributes/index:
120
+ - app/javascripts/application
121
+ - app/javascripts/material_attributes/index.js
122
+ app/javascripts/purchasing_orders/material_purchasing:
123
+ - app/javascripts/application
124
+ - app/javascripts/purchasing_orders/material_purchasing.js
125
+ app/javascripts/purchasing_orders/purchase_order_list:
126
+ - app/javascripts/application
127
+ - app/javascripts/purchasing_orders/purchase_order_list.js
128
+ app/javascripts/sample_orders/information:
129
+ - app/javascripts/application
130
+ - app/javascripts/sample_orders/information.js
131
+ app/javascripts/workshop_reports/index:
132
+ - app/javascripts/application
133
+ - app/javascripts/workshop_reports/index.js
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: view_assets
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.4
4
+ version: 1.1.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,26 +9,42 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-03-21 00:00:00.000000000 Z
12
+ date: 2013-04-02 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
- name: rails
15
+ name: yui-compressor
16
16
  requirement: !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
- - - ~>
19
+ - - ! '>='
20
20
  - !ruby/object:Gem::Version
21
- version: 3.2.8
21
+ version: '0'
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
25
25
  none: false
26
26
  requirements:
27
- - - ~>
27
+ - - ! '>='
28
28
  - !ruby/object:Gem::Version
29
- version: 3.2.8
29
+ version: '0'
30
30
  - !ruby/object:Gem::Dependency
31
- name: yui-compressor
31
+ name: uglifier
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ! '>='
36
+ - !ruby/object:Gem::Version
37
+ version: '0'
38
+ type: :runtime
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ! '>='
44
+ - !ruby/object:Gem::Version
45
+ version: '0'
46
+ - !ruby/object:Gem::Dependency
47
+ name: closure-compiler
32
48
  requirement: !ruby/object:Gem::Requirement
33
49
  none: false
34
50
  requirements:
@@ -59,6 +75,22 @@ dependencies:
59
75
  - - ! '>='
60
76
  - !ruby/object:Gem::Version
61
77
  version: '0'
78
+ - !ruby/object:Gem::Dependency
79
+ name: rails
80
+ requirement: !ruby/object:Gem::Requirement
81
+ none: false
82
+ requirements:
83
+ - - ~>
84
+ - !ruby/object:Gem::Version
85
+ version: 3.2.8
86
+ type: :development
87
+ prerelease: false
88
+ version_requirements: !ruby/object:Gem::Requirement
89
+ none: false
90
+ requirements:
91
+ - - ~>
92
+ - !ruby/object:Gem::Version
93
+ version: 3.2.8
62
94
  - !ruby/object:Gem::Dependency
63
95
  name: sqlite3
64
96
  requirement: !ruby/object:Gem::Requirement
@@ -96,17 +128,17 @@ dependencies:
96
128
  requirement: !ruby/object:Gem::Requirement
97
129
  none: false
98
130
  requirements:
99
- - - '='
131
+ - - ! '>='
100
132
  - !ruby/object:Gem::Version
101
- version: 4.8.3
133
+ version: '0'
102
134
  type: :development
103
135
  prerelease: false
104
136
  version_requirements: !ruby/object:Gem::Requirement
105
137
  none: false
106
138
  requirements:
107
- - - '='
139
+ - - ! '>='
108
140
  - !ruby/object:Gem::Version
109
- version: 4.8.3
141
+ version: '0'
110
142
  - !ruby/object:Gem::Dependency
111
143
  name: rspec-nc
112
144
  requirement: !ruby/object:Gem::Requirement
@@ -133,6 +165,7 @@ extensions: []
133
165
  extra_rdoc_files: []
134
166
  files:
135
167
  - lib/tasks/basic.rb
168
+ - lib/tasks/tool.rb
136
169
  - lib/view_assets/action_view.rb
137
170
  - lib/view_assets/error.rb
138
171
  - lib/view_assets/finder/core.rb
@@ -141,6 +174,8 @@ files:
141
174
  - lib/view_assets/finder/finder.rb
142
175
  - lib/view_assets/finder/js_finder.rb
143
176
  - lib/view_assets/manager/manager.rb
177
+ - lib/view_assets/manager/map.rb
178
+ - lib/view_assets/manager/modifier.rb
144
179
  - lib/view_assets/packager/actions_map.rb
145
180
  - lib/view_assets/packager/core.rb
146
181
  - lib/view_assets/packager/packager.rb
@@ -149,7 +184,6 @@ files:
149
184
  - lib/view_assets/version.rb
150
185
  - lib/view_assets.rb
151
186
  - lib/yuicompressor-2.4.4.jar
152
- - MIT-LICENSE
153
187
  - Rakefile
154
188
  - readme.md
155
189
  - test/dummy/app/assets/javascripts/application.js
@@ -189,9 +223,6 @@ files:
189
223
  - test/dummy/config/locales/en.yml
190
224
  - test/dummy/config/routes.rb
191
225
  - test/dummy/config.ru
192
- - test/dummy/db/development.sqlite3
193
- - test/dummy/db/production.sqlite3
194
- - test/dummy/db/test.sqlite3
195
226
  - test/dummy/log/app/javascripts/application.js
196
227
  - test/dummy/log/app/javascripts/bar/index/index.js
197
228
  - test/dummy/log/app/javascripts/bar/index/others.js
@@ -206,8 +237,6 @@ files:
206
237
  - test/dummy/log/app/stylesheets/foo/index/index.css
207
238
  - test/dummy/log/app/stylesheets/foo/index/others.css
208
239
  - test/dummy/log/app/stylesheets/foo/show.css
209
- - test/dummy/log/development.log
210
- - test/dummy/log/production.log
211
240
  - test/dummy/public/404.html
212
241
  - test/dummy/public/422.html
213
242
  - test/dummy/public/500.html
@@ -225,35 +254,18 @@ files:
225
254
  - test/dummy/public/app/javascripts/workshop_reports/index.js
226
255
  - test/dummy/public/app/stylesheets/application.css
227
256
  - test/dummy/public/app/stylesheets/homes/homes.css
228
- - test/dummy/public/assets/javascripts/application-984fbe5ea1e3d5e4aaa99059a02281ef.js
229
- - test/dummy/public/assets/javascripts/application-e6c5fe847d07144f1b32520af2550e6f.js
230
- - test/dummy/public/assets/javascripts/controller-e6c5fe847d07144f1b32520af2550e6f.js
231
- - test/dummy/public/assets/javascripts/controller_action-e6c5fe847d07144f1b32520af2550e6f.js
232
- - test/dummy/public/assets/javascripts/cutting_records-984fbe5ea1e3d5e4aaa99059a02281ef.js
233
- - test/dummy/public/assets/javascripts/cutting_records-e6c5fe847d07144f1b32520af2550e6f.js
234
257
  - test/dummy/public/assets/javascripts/cutting_records_cutting_calculate-1f41de3696a8b0660e26bd246d859a29.js
235
258
  - test/dummy/public/assets/javascripts/cutting_records_cutting_calculate-436715658e474e12f4331551a770684e.js
236
259
  - test/dummy/public/assets/javascripts/cutting_records_cutting_calculate-b77a0d90e1d66d3171cd2b04f4c724a8.js
237
- - test/dummy/public/assets/javascripts/cutting_records_index-1edda21952a9f03edc5ecd1492947fbf.js
238
260
  - test/dummy/public/assets/javascripts/cutting_records_index-e86a6c15b0d09c63d85d75f97b6a5641.js
239
261
  - test/dummy/public/assets/javascripts/manifest.yml
240
- - test/dummy/public/assets/javascripts/material_attributes-984fbe5ea1e3d5e4aaa99059a02281ef.js
241
262
  - test/dummy/public/assets/javascripts/material_attributes_index-335219508716fb73c1020eb06b0ec057.js
242
- - test/dummy/public/assets/javascripts/purchasing_orders-984fbe5ea1e3d5e4aaa99059a02281ef.js
243
263
  - test/dummy/public/assets/javascripts/purchasing_orders_material_purchasing-10be8ebb21291c2edb0679278c78c2f3.js
244
264
  - test/dummy/public/assets/javascripts/purchasing_orders_purchase_order_list-c7ba7de16a6339e9f86d1d09d081462f.js
245
- - test/dummy/public/assets/javascripts/sample_orders-984fbe5ea1e3d5e4aaa99059a02281ef.js
246
265
  - test/dummy/public/assets/javascripts/sample_orders_information-6236e6757f8fe86c56035fe978cd21fb.js
247
- - test/dummy/public/assets/javascripts/workshop_reports-984fbe5ea1e3d5e4aaa99059a02281ef.js
248
266
  - test/dummy/public/assets/javascripts/workshop_reports_index-27158dd017bbce96b4ca2cc46afe0d43.js
249
- - test/dummy/public/assets/stylesheets/application-084630668892a3d31830a3759745a582.css
250
- - test/dummy/public/assets/stylesheets/application-9097e8fd786603bf9b4f22c0ad4aab7b.css
251
- - test/dummy/public/assets/stylesheets/controller-084630668892a3d31830a3759745a582.css
252
- - test/dummy/public/assets/stylesheets/controller_action-084630668892a3d31830a3759745a582.css
253
- - test/dummy/public/assets/stylesheets/cutting_records-084630668892a3d31830a3759745a582.css
267
+ - test/dummy/public/assets/javascripts_assets.yml
254
268
  - test/dummy/public/assets/stylesheets/cutting_records_cutting_calculate-084630668892a3d31830a3759745a582.css
255
- - test/dummy/public/assets/stylesheets/cutting_records_index-084630668892a3d31830a3759745a582.css
256
- - test/dummy/public/assets/stylesheets/homes-60aed35175c8508853f14087857e6224.css
257
269
  - test/dummy/public/assets/stylesheets/manifest.yml
258
270
  - test/dummy/public/favicon.ico
259
271
  - test/dummy/public/lib/images/desktop_notifications/cy.png
@@ -1622,7 +1634,8 @@ files:
1622
1634
  - test/test_helper.rb
1623
1635
  - test/view_assets_test.rb
1624
1636
  homepage: https://github.com/bom-d-van/view_assets
1625
- licenses: []
1637
+ licenses:
1638
+ - MIT-LICENSE
1626
1639
  post_install_message:
1627
1640
  rdoc_options: []
1628
1641
  require_paths:
@@ -1641,7 +1654,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
1641
1654
  version: '0'
1642
1655
  requirements: []
1643
1656
  rubyforge_project:
1644
- rubygems_version: 1.8.23
1657
+ rubygems_version: 1.8.24
1645
1658
  signing_key:
1646
1659
  specification_version: 3
1647
1660
  summary: A new method to manage assets in a rails project.
@@ -1683,9 +1696,6 @@ test_files:
1683
1696
  - test/dummy/config/locales/en.yml
1684
1697
  - test/dummy/config/routes.rb
1685
1698
  - test/dummy/config.ru
1686
- - test/dummy/db/development.sqlite3
1687
- - test/dummy/db/production.sqlite3
1688
- - test/dummy/db/test.sqlite3
1689
1699
  - test/dummy/log/app/javascripts/application.js
1690
1700
  - test/dummy/log/app/javascripts/bar/index/index.js
1691
1701
  - test/dummy/log/app/javascripts/bar/index/others.js
@@ -1700,8 +1710,6 @@ test_files:
1700
1710
  - test/dummy/log/app/stylesheets/foo/index/index.css
1701
1711
  - test/dummy/log/app/stylesheets/foo/index/others.css
1702
1712
  - test/dummy/log/app/stylesheets/foo/show.css
1703
- - test/dummy/log/development.log
1704
- - test/dummy/log/production.log
1705
1713
  - test/dummy/public/404.html
1706
1714
  - test/dummy/public/422.html
1707
1715
  - test/dummy/public/500.html
@@ -1719,35 +1727,18 @@ test_files:
1719
1727
  - test/dummy/public/app/javascripts/workshop_reports/index.js
1720
1728
  - test/dummy/public/app/stylesheets/application.css
1721
1729
  - test/dummy/public/app/stylesheets/homes/homes.css
1722
- - test/dummy/public/assets/javascripts/application-984fbe5ea1e3d5e4aaa99059a02281ef.js
1723
- - test/dummy/public/assets/javascripts/application-e6c5fe847d07144f1b32520af2550e6f.js
1724
- - test/dummy/public/assets/javascripts/controller-e6c5fe847d07144f1b32520af2550e6f.js
1725
- - test/dummy/public/assets/javascripts/controller_action-e6c5fe847d07144f1b32520af2550e6f.js
1726
- - test/dummy/public/assets/javascripts/cutting_records-984fbe5ea1e3d5e4aaa99059a02281ef.js
1727
- - test/dummy/public/assets/javascripts/cutting_records-e6c5fe847d07144f1b32520af2550e6f.js
1728
1730
  - test/dummy/public/assets/javascripts/cutting_records_cutting_calculate-1f41de3696a8b0660e26bd246d859a29.js
1729
1731
  - test/dummy/public/assets/javascripts/cutting_records_cutting_calculate-436715658e474e12f4331551a770684e.js
1730
1732
  - test/dummy/public/assets/javascripts/cutting_records_cutting_calculate-b77a0d90e1d66d3171cd2b04f4c724a8.js
1731
- - test/dummy/public/assets/javascripts/cutting_records_index-1edda21952a9f03edc5ecd1492947fbf.js
1732
1733
  - test/dummy/public/assets/javascripts/cutting_records_index-e86a6c15b0d09c63d85d75f97b6a5641.js
1733
1734
  - test/dummy/public/assets/javascripts/manifest.yml
1734
- - test/dummy/public/assets/javascripts/material_attributes-984fbe5ea1e3d5e4aaa99059a02281ef.js
1735
1735
  - test/dummy/public/assets/javascripts/material_attributes_index-335219508716fb73c1020eb06b0ec057.js
1736
- - test/dummy/public/assets/javascripts/purchasing_orders-984fbe5ea1e3d5e4aaa99059a02281ef.js
1737
1736
  - test/dummy/public/assets/javascripts/purchasing_orders_material_purchasing-10be8ebb21291c2edb0679278c78c2f3.js
1738
1737
  - test/dummy/public/assets/javascripts/purchasing_orders_purchase_order_list-c7ba7de16a6339e9f86d1d09d081462f.js
1739
- - test/dummy/public/assets/javascripts/sample_orders-984fbe5ea1e3d5e4aaa99059a02281ef.js
1740
1738
  - test/dummy/public/assets/javascripts/sample_orders_information-6236e6757f8fe86c56035fe978cd21fb.js
1741
- - test/dummy/public/assets/javascripts/workshop_reports-984fbe5ea1e3d5e4aaa99059a02281ef.js
1742
1739
  - test/dummy/public/assets/javascripts/workshop_reports_index-27158dd017bbce96b4ca2cc46afe0d43.js
1743
- - test/dummy/public/assets/stylesheets/application-084630668892a3d31830a3759745a582.css
1744
- - test/dummy/public/assets/stylesheets/application-9097e8fd786603bf9b4f22c0ad4aab7b.css
1745
- - test/dummy/public/assets/stylesheets/controller-084630668892a3d31830a3759745a582.css
1746
- - test/dummy/public/assets/stylesheets/controller_action-084630668892a3d31830a3759745a582.css
1747
- - test/dummy/public/assets/stylesheets/cutting_records-084630668892a3d31830a3759745a582.css
1740
+ - test/dummy/public/assets/javascripts_assets.yml
1748
1741
  - test/dummy/public/assets/stylesheets/cutting_records_cutting_calculate-084630668892a3d31830a3759745a582.css
1749
- - test/dummy/public/assets/stylesheets/cutting_records_index-084630668892a3d31830a3759745a582.css
1750
- - test/dummy/public/assets/stylesheets/homes-60aed35175c8508853f14087857e6224.css
1751
1742
  - test/dummy/public/assets/stylesheets/manifest.yml
1752
1743
  - test/dummy/public/favicon.ico
1753
1744
  - test/dummy/public/lib/images/desktop_notifications/cy.png