gridder 0.0.8 → 0.0.9

Sign up to get free protection for your applications and to get access to all the features.
@@ -69,17 +69,7 @@ module Gridder
69
69
 
70
70
  doc.tr(tr_config) do
71
71
  config[:body].each do |cell|
72
- cell.symbolize_keys!
73
- opts = {}
74
- opts[:class] = cell[:class] if cell[:class].present?
75
- opts[:style] = cell[:style] if cell[:style].present?
76
-
77
- r = if cell[:data].is_a?(Proc)
78
- cell[:data].arity.zero? ? cell[:data].call : cell[:data].call(record)
79
- else
80
- record.send(cell[:data])
81
- end
82
-
72
+ r, opts = Gridder.get_cell_content(cell, record)
83
73
  doc.td(opts){doc.cdata r}
84
74
  end
85
75
  end
@@ -87,9 +77,35 @@ module Gridder
87
77
  end
88
78
 
89
79
  end
80
+
81
+ if config[:footer] && config[:footer].is_a?(Array)
82
+ doc.tfoot(config[:tfooter]) do
83
+ doc.tr do
84
+ config[:footer].each do |cell|
85
+ r, opts = Gridder.get_cell_content(cell, data)
86
+ doc.td(opts){doc.cdata r}
87
+ end
88
+ end
89
+ end
90
+ end
90
91
  end
91
92
  end
92
93
 
93
94
  builder.doc.root.to_html.html_safe
94
95
  end
96
+
97
+ private
98
+ def self.get_cell_content(cell, record)
99
+ cell.symbolize_keys!
100
+ opts = {}
101
+ opts[:class] = cell[:class] if cell[:class].present?
102
+ opts[:style] = cell[:style] if cell[:style].present?
103
+
104
+ r = if cell[:data].is_a?(Proc)
105
+ cell[:data].arity.zero? ? cell[:data].call : cell[:data].call(record)
106
+ else
107
+ record.send(cell[:data])
108
+ end
109
+ [r, opts]
110
+ end
95
111
  end
@@ -1,3 +1,3 @@
1
1
  module Gridder
2
- VERSION = "0.0.8"
2
+ VERSION = "0.0.9"
3
3
  end
@@ -12,7 +12,9 @@
12
12
  {:title => "City", :data => lambda{|e|e.address.city}},
13
13
  {:title => "State", :data => lambda{|e|e.address.state}},
14
14
  {:title => "Country", :data => lambda{|e|e.address.country}}
15
- ] ) %>
15
+ ],
16
+ :tfooter => {:style => "font-size:30px"},
17
+ :footer => [{:data => proc{|e| e.map{|r| r.name[0]}.join("*")}}] ) %>
16
18
  </p>
17
19
 
18
20
  <p>
@@ -4018,3 +4018,439 @@ Served asset /welcome.js - 304 Not Modified (1ms)
4018
4018
 
4019
4019
  Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-11-16 17:40:40 -0200
4020
4020
  Served asset /application.js - 304 Not Modified (7ms)
