cielo_assets 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -21,31 +21,31 @@ Add this gem to your Gemfile:
21
21
 
22
22
  Call ``` cielo_controls ``` helper method at your view:
23
23
 
24
- <%= cielo_controls 'test[0]' %>
24
+ <%= cielo_controls :my_object, :field %>
25
25
 
26
26
  This generates the following markup:
27
27
 
28
28
  <div class="horizontal" id="cielo_controls">
29
- <input id="test_0_amex" name="test[0]" type="radio" value="amex" />
30
- <label class="amex" for="test_0_amex">Amex</label>
29
+ <input id="my_object_field_amex" name="my_object[field]" type="radio" value="amex">
30
+ <label class="amex" for="my_object_field_amex">Amex</label>
31
31
 
32
- <input id="test_0_diners" name="test[0]" type="radio" value="diners" />
33
- <label class="diners" for="test_0_diners">Diners</label>
32
+ <input id="my_object_field_diners" name="my_object[field]" type="radio" value="diners">
33
+ <label class="diners" for="my_object_field_diners">Diners</label>
34
34
 
35
- <input id="test_0_elo" name="test[0]" type="radio" value="elo" />
36
- <label class="elo" for="test_0_elo">Elo</label>
35
+ <input id="my_object_field_elo" name="my_object[field]" type="radio" value="elo">
36
+ <label class="elo" for="my_object_field_elo">Elo</label>
37
37
 
38
- <input id="test_0_mastercard" name="test[0]" type="radio" value="mastercard" />
39
- <label class="mastercard" for="test_0_mastercard">Mastercard</label>
38
+ <input id="my_object_field_mastercard" name="my_object[field]" type="radio" value="mastercard">
39
+ <label class="mastercard" for="my_object_field_mastercard">Mastercard</label>
40
40
 
41
- <input id="test_0_mastercard_securecode" name="test[0]" type="radio" value="mastercard_securecode" />
42
- <label class="mastercard_securecode" for="test_0_mastercard_securecode">Mastercard Securecode</label>
41
+ <input id="my_object_field_mastercard_securecode" name="my_object[field]" type="radio" value="mastercard_securecode">
42
+ <label class="mastercard_securecode" for="my_object_field_mastercard_securecode">Mastercard securecode</label>
43
43
 
44
- <input id="test_0_verified_by_visa" name="test[0]" type="radio" value="verified_by_visa" />
45
- <label class="verified_by_visa" for="test_0_verified_by_visa">Verified By Visa</label>
44
+ <input id="my_object_field_verified_by_visa" name="my_object[field]" type="radio" value="verified_by_visa">
45
+ <label class="verified_by_visa" for="my_object_field_verified_by_visa">Verified by visa</label>
46
46
 
47
- <input id="test_0_visa" name="test[0]" type="radio" value="visa" />
48
- <label class="visa" for="test_0_visa">Visa</label>
47
+ <input id="my_object_field_visa" name="my_object[field]" type="radio" value="visa">
48
+ <label class="visa" for="my_object_field_visa">Visa</label>
49
49
  </div>
50
50
 
51
51
  To provide basic styles, just require cielo_assets at your manifest:
@@ -63,7 +63,7 @@ See their definitions at ``` app/assets/stylesheets/cielo_assets/controls.css.sc
63
63
 
64
64
  Switching between styles can be done by providing the css class name as the second argument to the helper:
65
65
 
66
- <%= cielo_controls 'test[0]', :vertical %>
66
+ <%= cielo_controls :my_object, :field, style: :vertical %>
67
67
 
68
68
  This only changes the container class:
69
69
 
@@ -72,3 +72,10 @@ This only changes the container class:
72
72
  </div>
73
73
 
74
74
  You can provide any arbitrary css class since you define it at your own application.
75
+
76
+ ## FormBuilder Usage
77
+
78
+ <%= form_for :my_object do |f| %>
79
+ <%= f.cielo_controls :field %>
80
+ <%= f.submit %>
81
+ <% end %>
@@ -0,0 +1,17 @@
1
+ module CieloAssets
2
+ module FormHelper
3
+ def cielo_controls object_name, method, options={}
4
+ id = options.delete(:id) || :cielo_controls
5
+ style = options.delete(:style) || :horizontal
6
+
7
+ content_tag :div, id: id, class: style do
8
+ [:amex,:diners,:elo,:mastercard,:mastercard_securecode,:verified_by_visa,:visa].collect { |flag|
9
+ [
10
+ radio_button(object_name, method, flag, options),
11
+ label("#{object_name}_#{method}", flag, options.merge(class: flag))
12
+ ].join.html_safe
13
+ }.join.html_safe
14
+ end
15
+ end
16
+ end
17
+ end
@@ -9,11 +9,18 @@
9
9
  </style>
10
10
  <form>
11
11
  <h1>Vertical</h1>
12
- <%= cielo_controls 'test[0]', :vertical %>
12
+ <%= cielo_controls :my_object, :field1, style: :vertical %>
13
13
  <%= submit_tag %>
14
14
  </form>
15
15
  <form>
16
16
  <h1>Horizontal</h1>
17
- <%= cielo_controls 'test[1]' %>
17
+ <%= cielo_controls :my_object, :field2 %>
18
18
  <%= submit_tag %>
19
19
  </form>
20
+
21
+ <%= form_for :my_object do |f| %>
22
+ <h1>With Form Builder</h1>
23
+
24
+ <%= f.cielo_controls :field %>
25
+ <%= f.submit %>
26
+ <% end %>
@@ -4,8 +4,15 @@ module CieloAssets
4
4
 
5
5
  initializer 'cielo_assets.action_controller' do |app|
6
6
  ActiveSupport.on_load :action_controller do
7
- helper CieloAssets::ApplicationHelper
7
+ helper CieloAssets::FormHelper
8
8
  end
9
9
  end
10
10
  end
11
+
12
+ # Monkey patches FormBuilder
13
+ class ActionView::Helpers::FormBuilder
14
+ def cielo_controls method, options={}
15
+ @template.cielo_controls @object_name, method, options
16
+ end
17
+ end
11
18
  end
@@ -1,3 +1,3 @@
1
1
  module CieloAssets
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
@@ -8566,3 +8566,2367 @@ Served asset /cielo_assets/elo.png - 304 Not Modified (0ms)
8566
8566
 
8567
8567
  Started GET "/assets/cielo_assets/elo.png" for 127.0.0.1 at 2013-02-11 18:31:58 -0200
8568
8568
  Served asset /cielo_assets/elo.png - 304 Not Modified (0ms)
8569
+
8570
+
8571
+ Started GET "/" for 127.0.0.1 at 2013-02-11 22:57:02 -0200
8572
+ Connecting to database specified by database.yml
8573
+
8574
+ ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
8575
+ activerecord (3.2.11) lib/active_record/connection_adapters/abstract/connection_pool.rb:410:in `retrieve_connection'
8576
+ activerecord (3.2.11) lib/active_record/connection_adapters/abstract/connection_specification.rb:171:in `retrieve_connection'
8577
+ activerecord (3.2.11) lib/active_record/connection_adapters/abstract/connection_specification.rb:145:in `connection'
8578
+ activerecord (3.2.11) lib/active_record/query_cache.rb:67:in `rescue in call'
8579
+ activerecord (3.2.11) lib/active_record/query_cache.rb:61:in `call'
8580
+ activerecord (3.2.11) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
8581
+ actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
8582
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `_run__4388578452555931029__call__2694273033028961039__callbacks'
8583
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
8584
+ activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
8585
+ activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
8586
+ actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
8587
+ actionpack (3.2.11) lib/action_dispatch/middleware/reloader.rb:65:in `call'
8588
+ actionpack (3.2.11) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
8589
+ actionpack (3.2.11) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
8590
+ actionpack (3.2.11) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
8591
+ railties (3.2.11) lib/rails/rack/logger.rb:32:in `call_app'
8592
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `block in call'
8593
+ activesupport (3.2.11) lib/active_support/tagged_logging.rb:22:in `tagged'
8594
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `call'
8595
+ actionpack (3.2.11) lib/action_dispatch/middleware/request_id.rb:22:in `call'
8596
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
8597
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
8598
+ activesupport (3.2.11) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
8599
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
8600
+ actionpack (3.2.11) lib/action_dispatch/middleware/static.rb:62:in `call'
8601
+ railties (3.2.11) lib/rails/engine.rb:479:in `call'
8602
+ railties (3.2.11) lib/rails/application.rb:223:in `call'
8603
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
8604
+ railties (3.2.11) lib/rails/rack/log_tailer.rb:17:in `call'
8605
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
8606
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
8607
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
8608
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
8609
+
8610
+
8611
+ Rendered /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
8612
+ Rendered /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.0ms)
8613
+ Rendered /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (44.3ms)
8614
+
8615
+
8616
+ Started GET "/cielo_assets" for 127.0.0.1 at 2013-02-11 22:57:12 -0200
8617
+
8618
+ ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
8619
+ activerecord (3.2.11) lib/active_record/connection_adapters/abstract/connection_pool.rb:410:in `retrieve_connection'
8620
+ activerecord (3.2.11) lib/active_record/connection_adapters/abstract/connection_specification.rb:171:in `retrieve_connection'
8621
+ activerecord (3.2.11) lib/active_record/connection_adapters/abstract/connection_specification.rb:145:in `connection'
8622
+ activerecord (3.2.11) lib/active_record/query_cache.rb:67:in `rescue in call'
8623
+ activerecord (3.2.11) lib/active_record/query_cache.rb:61:in `call'
8624
+ activerecord (3.2.11) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
8625
+ actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
8626
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `_run__4388578452555931029__call__2694273033028961039__callbacks'
8627
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
8628
+ activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
8629
+ activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
8630
+ actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
8631
+ actionpack (3.2.11) lib/action_dispatch/middleware/reloader.rb:65:in `call'
8632
+ actionpack (3.2.11) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
8633
+ actionpack (3.2.11) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
8634
+ actionpack (3.2.11) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
8635
+ railties (3.2.11) lib/rails/rack/logger.rb:32:in `call_app'
8636
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `block in call'
8637
+ activesupport (3.2.11) lib/active_support/tagged_logging.rb:22:in `tagged'
8638
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `call'
8639
+ actionpack (3.2.11) lib/action_dispatch/middleware/request_id.rb:22:in `call'
8640
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
8641
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
8642
+ activesupport (3.2.11) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
8643
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
8644
+ actionpack (3.2.11) lib/action_dispatch/middleware/static.rb:62:in `call'
8645
+ railties (3.2.11) lib/rails/engine.rb:479:in `call'
8646
+ railties (3.2.11) lib/rails/application.rb:223:in `call'
8647
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
8648
+ railties (3.2.11) lib/rails/rack/log_tailer.rb:17:in `call'
8649
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
8650
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
8651
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
8652
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
8653
+
8654
+
8655
+ Rendered /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms)
8656
+ Rendered /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
8657
+ Rendered /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (8.0ms)
8658
+
8659
+
8660
+ Started GET "/cielo_assets" for 127.0.0.1 at 2013-02-11 23:00:44 -0200
8661
+ Connecting to database specified by database.yml
8662
+
8663
+ ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
8664
+ activerecord (3.2.11) lib/active_record/connection_adapters/abstract/connection_pool.rb:410:in `retrieve_connection'
8665
+ activerecord (3.2.11) lib/active_record/connection_adapters/abstract/connection_specification.rb:171:in `retrieve_connection'
8666
+ activerecord (3.2.11) lib/active_record/connection_adapters/abstract/connection_specification.rb:145:in `connection'
8667
+ activerecord (3.2.11) lib/active_record/query_cache.rb:67:in `rescue in call'
8668
+ activerecord (3.2.11) lib/active_record/query_cache.rb:61:in `call'
8669
+ activerecord (3.2.11) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
8670
+ actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
8671
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `_run__3474600814048700595__call__2256189167118391808__callbacks'
8672
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
8673
+ activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
8674
+ activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
8675
+ actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
8676
+ actionpack (3.2.11) lib/action_dispatch/middleware/reloader.rb:65:in `call'
8677
+ actionpack (3.2.11) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
8678
+ actionpack (3.2.11) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
8679
+ actionpack (3.2.11) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
8680
+ railties (3.2.11) lib/rails/rack/logger.rb:32:in `call_app'
8681
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `block in call'
8682
+ activesupport (3.2.11) lib/active_support/tagged_logging.rb:22:in `tagged'
8683
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `call'
8684
+ actionpack (3.2.11) lib/action_dispatch/middleware/request_id.rb:22:in `call'
8685
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
8686
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
8687
+ activesupport (3.2.11) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
8688
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
8689
+ actionpack (3.2.11) lib/action_dispatch/middleware/static.rb:62:in `call'
8690
+ railties (3.2.11) lib/rails/engine.rb:479:in `call'
8691
+ railties (3.2.11) lib/rails/application.rb:223:in `call'
8692
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
8693
+ railties (3.2.11) lib/rails/rack/log_tailer.rb:17:in `call'
8694
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
8695
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
8696
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
8697
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
8698
+
8699
+
8700
+ Rendered /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
8701
+ Rendered /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.8ms)
8702
+ Rendered /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (8.2ms)
8703
+
8704
+
8705
+ Started GET "/" for 127.0.0.1 at 2013-02-11 23:01:36 -0200
8706
+
8707
+ ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
8708
+ activerecord (3.2.11) lib/active_record/connection_adapters/abstract/connection_pool.rb:410:in `retrieve_connection'
8709
+ activerecord (3.2.11) lib/active_record/connection_adapters/abstract/connection_specification.rb:171:in `retrieve_connection'
8710
+ activerecord (3.2.11) lib/active_record/connection_adapters/abstract/connection_specification.rb:145:in `connection'
8711
+ activerecord (3.2.11) lib/active_record/query_cache.rb:67:in `rescue in call'
8712
+ activerecord (3.2.11) lib/active_record/query_cache.rb:61:in `call'
8713
+ activerecord (3.2.11) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
8714
+ actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
8715
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `_run__3474600814048700595__call__2256189167118391808__callbacks'
8716
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
8717
+ activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
8718
+ activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
8719
+ actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
8720
+ actionpack (3.2.11) lib/action_dispatch/middleware/reloader.rb:65:in `call'
8721
+ actionpack (3.2.11) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
8722
+ actionpack (3.2.11) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
8723
+ actionpack (3.2.11) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
8724
+ railties (3.2.11) lib/rails/rack/logger.rb:32:in `call_app'
8725
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `block in call'
8726
+ activesupport (3.2.11) lib/active_support/tagged_logging.rb:22:in `tagged'
8727
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `call'
8728
+ actionpack (3.2.11) lib/action_dispatch/middleware/request_id.rb:22:in `call'
8729
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
8730
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
8731
+ activesupport (3.2.11) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
8732
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
8733
+ actionpack (3.2.11) lib/action_dispatch/middleware/static.rb:62:in `call'
8734
+ railties (3.2.11) lib/rails/engine.rb:479:in `call'
8735
+ railties (3.2.11) lib/rails/application.rb:223:in `call'
8736
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
8737
+ railties (3.2.11) lib/rails/rack/log_tailer.rb:17:in `call'
8738
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
8739
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
8740
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
8741
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
8742
+
8743
+
8744
+ Rendered /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
8745
+ Rendered /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
8746
+ Rendered /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.4ms)
8747
+
8748
+
8749
+ Started GET "/" for 127.0.0.1 at 2013-02-11 23:01:41 -0200
8750
+
8751
+ ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
8752
+ activerecord (3.2.11) lib/active_record/connection_adapters/abstract/connection_pool.rb:410:in `retrieve_connection'
8753
+ activerecord (3.2.11) lib/active_record/connection_adapters/abstract/connection_specification.rb:171:in `retrieve_connection'
8754
+ activerecord (3.2.11) lib/active_record/connection_adapters/abstract/connection_specification.rb:145:in `connection'
8755
+ activerecord (3.2.11) lib/active_record/query_cache.rb:67:in `rescue in call'
8756
+ activerecord (3.2.11) lib/active_record/query_cache.rb:61:in `call'
8757
+ activerecord (3.2.11) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
8758
+ actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
8759
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `_run__3474600814048700595__call__2256189167118391808__callbacks'
8760
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
8761
+ activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
8762
+ activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
8763
+ actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
8764
+ actionpack (3.2.11) lib/action_dispatch/middleware/reloader.rb:65:in `call'
8765
+ actionpack (3.2.11) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
8766
+ actionpack (3.2.11) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
8767
+ actionpack (3.2.11) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
8768
+ railties (3.2.11) lib/rails/rack/logger.rb:32:in `call_app'
8769
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `block in call'
8770
+ activesupport (3.2.11) lib/active_support/tagged_logging.rb:22:in `tagged'
8771
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `call'
8772
+ actionpack (3.2.11) lib/action_dispatch/middleware/request_id.rb:22:in `call'
8773
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
8774
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
8775
+ activesupport (3.2.11) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
8776
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
8777
+ actionpack (3.2.11) lib/action_dispatch/middleware/static.rb:62:in `call'
8778
+ railties (3.2.11) lib/rails/engine.rb:479:in `call'
8779
+ railties (3.2.11) lib/rails/application.rb:223:in `call'
8780
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
8781
+ railties (3.2.11) lib/rails/rack/log_tailer.rb:17:in `call'
8782
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
8783
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
8784
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
8785
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
8786
+
8787
+
8788
+ Rendered /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
8789
+ Rendered /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
8790
+ Rendered /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (6.3ms)
8791
+
8792
+
8793
+ Started GET "/" for 127.0.0.1 at 2013-02-11 23:02:20 -0200
8794
+ Connecting to database specified by database.yml
8795
+
8796
+ ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
8797
+ activerecord (3.2.11) lib/active_record/connection_adapters/abstract/connection_pool.rb:410:in `retrieve_connection'
8798
+ activerecord (3.2.11) lib/active_record/connection_adapters/abstract/connection_specification.rb:171:in `retrieve_connection'
8799
+ activerecord (3.2.11) lib/active_record/connection_adapters/abstract/connection_specification.rb:145:in `connection'
8800
+ activerecord (3.2.11) lib/active_record/query_cache.rb:67:in `rescue in call'
8801
+ activerecord (3.2.11) lib/active_record/query_cache.rb:61:in `call'
8802
+ activerecord (3.2.11) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
8803
+ actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
8804
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `_run__2992828361307007380__call__2489132188384638016__callbacks'
8805
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
8806
+ activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
8807
+ activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
8808
+ actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
8809
+ actionpack (3.2.11) lib/action_dispatch/middleware/reloader.rb:65:in `call'
8810
+ actionpack (3.2.11) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
8811
+ actionpack (3.2.11) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
8812
+ actionpack (3.2.11) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
8813
+ railties (3.2.11) lib/rails/rack/logger.rb:32:in `call_app'
8814
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `block in call'
8815
+ activesupport (3.2.11) lib/active_support/tagged_logging.rb:22:in `tagged'
8816
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `call'
8817
+ actionpack (3.2.11) lib/action_dispatch/middleware/request_id.rb:22:in `call'
8818
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
8819
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
8820
+ activesupport (3.2.11) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
8821
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
8822
+ actionpack (3.2.11) lib/action_dispatch/middleware/static.rb:62:in `call'
8823
+ railties (3.2.11) lib/rails/engine.rb:479:in `call'
8824
+ railties (3.2.11) lib/rails/application.rb:223:in `call'
8825
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
8826
+ railties (3.2.11) lib/rails/rack/log_tailer.rb:17:in `call'
8827
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
8828
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
8829
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
8830
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
8831
+
8832
+
8833
+ Rendered /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
8834
+ Rendered /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.7ms)
8835
+ Rendered /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.9ms)
8836
+
8837
+
8838
+ Started GET "/" for 127.0.0.1 at 2013-02-11 23:02:43 -0200
8839
+ Connecting to database specified by database.yml
8840
+
8841
+ ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
8842
+ activerecord (3.2.11) lib/active_record/connection_adapters/abstract/connection_pool.rb:410:in `retrieve_connection'
8843
+ activerecord (3.2.11) lib/active_record/connection_adapters/abstract/connection_specification.rb:171:in `retrieve_connection'
8844
+ activerecord (3.2.11) lib/active_record/connection_adapters/abstract/connection_specification.rb:145:in `connection'
8845
+ activerecord (3.2.11) lib/active_record/query_cache.rb:67:in `rescue in call'
8846
+ activerecord (3.2.11) lib/active_record/query_cache.rb:61:in `call'
8847
+ activerecord (3.2.11) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
8848
+ actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
8849
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `_run__3020165979092922498__call__3136226797338495258__callbacks'
8850
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
8851
+ activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
8852
+ activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
8853
+ actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
8854
+ actionpack (3.2.11) lib/action_dispatch/middleware/reloader.rb:65:in `call'
8855
+ actionpack (3.2.11) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
8856
+ actionpack (3.2.11) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
8857
+ actionpack (3.2.11) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
8858
+ railties (3.2.11) lib/rails/rack/logger.rb:32:in `call_app'
8859
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `block in call'
8860
+ activesupport (3.2.11) lib/active_support/tagged_logging.rb:22:in `tagged'
8861
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `call'
8862
+ actionpack (3.2.11) lib/action_dispatch/middleware/request_id.rb:22:in `call'
8863
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
8864
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
8865
+ activesupport (3.2.11) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
8866
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
8867
+ actionpack (3.2.11) lib/action_dispatch/middleware/static.rb:62:in `call'
8868
+ railties (3.2.11) lib/rails/engine.rb:479:in `call'
8869
+ railties (3.2.11) lib/rails/application.rb:223:in `call'
8870
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
8871
+ railties (3.2.11) lib/rails/rack/log_tailer.rb:17:in `call'
8872
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
8873
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
8874
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
8875
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
8876
+
8877
+
8878
+ Rendered /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
8879
+ Rendered /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.2ms)
8880
+ Rendered /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (8.0ms)
8881
+
8882
+
8883
+ Started GET "/" for 127.0.0.1 at 2013-02-11 23:22:30 -0200
8884
+ Connecting to database specified by database.yml
8885
+
8886
+ ActionController::RoutingError (No route matches [GET] "/"):
8887
+ actionpack (3.2.11) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
8888
+ actionpack (3.2.11) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
8889
+ railties (3.2.11) lib/rails/rack/logger.rb:32:in `call_app'
8890
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `block in call'
8891
+ activesupport (3.2.11) lib/active_support/tagged_logging.rb:22:in `tagged'
8892
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `call'
8893
+ actionpack (3.2.11) lib/action_dispatch/middleware/request_id.rb:22:in `call'
8894
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
8895
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
8896
+ activesupport (3.2.11) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
8897
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
8898
+ actionpack (3.2.11) lib/action_dispatch/middleware/static.rb:62:in `call'
8899
+ railties (3.2.11) lib/rails/engine.rb:479:in `call'
8900
+ railties (3.2.11) lib/rails/application.rb:223:in `call'
8901
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
8902
+ railties (3.2.11) lib/rails/rack/log_tailer.rb:17:in `call'
8903
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
8904
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
8905
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
8906
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
8907
+
8908
+
8909
+ Rendered /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.2ms)
8910
+
8911
+
8912
+ Started GET "/cielo_assets" for 127.0.0.1 at 2013-02-11 23:22:35 -0200
8913
+ Processing by CieloAssets::SampleController#index as HTML
8914
+ Rendered /Users/fabio/workspace/miranti/cielo_assets/app/views/cielo_assets/sample/index.html.erb within layouts/cielo_assets/application (48.1ms)
8915
+ Completed 500 Internal Server Error in 65ms
8916
+
8917
+ ActionView::Template::Error (wrong number of arguments (3 for 2)):
8918
+ 9: </style>
8919
+ 10: <form>
8920
+ 11: <h1>Vertical</h1>
8921
+ 12: <%= cielo_controls :object_name, 'field[0]', style: :vertical %>
8922
+ 13: <%= submit_tag %>
8923
+ 14: </form>
8924
+ 15: <form>
8925
+ /Users/fabio/workspace/miranti/cielo_assets/app/helpers/cielo_assets/form_helper.rb:3:in `cielo_controls'
8926
+ /Users/fabio/workspace/miranti/cielo_assets/app/views/cielo_assets/sample/index.html.erb:12:in `___sers_fabio_workspace_miranti_cielo_assets_app_views_cielo_assets_sample_index_html_erb___4219769156345192305_70207106060140'
8927
+ actionpack (3.2.11) lib/action_view/template.rb:145:in `block in render'
8928
+ activesupport (3.2.11) lib/active_support/notifications.rb:125:in `instrument'
8929
+ actionpack (3.2.11) lib/action_view/template.rb:143:in `render'
8930
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
8931
+ actionpack (3.2.11) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
8932
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `block in instrument'
8933
+ activesupport (3.2.11) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
8934
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `instrument'
8935
+ actionpack (3.2.11) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
8936
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
8937
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
8938
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
8939
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:18:in `render'
8940
+ actionpack (3.2.11) lib/action_view/renderer/renderer.rb:36:in `render_template'
8941
+ actionpack (3.2.11) lib/action_view/renderer/renderer.rb:17:in `render'
8942
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:110:in `_render_template'
8943
+ actionpack (3.2.11) lib/action_controller/metal/streaming.rb:225:in `_render_template'
8944
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:103:in `render_to_body'
8945
+ actionpack (3.2.11) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
8946
+ actionpack (3.2.11) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
8947
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:88:in `render'
8948
+ actionpack (3.2.11) lib/action_controller/metal/rendering.rb:16:in `render'
8949
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
8950
+ activesupport (3.2.11) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
8951
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
8952
+ activesupport (3.2.11) lib/active_support/core_ext/benchmark.rb:5:in `ms'
8953
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
8954
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
8955
+ activerecord (3.2.11) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
8956
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:39:in `render'
8957
+ actionpack (3.2.11) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
8958
+ actionpack (3.2.11) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
8959
+ actionpack (3.2.11) lib/abstract_controller/base.rb:167:in `process_action'
8960
+ actionpack (3.2.11) lib/action_controller/metal/rendering.rb:10:in `process_action'
8961
+ actionpack (3.2.11) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
8962
+ activesupport (3.2.11) lib/active_support/callbacks.rb:403:in `_run__584313183895200974__process_action__4243614863231120515__callbacks'
8963
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
8964
+ activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
8965
+ activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
8966
+ actionpack (3.2.11) lib/abstract_controller/callbacks.rb:17:in `process_action'
8967
+ actionpack (3.2.11) lib/action_controller/metal/rescue.rb:29:in `process_action'
8968
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
8969
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `block in instrument'
8970
+ activesupport (3.2.11) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
8971
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `instrument'
8972
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
8973
+ actionpack (3.2.11) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
8974
+ activerecord (3.2.11) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
8975
+ actionpack (3.2.11) lib/abstract_controller/base.rb:121:in `process'
8976
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:45:in `process'
8977
+ actionpack (3.2.11) lib/action_controller/metal.rb:203:in `dispatch'
8978
+ actionpack (3.2.11) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
8979
+ actionpack (3.2.11) lib/action_controller/metal.rb:246:in `block in action'
8980
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:73:in `call'
8981
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
8982
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:36:in `call'
8983
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
8984
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
8985
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
8986
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:601:in `call'
8987
+ railties (3.2.11) lib/rails/engine.rb:479:in `call'
8988
+ railties (3.2.11) lib/rails/railtie/configurable.rb:30:in `method_missing'
8989
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
8990
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
8991
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
8992
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:601:in `call'
8993
+ actionpack (3.2.11) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
8994
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
8995
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
8996
+ actionpack (3.2.11) lib/action_dispatch/middleware/head.rb:14:in `call'
8997
+ actionpack (3.2.11) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
8998
+ actionpack (3.2.11) lib/action_dispatch/middleware/flash.rb:242:in `call'
8999
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
9000
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
9001
+ actionpack (3.2.11) lib/action_dispatch/middleware/cookies.rb:341:in `call'
9002
+ activerecord (3.2.11) lib/active_record/query_cache.rb:64:in `call'
9003
+ activerecord (3.2.11) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
9004
+ actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
9005
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `_run__967312624906708592__call__3177457420955587889__callbacks'
9006
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
9007
+ activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
9008
+ activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
9009
+ actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
9010
+ actionpack (3.2.11) lib/action_dispatch/middleware/reloader.rb:65:in `call'
9011
+ actionpack (3.2.11) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
9012
+ actionpack (3.2.11) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
9013
+ actionpack (3.2.11) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
9014
+ railties (3.2.11) lib/rails/rack/logger.rb:32:in `call_app'
9015
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `block in call'
9016
+ activesupport (3.2.11) lib/active_support/tagged_logging.rb:22:in `tagged'
9017
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `call'
9018
+ actionpack (3.2.11) lib/action_dispatch/middleware/request_id.rb:22:in `call'
9019
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
9020
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
9021
+ activesupport (3.2.11) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
9022
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
9023
+ actionpack (3.2.11) lib/action_dispatch/middleware/static.rb:62:in `call'
9024
+ railties (3.2.11) lib/rails/engine.rb:479:in `call'
9025
+ railties (3.2.11) lib/rails/application.rb:223:in `call'
9026
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
9027
+ railties (3.2.11) lib/rails/rack/log_tailer.rb:17:in `call'
9028
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
9029
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
9030
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
9031
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
9032
+
9033
+
9034
+ Rendered /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
9035
+ Rendered /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
9036
+ Rendered /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (42.6ms)
9037
+
9038
+
9039
+ Started GET "/cielo_assets" for 127.0.0.1 at 2013-02-11 23:23:18 -0200
9040
+ Processing by CieloAssets::SampleController#index as HTML
9041
+ Rendered /Users/fabio/workspace/miranti/cielo_assets/app/views/cielo_assets/sample/index.html.erb within layouts/cielo_assets/application (0.6ms)
9042
+ Completed 500 Internal Server Error in 2ms
9043
+
9044
+ ActionView::Template::Error (wrong number of arguments (3 for 2)):
9045
+ 9: </style>
9046
+ 10: <form>
9047
+ 11: <h1>Vertical</h1>
9048
+ 12: <%= cielo_controls :object_name, 'field[0]', style: :vertical %>
9049
+ 13: <%= submit_tag %>
9050
+ 14: </form>
9051
+ 15: <form>
9052
+ /Users/fabio/workspace/miranti/cielo_assets/app/helpers/cielo_assets/form_helper.rb:3:in `cielo_controls'
9053
+ /Users/fabio/workspace/miranti/cielo_assets/app/views/cielo_assets/sample/index.html.erb:12:in `___sers_fabio_workspace_miranti_cielo_assets_app_views_cielo_assets_sample_index_html_erb___4219769156345192305_70207106060140'
9054
+ actionpack (3.2.11) lib/action_view/template.rb:145:in `block in render'
9055
+ activesupport (3.2.11) lib/active_support/notifications.rb:125:in `instrument'
9056
+ actionpack (3.2.11) lib/action_view/template.rb:143:in `render'
9057
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
9058
+ actionpack (3.2.11) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
9059
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `block in instrument'
9060
+ activesupport (3.2.11) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
9061
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `instrument'
9062
+ actionpack (3.2.11) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
9063
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
9064
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
9065
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
9066
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:18:in `render'
9067
+ actionpack (3.2.11) lib/action_view/renderer/renderer.rb:36:in `render_template'
9068
+ actionpack (3.2.11) lib/action_view/renderer/renderer.rb:17:in `render'
9069
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:110:in `_render_template'
9070
+ actionpack (3.2.11) lib/action_controller/metal/streaming.rb:225:in `_render_template'
9071
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:103:in `render_to_body'
9072
+ actionpack (3.2.11) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
9073
+ actionpack (3.2.11) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
9074
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:88:in `render'
9075
+ actionpack (3.2.11) lib/action_controller/metal/rendering.rb:16:in `render'
9076
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
9077
+ activesupport (3.2.11) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
9078
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
9079
+ activesupport (3.2.11) lib/active_support/core_ext/benchmark.rb:5:in `ms'
9080
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
9081
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
9082
+ activerecord (3.2.11) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
9083
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:39:in `render'
9084
+ actionpack (3.2.11) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
9085
+ actionpack (3.2.11) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
9086
+ actionpack (3.2.11) lib/abstract_controller/base.rb:167:in `process_action'
9087
+ actionpack (3.2.11) lib/action_controller/metal/rendering.rb:10:in `process_action'
9088
+ actionpack (3.2.11) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
9089
+ activesupport (3.2.11) lib/active_support/callbacks.rb:403:in `_run__584313183895200974__process_action__4243614863231120515__callbacks'
9090
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
9091
+ activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
9092
+ activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
9093
+ actionpack (3.2.11) lib/abstract_controller/callbacks.rb:17:in `process_action'
9094
+ actionpack (3.2.11) lib/action_controller/metal/rescue.rb:29:in `process_action'
9095
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
9096
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `block in instrument'
9097
+ activesupport (3.2.11) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
9098
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `instrument'
9099
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
9100
+ actionpack (3.2.11) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
9101
+ activerecord (3.2.11) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
9102
+ actionpack (3.2.11) lib/abstract_controller/base.rb:121:in `process'
9103
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:45:in `process'
9104
+ actionpack (3.2.11) lib/action_controller/metal.rb:203:in `dispatch'
9105
+ actionpack (3.2.11) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
9106
+ actionpack (3.2.11) lib/action_controller/metal.rb:246:in `block in action'
9107
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:73:in `call'
9108
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
9109
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:36:in `call'
9110
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
9111
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
9112
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
9113
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:601:in `call'
9114
+ railties (3.2.11) lib/rails/engine.rb:479:in `call'
9115
+ railties (3.2.11) lib/rails/railtie/configurable.rb:30:in `method_missing'
9116
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
9117
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
9118
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
9119
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:601:in `call'
9120
+ actionpack (3.2.11) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
9121
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
9122
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
9123
+ actionpack (3.2.11) lib/action_dispatch/middleware/head.rb:14:in `call'
9124
+ actionpack (3.2.11) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
9125
+ actionpack (3.2.11) lib/action_dispatch/middleware/flash.rb:242:in `call'
9126
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
9127
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
9128
+ actionpack (3.2.11) lib/action_dispatch/middleware/cookies.rb:341:in `call'
9129
+ activerecord (3.2.11) lib/active_record/query_cache.rb:64:in `call'
9130
+ activerecord (3.2.11) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
9131
+ actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
9132
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `_run__967312624906708592__call__3177457420955587889__callbacks'
9133
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
9134
+ activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
9135
+ activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
9136
+ actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
9137
+ actionpack (3.2.11) lib/action_dispatch/middleware/reloader.rb:65:in `call'
9138
+ actionpack (3.2.11) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
9139
+ actionpack (3.2.11) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
9140
+ actionpack (3.2.11) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
9141
+ railties (3.2.11) lib/rails/rack/logger.rb:32:in `call_app'
9142
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `block in call'
9143
+ activesupport (3.2.11) lib/active_support/tagged_logging.rb:22:in `tagged'
9144
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `call'
9145
+ actionpack (3.2.11) lib/action_dispatch/middleware/request_id.rb:22:in `call'
9146
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
9147
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
9148
+ activesupport (3.2.11) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
9149
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
9150
+ actionpack (3.2.11) lib/action_dispatch/middleware/static.rb:62:in `call'
9151
+ railties (3.2.11) lib/rails/engine.rb:479:in `call'
9152
+ railties (3.2.11) lib/rails/application.rb:223:in `call'
9153
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
9154
+ railties (3.2.11) lib/rails/rack/log_tailer.rb:17:in `call'
9155
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
9156
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
9157
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
9158
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
9159
+
9160
+
9161
+ Rendered /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
9162
+ Rendered /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
9163
+ Rendered /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.7ms)
9164
+
9165
+
9166
+ Started GET "/cielo_assets" for 127.0.0.1 at 2013-02-11 23:23:22 -0200
9167
+ Processing by CieloAssets::SampleController#index as HTML
9168
+ Rendered /Users/fabio/workspace/miranti/cielo_assets/app/views/cielo_assets/sample/index.html.erb within layouts/cielo_assets/application (0.6ms)
9169
+ Completed 500 Internal Server Error in 3ms
9170
+
9171
+ ActionView::Template::Error (wrong number of arguments (3 for 2)):
9172
+ 9: </style>
9173
+ 10: <form>
9174
+ 11: <h1>Vertical</h1>
9175
+ 12: <%= cielo_controls :object_name, 'field[0]', style: :vertical %>
9176
+ 13: <%= submit_tag %>
9177
+ 14: </form>
9178
+ 15: <form>
9179
+ /Users/fabio/workspace/miranti/cielo_assets/app/helpers/cielo_assets/form_helper.rb:3:in `cielo_controls'
9180
+ /Users/fabio/workspace/miranti/cielo_assets/app/views/cielo_assets/sample/index.html.erb:12:in `___sers_fabio_workspace_miranti_cielo_assets_app_views_cielo_assets_sample_index_html_erb___4219769156345192305_70207106060140'
9181
+ actionpack (3.2.11) lib/action_view/template.rb:145:in `block in render'
9182
+ activesupport (3.2.11) lib/active_support/notifications.rb:125:in `instrument'
9183
+ actionpack (3.2.11) lib/action_view/template.rb:143:in `render'
9184
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
9185
+ actionpack (3.2.11) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
9186
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `block in instrument'
9187
+ activesupport (3.2.11) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
9188
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `instrument'
9189
+ actionpack (3.2.11) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
9190
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
9191
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
9192
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
9193
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:18:in `render'
9194
+ actionpack (3.2.11) lib/action_view/renderer/renderer.rb:36:in `render_template'
9195
+ actionpack (3.2.11) lib/action_view/renderer/renderer.rb:17:in `render'
9196
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:110:in `_render_template'
9197
+ actionpack (3.2.11) lib/action_controller/metal/streaming.rb:225:in `_render_template'
9198
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:103:in `render_to_body'
9199
+ actionpack (3.2.11) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
9200
+ actionpack (3.2.11) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
9201
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:88:in `render'
9202
+ actionpack (3.2.11) lib/action_controller/metal/rendering.rb:16:in `render'
9203
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
9204
+ activesupport (3.2.11) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
9205
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
9206
+ activesupport (3.2.11) lib/active_support/core_ext/benchmark.rb:5:in `ms'
9207
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
9208
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
9209
+ activerecord (3.2.11) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
9210
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:39:in `render'
9211
+ actionpack (3.2.11) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
9212
+ actionpack (3.2.11) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
9213
+ actionpack (3.2.11) lib/abstract_controller/base.rb:167:in `process_action'
9214
+ actionpack (3.2.11) lib/action_controller/metal/rendering.rb:10:in `process_action'
9215
+ actionpack (3.2.11) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
9216
+ activesupport (3.2.11) lib/active_support/callbacks.rb:403:in `_run__584313183895200974__process_action__4243614863231120515__callbacks'
9217
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
9218
+ activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
9219
+ activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
9220
+ actionpack (3.2.11) lib/abstract_controller/callbacks.rb:17:in `process_action'
9221
+ actionpack (3.2.11) lib/action_controller/metal/rescue.rb:29:in `process_action'
9222
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
9223
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `block in instrument'
9224
+ activesupport (3.2.11) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
9225
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `instrument'
9226
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
9227
+ actionpack (3.2.11) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
9228
+ activerecord (3.2.11) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
9229
+ actionpack (3.2.11) lib/abstract_controller/base.rb:121:in `process'
9230
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:45:in `process'
9231
+ actionpack (3.2.11) lib/action_controller/metal.rb:203:in `dispatch'
9232
+ actionpack (3.2.11) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
9233
+ actionpack (3.2.11) lib/action_controller/metal.rb:246:in `block in action'
9234
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:73:in `call'
9235
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
9236
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:36:in `call'
9237
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
9238
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
9239
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
9240
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:601:in `call'
9241
+ railties (3.2.11) lib/rails/engine.rb:479:in `call'
9242
+ railties (3.2.11) lib/rails/railtie/configurable.rb:30:in `method_missing'
9243
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
9244
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
9245
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
9246
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:601:in `call'
9247
+ actionpack (3.2.11) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
9248
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
9249
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
9250
+ actionpack (3.2.11) lib/action_dispatch/middleware/head.rb:14:in `call'
9251
+ actionpack (3.2.11) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
9252
+ actionpack (3.2.11) lib/action_dispatch/middleware/flash.rb:242:in `call'
9253
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
9254
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
9255
+ actionpack (3.2.11) lib/action_dispatch/middleware/cookies.rb:341:in `call'
9256
+ activerecord (3.2.11) lib/active_record/query_cache.rb:64:in `call'
9257
+ activerecord (3.2.11) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
9258
+ actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
9259
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `_run__967312624906708592__call__3177457420955587889__callbacks'
9260
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
9261
+ activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
9262
+ activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
9263
+ actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
9264
+ actionpack (3.2.11) lib/action_dispatch/middleware/reloader.rb:65:in `call'
9265
+ actionpack (3.2.11) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
9266
+ actionpack (3.2.11) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
9267
+ actionpack (3.2.11) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
9268
+ railties (3.2.11) lib/rails/rack/logger.rb:32:in `call_app'
9269
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `block in call'
9270
+ activesupport (3.2.11) lib/active_support/tagged_logging.rb:22:in `tagged'
9271
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `call'
9272
+ actionpack (3.2.11) lib/action_dispatch/middleware/request_id.rb:22:in `call'
9273
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
9274
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
9275
+ activesupport (3.2.11) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
9276
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
9277
+ actionpack (3.2.11) lib/action_dispatch/middleware/static.rb:62:in `call'
9278
+ railties (3.2.11) lib/rails/engine.rb:479:in `call'
9279
+ railties (3.2.11) lib/rails/application.rb:223:in `call'
9280
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
9281
+ railties (3.2.11) lib/rails/rack/log_tailer.rb:17:in `call'
9282
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
9283
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
9284
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
9285
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
9286
+
9287
+
9288
+ Rendered /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
9289
+ Rendered /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
9290
+ Rendered /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.1ms)
9291
+
9292
+
9293
+ Started GET "/cielo_assets" for 127.0.0.1 at 2013-02-11 23:23:33 -0200
9294
+ Connecting to database specified by database.yml
9295
+ Processing by CieloAssets::SampleController#index as HTML
9296
+ Rendered /Users/fabio/workspace/miranti/cielo_assets/app/views/cielo_assets/sample/index.html.erb within layouts/cielo_assets/application (7.3ms)
9297
+ Completed 500 Internal Server Error in 15ms
9298
+
9299
+ ActionView::Template::Error (undefined local variable or method `option' for #<#<Class:0x007f8371a36118>:0x007f8371aa7408>):
9300
+ 9: </style>
9301
+ 10: <form>
9302
+ 11: <h1>Vertical</h1>
9303
+ 12: <%= cielo_controls :object_name, 'field[0]', style: :vertical %>
9304
+ 13: <%= submit_tag %>
9305
+ 14: </form>
9306
+ 15: <form>
9307
+ /Users/fabio/workspace/miranti/cielo_assets/app/helpers/cielo_assets/form_helper.rb:4:in `cielo_controls'
9308
+ /Users/fabio/workspace/miranti/cielo_assets/app/views/cielo_assets/sample/index.html.erb:12:in `___sers_fabio_workspace_miranti_cielo_assets_app_views_cielo_assets_sample_index_html_erb___3620170295527673596_70101267320600'
9309
+ actionpack (3.2.11) lib/action_view/template.rb:145:in `block in render'
9310
+ activesupport (3.2.11) lib/active_support/notifications.rb:125:in `instrument'
9311
+ actionpack (3.2.11) lib/action_view/template.rb:143:in `render'
9312
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
9313
+ actionpack (3.2.11) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
9314
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `block in instrument'
9315
+ activesupport (3.2.11) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
9316
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `instrument'
9317
+ actionpack (3.2.11) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
9318
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
9319
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
9320
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
9321
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:18:in `render'
9322
+ actionpack (3.2.11) lib/action_view/renderer/renderer.rb:36:in `render_template'
9323
+ actionpack (3.2.11) lib/action_view/renderer/renderer.rb:17:in `render'
9324
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:110:in `_render_template'
9325
+ actionpack (3.2.11) lib/action_controller/metal/streaming.rb:225:in `_render_template'
9326
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:103:in `render_to_body'
9327
+ actionpack (3.2.11) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
9328
+ actionpack (3.2.11) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
9329
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:88:in `render'
9330
+ actionpack (3.2.11) lib/action_controller/metal/rendering.rb:16:in `render'
9331
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
9332
+ activesupport (3.2.11) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
9333
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
9334
+ activesupport (3.2.11) lib/active_support/core_ext/benchmark.rb:5:in `ms'
9335
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
9336
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
9337
+ activerecord (3.2.11) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
9338
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:39:in `render'
9339
+ actionpack (3.2.11) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
9340
+ actionpack (3.2.11) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
9341
+ actionpack (3.2.11) lib/abstract_controller/base.rb:167:in `process_action'
9342
+ actionpack (3.2.11) lib/action_controller/metal/rendering.rb:10:in `process_action'
9343
+ actionpack (3.2.11) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
9344
+ activesupport (3.2.11) lib/active_support/callbacks.rb:403:in `_run__3611897004936443990__process_action__4269661129317164975__callbacks'
9345
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
9346
+ activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
9347
+ activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
9348
+ actionpack (3.2.11) lib/abstract_controller/callbacks.rb:17:in `process_action'
9349
+ actionpack (3.2.11) lib/action_controller/metal/rescue.rb:29:in `process_action'
9350
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
9351
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `block in instrument'
9352
+ activesupport (3.2.11) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
9353
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `instrument'
9354
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
9355
+ actionpack (3.2.11) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
9356
+ activerecord (3.2.11) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
9357
+ actionpack (3.2.11) lib/abstract_controller/base.rb:121:in `process'
9358
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:45:in `process'
9359
+ actionpack (3.2.11) lib/action_controller/metal.rb:203:in `dispatch'
9360
+ actionpack (3.2.11) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
9361
+ actionpack (3.2.11) lib/action_controller/metal.rb:246:in `block in action'
9362
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:73:in `call'
9363
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
9364
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:36:in `call'
9365
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
9366
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
9367
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
9368
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:601:in `call'
9369
+ railties (3.2.11) lib/rails/engine.rb:479:in `call'
9370
+ railties (3.2.11) lib/rails/railtie/configurable.rb:30:in `method_missing'
9371
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
9372
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
9373
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
9374
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:601:in `call'
9375
+ actionpack (3.2.11) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
9376
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
9377
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
9378
+ actionpack (3.2.11) lib/action_dispatch/middleware/head.rb:14:in `call'
9379
+ actionpack (3.2.11) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
9380
+ actionpack (3.2.11) lib/action_dispatch/middleware/flash.rb:242:in `call'
9381
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
9382
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
9383
+ actionpack (3.2.11) lib/action_dispatch/middleware/cookies.rb:341:in `call'
9384
+ activerecord (3.2.11) lib/active_record/query_cache.rb:64:in `call'
9385
+ activerecord (3.2.11) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
9386
+ actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
9387
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `_run__2507502964156415105__call__1369161385727545967__callbacks'
9388
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
9389
+ activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
9390
+ activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
9391
+ actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
9392
+ actionpack (3.2.11) lib/action_dispatch/middleware/reloader.rb:65:in `call'
9393
+ actionpack (3.2.11) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
9394
+ actionpack (3.2.11) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
9395
+ actionpack (3.2.11) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
9396
+ railties (3.2.11) lib/rails/rack/logger.rb:32:in `call_app'
9397
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `block in call'
9398
+ activesupport (3.2.11) lib/active_support/tagged_logging.rb:22:in `tagged'
9399
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `call'
9400
+ actionpack (3.2.11) lib/action_dispatch/middleware/request_id.rb:22:in `call'
9401
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
9402
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
9403
+ activesupport (3.2.11) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
9404
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
9405
+ actionpack (3.2.11) lib/action_dispatch/middleware/static.rb:62:in `call'
9406
+ railties (3.2.11) lib/rails/engine.rb:479:in `call'
9407
+ railties (3.2.11) lib/rails/application.rb:223:in `call'
9408
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
9409
+ railties (3.2.11) lib/rails/rack/log_tailer.rb:17:in `call'
9410
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
9411
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
9412
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
9413
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
9414
+
9415
+
9416
+ Rendered /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
9417
+ Rendered /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
9418
+ Rendered /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.0ms)
9419
+
9420
+
9421
+ Started GET "/cielo_assets" for 127.0.0.1 at 2013-02-11 23:24:03 -0200
9422
+ Connecting to database specified by database.yml
9423
+ Processing by CieloAssets::SampleController#index as HTML
9424
+ Rendered /Users/fabio/workspace/miranti/cielo_assets/app/views/cielo_assets/sample/index.html.erb within layouts/cielo_assets/application (96.3ms)
9425
+ Compiled cielo_assets/controls.css (301ms) (pid 5184)
9426
+ Compiled cielo_assets.css (1ms) (pid 5184)
9427
+ Completed 200 OK in 550ms (Views: 549.3ms | ActiveRecord: 0.0ms)
9428
+
9429
+
9430
+ Started GET "/assets/cielo_assets/controls.css?body=1" for 127.0.0.1 at 2013-02-11 23:24:04 -0200
9431
+ Served asset /cielo_assets/controls.css - 200 OK (3ms)
9432
+
9433
+
9434
+ Started GET "/assets/cielo_assets.css?body=1" for 127.0.0.1 at 2013-02-11 23:24:04 -0200
9435
+ Served asset /cielo_assets.css - 304 Not Modified (6ms)
9436
+
9437
+
9438
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-02-11 23:24:04 -0200
9439
+ Served asset /jquery.js - 200 OK (1ms)
9440
+
9441
+
9442
+ Started GET "/assets/cielo_assets/controls.js?body=1" for 127.0.0.1 at 2013-02-11 23:24:04 -0200
9443
+ Served asset /cielo_assets/controls.js - 304 Not Modified (2ms)
9444
+
9445
+
9446
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-02-11 23:24:04 -0200
9447
+ Served asset /jquery_ujs.js - 200 OK (1ms)
9448
+
9449
+
9450
+ Started GET "/assets/cielo_assets.js?body=1" for 127.0.0.1 at 2013-02-11 23:24:04 -0200
9451
+ Served asset /cielo_assets.js - 304 Not Modified (4ms)
9452
+
9453
+
9454
+ Started GET "/assets/cielo_assets/amex.png" for 127.0.0.1 at 2013-02-11 23:24:04 -0200
9455
+ Served asset /cielo_assets/amex.png - 304 Not Modified (23ms)
9456
+
9457
+
9458
+ Started GET "/assets/cielo_assets/elo.png" for 127.0.0.1 at 2013-02-11 23:24:04 -0200
9459
+ Served asset /cielo_assets/elo.png - 304 Not Modified (16ms)
9460
+
9461
+
9462
+ Started GET "/assets/cielo_assets/diners.png" for 127.0.0.1 at 2013-02-11 23:24:04 -0200
9463
+ Served asset /cielo_assets/diners.png - 304 Not Modified (17ms)
9464
+
9465
+
9466
+ Started GET "/assets/cielo_assets/mastercard.png" for 127.0.0.1 at 2013-02-11 23:24:04 -0200
9467
+ Served asset /cielo_assets/mastercard.png - 304 Not Modified (15ms)
9468
+
9469
+
9470
+ Started GET "/assets/cielo_assets/verified_by_visa.png" for 127.0.0.1 at 2013-02-11 23:24:04 -0200
9471
+ Served asset /cielo_assets/verified_by_visa.png - 304 Not Modified (7ms)
9472
+
9473
+
9474
+ Started GET "/assets/cielo_assets/mastercard_securecode.png" for 127.0.0.1 at 2013-02-11 23:24:04 -0200
9475
+ Served asset /cielo_assets/mastercard_securecode.png - 304 Not Modified (11ms)
9476
+
9477
+
9478
+ Started GET "/assets/cielo_assets/visa.png" for 127.0.0.1 at 2013-02-11 23:24:04 -0200
9479
+ Served asset /cielo_assets/visa.png - 304 Not Modified (11ms)
9480
+
9481
+
9482
+ Started GET "/cielo_assets" for 127.0.0.1 at 2013-02-11 23:25:43 -0200
9483
+ Processing by CieloAssets::SampleController#index as HTML
9484
+ Rendered /Users/fabio/workspace/miranti/cielo_assets/app/views/cielo_assets/sample/index.html.erb within layouts/cielo_assets/application (3.6ms)
9485
+ Completed 200 OK in 8ms (Views: 7.7ms | ActiveRecord: 0.0ms)
9486
+
9487
+
9488
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-02-11 23:25:43 -0200
9489
+ Served asset /jquery.js - 304 Not Modified (0ms)
9490
+
9491
+
9492
+ Started GET "/assets/cielo_assets.css?body=1" for 127.0.0.1 at 2013-02-11 23:25:43 -0200
9493
+ Served asset /cielo_assets.css - 304 Not Modified (0ms)
9494
+
9495
+
9496
+ Started GET "/assets/cielo_assets/controls.css?body=1" for 127.0.0.1 at 2013-02-11 23:25:43 -0200
9497
+ Served asset /cielo_assets/controls.css - 304 Not Modified (0ms)
9498
+
9499
+
9500
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-02-11 23:25:43 -0200
9501
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
9502
+
9503
+
9504
+ Started GET "/assets/cielo_assets/controls.js?body=1" for 127.0.0.1 at 2013-02-11 23:25:43 -0200
9505
+ Served asset /cielo_assets/controls.js - 304 Not Modified (0ms)
9506
+
9507
+
9508
+ Started GET "/assets/cielo_assets.js?body=1" for 127.0.0.1 at 2013-02-11 23:25:43 -0200
9509
+ Served asset /cielo_assets.js - 304 Not Modified (0ms)
9510
+
9511
+
9512
+ Started GET "/cielo_assets" for 127.0.0.1 at 2013-02-11 23:27:12 -0200
9513
+ Processing by CieloAssets::SampleController#index as HTML
9514
+ Rendered /Users/fabio/workspace/miranti/cielo_assets/app/views/cielo_assets/sample/index.html.erb within layouts/cielo_assets/application (4.3ms)
9515
+ Completed 200 OK in 8ms (Views: 8.0ms | ActiveRecord: 0.0ms)
9516
+
9517
+
9518
+ Started GET "/assets/cielo_assets/controls.css?body=1" for 127.0.0.1 at 2013-02-11 23:27:12 -0200
9519
+ Served asset /cielo_assets/controls.css - 304 Not Modified (0ms)
9520
+
9521
+
9522
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-02-11 23:27:12 -0200
9523
+ Served asset /jquery.js - 304 Not Modified (0ms)
9524
+
9525
+
9526
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-02-11 23:27:12 -0200
9527
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
9528
+
9529
+
9530
+ Started GET "/assets/cielo_assets.css?body=1" for 127.0.0.1 at 2013-02-11 23:27:12 -0200
9531
+ Served asset /cielo_assets.css - 304 Not Modified (0ms)
9532
+
9533
+
9534
+ Started GET "/assets/cielo_assets/controls.js?body=1" for 127.0.0.1 at 2013-02-11 23:27:12 -0200
9535
+ Served asset /cielo_assets/controls.js - 304 Not Modified (0ms)
9536
+
9537
+
9538
+ Started GET "/assets/cielo_assets.js?body=1" for 127.0.0.1 at 2013-02-11 23:27:12 -0200
9539
+ Served asset /cielo_assets.js - 304 Not Modified (0ms)
9540
+
9541
+
9542
+ Started GET "/cielo_assets" for 127.0.0.1 at 2013-02-11 23:27:55 -0200
9543
+ Processing by CieloAssets::SampleController#index as HTML
9544
+ Rendered /Users/fabio/workspace/miranti/cielo_assets/app/views/cielo_assets/sample/index.html.erb within layouts/cielo_assets/application (3.7ms)
9545
+ Completed 200 OK in 8ms (Views: 8.2ms | ActiveRecord: 0.0ms)
9546
+
9547
+
9548
+ Started GET "/assets/cielo_assets.css?body=1" for 127.0.0.1 at 2013-02-11 23:27:55 -0200
9549
+ Served asset /cielo_assets.css - 304 Not Modified (0ms)
9550
+
9551
+
9552
+ Started GET "/assets/cielo_assets/controls.css?body=1" for 127.0.0.1 at 2013-02-11 23:27:55 -0200
9553
+ Served asset /cielo_assets/controls.css - 304 Not Modified (0ms)
9554
+
9555
+
9556
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-02-11 23:27:55 -0200
9557
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
9558
+
9559
+
9560
+ Started GET "/assets/cielo_assets/controls.js?body=1" for 127.0.0.1 at 2013-02-11 23:27:55 -0200
9561
+ Served asset /cielo_assets/controls.js - 304 Not Modified (0ms)
9562
+
9563
+
9564
+ Started GET "/assets/cielo_assets.js?body=1" for 127.0.0.1 at 2013-02-11 23:27:55 -0200
9565
+ Served asset /cielo_assets.js - 304 Not Modified (0ms)
9566
+
9567
+
9568
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-02-11 23:27:55 -0200
9569
+ Served asset /jquery.js - 304 Not Modified (0ms)
9570
+
9571
+
9572
+ Started GET "/cielo_assets" for 127.0.0.1 at 2013-02-11 23:28:42 -0200
9573
+ Processing by CieloAssets::SampleController#index as HTML
9574
+ Rendered /Users/fabio/workspace/miranti/cielo_assets/app/views/cielo_assets/sample/index.html.erb within layouts/cielo_assets/application (3.4ms)
9575
+ Completed 200 OK in 8ms (Views: 7.6ms | ActiveRecord: 0.0ms)
9576
+
9577
+
9578
+ Started GET "/assets/cielo_assets/controls.css?body=1" for 127.0.0.1 at 2013-02-11 23:28:42 -0200
9579
+ Served asset /cielo_assets/controls.css - 304 Not Modified (0ms)
9580
+
9581
+
9582
+ Started GET "/assets/cielo_assets.css?body=1" for 127.0.0.1 at 2013-02-11 23:28:42 -0200
9583
+ Served asset /cielo_assets.css - 304 Not Modified (0ms)
9584
+
9585
+
9586
+ Started GET "/assets/cielo_assets.js?body=1" for 127.0.0.1 at 2013-02-11 23:28:42 -0200
9587
+ Served asset /cielo_assets.js - 304 Not Modified (0ms)
9588
+
9589
+
9590
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-02-11 23:28:42 -0200
9591
+ Served asset /jquery.js - 304 Not Modified (0ms)
9592
+
9593
+
9594
+ Started GET "/assets/cielo_assets/controls.js?body=1" for 127.0.0.1 at 2013-02-11 23:28:42 -0200
9595
+ Served asset /cielo_assets/controls.js - 304 Not Modified (0ms)
9596
+
9597
+
9598
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-02-11 23:28:42 -0200
9599
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
9600
+
9601
+
9602
+ Started GET "/cielo_assets" for 127.0.0.1 at 2013-02-11 23:29:34 -0200
9603
+ Processing by CieloAssets::SampleController#index as HTML
9604
+ Rendered /Users/fabio/workspace/miranti/cielo_assets/app/views/cielo_assets/sample/index.html.erb within layouts/cielo_assets/application (4.9ms)
9605
+ Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.0ms)
9606
+
9607
+
9608
+ Started GET "/assets/cielo_assets/controls.css?body=1" for 127.0.0.1 at 2013-02-11 23:29:34 -0200
9609
+ Served asset /cielo_assets/controls.css - 304 Not Modified (0ms)
9610
+
9611
+
9612
+ Started GET "/assets/cielo_assets.js?body=1" for 127.0.0.1 at 2013-02-11 23:29:34 -0200
9613
+ Served asset /cielo_assets.js - 304 Not Modified (0ms)
9614
+
9615
+
9616
+ Started GET "/assets/cielo_assets/controls.js?body=1" for 127.0.0.1 at 2013-02-11 23:29:34 -0200
9617
+ Served asset /cielo_assets/controls.js - 304 Not Modified (0ms)
9618
+
9619
+
9620
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-02-11 23:29:34 -0200
9621
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
9622
+
9623
+
9624
+ Started GET "/assets/cielo_assets.css?body=1" for 127.0.0.1 at 2013-02-11 23:29:34 -0200
9625
+ Served asset /cielo_assets.css - 304 Not Modified (0ms)
9626
+
9627
+
9628
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-02-11 23:29:34 -0200
9629
+ Served asset /jquery.js - 304 Not Modified (0ms)
9630
+
9631
+
9632
+ Started GET "/cielo_assets" for 127.0.0.1 at 2013-02-11 23:29:53 -0200
9633
+ Processing by CieloAssets::SampleController#index as HTML
9634
+ Rendered /Users/fabio/workspace/miranti/cielo_assets/app/views/cielo_assets/sample/index.html.erb within layouts/cielo_assets/application (3.1ms)
9635
+ Completed 200 OK in 7ms (Views: 7.2ms | ActiveRecord: 0.0ms)
9636
+
9637
+
9638
+ Started GET "/assets/cielo_assets/controls.css?body=1" for 127.0.0.1 at 2013-02-11 23:29:53 -0200
9639
+ Served asset /cielo_assets/controls.css - 304 Not Modified (0ms)
9640
+
9641
+
9642
+ Started GET "/assets/cielo_assets.css?body=1" for 127.0.0.1 at 2013-02-11 23:29:53 -0200
9643
+ Served asset /cielo_assets.css - 304 Not Modified (0ms)
9644
+
9645
+
9646
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-02-11 23:29:53 -0200
9647
+ Served asset /jquery.js - 304 Not Modified (0ms)
9648
+
9649
+
9650
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-02-11 23:29:53 -0200
9651
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
9652
+
9653
+
9654
+ Started GET "/assets/cielo_assets/controls.js?body=1" for 127.0.0.1 at 2013-02-11 23:29:53 -0200
9655
+ Served asset /cielo_assets/controls.js - 304 Not Modified (0ms)
9656
+
9657
+
9658
+ Started GET "/assets/cielo_assets.js?body=1" for 127.0.0.1 at 2013-02-11 23:29:53 -0200
9659
+ Served asset /cielo_assets.js - 304 Not Modified (0ms)
9660
+
9661
+
9662
+ Started GET "/cielo_assets" for 127.0.0.1 at 2013-02-11 23:30:19 -0200
9663
+ Processing by CieloAssets::SampleController#index as HTML
9664
+ Rendered /Users/fabio/workspace/miranti/cielo_assets/app/views/cielo_assets/sample/index.html.erb within layouts/cielo_assets/application (7.2ms)
9665
+ Completed 500 Internal Server Error in 9ms
9666
+
9667
+ ActionView::Template::Error (undefined local variable or method `field' for #<#<Class:0x007fc0be03b188>:0x007fc0be0403e0>):
9668
+ 9: </style>
9669
+ 10: <form>
9670
+ 11: <h1>Vertical</h1>
9671
+ 12: <%= cielo_controls :my_object, :field1, style: :vertical %>
9672
+ 13: <%= submit_tag %>
9673
+ 14: </form>
9674
+ 15: <form>
9675
+ /Users/fabio/workspace/miranti/cielo_assets/app/helpers/cielo_assets/form_helper.rb:11:in `block (2 levels) in cielo_controls'
9676
+ /Users/fabio/workspace/miranti/cielo_assets/app/helpers/cielo_assets/form_helper.rb:8:in `collect'
9677
+ /Users/fabio/workspace/miranti/cielo_assets/app/helpers/cielo_assets/form_helper.rb:8:in `block in cielo_controls'
9678
+ actionpack (3.2.11) lib/action_view/helpers/capture_helper.rb:40:in `block in capture'
9679
+ actionpack (3.2.11) lib/action_view/helpers/capture_helper.rb:187:in `with_output_buffer'
9680
+ actionpack (3.2.11) lib/action_view/helpers/capture_helper.rb:40:in `capture'
9681
+ actionpack (3.2.11) lib/action_view/helpers/tag_helper.rb:95:in `content_tag'
9682
+ /Users/fabio/workspace/miranti/cielo_assets/app/helpers/cielo_assets/form_helper.rb:7:in `cielo_controls'
9683
+ /Users/fabio/workspace/miranti/cielo_assets/app/views/cielo_assets/sample/index.html.erb:12:in `___sers_fabio_workspace_miranti_cielo_assets_app_views_cielo_assets_sample_index_html_erb___843548910174046067_70232907776100'
9684
+ actionpack (3.2.11) lib/action_view/template.rb:145:in `block in render'
9685
+ activesupport (3.2.11) lib/active_support/notifications.rb:125:in `instrument'
9686
+ actionpack (3.2.11) lib/action_view/template.rb:143:in `render'
9687
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
9688
+ actionpack (3.2.11) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
9689
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `block in instrument'
9690
+ activesupport (3.2.11) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
9691
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `instrument'
9692
+ actionpack (3.2.11) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
9693
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
9694
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
9695
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
9696
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:18:in `render'
9697
+ actionpack (3.2.11) lib/action_view/renderer/renderer.rb:36:in `render_template'
9698
+ actionpack (3.2.11) lib/action_view/renderer/renderer.rb:17:in `render'
9699
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:110:in `_render_template'
9700
+ actionpack (3.2.11) lib/action_controller/metal/streaming.rb:225:in `_render_template'
9701
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:103:in `render_to_body'
9702
+ actionpack (3.2.11) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
9703
+ actionpack (3.2.11) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
9704
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:88:in `render'
9705
+ actionpack (3.2.11) lib/action_controller/metal/rendering.rb:16:in `render'
9706
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
9707
+ activesupport (3.2.11) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
9708
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
9709
+ activesupport (3.2.11) lib/active_support/core_ext/benchmark.rb:5:in `ms'
9710
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
9711
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
9712
+ activerecord (3.2.11) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
9713
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:39:in `render'
9714
+ actionpack (3.2.11) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
9715
+ actionpack (3.2.11) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
9716
+ actionpack (3.2.11) lib/abstract_controller/base.rb:167:in `process_action'
9717
+ actionpack (3.2.11) lib/action_controller/metal/rendering.rb:10:in `process_action'
9718
+ actionpack (3.2.11) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
9719
+ activesupport (3.2.11) lib/active_support/callbacks.rb:403:in `_run__3466763504663274448__process_action__1918909586997333975__callbacks'
9720
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
9721
+ activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
9722
+ activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
9723
+ actionpack (3.2.11) lib/abstract_controller/callbacks.rb:17:in `process_action'
9724
+ actionpack (3.2.11) lib/action_controller/metal/rescue.rb:29:in `process_action'
9725
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
9726
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `block in instrument'
9727
+ activesupport (3.2.11) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
9728
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `instrument'
9729
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
9730
+ actionpack (3.2.11) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
9731
+ activerecord (3.2.11) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
9732
+ actionpack (3.2.11) lib/abstract_controller/base.rb:121:in `process'
9733
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:45:in `process'
9734
+ actionpack (3.2.11) lib/action_controller/metal.rb:203:in `dispatch'
9735
+ actionpack (3.2.11) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
9736
+ actionpack (3.2.11) lib/action_controller/metal.rb:246:in `block in action'
9737
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:73:in `call'
9738
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
9739
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:36:in `call'
9740
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
9741
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
9742
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
9743
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:601:in `call'
9744
+ railties (3.2.11) lib/rails/engine.rb:479:in `call'
9745
+ railties (3.2.11) lib/rails/railtie/configurable.rb:30:in `method_missing'
9746
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
9747
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
9748
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
9749
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:601:in `call'
9750
+ actionpack (3.2.11) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
9751
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
9752
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
9753
+ actionpack (3.2.11) lib/action_dispatch/middleware/head.rb:14:in `call'
9754
+ actionpack (3.2.11) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
9755
+ actionpack (3.2.11) lib/action_dispatch/middleware/flash.rb:242:in `call'
9756
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
9757
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
9758
+ actionpack (3.2.11) lib/action_dispatch/middleware/cookies.rb:341:in `call'
9759
+ activerecord (3.2.11) lib/active_record/query_cache.rb:64:in `call'
9760
+ activerecord (3.2.11) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
9761
+ actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
9762
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `_run__1695911566266820509__call__1692414116383996571__callbacks'
9763
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
9764
+ activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
9765
+ activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
9766
+ actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
9767
+ actionpack (3.2.11) lib/action_dispatch/middleware/reloader.rb:65:in `call'
9768
+ actionpack (3.2.11) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
9769
+ actionpack (3.2.11) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
9770
+ actionpack (3.2.11) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
9771
+ railties (3.2.11) lib/rails/rack/logger.rb:32:in `call_app'
9772
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `block in call'
9773
+ activesupport (3.2.11) lib/active_support/tagged_logging.rb:22:in `tagged'
9774
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `call'
9775
+ actionpack (3.2.11) lib/action_dispatch/middleware/request_id.rb:22:in `call'
9776
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
9777
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
9778
+ activesupport (3.2.11) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
9779
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
9780
+ actionpack (3.2.11) lib/action_dispatch/middleware/static.rb:62:in `call'
9781
+ railties (3.2.11) lib/rails/engine.rb:479:in `call'
9782
+ railties (3.2.11) lib/rails/application.rb:223:in `call'
9783
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
9784
+ railties (3.2.11) lib/rails/rack/log_tailer.rb:17:in `call'
9785
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
9786
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
9787
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
9788
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
9789
+
9790
+
9791
+ Rendered /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
9792
+ Rendered /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
9793
+ Rendered /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.7ms)
9794
+
9795
+
9796
+ Started GET "/cielo_assets" for 127.0.0.1 at 2013-02-11 23:30:28 -0200
9797
+ Processing by CieloAssets::SampleController#index as HTML
9798
+ Rendered /Users/fabio/workspace/miranti/cielo_assets/app/views/cielo_assets/sample/index.html.erb within layouts/cielo_assets/application (2.6ms)
9799
+ Completed 200 OK in 7ms (Views: 6.3ms | ActiveRecord: 0.0ms)
9800
+
9801
+
9802
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-02-11 23:30:28 -0200
9803
+ Served asset /jquery.js - 304 Not Modified (0ms)
9804
+
9805
+
9806
+ Started GET "/assets/cielo_assets/controls.css?body=1" for 127.0.0.1 at 2013-02-11 23:30:28 -0200
9807
+ Served asset /cielo_assets/controls.css - 304 Not Modified (0ms)
9808
+
9809
+
9810
+ Started GET "/assets/cielo_assets.css?body=1" for 127.0.0.1 at 2013-02-11 23:30:28 -0200
9811
+ Served asset /cielo_assets.css - 304 Not Modified (0ms)
9812
+
9813
+
9814
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-02-11 23:30:28 -0200
9815
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
9816
+
9817
+
9818
+ Started GET "/assets/cielo_assets/controls.js?body=1" for 127.0.0.1 at 2013-02-11 23:30:28 -0200
9819
+ Served asset /cielo_assets/controls.js - 304 Not Modified (0ms)
9820
+
9821
+
9822
+ Started GET "/assets/cielo_assets.js?body=1" for 127.0.0.1 at 2013-02-11 23:30:29 -0200
9823
+ Served asset /cielo_assets.js - 304 Not Modified (0ms)
9824
+
9825
+
9826
+ Started GET "/cielo_assets" for 127.0.0.1 at 2013-02-11 23:40:55 -0200
9827
+ Processing by CieloAssets::SampleController#index as HTML
9828
+ Rendered /Users/fabio/workspace/miranti/cielo_assets/app/views/cielo_assets/sample/index.html.erb within layouts/cielo_assets/application (24.3ms)
9829
+ Completed 500 Internal Server Error in 27ms
9830
+
9831
+ ActionView::Template::Error (undefined method `cielo_controls' for #<ActionView::Helpers::FormBuilder:0x007fc0bf4208b0>):
9832
+ 21: <%= form_for :my_object do |f| %>
9833
+ 22: <h1>With Form Builder</h1>
9834
+ 23:
9835
+ 24: <%= f.cielo_controls :field %>
9836
+ 25: <%= f.submit_tag %>
9837
+ 26: <% end %>
9838
+ /Users/fabio/workspace/miranti/cielo_assets/app/views/cielo_assets/sample/index.html.erb:24:in `block in ___sers_fabio_workspace_miranti_cielo_assets_app_views_cielo_assets_sample_index_html_erb___843548910174046067_70232911396960'
9839
+ actionpack (3.2.11) lib/action_view/helpers/capture_helper.rb:40:in `block in capture'
9840
+ actionpack (3.2.11) lib/action_view/helpers/capture_helper.rb:187:in `with_output_buffer'
9841
+ actionpack (3.2.11) lib/action_view/helpers/capture_helper.rb:40:in `capture'
9842
+ actionpack (3.2.11) lib/action_view/helpers/form_helper.rb:607:in `fields_for'
9843
+ actionpack (3.2.11) lib/action_view/helpers/form_helper.rb:378:in `form_for'
9844
+ /Users/fabio/workspace/miranti/cielo_assets/app/views/cielo_assets/sample/index.html.erb:21:in `___sers_fabio_workspace_miranti_cielo_assets_app_views_cielo_assets_sample_index_html_erb___843548910174046067_70232911396960'
9845
+ actionpack (3.2.11) lib/action_view/template.rb:145:in `block in render'
9846
+ activesupport (3.2.11) lib/active_support/notifications.rb:125:in `instrument'
9847
+ actionpack (3.2.11) lib/action_view/template.rb:143:in `render'
9848
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
9849
+ actionpack (3.2.11) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
9850
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `block in instrument'
9851
+ activesupport (3.2.11) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
9852
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `instrument'
9853
+ actionpack (3.2.11) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
9854
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
9855
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
9856
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
9857
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:18:in `render'
9858
+ actionpack (3.2.11) lib/action_view/renderer/renderer.rb:36:in `render_template'
9859
+ actionpack (3.2.11) lib/action_view/renderer/renderer.rb:17:in `render'
9860
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:110:in `_render_template'
9861
+ actionpack (3.2.11) lib/action_controller/metal/streaming.rb:225:in `_render_template'
9862
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:103:in `render_to_body'
9863
+ actionpack (3.2.11) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
9864
+ actionpack (3.2.11) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
9865
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:88:in `render'
9866
+ actionpack (3.2.11) lib/action_controller/metal/rendering.rb:16:in `render'
9867
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
9868
+ activesupport (3.2.11) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
9869
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
9870
+ activesupport (3.2.11) lib/active_support/core_ext/benchmark.rb:5:in `ms'
9871
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
9872
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
9873
+ activerecord (3.2.11) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
9874
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:39:in `render'
9875
+ actionpack (3.2.11) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
9876
+ actionpack (3.2.11) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
9877
+ actionpack (3.2.11) lib/abstract_controller/base.rb:167:in `process_action'
9878
+ actionpack (3.2.11) lib/action_controller/metal/rendering.rb:10:in `process_action'
9879
+ actionpack (3.2.11) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
9880
+ activesupport (3.2.11) lib/active_support/callbacks.rb:403:in `_run__3466763504663274448__process_action__1918909586997333975__callbacks'
9881
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
9882
+ activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
9883
+ activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
9884
+ actionpack (3.2.11) lib/abstract_controller/callbacks.rb:17:in `process_action'
9885
+ actionpack (3.2.11) lib/action_controller/metal/rescue.rb:29:in `process_action'
9886
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
9887
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `block in instrument'
9888
+ activesupport (3.2.11) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
9889
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `instrument'
9890
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
9891
+ actionpack (3.2.11) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
9892
+ activerecord (3.2.11) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
9893
+ actionpack (3.2.11) lib/abstract_controller/base.rb:121:in `process'
9894
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:45:in `process'
9895
+ actionpack (3.2.11) lib/action_controller/metal.rb:203:in `dispatch'
9896
+ actionpack (3.2.11) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
9897
+ actionpack (3.2.11) lib/action_controller/metal.rb:246:in `block in action'
9898
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:73:in `call'
9899
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
9900
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:36:in `call'
9901
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
9902
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
9903
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
9904
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:601:in `call'
9905
+ railties (3.2.11) lib/rails/engine.rb:479:in `call'
9906
+ railties (3.2.11) lib/rails/railtie/configurable.rb:30:in `method_missing'
9907
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
9908
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
9909
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
9910
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:601:in `call'
9911
+ actionpack (3.2.11) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
9912
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
9913
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
9914
+ actionpack (3.2.11) lib/action_dispatch/middleware/head.rb:14:in `call'
9915
+ actionpack (3.2.11) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
9916
+ actionpack (3.2.11) lib/action_dispatch/middleware/flash.rb:242:in `call'
9917
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
9918
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
9919
+ actionpack (3.2.11) lib/action_dispatch/middleware/cookies.rb:341:in `call'
9920
+ activerecord (3.2.11) lib/active_record/query_cache.rb:64:in `call'
9921
+ activerecord (3.2.11) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
9922
+ actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
9923
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `_run__1695911566266820509__call__1692414116383996571__callbacks'
9924
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
9925
+ activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
9926
+ activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
9927
+ actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
9928
+ actionpack (3.2.11) lib/action_dispatch/middleware/reloader.rb:65:in `call'
9929
+ actionpack (3.2.11) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
9930
+ actionpack (3.2.11) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
9931
+ actionpack (3.2.11) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
9932
+ railties (3.2.11) lib/rails/rack/logger.rb:32:in `call_app'
9933
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `block in call'
9934
+ activesupport (3.2.11) lib/active_support/tagged_logging.rb:22:in `tagged'
9935
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `call'
9936
+ actionpack (3.2.11) lib/action_dispatch/middleware/request_id.rb:22:in `call'
9937
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
9938
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
9939
+ activesupport (3.2.11) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
9940
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
9941
+ actionpack (3.2.11) lib/action_dispatch/middleware/static.rb:62:in `call'
9942
+ railties (3.2.11) lib/rails/engine.rb:479:in `call'
9943
+ railties (3.2.11) lib/rails/application.rb:223:in `call'
9944
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
9945
+ railties (3.2.11) lib/rails/rack/log_tailer.rb:17:in `call'
9946
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
9947
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
9948
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
9949
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
9950
+
9951
+
9952
+ Rendered /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
9953
+ Rendered /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
9954
+ Rendered /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.0ms)
9955
+
9956
+
9957
+ Started GET "/cielo_assets" for 127.0.0.1 at 2013-02-11 23:47:50 -0200
9958
+ Connecting to database specified by database.yml
9959
+ Processing by CieloAssets::SampleController#index as HTML
9960
+ Rendered /Users/fabio/workspace/miranti/cielo_assets/app/views/cielo_assets/sample/index.html.erb within layouts/cielo_assets/application (4.8ms)
9961
+ Completed 500 Internal Server Error in 28ms
9962
+
9963
+ ActionView::Template::Error (wrong number of arguments (3 for 2)):
9964
+ 9: </style>
9965
+ 10: <form>
9966
+ 11: <h1>Vertical</h1>
9967
+ 12: <%= cielo_controls :my_object, :field1, style: :vertical %>
9968
+ 13: <%= submit_tag %>
9969
+ 14: </form>
9970
+ 15: <form>
9971
+ /Users/fabio/workspace/miranti/cielo_assets/app/helpers/cielo_assets/form_builder.rb:3:in `cielo_controls'
9972
+ /Users/fabio/workspace/miranti/cielo_assets/app/views/cielo_assets/sample/index.html.erb:12:in `___sers_fabio_workspace_miranti_cielo_assets_app_views_cielo_assets_sample_index_html_erb___1151768724365627283_70311215883420'
9973
+ actionpack (3.2.11) lib/action_view/template.rb:145:in `block in render'
9974
+ activesupport (3.2.11) lib/active_support/notifications.rb:125:in `instrument'
9975
+ actionpack (3.2.11) lib/action_view/template.rb:143:in `render'
9976
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
9977
+ actionpack (3.2.11) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
9978
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `block in instrument'
9979
+ activesupport (3.2.11) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
9980
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `instrument'
9981
+ actionpack (3.2.11) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
9982
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
9983
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
9984
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
9985
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:18:in `render'
9986
+ actionpack (3.2.11) lib/action_view/renderer/renderer.rb:36:in `render_template'
9987
+ actionpack (3.2.11) lib/action_view/renderer/renderer.rb:17:in `render'
9988
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:110:in `_render_template'
9989
+ actionpack (3.2.11) lib/action_controller/metal/streaming.rb:225:in `_render_template'
9990
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:103:in `render_to_body'
9991
+ actionpack (3.2.11) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
9992
+ actionpack (3.2.11) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
9993
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:88:in `render'
9994
+ actionpack (3.2.11) lib/action_controller/metal/rendering.rb:16:in `render'
9995
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
9996
+ activesupport (3.2.11) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
9997
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
9998
+ activesupport (3.2.11) lib/active_support/core_ext/benchmark.rb:5:in `ms'
9999
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
10000
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
10001
+ activerecord (3.2.11) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
10002
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:39:in `render'
10003
+ actionpack (3.2.11) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
10004
+ actionpack (3.2.11) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
10005
+ actionpack (3.2.11) lib/abstract_controller/base.rb:167:in `process_action'
10006
+ actionpack (3.2.11) lib/action_controller/metal/rendering.rb:10:in `process_action'
10007
+ actionpack (3.2.11) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
10008
+ activesupport (3.2.11) lib/active_support/callbacks.rb:403:in `_run__4284167646767046532__process_action__921747321241232644__callbacks'
10009
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
10010
+ activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
10011
+ activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
10012
+ actionpack (3.2.11) lib/abstract_controller/callbacks.rb:17:in `process_action'
10013
+ actionpack (3.2.11) lib/action_controller/metal/rescue.rb:29:in `process_action'
10014
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
10015
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `block in instrument'
10016
+ activesupport (3.2.11) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
10017
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `instrument'
10018
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
10019
+ actionpack (3.2.11) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
10020
+ activerecord (3.2.11) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
10021
+ actionpack (3.2.11) lib/abstract_controller/base.rb:121:in `process'
10022
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:45:in `process'
10023
+ actionpack (3.2.11) lib/action_controller/metal.rb:203:in `dispatch'
10024
+ actionpack (3.2.11) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
10025
+ actionpack (3.2.11) lib/action_controller/metal.rb:246:in `block in action'
10026
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:73:in `call'
10027
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
10028
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:36:in `call'
10029
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
10030
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
10031
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
10032
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:601:in `call'
10033
+ railties (3.2.11) lib/rails/engine.rb:479:in `call'
10034
+ railties (3.2.11) lib/rails/railtie/configurable.rb:30:in `method_missing'
10035
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
10036
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
10037
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
10038
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:601:in `call'
10039
+ actionpack (3.2.11) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
10040
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
10041
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
10042
+ actionpack (3.2.11) lib/action_dispatch/middleware/head.rb:14:in `call'
10043
+ actionpack (3.2.11) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
10044
+ actionpack (3.2.11) lib/action_dispatch/middleware/flash.rb:242:in `call'
10045
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
10046
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
10047
+ actionpack (3.2.11) lib/action_dispatch/middleware/cookies.rb:341:in `call'
10048
+ activerecord (3.2.11) lib/active_record/query_cache.rb:64:in `call'
10049
+ activerecord (3.2.11) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
10050
+ actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
10051
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `_run__2036151160599639311__call__136814162996742466__callbacks'
10052
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
10053
+ activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
10054
+ activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
10055
+ actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
10056
+ actionpack (3.2.11) lib/action_dispatch/middleware/reloader.rb:65:in `call'
10057
+ actionpack (3.2.11) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
10058
+ actionpack (3.2.11) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
10059
+ actionpack (3.2.11) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
10060
+ railties (3.2.11) lib/rails/rack/logger.rb:32:in `call_app'
10061
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `block in call'
10062
+ activesupport (3.2.11) lib/active_support/tagged_logging.rb:22:in `tagged'
10063
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `call'
10064
+ actionpack (3.2.11) lib/action_dispatch/middleware/request_id.rb:22:in `call'
10065
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
10066
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
10067
+ activesupport (3.2.11) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
10068
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
10069
+ actionpack (3.2.11) lib/action_dispatch/middleware/static.rb:62:in `call'
10070
+ railties (3.2.11) lib/rails/engine.rb:479:in `call'
10071
+ railties (3.2.11) lib/rails/application.rb:223:in `call'
10072
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
10073
+ railties (3.2.11) lib/rails/rack/log_tailer.rb:17:in `call'
10074
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
10075
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
10076
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
10077
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
10078
+
10079
+
10080
+ Rendered /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
10081
+ Rendered /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
10082
+ Rendered /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.1ms)
10083
+
10084
+
10085
+ Started GET "/cielo_assets" for 127.0.0.1 at 2013-02-11 23:49:12 -0200
10086
+ Connecting to database specified by database.yml
10087
+ Processing by CieloAssets::SampleController#index as HTML
10088
+ Rendered /Users/fabio/workspace/miranti/cielo_assets/app/views/cielo_assets/sample/index.html.erb within layouts/cielo_assets/application (49.7ms)
10089
+ Completed 500 Internal Server Error in 60ms
10090
+
10091
+ ActionView::Template::Error (undefined method `cielo_controls' for #<ActionView::Helpers::FormBuilder:0x007fc4c67327c8>):
10092
+ 21: <%= form_for :my_object do |f| %>
10093
+ 22: <h1>With Form Builder</h1>
10094
+ 23:
10095
+ 24: <%= f.cielo_controls :field %>
10096
+ 25: <%= f.submit_tag %>
10097
+ 26: <% end %>
10098
+ /Users/fabio/workspace/miranti/cielo_assets/app/views/cielo_assets/sample/index.html.erb:24:in `block in ___sers_fabio_workspace_miranti_cielo_assets_app_views_cielo_assets_sample_index_html_erb__3271441279018514177_70241550498220'
10099
+ actionpack (3.2.11) lib/action_view/helpers/capture_helper.rb:40:in `block in capture'
10100
+ actionpack (3.2.11) lib/action_view/helpers/capture_helper.rb:187:in `with_output_buffer'
10101
+ actionpack (3.2.11) lib/action_view/helpers/capture_helper.rb:40:in `capture'
10102
+ actionpack (3.2.11) lib/action_view/helpers/form_helper.rb:607:in `fields_for'
10103
+ actionpack (3.2.11) lib/action_view/helpers/form_helper.rb:378:in `form_for'
10104
+ /Users/fabio/workspace/miranti/cielo_assets/app/views/cielo_assets/sample/index.html.erb:21:in `___sers_fabio_workspace_miranti_cielo_assets_app_views_cielo_assets_sample_index_html_erb__3271441279018514177_70241550498220'
10105
+ actionpack (3.2.11) lib/action_view/template.rb:145:in `block in render'
10106
+ activesupport (3.2.11) lib/active_support/notifications.rb:125:in `instrument'
10107
+ actionpack (3.2.11) lib/action_view/template.rb:143:in `render'
10108
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
10109
+ actionpack (3.2.11) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
10110
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `block in instrument'
10111
+ activesupport (3.2.11) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
10112
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `instrument'
10113
+ actionpack (3.2.11) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
10114
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
10115
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
10116
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
10117
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:18:in `render'
10118
+ actionpack (3.2.11) lib/action_view/renderer/renderer.rb:36:in `render_template'
10119
+ actionpack (3.2.11) lib/action_view/renderer/renderer.rb:17:in `render'
10120
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:110:in `_render_template'
10121
+ actionpack (3.2.11) lib/action_controller/metal/streaming.rb:225:in `_render_template'
10122
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:103:in `render_to_body'
10123
+ actionpack (3.2.11) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
10124
+ actionpack (3.2.11) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
10125
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:88:in `render'
10126
+ actionpack (3.2.11) lib/action_controller/metal/rendering.rb:16:in `render'
10127
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
10128
+ activesupport (3.2.11) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
10129
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
10130
+ activesupport (3.2.11) lib/active_support/core_ext/benchmark.rb:5:in `ms'
10131
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
10132
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
10133
+ activerecord (3.2.11) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
10134
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:39:in `render'
10135
+ actionpack (3.2.11) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
10136
+ actionpack (3.2.11) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
10137
+ actionpack (3.2.11) lib/abstract_controller/base.rb:167:in `process_action'
10138
+ actionpack (3.2.11) lib/action_controller/metal/rendering.rb:10:in `process_action'
10139
+ actionpack (3.2.11) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
10140
+ activesupport (3.2.11) lib/active_support/callbacks.rb:403:in `_run__3755127162188415113__process_action__636597559595585352__callbacks'
10141
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
10142
+ activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
10143
+ activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
10144
+ actionpack (3.2.11) lib/abstract_controller/callbacks.rb:17:in `process_action'
10145
+ actionpack (3.2.11) lib/action_controller/metal/rescue.rb:29:in `process_action'
10146
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
10147
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `block in instrument'
10148
+ activesupport (3.2.11) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
10149
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `instrument'
10150
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
10151
+ actionpack (3.2.11) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
10152
+ activerecord (3.2.11) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
10153
+ actionpack (3.2.11) lib/abstract_controller/base.rb:121:in `process'
10154
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:45:in `process'
10155
+ actionpack (3.2.11) lib/action_controller/metal.rb:203:in `dispatch'
10156
+ actionpack (3.2.11) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
10157
+ actionpack (3.2.11) lib/action_controller/metal.rb:246:in `block in action'
10158
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:73:in `call'
10159
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
10160
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:36:in `call'
10161
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
10162
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
10163
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
10164
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:601:in `call'
10165
+ railties (3.2.11) lib/rails/engine.rb:479:in `call'
10166
+ railties (3.2.11) lib/rails/railtie/configurable.rb:30:in `method_missing'
10167
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
10168
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
10169
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
10170
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:601:in `call'
10171
+ actionpack (3.2.11) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
10172
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
10173
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
10174
+ actionpack (3.2.11) lib/action_dispatch/middleware/head.rb:14:in `call'
10175
+ actionpack (3.2.11) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
10176
+ actionpack (3.2.11) lib/action_dispatch/middleware/flash.rb:242:in `call'
10177
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
10178
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
10179
+ actionpack (3.2.11) lib/action_dispatch/middleware/cookies.rb:341:in `call'
10180
+ activerecord (3.2.11) lib/active_record/query_cache.rb:64:in `call'
10181
+ activerecord (3.2.11) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
10182
+ actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
10183
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `_run__354257938357970178__call__1234087771285951500__callbacks'
10184
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
10185
+ activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
10186
+ activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
10187
+ actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
10188
+ actionpack (3.2.11) lib/action_dispatch/middleware/reloader.rb:65:in `call'
10189
+ actionpack (3.2.11) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
10190
+ actionpack (3.2.11) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
10191
+ actionpack (3.2.11) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
10192
+ railties (3.2.11) lib/rails/rack/logger.rb:32:in `call_app'
10193
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `block in call'
10194
+ activesupport (3.2.11) lib/active_support/tagged_logging.rb:22:in `tagged'
10195
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `call'
10196
+ actionpack (3.2.11) lib/action_dispatch/middleware/request_id.rb:22:in `call'
10197
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
10198
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
10199
+ activesupport (3.2.11) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
10200
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
10201
+ actionpack (3.2.11) lib/action_dispatch/middleware/static.rb:62:in `call'
10202
+ railties (3.2.11) lib/rails/engine.rb:479:in `call'
10203
+ railties (3.2.11) lib/rails/application.rb:223:in `call'
10204
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
10205
+ railties (3.2.11) lib/rails/rack/log_tailer.rb:17:in `call'
10206
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
10207
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
10208
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
10209
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
10210
+
10211
+
10212
+ Rendered /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
10213
+ Rendered /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
10214
+ Rendered /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.4ms)
10215
+
10216
+
10217
+ Started GET "/cielo_assets" for 127.0.0.1 at 2013-02-11 23:49:49 -0200
10218
+ Processing by CieloAssets::SampleController#index as HTML
10219
+ Rendered /Users/fabio/workspace/miranti/cielo_assets/app/views/cielo_assets/sample/index.html.erb within layouts/cielo_assets/application (11.4ms)
10220
+ Completed 500 Internal Server Error in 13ms
10221
+
10222
+ ActionView::Template::Error (undefined method `cielo_controls' for #<ActionView::Helpers::FormBuilder:0x007fc4c632be18>):
10223
+ 21: <%= form_for :my_object do |f| %>
10224
+ 22: <h1>With Form Builder</h1>
10225
+ 23:
10226
+ 24: <%= f.cielo_controls :field %>
10227
+ 25: <%= f.submit_tag %>
10228
+ 26: <% end %>
10229
+ /Users/fabio/workspace/miranti/cielo_assets/app/views/cielo_assets/sample/index.html.erb:24:in `block in ___sers_fabio_workspace_miranti_cielo_assets_app_views_cielo_assets_sample_index_html_erb__3271441279018514177_70241550498220'
10230
+ actionpack (3.2.11) lib/action_view/helpers/capture_helper.rb:40:in `block in capture'
10231
+ actionpack (3.2.11) lib/action_view/helpers/capture_helper.rb:187:in `with_output_buffer'
10232
+ actionpack (3.2.11) lib/action_view/helpers/capture_helper.rb:40:in `capture'
10233
+ actionpack (3.2.11) lib/action_view/helpers/form_helper.rb:607:in `fields_for'
10234
+ actionpack (3.2.11) lib/action_view/helpers/form_helper.rb:378:in `form_for'
10235
+ /Users/fabio/workspace/miranti/cielo_assets/app/views/cielo_assets/sample/index.html.erb:21:in `___sers_fabio_workspace_miranti_cielo_assets_app_views_cielo_assets_sample_index_html_erb__3271441279018514177_70241550498220'
10236
+ actionpack (3.2.11) lib/action_view/template.rb:145:in `block in render'
10237
+ activesupport (3.2.11) lib/active_support/notifications.rb:125:in `instrument'
10238
+ actionpack (3.2.11) lib/action_view/template.rb:143:in `render'
10239
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
10240
+ actionpack (3.2.11) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
10241
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `block in instrument'
10242
+ activesupport (3.2.11) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
10243
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `instrument'
10244
+ actionpack (3.2.11) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
10245
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
10246
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
10247
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
10248
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:18:in `render'
10249
+ actionpack (3.2.11) lib/action_view/renderer/renderer.rb:36:in `render_template'
10250
+ actionpack (3.2.11) lib/action_view/renderer/renderer.rb:17:in `render'
10251
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:110:in `_render_template'
10252
+ actionpack (3.2.11) lib/action_controller/metal/streaming.rb:225:in `_render_template'
10253
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:103:in `render_to_body'
10254
+ actionpack (3.2.11) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
10255
+ actionpack (3.2.11) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
10256
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:88:in `render'
10257
+ actionpack (3.2.11) lib/action_controller/metal/rendering.rb:16:in `render'
10258
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
10259
+ activesupport (3.2.11) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
10260
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
10261
+ activesupport (3.2.11) lib/active_support/core_ext/benchmark.rb:5:in `ms'
10262
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
10263
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
10264
+ activerecord (3.2.11) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
10265
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:39:in `render'
10266
+ actionpack (3.2.11) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
10267
+ actionpack (3.2.11) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
10268
+ actionpack (3.2.11) lib/abstract_controller/base.rb:167:in `process_action'
10269
+ actionpack (3.2.11) lib/action_controller/metal/rendering.rb:10:in `process_action'
10270
+ actionpack (3.2.11) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
10271
+ activesupport (3.2.11) lib/active_support/callbacks.rb:403:in `_run__3755127162188415113__process_action__636597559595585352__callbacks'
10272
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
10273
+ activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
10274
+ activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
10275
+ actionpack (3.2.11) lib/abstract_controller/callbacks.rb:17:in `process_action'
10276
+ actionpack (3.2.11) lib/action_controller/metal/rescue.rb:29:in `process_action'
10277
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
10278
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `block in instrument'
10279
+ activesupport (3.2.11) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
10280
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `instrument'
10281
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
10282
+ actionpack (3.2.11) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
10283
+ activerecord (3.2.11) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
10284
+ actionpack (3.2.11) lib/abstract_controller/base.rb:121:in `process'
10285
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:45:in `process'
10286
+ actionpack (3.2.11) lib/action_controller/metal.rb:203:in `dispatch'
10287
+ actionpack (3.2.11) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
10288
+ actionpack (3.2.11) lib/action_controller/metal.rb:246:in `block in action'
10289
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:73:in `call'
10290
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
10291
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:36:in `call'
10292
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
10293
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
10294
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
10295
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:601:in `call'
10296
+ railties (3.2.11) lib/rails/engine.rb:479:in `call'
10297
+ railties (3.2.11) lib/rails/railtie/configurable.rb:30:in `method_missing'
10298
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
10299
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
10300
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
10301
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:601:in `call'
10302
+ actionpack (3.2.11) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
10303
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
10304
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
10305
+ actionpack (3.2.11) lib/action_dispatch/middleware/head.rb:14:in `call'
10306
+ actionpack (3.2.11) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
10307
+ actionpack (3.2.11) lib/action_dispatch/middleware/flash.rb:242:in `call'
10308
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
10309
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
10310
+ actionpack (3.2.11) lib/action_dispatch/middleware/cookies.rb:341:in `call'
10311
+ activerecord (3.2.11) lib/active_record/query_cache.rb:64:in `call'
10312
+ activerecord (3.2.11) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
10313
+ actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
10314
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `_run__354257938357970178__call__1234087771285951500__callbacks'
10315
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
10316
+ activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
10317
+ activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
10318
+ actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
10319
+ actionpack (3.2.11) lib/action_dispatch/middleware/reloader.rb:65:in `call'
10320
+ actionpack (3.2.11) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
10321
+ actionpack (3.2.11) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
10322
+ actionpack (3.2.11) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
10323
+ railties (3.2.11) lib/rails/rack/logger.rb:32:in `call_app'
10324
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `block in call'
10325
+ activesupport (3.2.11) lib/active_support/tagged_logging.rb:22:in `tagged'
10326
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `call'
10327
+ actionpack (3.2.11) lib/action_dispatch/middleware/request_id.rb:22:in `call'
10328
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
10329
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
10330
+ activesupport (3.2.11) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
10331
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
10332
+ actionpack (3.2.11) lib/action_dispatch/middleware/static.rb:62:in `call'
10333
+ railties (3.2.11) lib/rails/engine.rb:479:in `call'
10334
+ railties (3.2.11) lib/rails/application.rb:223:in `call'
10335
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
10336
+ railties (3.2.11) lib/rails/rack/log_tailer.rb:17:in `call'
10337
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
10338
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
10339
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
10340
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
10341
+
10342
+
10343
+ Rendered /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
10344
+ Rendered /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
10345
+ Rendered /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.0ms)
10346
+
10347
+
10348
+ Started GET "/cielo_assets" for 127.0.0.1 at 2013-02-11 23:50:11 -0200
10349
+ Processing by CieloAssets::SampleController#index as HTML
10350
+ Rendered /Users/fabio/workspace/miranti/cielo_assets/app/views/cielo_assets/sample/index.html.erb within layouts/cielo_assets/application (30.9ms)
10351
+ Completed 500 Internal Server Error in 33ms
10352
+
10353
+ ActionView::Template::Error (undefined method `cielo' for #<ActionView::Helpers::FormBuilder:0x007fc4c408e2e8>):
10354
+ 21: <%= form_for :my_object do |f| %>
10355
+ 22: <h1>With Form Builder</h1>
10356
+ 23:
10357
+ 24: <%= f.cielo :field %>
10358
+ 25: <%= f.submit_tag %>
10359
+ 26: <% end %>
10360
+ /Users/fabio/workspace/miranti/cielo_assets/app/views/cielo_assets/sample/index.html.erb:24:in `block in ___sers_fabio_workspace_miranti_cielo_assets_app_views_cielo_assets_sample_index_html_erb__3271441279018514177_70241540409380'
10361
+ actionpack (3.2.11) lib/action_view/helpers/capture_helper.rb:40:in `block in capture'
10362
+ actionpack (3.2.11) lib/action_view/helpers/capture_helper.rb:187:in `with_output_buffer'
10363
+ actionpack (3.2.11) lib/action_view/helpers/capture_helper.rb:40:in `capture'
10364
+ actionpack (3.2.11) lib/action_view/helpers/form_helper.rb:607:in `fields_for'
10365
+ actionpack (3.2.11) lib/action_view/helpers/form_helper.rb:378:in `form_for'
10366
+ /Users/fabio/workspace/miranti/cielo_assets/app/views/cielo_assets/sample/index.html.erb:21:in `___sers_fabio_workspace_miranti_cielo_assets_app_views_cielo_assets_sample_index_html_erb__3271441279018514177_70241540409380'
10367
+ actionpack (3.2.11) lib/action_view/template.rb:145:in `block in render'
10368
+ activesupport (3.2.11) lib/active_support/notifications.rb:125:in `instrument'
10369
+ actionpack (3.2.11) lib/action_view/template.rb:143:in `render'
10370
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
10371
+ actionpack (3.2.11) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
10372
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `block in instrument'
10373
+ activesupport (3.2.11) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
10374
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `instrument'
10375
+ actionpack (3.2.11) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
10376
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
10377
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
10378
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
10379
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:18:in `render'
10380
+ actionpack (3.2.11) lib/action_view/renderer/renderer.rb:36:in `render_template'
10381
+ actionpack (3.2.11) lib/action_view/renderer/renderer.rb:17:in `render'
10382
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:110:in `_render_template'
10383
+ actionpack (3.2.11) lib/action_controller/metal/streaming.rb:225:in `_render_template'
10384
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:103:in `render_to_body'
10385
+ actionpack (3.2.11) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
10386
+ actionpack (3.2.11) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
10387
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:88:in `render'
10388
+ actionpack (3.2.11) lib/action_controller/metal/rendering.rb:16:in `render'
10389
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
10390
+ activesupport (3.2.11) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
10391
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
10392
+ activesupport (3.2.11) lib/active_support/core_ext/benchmark.rb:5:in `ms'
10393
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
10394
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
10395
+ activerecord (3.2.11) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
10396
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:39:in `render'
10397
+ actionpack (3.2.11) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
10398
+ actionpack (3.2.11) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
10399
+ actionpack (3.2.11) lib/abstract_controller/base.rb:167:in `process_action'
10400
+ actionpack (3.2.11) lib/action_controller/metal/rendering.rb:10:in `process_action'
10401
+ actionpack (3.2.11) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
10402
+ activesupport (3.2.11) lib/active_support/callbacks.rb:403:in `_run__3755127162188415113__process_action__636597559595585352__callbacks'
10403
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
10404
+ activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
10405
+ activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
10406
+ actionpack (3.2.11) lib/abstract_controller/callbacks.rb:17:in `process_action'
10407
+ actionpack (3.2.11) lib/action_controller/metal/rescue.rb:29:in `process_action'
10408
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
10409
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `block in instrument'
10410
+ activesupport (3.2.11) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
10411
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `instrument'
10412
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
10413
+ actionpack (3.2.11) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
10414
+ activerecord (3.2.11) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
10415
+ actionpack (3.2.11) lib/abstract_controller/base.rb:121:in `process'
10416
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:45:in `process'
10417
+ actionpack (3.2.11) lib/action_controller/metal.rb:203:in `dispatch'
10418
+ actionpack (3.2.11) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
10419
+ actionpack (3.2.11) lib/action_controller/metal.rb:246:in `block in action'
10420
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:73:in `call'
10421
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
10422
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:36:in `call'
10423
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
10424
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
10425
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
10426
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:601:in `call'
10427
+ railties (3.2.11) lib/rails/engine.rb:479:in `call'
10428
+ railties (3.2.11) lib/rails/railtie/configurable.rb:30:in `method_missing'
10429
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
10430
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
10431
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
10432
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:601:in `call'
10433
+ actionpack (3.2.11) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
10434
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
10435
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
10436
+ actionpack (3.2.11) lib/action_dispatch/middleware/head.rb:14:in `call'
10437
+ actionpack (3.2.11) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
10438
+ actionpack (3.2.11) lib/action_dispatch/middleware/flash.rb:242:in `call'
10439
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
10440
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
10441
+ actionpack (3.2.11) lib/action_dispatch/middleware/cookies.rb:341:in `call'
10442
+ activerecord (3.2.11) lib/active_record/query_cache.rb:64:in `call'
10443
+ activerecord (3.2.11) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
10444
+ actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
10445
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `_run__354257938357970178__call__1234087771285951500__callbacks'
10446
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
10447
+ activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
10448
+ activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
10449
+ actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
10450
+ actionpack (3.2.11) lib/action_dispatch/middleware/reloader.rb:65:in `call'
10451
+ actionpack (3.2.11) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
10452
+ actionpack (3.2.11) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
10453
+ actionpack (3.2.11) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
10454
+ railties (3.2.11) lib/rails/rack/logger.rb:32:in `call_app'
10455
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `block in call'
10456
+ activesupport (3.2.11) lib/active_support/tagged_logging.rb:22:in `tagged'
10457
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `call'
10458
+ actionpack (3.2.11) lib/action_dispatch/middleware/request_id.rb:22:in `call'
10459
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
10460
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
10461
+ activesupport (3.2.11) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
10462
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
10463
+ actionpack (3.2.11) lib/action_dispatch/middleware/static.rb:62:in `call'
10464
+ railties (3.2.11) lib/rails/engine.rb:479:in `call'
10465
+ railties (3.2.11) lib/rails/application.rb:223:in `call'
10466
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
10467
+ railties (3.2.11) lib/rails/rack/log_tailer.rb:17:in `call'
10468
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
10469
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
10470
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
10471
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
10472
+
10473
+
10474
+ Rendered /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
10475
+ Rendered /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
10476
+ Rendered /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.6ms)
10477
+ Connecting to database specified by database.yml
10478
+
10479
+
10480
+ Started GET "/cielo_assets" for 127.0.0.1 at 2013-02-11 23:55:26 -0200
10481
+ Connecting to database specified by database.yml
10482
+ Processing by CieloAssets::SampleController#index as HTML
10483
+ Rendered /Users/fabio/workspace/miranti/cielo_assets/app/views/cielo_assets/sample/index.html.erb within layouts/cielo_assets/application (17.8ms)
10484
+ Completed 500 Internal Server Error in 25ms
10485
+
10486
+ ActionView::Template::Error (undefined method `cielo' for #<ActionView::Helpers::FormBuilder:0x007feca27631a8>):
10487
+ 21: <%= form_for :my_object do |f| %>
10488
+ 22: <h1>With Form Builder</h1>
10489
+ 23:
10490
+ 24: <%= f.cielo :field %>
10491
+ 25: <%= f.submit_tag %>
10492
+ 26: <% end %>
10493
+ /Users/fabio/workspace/miranti/cielo_assets/app/views/cielo_assets/sample/index.html.erb:24:in `block in ___sers_fabio_workspace_miranti_cielo_assets_app_views_cielo_assets_sample_index_html_erb__493282476143827589_70327156600120'
10494
+ actionpack (3.2.11) lib/action_view/helpers/capture_helper.rb:40:in `block in capture'
10495
+ actionpack (3.2.11) lib/action_view/helpers/capture_helper.rb:187:in `with_output_buffer'
10496
+ actionpack (3.2.11) lib/action_view/helpers/capture_helper.rb:40:in `capture'
10497
+ actionpack (3.2.11) lib/action_view/helpers/form_helper.rb:607:in `fields_for'
10498
+ actionpack (3.2.11) lib/action_view/helpers/form_helper.rb:378:in `form_for'
10499
+ /Users/fabio/workspace/miranti/cielo_assets/app/views/cielo_assets/sample/index.html.erb:21:in `___sers_fabio_workspace_miranti_cielo_assets_app_views_cielo_assets_sample_index_html_erb__493282476143827589_70327156600120'
10500
+ actionpack (3.2.11) lib/action_view/template.rb:145:in `block in render'
10501
+ activesupport (3.2.11) lib/active_support/notifications.rb:125:in `instrument'
10502
+ actionpack (3.2.11) lib/action_view/template.rb:143:in `render'
10503
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
10504
+ actionpack (3.2.11) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
10505
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `block in instrument'
10506
+ activesupport (3.2.11) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
10507
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `instrument'
10508
+ actionpack (3.2.11) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
10509
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
10510
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
10511
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
10512
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:18:in `render'
10513
+ actionpack (3.2.11) lib/action_view/renderer/renderer.rb:36:in `render_template'
10514
+ actionpack (3.2.11) lib/action_view/renderer/renderer.rb:17:in `render'
10515
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:110:in `_render_template'
10516
+ actionpack (3.2.11) lib/action_controller/metal/streaming.rb:225:in `_render_template'
10517
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:103:in `render_to_body'
10518
+ actionpack (3.2.11) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
10519
+ actionpack (3.2.11) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
10520
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:88:in `render'
10521
+ actionpack (3.2.11) lib/action_controller/metal/rendering.rb:16:in `render'
10522
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
10523
+ activesupport (3.2.11) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
10524
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
10525
+ activesupport (3.2.11) lib/active_support/core_ext/benchmark.rb:5:in `ms'
10526
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
10527
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
10528
+ activerecord (3.2.11) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
10529
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:39:in `render'
10530
+ actionpack (3.2.11) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
10531
+ actionpack (3.2.11) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
10532
+ actionpack (3.2.11) lib/abstract_controller/base.rb:167:in `process_action'
10533
+ actionpack (3.2.11) lib/action_controller/metal/rendering.rb:10:in `process_action'
10534
+ actionpack (3.2.11) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
10535
+ activesupport (3.2.11) lib/active_support/callbacks.rb:403:in `_run__253983612746678598__process_action__1240626965392925741__callbacks'
10536
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
10537
+ activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
10538
+ activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
10539
+ actionpack (3.2.11) lib/abstract_controller/callbacks.rb:17:in `process_action'
10540
+ actionpack (3.2.11) lib/action_controller/metal/rescue.rb:29:in `process_action'
10541
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
10542
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `block in instrument'
10543
+ activesupport (3.2.11) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
10544
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `instrument'
10545
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
10546
+ actionpack (3.2.11) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
10547
+ activerecord (3.2.11) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
10548
+ actionpack (3.2.11) lib/abstract_controller/base.rb:121:in `process'
10549
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:45:in `process'
10550
+ actionpack (3.2.11) lib/action_controller/metal.rb:203:in `dispatch'
10551
+ actionpack (3.2.11) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
10552
+ actionpack (3.2.11) lib/action_controller/metal.rb:246:in `block in action'
10553
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:73:in `call'
10554
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
10555
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:36:in `call'
10556
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
10557
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
10558
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
10559
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:601:in `call'
10560
+ railties (3.2.11) lib/rails/engine.rb:479:in `call'
10561
+ railties (3.2.11) lib/rails/railtie/configurable.rb:30:in `method_missing'
10562
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
10563
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
10564
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
10565
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:601:in `call'
10566
+ actionpack (3.2.11) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
10567
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
10568
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
10569
+ actionpack (3.2.11) lib/action_dispatch/middleware/head.rb:14:in `call'
10570
+ actionpack (3.2.11) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
10571
+ actionpack (3.2.11) lib/action_dispatch/middleware/flash.rb:242:in `call'
10572
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
10573
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
10574
+ actionpack (3.2.11) lib/action_dispatch/middleware/cookies.rb:341:in `call'
10575
+ activerecord (3.2.11) lib/active_record/query_cache.rb:64:in `call'
10576
+ activerecord (3.2.11) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
10577
+ actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
10578
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `_run__679796395908959369__call__1677481955881507164__callbacks'
10579
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
10580
+ activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
10581
+ activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
10582
+ actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
10583
+ actionpack (3.2.11) lib/action_dispatch/middleware/reloader.rb:65:in `call'
10584
+ actionpack (3.2.11) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
10585
+ actionpack (3.2.11) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
10586
+ actionpack (3.2.11) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
10587
+ railties (3.2.11) lib/rails/rack/logger.rb:32:in `call_app'
10588
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `block in call'
10589
+ activesupport (3.2.11) lib/active_support/tagged_logging.rb:22:in `tagged'
10590
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `call'
10591
+ actionpack (3.2.11) lib/action_dispatch/middleware/request_id.rb:22:in `call'
10592
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
10593
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
10594
+ activesupport (3.2.11) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
10595
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
10596
+ actionpack (3.2.11) lib/action_dispatch/middleware/static.rb:62:in `call'
10597
+ railties (3.2.11) lib/rails/engine.rb:479:in `call'
10598
+ railties (3.2.11) lib/rails/application.rb:223:in `call'
10599
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
10600
+ railties (3.2.11) lib/rails/rack/log_tailer.rb:17:in `call'
10601
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
10602
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
10603
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
10604
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
10605
+
10606
+
10607
+ Rendered /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
10608
+ Rendered /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
10609
+ Rendered /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.3ms)
10610
+
10611
+
10612
+ Started GET "/cielo_assets" for 127.0.0.1 at 2013-02-11 23:55:41 -0200
10613
+ Processing by CieloAssets::SampleController#index as HTML
10614
+ Rendered /Users/fabio/workspace/miranti/cielo_assets/app/views/cielo_assets/sample/index.html.erb within layouts/cielo_assets/application (32.1ms)
10615
+ Completed 500 Internal Server Error in 34ms
10616
+
10617
+ ActionView::Template::Error (undefined method `cielo_controls' for #<ActionView::Helpers::FormBuilder:0x007feca18b2ca8>):
10618
+ 21: <%= form_for :my_object do |f| %>
10619
+ 22: <h1>With Form Builder</h1>
10620
+ 23:
10621
+ 24: <%= f.cielo_controls :field %>
10622
+ 25: <%= f.submit_tag %>
10623
+ 26: <% end %>
10624
+ /Users/fabio/workspace/miranti/cielo_assets/app/views/cielo_assets/sample/index.html.erb:24:in `block in ___sers_fabio_workspace_miranti_cielo_assets_app_views_cielo_assets_sample_index_html_erb__493282476143827589_70327163164980'
10625
+ actionpack (3.2.11) lib/action_view/helpers/capture_helper.rb:40:in `block in capture'
10626
+ actionpack (3.2.11) lib/action_view/helpers/capture_helper.rb:187:in `with_output_buffer'
10627
+ actionpack (3.2.11) lib/action_view/helpers/capture_helper.rb:40:in `capture'
10628
+ actionpack (3.2.11) lib/action_view/helpers/form_helper.rb:607:in `fields_for'
10629
+ actionpack (3.2.11) lib/action_view/helpers/form_helper.rb:378:in `form_for'
10630
+ /Users/fabio/workspace/miranti/cielo_assets/app/views/cielo_assets/sample/index.html.erb:21:in `___sers_fabio_workspace_miranti_cielo_assets_app_views_cielo_assets_sample_index_html_erb__493282476143827589_70327163164980'
10631
+ actionpack (3.2.11) lib/action_view/template.rb:145:in `block in render'
10632
+ activesupport (3.2.11) lib/active_support/notifications.rb:125:in `instrument'
10633
+ actionpack (3.2.11) lib/action_view/template.rb:143:in `render'
10634
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
10635
+ actionpack (3.2.11) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
10636
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `block in instrument'
10637
+ activesupport (3.2.11) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
10638
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `instrument'
10639
+ actionpack (3.2.11) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
10640
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
10641
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
10642
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
10643
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:18:in `render'
10644
+ actionpack (3.2.11) lib/action_view/renderer/renderer.rb:36:in `render_template'
10645
+ actionpack (3.2.11) lib/action_view/renderer/renderer.rb:17:in `render'
10646
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:110:in `_render_template'
10647
+ actionpack (3.2.11) lib/action_controller/metal/streaming.rb:225:in `_render_template'
10648
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:103:in `render_to_body'
10649
+ actionpack (3.2.11) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
10650
+ actionpack (3.2.11) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
10651
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:88:in `render'
10652
+ actionpack (3.2.11) lib/action_controller/metal/rendering.rb:16:in `render'
10653
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
10654
+ activesupport (3.2.11) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
10655
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
10656
+ activesupport (3.2.11) lib/active_support/core_ext/benchmark.rb:5:in `ms'
10657
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
10658
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
10659
+ activerecord (3.2.11) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
10660
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:39:in `render'
10661
+ actionpack (3.2.11) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
10662
+ actionpack (3.2.11) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
10663
+ actionpack (3.2.11) lib/abstract_controller/base.rb:167:in `process_action'
10664
+ actionpack (3.2.11) lib/action_controller/metal/rendering.rb:10:in `process_action'
10665
+ actionpack (3.2.11) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
10666
+ activesupport (3.2.11) lib/active_support/callbacks.rb:403:in `_run__253983612746678598__process_action__1240626965392925741__callbacks'
10667
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
10668
+ activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
10669
+ activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
10670
+ actionpack (3.2.11) lib/abstract_controller/callbacks.rb:17:in `process_action'
10671
+ actionpack (3.2.11) lib/action_controller/metal/rescue.rb:29:in `process_action'
10672
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
10673
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `block in instrument'
10674
+ activesupport (3.2.11) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
10675
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `instrument'
10676
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
10677
+ actionpack (3.2.11) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
10678
+ activerecord (3.2.11) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
10679
+ actionpack (3.2.11) lib/abstract_controller/base.rb:121:in `process'
10680
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:45:in `process'
10681
+ actionpack (3.2.11) lib/action_controller/metal.rb:203:in `dispatch'
10682
+ actionpack (3.2.11) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
10683
+ actionpack (3.2.11) lib/action_controller/metal.rb:246:in `block in action'
10684
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:73:in `call'
10685
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
10686
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:36:in `call'
10687
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
10688
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
10689
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
10690
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:601:in `call'
10691
+ railties (3.2.11) lib/rails/engine.rb:479:in `call'
10692
+ railties (3.2.11) lib/rails/railtie/configurable.rb:30:in `method_missing'
10693
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
10694
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
10695
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
10696
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:601:in `call'
10697
+ actionpack (3.2.11) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
10698
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
10699
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
10700
+ actionpack (3.2.11) lib/action_dispatch/middleware/head.rb:14:in `call'
10701
+ actionpack (3.2.11) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
10702
+ actionpack (3.2.11) lib/action_dispatch/middleware/flash.rb:242:in `call'
10703
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
10704
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
10705
+ actionpack (3.2.11) lib/action_dispatch/middleware/cookies.rb:341:in `call'
10706
+ activerecord (3.2.11) lib/active_record/query_cache.rb:64:in `call'
10707
+ activerecord (3.2.11) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
10708
+ actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
10709
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `_run__679796395908959369__call__1677481955881507164__callbacks'
10710
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
10711
+ activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
10712
+ activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
10713
+ actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
10714
+ actionpack (3.2.11) lib/action_dispatch/middleware/reloader.rb:65:in `call'
10715
+ actionpack (3.2.11) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
10716
+ actionpack (3.2.11) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
10717
+ actionpack (3.2.11) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
10718
+ railties (3.2.11) lib/rails/rack/logger.rb:32:in `call_app'
10719
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `block in call'
10720
+ activesupport (3.2.11) lib/active_support/tagged_logging.rb:22:in `tagged'
10721
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `call'
10722
+ actionpack (3.2.11) lib/action_dispatch/middleware/request_id.rb:22:in `call'
10723
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
10724
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
10725
+ activesupport (3.2.11) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
10726
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
10727
+ actionpack (3.2.11) lib/action_dispatch/middleware/static.rb:62:in `call'
10728
+ railties (3.2.11) lib/rails/engine.rb:479:in `call'
10729
+ railties (3.2.11) lib/rails/application.rb:223:in `call'
10730
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
10731
+ railties (3.2.11) lib/rails/rack/log_tailer.rb:17:in `call'
10732
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
10733
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
10734
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
10735
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
10736
+
10737
+
10738
+ Rendered /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
10739
+ Rendered /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
10740
+ Rendered /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.4ms)
10741
+
10742
+
10743
+ Started GET "/cielo_assets" for 127.0.0.1 at 2013-02-11 23:58:24 -0200
10744
+ Connecting to database specified by database.yml
10745
+ Processing by CieloAssets::SampleController#index as HTML
10746
+ Rendered /Users/fabio/workspace/miranti/cielo_assets/app/views/cielo_assets/sample/index.html.erb within layouts/cielo_assets/application (19.5ms)
10747
+ Completed 500 Internal Server Error in 43ms
10748
+
10749
+ ActionView::Template::Error (undefined method `submit_tag' for #<ActionView::Helpers::FormBuilder:0x007fc6e2628210>):
10750
+ 22: <h1>With Form Builder</h1>
10751
+ 23:
10752
+ 24: <%= f.cielo :field %>
10753
+ 25: <%= f.submit_tag %>
10754
+ 26: <% end %>
10755
+ /Users/fabio/workspace/miranti/cielo_assets/app/views/cielo_assets/sample/index.html.erb:25:in `block in ___sers_fabio_workspace_miranti_cielo_assets_app_views_cielo_assets_sample_index_html_erb__3110067749632627471_70246086523740'
10756
+ actionpack (3.2.11) lib/action_view/helpers/capture_helper.rb:40:in `block in capture'
10757
+ actionpack (3.2.11) lib/action_view/helpers/capture_helper.rb:187:in `with_output_buffer'
10758
+ actionpack (3.2.11) lib/action_view/helpers/capture_helper.rb:40:in `capture'
10759
+ actionpack (3.2.11) lib/action_view/helpers/form_helper.rb:607:in `fields_for'
10760
+ actionpack (3.2.11) lib/action_view/helpers/form_helper.rb:378:in `form_for'
10761
+ /Users/fabio/workspace/miranti/cielo_assets/app/views/cielo_assets/sample/index.html.erb:21:in `___sers_fabio_workspace_miranti_cielo_assets_app_views_cielo_assets_sample_index_html_erb__3110067749632627471_70246086523740'
10762
+ actionpack (3.2.11) lib/action_view/template.rb:145:in `block in render'
10763
+ activesupport (3.2.11) lib/active_support/notifications.rb:125:in `instrument'
10764
+ actionpack (3.2.11) lib/action_view/template.rb:143:in `render'
10765
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
10766
+ actionpack (3.2.11) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
10767
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `block in instrument'
10768
+ activesupport (3.2.11) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
10769
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `instrument'
10770
+ actionpack (3.2.11) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
10771
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
10772
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
10773
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
10774
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:18:in `render'
10775
+ actionpack (3.2.11) lib/action_view/renderer/renderer.rb:36:in `render_template'
10776
+ actionpack (3.2.11) lib/action_view/renderer/renderer.rb:17:in `render'
10777
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:110:in `_render_template'
10778
+ actionpack (3.2.11) lib/action_controller/metal/streaming.rb:225:in `_render_template'
10779
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:103:in `render_to_body'
10780
+ actionpack (3.2.11) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
10781
+ actionpack (3.2.11) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
10782
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:88:in `render'
10783
+ actionpack (3.2.11) lib/action_controller/metal/rendering.rb:16:in `render'
10784
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
10785
+ activesupport (3.2.11) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
10786
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
10787
+ activesupport (3.2.11) lib/active_support/core_ext/benchmark.rb:5:in `ms'
10788
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
10789
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
10790
+ activerecord (3.2.11) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
10791
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:39:in `render'
10792
+ actionpack (3.2.11) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
10793
+ actionpack (3.2.11) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
10794
+ actionpack (3.2.11) lib/abstract_controller/base.rb:167:in `process_action'
10795
+ actionpack (3.2.11) lib/action_controller/metal/rendering.rb:10:in `process_action'
10796
+ actionpack (3.2.11) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
10797
+ activesupport (3.2.11) lib/active_support/callbacks.rb:403:in `_run__634249998731160370__process_action__2608444845866624250__callbacks'
10798
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
10799
+ activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
10800
+ activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
10801
+ actionpack (3.2.11) lib/abstract_controller/callbacks.rb:17:in `process_action'
10802
+ actionpack (3.2.11) lib/action_controller/metal/rescue.rb:29:in `process_action'
10803
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
10804
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `block in instrument'
10805
+ activesupport (3.2.11) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
10806
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `instrument'
10807
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
10808
+ actionpack (3.2.11) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
10809
+ activerecord (3.2.11) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
10810
+ actionpack (3.2.11) lib/abstract_controller/base.rb:121:in `process'
10811
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:45:in `process'
10812
+ actionpack (3.2.11) lib/action_controller/metal.rb:203:in `dispatch'
10813
+ actionpack (3.2.11) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
10814
+ actionpack (3.2.11) lib/action_controller/metal.rb:246:in `block in action'
10815
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:73:in `call'
10816
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
10817
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:36:in `call'
10818
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
10819
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
10820
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
10821
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:601:in `call'
10822
+ railties (3.2.11) lib/rails/engine.rb:479:in `call'
10823
+ railties (3.2.11) lib/rails/railtie/configurable.rb:30:in `method_missing'
10824
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
10825
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
10826
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
10827
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:601:in `call'
10828
+ actionpack (3.2.11) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
10829
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
10830
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
10831
+ actionpack (3.2.11) lib/action_dispatch/middleware/head.rb:14:in `call'
10832
+ actionpack (3.2.11) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
10833
+ actionpack (3.2.11) lib/action_dispatch/middleware/flash.rb:242:in `call'
10834
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
10835
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
10836
+ actionpack (3.2.11) lib/action_dispatch/middleware/cookies.rb:341:in `call'
10837
+ activerecord (3.2.11) lib/active_record/query_cache.rb:64:in `call'
10838
+ activerecord (3.2.11) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
10839
+ actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
10840
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `_run__1552057185131539934__call__693184939323913657__callbacks'
10841
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
10842
+ activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
10843
+ activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
10844
+ actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
10845
+ actionpack (3.2.11) lib/action_dispatch/middleware/reloader.rb:65:in `call'
10846
+ actionpack (3.2.11) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
10847
+ actionpack (3.2.11) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
10848
+ actionpack (3.2.11) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
10849
+ railties (3.2.11) lib/rails/rack/logger.rb:32:in `call_app'
10850
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `block in call'
10851
+ activesupport (3.2.11) lib/active_support/tagged_logging.rb:22:in `tagged'
10852
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `call'
10853
+ actionpack (3.2.11) lib/action_dispatch/middleware/request_id.rb:22:in `call'
10854
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
10855
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
10856
+ activesupport (3.2.11) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
10857
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
10858
+ actionpack (3.2.11) lib/action_dispatch/middleware/static.rb:62:in `call'
10859
+ railties (3.2.11) lib/rails/engine.rb:479:in `call'
10860
+ railties (3.2.11) lib/rails/application.rb:223:in `call'
10861
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
10862
+ railties (3.2.11) lib/rails/rack/log_tailer.rb:17:in `call'
10863
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
10864
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
10865
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
10866
+ /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
10867
+
10868
+
10869
+ Rendered /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
10870
+ Rendered /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
10871
+ Rendered /Users/fabio/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.6ms)
10872
+
10873
+
10874
+ Started GET "/cielo_assets" for 127.0.0.1 at 2013-02-11 23:58:37 -0200
10875
+ Processing by CieloAssets::SampleController#index as HTML
10876
+ Rendered /Users/fabio/workspace/miranti/cielo_assets/app/views/cielo_assets/sample/index.html.erb within layouts/cielo_assets/application (5.3ms)
10877
+ Completed 200 OK in 83ms (Views: 82.5ms | ActiveRecord: 0.0ms)
10878
+
10879
+
10880
+ Started GET "/assets/cielo_assets/controls.css?body=1" for 127.0.0.1 at 2013-02-11 23:58:37 -0200
10881
+ Served asset /cielo_assets/controls.css - 304 Not Modified (3ms)
10882
+
10883
+
10884
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-02-11 23:58:37 -0200
10885
+ Served asset /jquery.js - 304 Not Modified (7ms)
10886
+
10887
+
10888
+ Started GET "/assets/cielo_assets.css?body=1" for 127.0.0.1 at 2013-02-11 23:58:37 -0200
10889
+ Served asset /cielo_assets.css - 304 Not Modified (2ms)
10890
+
10891
+
10892
+ Started GET "/assets/cielo_assets.js?body=1" for 127.0.0.1 at 2013-02-11 23:58:37 -0200
10893
+ Served asset /cielo_assets.js - 304 Not Modified (6ms)
10894
+
10895
+
10896
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-02-11 23:58:37 -0200
10897
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
10898
+
10899
+
10900
+ Started GET "/assets/cielo_assets/controls.js?body=1" for 127.0.0.1 at 2013-02-11 23:58:37 -0200
10901
+ Served asset /cielo_assets/controls.js - 304 Not Modified (2ms)
10902
+
10903
+
10904
+ Started GET "/cielo_assets" for 127.0.0.1 at 2013-02-12 00:00:32 -0200
10905
+ Connecting to database specified by database.yml
10906
+ Processing by CieloAssets::SampleController#index as HTML
10907
+ Rendered /Users/fabio/workspace/miranti/cielo_assets/app/views/cielo_assets/sample/index.html.erb within layouts/cielo_assets/application (9.3ms)
10908
+ Completed 200 OK in 30ms (Views: 29.9ms | ActiveRecord: 0.0ms)
10909
+
10910
+
10911
+ Started GET "/assets/cielo_assets/controls.css?body=1" for 127.0.0.1 at 2013-02-12 00:00:32 -0200
10912
+ Served asset /cielo_assets/controls.css - 304 Not Modified (3ms)
10913
+
10914
+
10915
+ Started GET "/assets/cielo_assets.css?body=1" for 127.0.0.1 at 2013-02-12 00:00:32 -0200
10916
+ Served asset /cielo_assets.css - 304 Not Modified (4ms)
10917
+
10918
+
10919
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-02-12 00:00:32 -0200
10920
+ Served asset /jquery.js - 304 Not Modified (1ms)
10921
+
10922
+
10923
+ Started GET "/assets/cielo_assets.js?body=1" for 127.0.0.1 at 2013-02-12 00:00:32 -0200
10924
+ Served asset /cielo_assets.js - 304 Not Modified (6ms)
10925
+
10926
+
10927
+ Started GET "/assets/cielo_assets/controls.js?body=1" for 127.0.0.1 at 2013-02-12 00:00:32 -0200
10928
+ Served asset /cielo_assets/controls.js - 304 Not Modified (1ms)
10929
+
10930
+
10931
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-02-12 00:00:32 -0200
10932
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)