4021
+ Connecting to database specified by database.yml
4022
+
4023
+
4024
+ Started GET "/" for 127.0.0.1 at 2013-01-16 15:04:08 -0200
4025
+ Connecting to database specified by database.yml
4026
+ Processing by WelcomeController#index as HTML
4027
+ Rendered welcome/index.html.erb within layouts/application (50.0ms)
4028
+ Compiled jquery.js (4ms) (pid 21360)
4029
+ Compiled jquery_ujs.js (0ms) (pid 21360)
4030
+ Compiled application.js (92ms) (pid 21360)
4031
+ Completed 200 OK in 378ms (Views: 303.1ms | ActiveRecord: 0.0ms)
4032
+
4033
+
4034
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2013-01-16 15:04:09 -0200
4035
+ Served asset /welcome.css - 200 OK (4ms)
4036
+
4037
+
4038
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-01-16 15:04:09 -0200
4039
+ Served asset /application.css - 200 OK (10ms)
4040
+
4041
+
4042
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-16 15:04:09 -0200
4043
+ Served asset /jquery.js - 200 OK (8ms)
4044
+
4045
+
4046
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-01-16 15:04:09 -0200
4047
+ Served asset /application.js - 200 OK (47ms)
4048
+
4049
+
4050
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-16 15:04:09 -0200
4051
+ Served asset /jquery_ujs.js - 200 OK (3ms)
4052
+
4053
+
4054
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2013-01-16 15:04:09 -0200
4055
+ Served asset /welcome.js - 200 OK (1ms)
4056
+
4057
+
4058
+ Started GET "/" for 127.0.0.1 at 2013-01-16 15:06:06 -0200
4059
+ Processing by WelcomeController#index as HTML
4060
+ Rendered welcome/index.html.erb within layouts/application (67.3ms)
4061
+ Completed 500 Internal Server Error in 76ms
4062
+
4063
+ ActionView::Template::Error (undefined local variable or method `record' for Gridder:Module):
4064
+ 7:
4065
+ 8: <p>
4066
+ 9: Lambda, lambda{|registro| registro.attributo}
4067
+ 10: <%= Gridder.for(@list, :body => [ {:title => "Name", :data => :name},
4068
+ 11: {:title => "Street", :data => lambda{|e|[e.address.number, e.address.street].join(", ")}},
4069
+ 12: {:title => "City", :data => lambda{|e|e.address.city}},
4070
+ 13: {:title => "State", :data => lambda{|e|e.address.state}},
4071
+ app/views/welcome/index.html.erb:10:in `_app_views_welcome_index_html_erb__319052579551755255_2159518040'
4072
+
4073
+
4074
+ Rendered /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
4075
+ Rendered /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
4076
+ Rendered /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.9ms)
4077
+
4078
+
4079
+ Started GET "/" for 127.0.0.1 at 2013-01-16 15:06:22 -0200
4080
+ Processing by WelcomeController#index as HTML
4081
+ Rendered welcome/index.html.erb within layouts/application (4.4ms)
4082
+ Completed 500 Internal Server Error in 15ms
4083
+
4084
+ ActionView::Template::Error (undefined local variable or method `record' for Gridder:Module):
4085
+ 7:
4086
+ 8: <p>
4087
+ 9: Lambda, lambda{|registro| registro.attributo}
4088
+ 10: <%= Gridder.for(@list, :body => [ {:title => "Name", :data => :name},
4089
+ 11: {:title => "Street", :data => lambda{|e|[e.address.number, e.address.street].join(", ")}},
4090
+ 12: {:title => "City", :data => lambda{|e|e.address.city}},
4091
+ 13: {:title => "State", :data => lambda{|e|e.address.state}},
4092
+ app/views/welcome/index.html.erb:10:in `_app_views_welcome_index_html_erb__319052579551755255_2159518040'
4093
+
4094
+
4095
+ Rendered /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
4096
+ Rendered /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
4097
+ Rendered /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.3ms)
4098
+
4099
+
4100
+ Started GET "/" for 127.0.0.1 at 2013-01-16 15:06:31 -0200
4101
+ Connecting to database specified by database.yml
4102
+ Processing by WelcomeController#index as HTML
4103
+ Rendered welcome/index.html.erb within layouts/application (25.5ms)
4104
+ Completed 200 OK in 87ms (Views: 75.0ms | ActiveRecord: 0.0ms)
4105
+
4106
+
4107
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-01-16 15:06:32 -0200
4108
+ Served asset /application.css - 304 Not Modified (3ms)
4109
+
4110
+
4111
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2013-01-16 15:06:32 -0200
4112
+ Served asset /welcome.css - 304 Not Modified (2ms)
4113
+
4114
+
4115
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-16 15:06:32 -0200
4116
+ Served asset /jquery.js - 304 Not Modified (6ms)
4117
+
4118
+
4119
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2013-01-16 15:06:32 -0200
4120
+ Served asset /welcome.js - 304 Not Modified (3ms)
4121
+
4122
+
4123
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-16 15:06:32 -0200
4124
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
4125
+
4126
+
4127
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-01-16 15:06:32 -0200
4128
+ Served asset /application.js - 304 Not Modified (21ms)
4129
+
4130
+
4131
+ Started GET "/" for 127.0.0.1 at 2013-01-16 15:07:54 -0200
4132
+ Processing by WelcomeController#index as HTML
4133
+ ERROR: compiling _app_views_welcome_index_html_erb___1203327005840735596_2157278240 RAISED /Users/targa/Sites/gems/gridder/test/dummy/app/views/welcome/index.html.erb:17: syntax error, unexpected tSYMBEG, expecting ')'
4134
+ :footer => [{:data => proc{|e|...
4135
+ ^
4136
+ /Users/targa/Sites/gems/gridder/test/dummy/app/views/welcome/index.html.erb:17: syntax error, unexpected ')', expecting keyword_end
4137
+ ...|r| r.name[0]}.join("*")}}] ) );@output_buffer.safe_concat('
4138
+ ... ^
4139
+ Function body: def _app_views_welcome_index_html_erb___1203327005840735596_2157278240(local_assigns, output_buffer)
4140
+ _old_virtual_path, @virtual_path = @virtual_path, "welcome/index";_old_output_buffer = @output_buffer;;@output_buffer = output_buffer || ActionView::OutputBuffer.new;@output_buffer.safe_concat('<h1>Demo</h1>
4141
+
4142
+ <p>
4143
+ Simples, data => :nome_do_attributo
4144
+ ');@output_buffer.append= ( Gridder.for(@list, :body => [{:title => "Name", :data => :name}] ) );@output_buffer.safe_concat('
4145
+ ');@output_buffer.safe_concat('</p>
4146
+
4147
+ <p>
4148
+ Lambda, lambda{|registro| registro.attributo}
4149
+ ');@output_buffer.append= ( Gridder.for(@list, :body => [ {:title => "Name", :data => :name},
4150
+ {:title => "Street", :data => lambda{|e|[e.address.number, e.address.street].join(", ")}},
4151
+ {:title => "City", :data => lambda{|e|e.address.city}},
4152
+ {:title => "State", :data => lambda{|e|e.address.state}},
4153
+ {:title => "Country", :data => lambda{|e|e.address.country}}
4154
+ ],
4155
+ :tfooter => {:style => "font-size:30px"}
4156
+ :footer => [{:data => proc{|e| e.map{|r| r.name[0]}.join("*")}}] ) );@output_buffer.safe_concat('
4157
+ ');@output_buffer.safe_concat('</p>
4158
+
4159
+ <p>
4160
+ Definindo atributos
4161
+ ');@output_buffer.append= ( Gridder.for(@list, :body => [ {:title => "Name", :data => :name},
4162
+ {:title => "Street", :data => lambda{|e|[e.address.number, e.address.street].join(", ")}},
4163
+ {:title => "City", :data => lambda{|e|e.address.city}},
4164
+ {:title => "State", :data => lambda{|e|e.address.state}},
4165
+ {:title => "Country", :data => lambda{|e|e.address.country}}
4166
+ ],
4167
+ :table => {:style => "background-color:#efefef"},
4168
+ :tr => {:style => "color:red"},
4169
+ :thead => {:style => "font-family:tahoma;font-size:30px"} ) );@output_buffer.safe_concat('
4170
+ ');@output_buffer.safe_concat('</p>
4171
+
4172
+ <p>
4173
+ Adicionando namespace no cabeçalho
4174
+ ');@output_buffer.append= ( Gridder.for(@list, :body => [ {:title => "Name", :data => :name},
4175
+ {:title => "Address::Street", :data => lambda{|e|[e.address.number, e.address.street].join(", ")}, :style => "width:200px"},
4176
+ {:title => "Address::City", :data => lambda{|e|e.address.city}},
4177
+ {:title => "Address::State", :data => lambda{|e|e.address.state}},
4178
+ {:title => "Address::Country", :data => lambda{|e|e.address.country}}
4179
+ ], :table => {:border => 1, :cellpadding => 5, :cellspacing=> 0}) );@output_buffer.safe_concat('
4180
+ ');@output_buffer.safe_concat('</p>
4181
+
4182
+ <p>
4183
+ Adicionando namespace de 2 niveis no cabeçalho
4184
+ ');@output_buffer.append= ( Gridder.for(@list, :body => [ {:title => "Name", :data => :name},
4185
+ {:title => "Address::Number", :data => lambda{|e|e.address.number}, :style => "width:50px"},
4186
+ {:title => "Address::Street", :data => lambda{|e|e.address.street}, :style => "width:150px"},
4187
+ {:title => "Address::Region::City", :data => lambda{|e|e.address.city}},
4188
+ {:title => "Address::Region::State", :data => lambda{|e|e.address.state}},
4189
+ {:title => "Address::Region::Country", :data => lambda{|e|e.address.country}}
4190
+ ], :table => {:border => 1, :cellpadding => 5, :cellspacing=> 0}) );@output_buffer.safe_concat('
4191
+ ');@output_buffer.safe_concat('</p>
4192
+
4193
+ ');@output_buffer.to_s
4194
+ ensure
4195
+ @virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer
4196
+ end
4197
+
4198
+ Backtrace: /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/action_view/template.rb:297:in `module_eval'
4199
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/action_view/template.rb:297:in `compile'
4200
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/action_view/template.rb:244:in `block in compile!'
4201
+ <internal:prelude>:10:in `synchronize'
4202
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/action_view/template.rb:232:in `compile!'
4203
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/action_view/template.rb:144:in `block in render'
4204
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/activesupport-3.2.9/lib/active_support/notifications.rb:125:in `instrument'
4205
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/action_view/template.rb:143:in `render'
4206
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
4207
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
4208
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/activesupport-3.2.9/lib/active_support/notifications.rb:123:in `block in instrument'
4209
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/activesupport-3.2.9/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
4210
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/activesupport-3.2.9/lib/active_support/notifications.rb:123:in `instrument'
4211
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
4212
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
4213
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
4214
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/action_view/renderer/template_renderer.rb:45:in `render_template'
4215
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/action_view/renderer/template_renderer.rb:18:in `render'
4216
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/action_view/renderer/renderer.rb:36:in `render_template'
4217
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/action_view/renderer/renderer.rb:17:in `render'
4218
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/abstract_controller/rendering.rb:110:in `_render_template'
4219
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/action_controller/metal/streaming.rb:225:in `_render_template'
4220
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/abstract_controller/rendering.rb:103:in `render_to_body'
4221
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/action_controller/metal/renderers.rb:28:in `render_to_body'
4222
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
4223
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/abstract_controller/rendering.rb:88:in `render'
4224
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/action_controller/metal/rendering.rb:16:in `render'
4225
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
4226
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/activesupport-3.2.9/lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
4227
+ /Users/targa/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/benchmark.rb:310:in `realtime'
4228
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/activesupport-3.2.9/lib/active_support/core_ext/benchmark.rb:5:in `ms'
4229
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/action_controller/metal/instrumentation.rb:40:in `block in render'
4230
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
4231
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/activerecord-3.2.9/lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
4232
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/action_controller/metal/instrumentation.rb:39:in `render'
4233
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/action_controller/metal/implicit_render.rb:10:in `default_render'
4234
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/action_controller/metal/implicit_render.rb:5:in `send_action'
4235
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/abstract_controller/base.rb:167:in `process_action'
4236
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/action_controller/metal/rendering.rb:10:in `process_action'
4237
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/abstract_controller/callbacks.rb:18:in `block in process_action'
4238
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/activesupport-3.2.9/lib/active_support/callbacks.rb:414:in `_run__4443665687003354766__process_action__2571813561851093202__callbacks'
4239
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/activesupport-3.2.9/lib/active_support/callbacks.rb:405:in `__run_callback'
4240
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/activesupport-3.2.9/lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
4241
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/activesupport-3.2.9/lib/active_support/callbacks.rb:81:in `run_callbacks'
4242
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/abstract_controller/callbacks.rb:17:in `process_action'
4243
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/action_controller/metal/rescue.rb:29:in `process_action'
4244
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
4245
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/activesupport-3.2.9/lib/active_support/notifications.rb:123:in `block in instrument'
4246
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/activesupport-3.2.9/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
4247
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/activesupport-3.2.9/lib/active_support/notifications.rb:123:in `instrument'
4248
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/action_controller/metal/instrumentation.rb:29:in `process_action'
4249
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
4250
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/activerecord-3.2.9/lib/active_record/railties/controller_runtime.rb:18:in `process_action'
4251
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/abstract_controller/base.rb:121:in `process'
4252
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/abstract_controller/rendering.rb:45:in `process'
4253
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/action_controller/metal.rb:203:in `dispatch'
4254
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
4255
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/action_controller/metal.rb:246:in `block in action'
4256
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/action_dispatch/routing/route_set.rb:73:in `call'
4257
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
4258
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/action_dispatch/routing/route_set.rb:36:in `call'
4259
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call'
4260
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/journey-1.0.4/lib/journey/router.rb:56:in `each'
4261
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/journey-1.0.4/lib/journey/router.rb:56:in `call'
4262
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/action_dispatch/routing/route_set.rb:601:in `call'
4263
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
4264
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/rack-1.4.1/lib/rack/etag.rb:23:in `call'
4265
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/rack-1.4.1/lib/rack/conditionalget.rb:25:in `call'
4266
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/action_dispatch/middleware/head.rb:14:in `call'
4267
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/action_dispatch/middleware/params_parser.rb:21:in `call'
4268
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/action_dispatch/middleware/flash.rb:242:in `call'
4269
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:205:in `context'
4270
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:200:in `call'
4271
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/action_dispatch/middleware/cookies.rb:341:in `call'
4272
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/activerecord-3.2.9/lib/active_record/query_cache.rb:64:in `call'
4273
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/activerecord-3.2.9/lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
4274
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
4275
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/activesupport-3.2.9/lib/active_support/callbacks.rb:405:in `_run__4250143931556508167__call__3853541822437325741__callbacks'
4276
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/activesupport-3.2.9/lib/active_support/callbacks.rb:405:in `__run_callback'
4277
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/activesupport-3.2.9/lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
4278
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/activesupport-3.2.9/lib/active_support/callbacks.rb:81:in `run_callbacks'
4279
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/action_dispatch/middleware/callbacks.rb:27:in `call'
4280
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/action_dispatch/middleware/reloader.rb:65:in `call'
4281
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
4282
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
4283
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
4284
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/railties-3.2.9/lib/rails/rack/logger.rb:32:in `call_app'
4285
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/railties-3.2.9/lib/rails/rack/logger.rb:16:in `block in call'
4286
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/activesupport-3.2.9/lib/active_support/tagged_logging.rb:22:in `tagged'
4287
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/railties-3.2.9/lib/rails/rack/logger.rb:16:in `call'
4288
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/action_dispatch/middleware/request_id.rb:22:in `call'
4289
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call'
4290
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/rack-1.4.1/lib/rack/runtime.rb:17:in `call'
4291
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/activesupport-3.2.9/lib/active_support/cache/strategy/local_cache.rb:72:in `call'
4292
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/rack-1.4.1/lib/rack/lock.rb:15:in `call'
4293
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/action_dispatch/middleware/static.rb:62:in `call'
4294
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/railties-3.2.9/lib/rails/engine.rb:479:in `call'
4295
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/railties-3.2.9/lib/rails/application.rb:223:in `call'
4296
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/rack-1.4.1/lib/rack/content_length.rb:14:in `call'
4297
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/railties-3.2.9/lib/rails/rack/log_tailer.rb:17:in `call'
4298
+ /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/rack-1.4.1/lib/rack/handler/webrick.rb:59:in `service'
4299
+ /Users/targa/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
4300
+ /Users/targa/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
4301
+ /Users/targa/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
4302
+ Rendered welcome/index.html.erb within layouts/application (18.9ms)
4303
+ Completed 500 Internal Server Error in 29ms
4304
+
4305
+ ActionView::Template::Error (/Users/targa/Sites/gems/gridder/test/dummy/app/views/welcome/index.html.erb:17: syntax error, unexpected tSYMBEG, expecting ')'
4306
+ :footer => [{:data => proc{|e|...
4307
+ ^
4308
+ /Users/targa/Sites/gems/gridder/test/dummy/app/views/welcome/index.html.erb:17: syntax error, unexpected ')', expecting keyword_end
4309
+ ...|r| r.name[0]}.join("*")}}] ) );@output_buffer.safe_concat('
4310
+ ... ^):
4311
+ 14: {:title => "Country", :data => lambda{|e|e.address.country}}
4312
+ 15: ],
4313
+ 16: :tfooter => {:style => "font-size:30px"}
4314
+ 17: :footer => [{:data => proc{|e| e.map{|r| r.name[0]}.join("*")}}] ) %>
4315
+ 18: </p>
4316
+ 19:
4317
+ 20: <p>
4318
+ actionpack (3.2.9) lib/action_view/template.rb:297:in `module_eval'
4319
+ actionpack (3.2.9) lib/action_view/template.rb:297:in `compile'
4320
+ actionpack (3.2.9) lib/action_view/template.rb:244:in `block in compile!'
4321
+ <internal:prelude>:10:in `synchronize'
4322
+ actionpack (3.2.9) lib/action_view/template.rb:232:in `compile!'
4323
+ actionpack (3.2.9) lib/action_view/template.rb:144:in `block in render'
4324
+ activesupport (3.2.9) lib/active_support/notifications.rb:125:in `instrument'
4325
+ actionpack (3.2.9) lib/action_view/template.rb:143:in `render'
4326
+ actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
4327
+ actionpack (3.2.9) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
4328
+ activesupport (3.2.9) lib/active_support/notifications.rb:123:in `block in instrument'
4329
+ activesupport (3.2.9) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
4330
+ activesupport (3.2.9) lib/active_support/notifications.rb:123:in `instrument'
4331
+ actionpack (3.2.9) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
4332
+ actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
4333
+ actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
4334
+ actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
4335
+ actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:18:in `render'
4336
+ actionpack (3.2.9) lib/action_view/renderer/renderer.rb:36:in `render_template'
4337
+ actionpack (3.2.9) lib/action_view/renderer/renderer.rb:17:in `render'
4338
+ actionpack (3.2.9) lib/abstract_controller/rendering.rb:110:in `_render_template'
4339
+ actionpack (3.2.9) lib/action_controller/metal/streaming.rb:225:in `_render_template'
4340
+ actionpack (3.2.9) lib/abstract_controller/rendering.rb:103:in `render_to_body'
4341
+ actionpack (3.2.9) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
4342
+ actionpack (3.2.9) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
4343
+ actionpack (3.2.9) lib/abstract_controller/rendering.rb:88:in `render'
4344
+ actionpack (3.2.9) lib/action_controller/metal/rendering.rb:16:in `render'
4345
+ actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
4346
+ activesupport (3.2.9) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
4347
+ /Users/targa/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/benchmark.rb:310:in `realtime'
4348
+ activesupport (3.2.9) lib/active_support/core_ext/benchmark.rb:5:in `ms'
4349
+ actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
4350
+ actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
4351
+ activerecord (3.2.9) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
4352
+ actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:39:in `render'
4353
+ actionpack (3.2.9) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
4354
+ actionpack (3.2.9) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
4355
+ actionpack (3.2.9) lib/abstract_controller/base.rb:167:in `process_action'
4356
+ actionpack (3.2.9) lib/action_controller/metal/rendering.rb:10:in `process_action'
4357
+ actionpack (3.2.9) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
4358
+ activesupport (3.2.9) lib/active_support/callbacks.rb:414:in `_run__4443665687003354766__process_action__2571813561851093202__callbacks'
4359
+ activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `__run_callback'
4360
+ activesupport (3.2.9) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
4361
+ activesupport (3.2.9) lib/active_support/callbacks.rb:81:in `run_callbacks'
4362
+ actionpack (3.2.9) lib/abstract_controller/callbacks.rb:17:in `process_action'
4363
+ actionpack (3.2.9) lib/action_controller/metal/rescue.rb:29:in `process_action'
4364
+ actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
4365
+ activesupport (3.2.9) lib/active_support/notifications.rb:123:in `block in instrument'
4366
+ activesupport (3.2.9) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
4367
+ activesupport (3.2.9) lib/active_support/notifications.rb:123:in `instrument'
4368
+ actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
4369
+ actionpack (3.2.9) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
4370
+ activerecord (3.2.9) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
4371
+ actionpack (3.2.9) lib/abstract_controller/base.rb:121:in `process'
4372
+ actionpack (3.2.9) lib/abstract_controller/rendering.rb:45:in `process'
4373
+ actionpack (3.2.9) lib/action_controller/metal.rb:203:in `dispatch'
4374
+ actionpack (3.2.9) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
4375
+ actionpack (3.2.9) lib/action_controller/metal.rb:246:in `block in action'
4376
+ actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:73:in `call'
4377
+ actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
4378
+ actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:36:in `call'
4379
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
4380
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
4381
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
4382
+ actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:601:in `call'
4383
+ actionpack (3.2.9) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
4384
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
4385
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
4386
+ actionpack (3.2.9) lib/action_dispatch/middleware/head.rb:14:in `call'
4387
+ actionpack (3.2.9) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
4388
+ actionpack (3.2.9) lib/action_dispatch/middleware/flash.rb:242:in `call'
4389
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
4390
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
4391
+ actionpack (3.2.9) lib/action_dispatch/middleware/cookies.rb:341:in `call'
4392
+ activerecord (3.2.9) lib/active_record/query_cache.rb:64:in `call'
4393
+ activerecord (3.2.9) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
4394
+ actionpack (3.2.9) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
4395
+ activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `_run__4250143931556508167__call__3853541822437325741__callbacks'
4396
+ activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `__run_callback'
4397
+ activesupport (3.2.9) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
4398
+ activesupport (3.2.9) lib/active_support/callbacks.rb:81:in `run_callbacks'
4399
+ actionpack (3.2.9) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
4400
+ actionpack (3.2.9) lib/action_dispatch/middleware/reloader.rb:65:in `call'
4401
+ actionpack (3.2.9) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
4402
+ actionpack (3.2.9) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
4403
+ actionpack (3.2.9) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
4404
+ railties (3.2.9) lib/rails/rack/logger.rb:32:in `call_app'
4405
+ railties (3.2.9) lib/rails/rack/logger.rb:16:in `block in call'
4406
+ activesupport (3.2.9) lib/active_support/tagged_logging.rb:22:in `tagged'
4407
+ railties (3.2.9) lib/rails/rack/logger.rb:16:in `call'
4408
+ actionpack (3.2.9) lib/action_dispatch/middleware/request_id.rb:22:in `call'
4409
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
4410
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
4411
+ activesupport (3.2.9) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
4412
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
4413
+ actionpack (3.2.9) lib/action_dispatch/middleware/static.rb:62:in `call'
4414
+ railties (3.2.9) lib/rails/engine.rb:479:in `call'
4415
+ railties (3.2.9) lib/rails/application.rb:223:in `call'
4416
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
4417
+ railties (3.2.9) lib/rails/rack/log_tailer.rb:17:in `call'
4418
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
4419
+ /Users/targa/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
4420
+ /Users/targa/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
4421
+ /Users/targa/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
4422
+
4423
+
4424
+ Rendered /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
4425
+ Rendered /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.5ms)
4426
+ Rendered /Users/targa/.rvm/gems/ruby-1.9.2-p290@pinarello/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.4ms)
4427
+
4428
+
4429
+ Started GET "/" for 127.0.0.1 at 2013-01-16 15:08:00 -0200
4430
+ Processing by WelcomeController#index as HTML
4431
+ Rendered welcome/index.html.erb within layouts/application (13.0ms)
4432
+ Completed 200 OK in 31ms (Views: 17.4ms | ActiveRecord: 0.0ms)
4433
+
4434
+
4435
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2013-01-16 15:08:00 -0200
4436
+ Served asset /welcome.css - 304 Not Modified (0ms)
4437
+
4438
+
4439
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-16 15:08:00 -0200
4440
+ Served asset /jquery.js - 304 Not Modified (0ms)
4441
+
4442
+
4443
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2013-01-16 15:08:00 -0200
4444
+ Served asset /welcome.js - 304 Not Modified (0ms)
4445
+
4446
+
4447
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-01-16 15:08:00 -0200
4448
+ Served asset /application.js - 304 Not Modified (0ms)
4449
+
4450
+
4451
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-16 15:08:00 -0200
4452
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
4453
+
4454
+
4455
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-01-16 15:08:00 -0200
4456
+ Served asset /application.css - 304 Not Modified (0ms)
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: gridder
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.0.8
5
+ version: 0.0.9
6
6
  platform: ruby
7
7
  authors:
8
8
  - Pablo Targa
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2012-11-20 00:00:00 -02:00
13
+ date: 2013-01-16 00:00:00 -02:00
14
14
  default_executable:
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
@@ -110,6 +110,8 @@ files:
110
110
  - test/dummy/tmp/cache/assets/C8D/630/sprockets%2Fc56919665888c4ca123324825ab5f56e
111
111
  - test/dummy/tmp/cache/assets/C97/410/sprockets%2F56fe119098922d0755dd813be3c86798
112
112
  - test/dummy/tmp/cache/assets/CBB/B80/sprockets%2F0a78b5099ffe20185b75dd4716147a97
113
+ - test/dummy/tmp/cache/assets/CD3/490/sprockets%2F26474502255c5cbc2e2874c1ae5a18a7
114
+ - test/dummy/tmp/cache/assets/CD8/280/sprockets%2F7249c1d58ea42a59437033e394ab2a1f
113
115
  - test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953
114
116
  - test/dummy/tmp/cache/assets/D13/C60/sprockets%2F2dedb8177c20286c4259c1d58c5646cc
115
117
  - test/dummy/tmp/cache/assets/D21/5D0/sprockets%2Fe2c4f946939f2d7d0b42d86383755cae
@@ -117,6 +119,8 @@ files:
117
119
  - test/dummy/tmp/cache/assets/D3E/F40/sprockets%2F25a167c7563d6fe8ec6b13ec1ac09274
118
120
  - test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655
119
121
  - test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6
122
+ - test/dummy/tmp/cache/assets/DAE/B50/sprockets%2Ffbe828a8536cb72b29f2a7e35fa8fc66
123
+ - test/dummy/tmp/cache/assets/DC3/030/sprockets%2Fb02fd2aa8efa5ee1b0762df68c3129e1
120
124
  - test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994
121
125
  - test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af
122
126
  - test/gridder_test.rb
@@ -135,7 +139,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
135
139
  requirements:
136
140
  - - ">="
137
141
  - !ruby/object:Gem::Version
138
- hash: 2749217683410939937
142
+ hash: -3843216707649294560
139
143
  segments:
140
144
  - 0
141
145
  version: "0"
@@ -144,7 +148,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
144
148
  requirements:
145
149
  - - ">="
146
150
  - !ruby/object:Gem::Version
147
- hash: 2749217683410939937
151
+ hash: -3843216707649294560
148
152
  segments:
149
153
  - 0
150
154
  version: "0"
@@ -204,6 +208,8 @@ test_files:
204
208
  - test/dummy/tmp/cache/assets/C8D/630/sprockets%2Fc56919665888c4ca123324825ab5f56e
205
209
  - test/dummy/tmp/cache/assets/C97/410/sprockets%2F56fe119098922d0755dd813be3c86798
206
210
  - test/dummy/tmp/cache/assets/CBB/B80/sprockets%2F0a78b5099ffe20185b75dd4716147a97
211
+ - test/dummy/tmp/cache/assets/CD3/490/sprockets%2F26474502255c5cbc2e2874c1ae5a18a7
212
+ - test/dummy/tmp/cache/assets/CD8/280/sprockets%2F7249c1d58ea42a59437033e394ab2a1f
207
213
  - test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953
208
214
  - test/dummy/tmp/cache/assets/D13/C60/sprockets%2F2dedb8177c20286c4259c1d58c5646cc
209
215
  - test/dummy/tmp/cache/assets/D21/5D0/sprockets%2Fe2c4f946939f2d7d0b42d86383755cae
@@ -211,6 +217,8 @@ test_files:
211
217
  - test/dummy/tmp/cache/assets/D3E/F40/sprockets%2F25a167c7563d6fe8ec6b13ec1ac09274
212
218
  - test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655
213
219
  - test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6
220
+ - test/dummy/tmp/cache/assets/DAE/B50/sprockets%2Ffbe828a8536cb72b29f2a7e35fa8fc66
221
+ - test/dummy/tmp/cache/assets/DC3/030/sprockets%2Fb02fd2aa8efa5ee1b0762df68c3129e1
214
222
  - test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994
215
223
  - test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af
216
224
  - test/gridder_test.rb