tb-helpers 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/MIT-LICENSE +20 -0
- data/README.md +3 -0
- data/Rakefile +36 -0
- data/lib/tasks/tb-helpers_tasks.rake +4 -0
- data/lib/tb-helpers.rb +8 -0
- data/lib/tb-helpers/base.rb +433 -0
- data/lib/tb-helpers/components.rb +112 -0
- data/lib/tb-helpers/railtie.rb +6 -0
- data/lib/tb-helpers/version.rb +3 -0
- data/test/dummy/README.rdoc +261 -0
- data/test/dummy/Rakefile +7 -0
- data/test/dummy/app/assets/javascripts/application.js +15 -0
- data/test/dummy/app/assets/stylesheets/application.css +13 -0
- data/test/dummy/app/controllers/application_controller.rb +29 -0
- data/test/dummy/app/helpers/application_helper.rb +19 -0
- data/test/dummy/app/views/application/_tb_button_group.html.erb +3 -0
- data/test/dummy/app/views/application/_tb_form_for.html.erb +75 -0
- data/test/dummy/app/views/application/_tb_icon.html.erb +5 -0
- data/test/dummy/app/views/application/_tb_table.html.erb +11 -0
- data/test/dummy/app/views/application/index.html.erb +7 -0
- data/test/dummy/app/views/layouts/application.html.erb +22 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/config/application.rb +59 -0
- data/test/dummy/config/boot.rb +10 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +37 -0
- data/test/dummy/config/environments/production.rb +67 -0
- data/test/dummy/config/environments/test.rb +37 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/inflections.rb +15 -0
- data/test/dummy/config/initializers/mime_types.rb +5 -0
- data/test/dummy/config/initializers/secret_token.rb +7 -0
- data/test/dummy/config/initializers/session_store.rb +8 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +5 -0
- data/test/dummy/config/routes.rb +58 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +3568 -0
- data/test/dummy/log/test.log +3 -0
- data/test/dummy/public/404.html +26 -0
- data/test/dummy/public/422.html +26 -0
- data/test/dummy/public/500.html +25 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/script/rails +6 -0
- data/test/dummy/tmp/cache/assets/CB1/250/sprockets%2Ff855a83153740f4d283850aee911ba66 +0 -0
- data/test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
- data/test/dummy/tmp/cache/assets/D0B/210/sprockets%2F0aa9423d3d5f9e53b64d393f621b93b1 +0 -0
- data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/test/dummy/tmp/cache/assets/D38/1E0/sprockets%2F693567f5af110bb187ac31eda8ca8442 +0 -0
- data/test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/test/dummy/tmp/cache/assets/DCF/A60/sprockets%2Fec92ed854ea14306cea2ff33733f9dad +0 -0
- data/test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/test/tb-helpers_test.rb +7 -0
- data/test/test_helper.rb +15 -0
- metadata +190 -0
@@ -0,0 +1,7 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Your secret key for verifying the integrity of signed cookies.
|
4
|
+
# If you change this key, all old signed cookies will become invalid!
|
5
|
+
# Make sure the secret is at least 30 characters and all random,
|
6
|
+
# no regular words or you'll be exposed to dictionary attacks.
|
7
|
+
Dummy::Application.config.secret_token = 'b12e511095f84fce249f06ff376e55ed634437e90feb06e81782352cc2df9e7e815a98759e7f31bf15814a8f06fac12007ed9fe1928539ee903496ee03cb3f94'
|
@@ -0,0 +1,8 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
Dummy::Application.config.session_store :cookie_store, key: '_dummy_session'
|
4
|
+
|
5
|
+
# Use the database for sessions instead of the cookie-based default,
|
6
|
+
# which shouldn't be used to store highly confidential information
|
7
|
+
# (create the session table with "rails generate session_migration")
|
8
|
+
# Dummy::Application.config.session_store :active_record_store
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
#
|
3
|
+
# This file contains settings for ActionController::ParamsWrapper which
|
4
|
+
# is enabled by default.
|
5
|
+
|
6
|
+
# Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
|
7
|
+
ActiveSupport.on_load(:action_controller) do
|
8
|
+
wrap_parameters format: [:json]
|
9
|
+
end
|
10
|
+
|
11
|
+
# Disable root element in JSON by default.
|
12
|
+
ActiveSupport.on_load(:active_record) do
|
13
|
+
self.include_root_in_json = false
|
14
|
+
end
|
@@ -0,0 +1,58 @@
|
|
1
|
+
Dummy::Application.routes.draw do
|
2
|
+
# The priority is based upon order of creation:
|
3
|
+
# first created -> highest priority.
|
4
|
+
|
5
|
+
# Sample of regular route:
|
6
|
+
# match 'products/:id' => 'catalog#view'
|
7
|
+
# Keep in mind you can assign values other than :controller and :action
|
8
|
+
|
9
|
+
# Sample of named route:
|
10
|
+
# match 'products/:id/purchase' => 'catalog#purchase', :as => :purchase
|
11
|
+
# This route can be invoked with purchase_url(:id => product.id)
|
12
|
+
|
13
|
+
# Sample resource route (maps HTTP verbs to controller actions automatically):
|
14
|
+
# resources :products
|
15
|
+
|
16
|
+
# Sample resource route with options:
|
17
|
+
# resources :products do
|
18
|
+
# member do
|
19
|
+
# get 'short'
|
20
|
+
# post 'toggle'
|
21
|
+
# end
|
22
|
+
#
|
23
|
+
# collection do
|
24
|
+
# get 'sold'
|
25
|
+
# end
|
26
|
+
# end
|
27
|
+
|
28
|
+
# Sample resource route with sub-resources:
|
29
|
+
# resources :products do
|
30
|
+
# resources :comments, :sales
|
31
|
+
# resource :seller
|
32
|
+
# end
|
33
|
+
|
34
|
+
# Sample resource route with more complex sub-resources
|
35
|
+
# resources :products do
|
36
|
+
# resources :comments
|
37
|
+
# resources :sales do
|
38
|
+
# get 'recent', :on => :collection
|
39
|
+
# end
|
40
|
+
# end
|
41
|
+
|
42
|
+
# Sample resource route within a namespace:
|
43
|
+
# namespace :admin do
|
44
|
+
# # Directs /admin/products/* to Admin::ProductsController
|
45
|
+
# # (app/controllers/admin/products_controller.rb)
|
46
|
+
# resources :products
|
47
|
+
# end
|
48
|
+
|
49
|
+
# You can have the root of your site routed with "root"
|
50
|
+
# just remember to delete public/index.html.
|
51
|
+
root :to => 'application#index'
|
52
|
+
|
53
|
+
# See how all your routes lay out with "rake routes"
|
54
|
+
|
55
|
+
# This is a legacy wild controller route that's not recommended for RESTful applications.
|
56
|
+
# Note: This route will make all actions in every controller accessible via GET requests.
|
57
|
+
# match ':controller(/:action(/:id))(.:format)'
|
58
|
+
end
|
File without changes
|
File without changes
|
@@ -0,0 +1,3568 @@
|
|
1
|
+
Connecting to database specified by database.yml
|
2
|
+
|
3
|
+
|
4
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 22:29:48 +0200
|
5
|
+
Processing by ApplicationController#index as HTML
|
6
|
+
Completed 500 Internal Server Error in 8ms
|
7
|
+
|
8
|
+
ActionView::MissingTemplate (Missing template application/index with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in:
|
9
|
+
* "/Users/micha/Projects/tb-helpers/test/dummy/app/views"
|
10
|
+
):
|
11
|
+
actionpack (3.2.13) lib/action_view/path_set.rb:58:in `find'
|
12
|
+
actionpack (3.2.13) lib/action_view/lookup_context.rb:109:in `find'
|
13
|
+
actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:3:in `find_template'
|
14
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:34:in `determine_template'
|
15
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:10:in `render'
|
16
|
+
actionpack (3.2.13) lib/action_view/renderer/renderer.rb:36:in `render_template'
|
17
|
+
actionpack (3.2.13) lib/action_view/renderer/renderer.rb:17:in `render'
|
18
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:110:in `_render_template'
|
19
|
+
actionpack (3.2.13) lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
20
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
21
|
+
actionpack (3.2.13) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
22
|
+
actionpack (3.2.13) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
23
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:88:in `render'
|
24
|
+
actionpack (3.2.13) lib/action_controller/metal/rendering.rb:16:in `render'
|
25
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
26
|
+
activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
27
|
+
/Users/micha/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
|
28
|
+
activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
29
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
30
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
31
|
+
activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
|
32
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:39:in `render'
|
33
|
+
actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
34
|
+
actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
|
35
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
|
36
|
+
actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
37
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
38
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:414:in `_run__2371495863894019058__process_action__3629095613160186211__callbacks'
|
39
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
40
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
41
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
42
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
43
|
+
actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
44
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
45
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
|
46
|
+
activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
47
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
|
48
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
49
|
+
actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
50
|
+
activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
51
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
|
52
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
|
53
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
|
54
|
+
actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
55
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
|
56
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
57
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
58
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
59
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
60
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
61
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
62
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
63
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
64
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
65
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
66
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
|
67
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
68
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
69
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
70
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
71
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
72
|
+
activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
|
73
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
74
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
75
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__351458462584419530__call__3822577193292732798__callbacks'
|
76
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
77
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
78
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
79
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
80
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
81
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
82
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
83
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
84
|
+
railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
|
85
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
|
86
|
+
activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
|
87
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
|
88
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
89
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
90
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
91
|
+
activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
92
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
93
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
|
94
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
95
|
+
railties (3.2.13) lib/rails/application.rb:223:in `call'
|
96
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
97
|
+
railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
|
98
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
99
|
+
/Users/micha/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
100
|
+
/Users/micha/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
101
|
+
/Users/micha/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
102
|
+
|
103
|
+
|
104
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (1.6ms)
|
105
|
+
|
106
|
+
|
107
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 22:36:26 +0200
|
108
|
+
Processing by ApplicationController#index as HTML
|
109
|
+
Rendered application/index.html.erb within layouts/application (0.4ms)
|
110
|
+
Compiled application.css (1ms) (pid 1886)
|
111
|
+
Compiled jquery.js (3ms) (pid 1886)
|
112
|
+
Compiled jquery_ujs.js (0ms) (pid 1886)
|
113
|
+
Compiled application.js (67ms) (pid 1886)
|
114
|
+
Completed 500 Internal Server Error in 133ms
|
115
|
+
|
116
|
+
ActionView::Template::Error (undefined local variable or method `tb_stylesheet_link_tag' for #<#<Class:0x007f85ce3d9c70>:0x007f85cc620fd0>):
|
117
|
+
5: <%= stylesheet_link_tag "application", :media => "all" %>
|
118
|
+
6: <%= javascript_include_tag "application" %>
|
119
|
+
7:
|
120
|
+
8: <%= tb_stylesheet_link_tag %>
|
121
|
+
9: <%= tb_javascript_include_tag %>
|
122
|
+
10:
|
123
|
+
11: <%= csrf_meta_tags %>
|
124
|
+
app/views/layouts/application.html.erb:8:in `_app_views_layouts_application_html_erb__813336328677190220_70106320222540'
|
125
|
+
|
126
|
+
|
127
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.0ms)
|
128
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
|
129
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (43.2ms)
|
130
|
+
Connecting to database specified by database.yml
|
131
|
+
|
132
|
+
|
133
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 22:36:41 +0200
|
134
|
+
Processing by ApplicationController#index as HTML
|
135
|
+
Rendered application/index.html.erb within layouts/application (1.4ms)
|
136
|
+
Completed 200 OK in 30ms (Views: 29.4ms | ActiveRecord: 0.0ms)
|
137
|
+
|
138
|
+
|
139
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 22:36:41 +0200
|
140
|
+
Served asset /jquery.js - 200 OK (4ms)
|
141
|
+
|
142
|
+
|
143
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-05 22:36:41 +0200
|
144
|
+
Served asset /application.css - 200 OK (4ms)
|
145
|
+
|
146
|
+
|
147
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 22:36:41 +0200
|
148
|
+
Served asset /jquery_ujs.js - 200 OK (3ms)
|
149
|
+
|
150
|
+
|
151
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-05 22:36:41 +0200
|
152
|
+
Served asset /application.js - 200 OK (5ms)
|
153
|
+
|
154
|
+
|
155
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 22:38:00 +0200
|
156
|
+
Processing by ApplicationController#index as HTML
|
157
|
+
Rendered application/index.html.erb within layouts/application (2.5ms)
|
158
|
+
Completed 500 Internal Server Error in 5ms
|
159
|
+
|
160
|
+
ActionView::Template::Error (wrong number of arguments (3 for 2)):
|
161
|
+
1: <h1>TbHelpers — Demo</h1>
|
162
|
+
2:
|
163
|
+
3: <h2>tb_lead()</h2>
|
164
|
+
4: <%= tb_lead('using tb_lead()') %>
|
165
|
+
app/views/application/index.html.erb:4:in `_app_views_application_index_html_erb___3121274425186169293_70108385993580'
|
166
|
+
|
167
|
+
|
168
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.8ms)
|
169
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
|
170
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.5ms)
|
171
|
+
Connecting to database specified by database.yml
|
172
|
+
|
173
|
+
|
174
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 22:38:57 +0200
|
175
|
+
Processing by ApplicationController#index as HTML
|
176
|
+
Rendered application/index.html.erb within layouts/application (3.3ms)
|
177
|
+
Completed 500 Internal Server Error in 10ms
|
178
|
+
|
179
|
+
ActionView::Template::Error (wrong number of arguments (3 for 2)):
|
180
|
+
1: <h1>TbHelpers — Demo</h1>
|
181
|
+
2:
|
182
|
+
3: <h2>tb_lead()</h2>
|
183
|
+
4: <%= tb_lead('using tb_lead()') %>
|
184
|
+
app/views/application/index.html.erb:4:in `_app_views_application_index_html_erb___1703946170083861380_70120809731020'
|
185
|
+
|
186
|
+
|
187
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.8ms)
|
188
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
|
189
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.6ms)
|
190
|
+
|
191
|
+
|
192
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 22:40:41 +0200
|
193
|
+
Processing by ApplicationController#index as HTML
|
194
|
+
Rendered application/index.html.erb within layouts/application (0.8ms)
|
195
|
+
Completed 500 Internal Server Error in 2ms
|
196
|
+
|
197
|
+
ActionView::Template::Error (wrong number of arguments (3 for 2)):
|
198
|
+
1: <h1>TbHelpers — Demo</h1>
|
199
|
+
2:
|
200
|
+
3: <h2>tb_lead()</h2>
|
201
|
+
4: <%= tb_lead('using tb_lead()') %>
|
202
|
+
app/views/application/index.html.erb:4:in `_app_views_application_index_html_erb___1703946170083861380_70120809731020'
|
203
|
+
|
204
|
+
|
205
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.9ms)
|
206
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.6ms)
|
207
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (10.7ms)
|
208
|
+
Connecting to database specified by database.yml
|
209
|
+
|
210
|
+
|
211
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 22:40:48 +0200
|
212
|
+
Processing by ApplicationController#index as HTML
|
213
|
+
Rendered application/index.html.erb within layouts/application (1.4ms)
|
214
|
+
Completed 200 OK in 24ms (Views: 23.8ms | ActiveRecord: 0.0ms)
|
215
|
+
|
216
|
+
|
217
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-05 22:40:49 +0200
|
218
|
+
Served asset /application.css - 304 Not Modified (2ms)
|
219
|
+
|
220
|
+
|
221
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-05 22:40:49 +0200
|
222
|
+
Served asset /application.js - 304 Not Modified (8ms)
|
223
|
+
|
224
|
+
|
225
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 22:40:49 +0200
|
226
|
+
Served asset /jquery_ujs.js - 304 Not Modified (11ms)
|
227
|
+
|
228
|
+
|
229
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 22:40:49 +0200
|
230
|
+
Served asset /jquery.js - 304 Not Modified (3ms)
|
231
|
+
|
232
|
+
|
233
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 22:41:56 +0200
|
234
|
+
Processing by ApplicationController#index as HTML
|
235
|
+
Rendered application/index.html.erb within layouts/application (0.5ms)
|
236
|
+
Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.0ms)
|
237
|
+
|
238
|
+
|
239
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-05 22:41:56 +0200
|
240
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
241
|
+
|
242
|
+
|
243
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 22:41:56 +0200
|
244
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
245
|
+
|
246
|
+
|
247
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-05 22:41:56 +0200
|
248
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
249
|
+
|
250
|
+
|
251
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 22:41:56 +0200
|
252
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
253
|
+
Connecting to database specified by database.yml
|
254
|
+
|
255
|
+
|
256
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 22:42:08 +0200
|
257
|
+
Processing by ApplicationController#index as HTML
|
258
|
+
Rendered application/index.html.erb within layouts/application (1.4ms)
|
259
|
+
Completed 200 OK in 23ms (Views: 23.0ms | ActiveRecord: 0.0ms)
|
260
|
+
|
261
|
+
|
262
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-05 22:42:08 +0200
|
263
|
+
Served asset /application.css - 304 Not Modified (2ms)
|
264
|
+
|
265
|
+
|
266
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 22:42:08 +0200
|
267
|
+
Served asset /jquery.js - 304 Not Modified (3ms)
|
268
|
+
|
269
|
+
|
270
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 22:42:08 +0200
|
271
|
+
Served asset /jquery_ujs.js - 304 Not Modified (5ms)
|
272
|
+
|
273
|
+
|
274
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-05 22:42:08 +0200
|
275
|
+
Served asset /application.js - 304 Not Modified (5ms)
|
276
|
+
Connecting to database specified by database.yml
|
277
|
+
|
278
|
+
|
279
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 22:44:26 +0200
|
280
|
+
Processing by ApplicationController#index as HTML
|
281
|
+
Rendered application/index.html.erb within layouts/application (1.4ms)
|
282
|
+
Completed 200 OK in 25ms (Views: 24.2ms | ActiveRecord: 0.0ms)
|
283
|
+
|
284
|
+
|
285
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 22:44:26 +0200
|
286
|
+
Served asset /jquery.js - 304 Not Modified (13ms)
|
287
|
+
|
288
|
+
|
289
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-05 22:44:26 +0200
|
290
|
+
Served asset /application.js - 304 Not Modified (12ms)
|
291
|
+
|
292
|
+
|
293
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 22:44:26 +0200
|
294
|
+
Served asset /jquery_ujs.js - 304 Not Modified (4ms)
|
295
|
+
|
296
|
+
|
297
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-05 22:44:26 +0200
|
298
|
+
Served asset /application.css - 304 Not Modified (4ms)
|
299
|
+
|
300
|
+
|
301
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 22:48:05 +0200
|
302
|
+
Processing by ApplicationController#index as HTML
|
303
|
+
Rendered application/index.html.erb within layouts/application (8.1ms)
|
304
|
+
Completed 500 Internal Server Error in 10ms
|
305
|
+
|
306
|
+
ActionView::Template::Error (undefined method `emphasis' for #<#<Class:0x007fe0aac3dd80>:0x007fe0aac5e170>):
|
307
|
+
2:
|
308
|
+
3: <% @simple_methodes.each do |simple_methode| %>
|
309
|
+
4: <h2><%= simple_methode %></h2>
|
310
|
+
5: <%= send(simple_methode, "Using #{simple_methode.to_s}() here") %>
|
311
|
+
6: <% end %>
|
312
|
+
app/views/application/index.html.erb:5:in `block in _app_views_application_index_html_erb__1454449506133405240_70301457260620'
|
313
|
+
app/views/application/index.html.erb:3:in `each'
|
314
|
+
app/views/application/index.html.erb:3:in `_app_views_application_index_html_erb__1454449506133405240_70301457260620'
|
315
|
+
|
316
|
+
|
317
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.8ms)
|
318
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.5ms)
|
319
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (12.3ms)
|
320
|
+
|
321
|
+
|
322
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 22:48:29 +0200
|
323
|
+
Processing by ApplicationController#index as HTML
|
324
|
+
Rendered application/index.html.erb within layouts/application (6.1ms)
|
325
|
+
Completed 500 Internal Server Error in 8ms
|
326
|
+
|
327
|
+
ActionView::Template::Error (undefined method `emphasis' for #<#<Class:0x007fe0aac3dd80>:0x007fe0aaf61b60>):
|
328
|
+
2:
|
329
|
+
3: <% @simple_methodes.each do |simple_methode| %>
|
330
|
+
4: <h2><%= simple_methode %></h2>
|
331
|
+
5: <%= send(simple_methode, "Using #{simple_methode.to_s}() here") %>
|
332
|
+
6: <% end %>
|
333
|
+
app/views/application/index.html.erb:5:in `block in _app_views_application_index_html_erb__1454449506133405240_70301457260620'
|
334
|
+
app/views/application/index.html.erb:3:in `each'
|
335
|
+
app/views/application/index.html.erb:3:in `_app_views_application_index_html_erb__1454449506133405240_70301457260620'
|
336
|
+
|
337
|
+
|
338
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.9ms)
|
339
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
|
340
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (10.1ms)
|
341
|
+
Connecting to database specified by database.yml
|
342
|
+
|
343
|
+
|
344
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 22:51:28 +0200
|
345
|
+
Processing by ApplicationController#index as HTML
|
346
|
+
Rendered application/index.html.erb within layouts/application (8.9ms)
|
347
|
+
Completed 500 Internal Server Error in 28ms
|
348
|
+
|
349
|
+
ActionView::Template::Error (undefined local variable or method `classes' for #<#<Class:0x007fd5eb8bb0a0>:0x007fd5eb8c8778>):
|
350
|
+
2:
|
351
|
+
3: <% @simple_methodes.each do |simple_methode, simple_content| %>
|
352
|
+
4: <h2><%= simple_methode %></h2>
|
353
|
+
5: <%= send(simple_methode, simple_content || "Using #{simple_methode.to_s}() here") %>
|
354
|
+
6: <% end %>
|
355
|
+
app/views/application/index.html.erb:5:in `block in _app_views_application_index_html_erb___887330188264239128_70278367620200'
|
356
|
+
app/views/application/index.html.erb:3:in `each'
|
357
|
+
app/views/application/index.html.erb:3:in `_app_views_application_index_html_erb___887330188264239128_70278367620200'
|
358
|
+
|
359
|
+
|
360
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.8ms)
|
361
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
|
362
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.9ms)
|
363
|
+
Connecting to database specified by database.yml
|
364
|
+
|
365
|
+
|
366
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 22:52:51 +0200
|
367
|
+
Processing by ApplicationController#index as HTML
|
368
|
+
Rendered application/index.html.erb within layouts/application (2.6ms)
|
369
|
+
Completed 200 OK in 55ms (Views: 24.7ms | ActiveRecord: 0.0ms)
|
370
|
+
|
371
|
+
|
372
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-05 22:52:51 +0200
|
373
|
+
Served asset /application.css - 304 Not Modified (6ms)
|
374
|
+
|
375
|
+
|
376
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-05 22:52:51 +0200
|
377
|
+
Served asset /application.js - 304 Not Modified (12ms)
|
378
|
+
|
379
|
+
|
380
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 22:52:51 +0200
|
381
|
+
Served asset /jquery.js - 304 Not Modified (3ms)
|
382
|
+
|
383
|
+
|
384
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 22:52:51 +0200
|
385
|
+
Served asset /jquery_ujs.js - 304 Not Modified (2ms)
|
386
|
+
|
387
|
+
|
388
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 22:53:22 +0200
|
389
|
+
Processing by ApplicationController#index as HTML
|
390
|
+
Rendered application/index.html.erb within layouts/application (1.1ms)
|
391
|
+
Completed 200 OK in 6ms (Views: 5.7ms | ActiveRecord: 0.0ms)
|
392
|
+
|
393
|
+
|
394
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-05 22:53:22 +0200
|
395
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
396
|
+
|
397
|
+
|
398
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 22:53:22 +0200
|
399
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
400
|
+
|
401
|
+
|
402
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-05 22:53:22 +0200
|
403
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
404
|
+
|
405
|
+
|
406
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 22:53:22 +0200
|
407
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
408
|
+
|
409
|
+
|
410
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 22:54:30 +0200
|
411
|
+
Processing by ApplicationController#index as HTML
|
412
|
+
Rendered application/index.html.erb within layouts/application (0.6ms)
|
413
|
+
Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.0ms)
|
414
|
+
|
415
|
+
|
416
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 22:54:30 +0200
|
417
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
418
|
+
|
419
|
+
|
420
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 22:54:30 +0200
|
421
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
422
|
+
|
423
|
+
|
424
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-05 22:54:30 +0200
|
425
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
426
|
+
|
427
|
+
|
428
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-05 22:54:30 +0200
|
429
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
430
|
+
|
431
|
+
|
432
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 22:56:07 +0200
|
433
|
+
Processing by ApplicationController#index as HTML
|
434
|
+
Rendered application/index.html.erb within layouts/application (1.4ms)
|
435
|
+
Completed 200 OK in 7ms (Views: 6.5ms | ActiveRecord: 0.0ms)
|
436
|
+
|
437
|
+
|
438
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 22:56:08 +0200
|
439
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
440
|
+
|
441
|
+
|
442
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-05 22:56:08 +0200
|
443
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
444
|
+
|
445
|
+
|
446
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 22:56:08 +0200
|
447
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
448
|
+
|
449
|
+
|
450
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-05 22:56:08 +0200
|
451
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
452
|
+
|
453
|
+
|
454
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 22:56:25 +0200
|
455
|
+
Processing by ApplicationController#index as HTML
|
456
|
+
Rendered application/index.html.erb within layouts/application (0.7ms)
|
457
|
+
Completed 200 OK in 6ms (Views: 5.9ms | ActiveRecord: 0.0ms)
|
458
|
+
|
459
|
+
|
460
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 22:56:26 +0200
|
461
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
462
|
+
|
463
|
+
|
464
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 22:56:26 +0200
|
465
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
466
|
+
|
467
|
+
|
468
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-05 22:56:26 +0200
|
469
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
470
|
+
|
471
|
+
|
472
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-05 22:56:26 +0200
|
473
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
474
|
+
|
475
|
+
|
476
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 22:57:14 +0200
|
477
|
+
Processing by ApplicationController#index as HTML
|
478
|
+
Rendered application/index.html.erb within layouts/application (0.7ms)
|
479
|
+
Completed 200 OK in 7ms (Views: 6.5ms | ActiveRecord: 0.0ms)
|
480
|
+
|
481
|
+
|
482
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 22:57:14 +0200
|
483
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
484
|
+
|
485
|
+
|
486
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-05 22:57:14 +0200
|
487
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
488
|
+
|
489
|
+
|
490
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-05 22:57:14 +0200
|
491
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
492
|
+
|
493
|
+
|
494
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 22:57:14 +0200
|
495
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
496
|
+
|
497
|
+
|
498
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 22:59:10 +0200
|
499
|
+
|
500
|
+
SyntaxError (/Users/micha/Projects/tb-helpers/test/dummy/app/controllers/application_controller.rb:21: syntax error, unexpected tIDENTIFIER, expecting '}'
|
501
|
+
tb_link_button_to: ['Using tb_link_button_to()...
|
502
|
+
^
|
503
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/controllers/application_controller.rb:21: syntax error, unexpected ',', expecting keyword_end):
|
504
|
+
activesupport (3.2.13) lib/active_support/dependencies.rb:469:in `load'
|
505
|
+
activesupport (3.2.13) lib/active_support/dependencies.rb:469:in `block in load_file'
|
506
|
+
activesupport (3.2.13) lib/active_support/dependencies.rb:639:in `new_constants_in'
|
507
|
+
activesupport (3.2.13) lib/active_support/dependencies.rb:468:in `load_file'
|
508
|
+
activesupport (3.2.13) lib/active_support/dependencies.rb:353:in `require_or_load'
|
509
|
+
activesupport (3.2.13) lib/active_support/dependencies.rb:502:in `load_missing_constant'
|
510
|
+
activesupport (3.2.13) lib/active_support/dependencies.rb:192:in `block in const_missing'
|
511
|
+
activesupport (3.2.13) lib/active_support/dependencies.rb:190:in `each'
|
512
|
+
activesupport (3.2.13) lib/active_support/dependencies.rb:190:in `const_missing'
|
513
|
+
activesupport (3.2.13) lib/active_support/inflector/methods.rb:230:in `block in constantize'
|
514
|
+
activesupport (3.2.13) lib/active_support/inflector/methods.rb:229:in `each'
|
515
|
+
activesupport (3.2.13) lib/active_support/inflector/methods.rb:229:in `constantize'
|
516
|
+
activesupport (3.2.13) lib/active_support/dependencies.rb:554:in `get'
|
517
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
|
518
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:54:in `controller'
|
519
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:32:in `call'
|
520
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
521
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
522
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
523
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
524
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
525
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
526
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
527
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
|
528
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
529
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
530
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
531
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
532
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
533
|
+
activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
|
534
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
535
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
536
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__903979468214417319__call__1473614711745122369__callbacks'
|
537
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
538
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
539
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
540
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
541
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
542
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
543
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
544
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
545
|
+
railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
|
546
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
|
547
|
+
activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
|
548
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
|
549
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
550
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
551
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
552
|
+
activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
553
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
554
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
|
555
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
556
|
+
railties (3.2.13) lib/rails/application.rb:223:in `call'
|
557
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
558
|
+
railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
|
559
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
560
|
+
/Users/micha/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
561
|
+
/Users/micha/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
562
|
+
/Users/micha/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
563
|
+
|
564
|
+
|
565
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.7ms)
|
566
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
|
567
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.8ms)
|
568
|
+
|
569
|
+
|
570
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 22:59:33 +0200
|
571
|
+
|
572
|
+
SyntaxError (/Users/micha/Projects/tb-helpers/test/dummy/app/controllers/application_controller.rb:21: syntax error, unexpected tIDENTIFIER, expecting '}'
|
573
|
+
tb_link_button_to: ['Using tb_link_button_to()...
|
574
|
+
^
|
575
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/controllers/application_controller.rb:21: syntax error, unexpected ',', expecting keyword_end):
|
576
|
+
activesupport (3.2.13) lib/active_support/dependencies.rb:469:in `load'
|
577
|
+
activesupport (3.2.13) lib/active_support/dependencies.rb:469:in `block in load_file'
|
578
|
+
activesupport (3.2.13) lib/active_support/dependencies.rb:639:in `new_constants_in'
|
579
|
+
activesupport (3.2.13) lib/active_support/dependencies.rb:468:in `load_file'
|
580
|
+
activesupport (3.2.13) lib/active_support/dependencies.rb:353:in `require_or_load'
|
581
|
+
activesupport (3.2.13) lib/active_support/dependencies.rb:502:in `load_missing_constant'
|
582
|
+
activesupport (3.2.13) lib/active_support/dependencies.rb:192:in `block in const_missing'
|
583
|
+
activesupport (3.2.13) lib/active_support/dependencies.rb:190:in `each'
|
584
|
+
activesupport (3.2.13) lib/active_support/dependencies.rb:190:in `const_missing'
|
585
|
+
activesupport (3.2.13) lib/active_support/inflector/methods.rb:230:in `block in constantize'
|
586
|
+
activesupport (3.2.13) lib/active_support/inflector/methods.rb:229:in `each'
|
587
|
+
activesupport (3.2.13) lib/active_support/inflector/methods.rb:229:in `constantize'
|
588
|
+
activesupport (3.2.13) lib/active_support/dependencies.rb:554:in `get'
|
589
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
|
590
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:54:in `controller'
|
591
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:32:in `call'
|
592
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
593
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
594
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
595
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
596
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
597
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
598
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
599
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
|
600
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
601
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
602
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
603
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
604
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
605
|
+
activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
|
606
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
607
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
608
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__903979468214417319__call__1473614711745122369__callbacks'
|
609
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
610
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
611
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
612
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
613
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
614
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
615
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
616
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
617
|
+
railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
|
618
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
|
619
|
+
activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
|
620
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
|
621
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
622
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
623
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
624
|
+
activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
625
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
626
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
|
627
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
628
|
+
railties (3.2.13) lib/rails/application.rb:223:in `call'
|
629
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
630
|
+
railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
|
631
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
632
|
+
/Users/micha/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
633
|
+
/Users/micha/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
634
|
+
/Users/micha/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
635
|
+
|
636
|
+
|
637
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.8ms)
|
638
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
|
639
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.4ms)
|
640
|
+
|
641
|
+
|
642
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 22:59:46 +0200
|
643
|
+
Processing by ApplicationController#index as HTML
|
644
|
+
Rendered application/index.html.erb within layouts/application (3.2ms)
|
645
|
+
Completed 500 Internal Server Error in 23ms
|
646
|
+
|
647
|
+
ActionView::Template::Error (wrong number of arguments (2 for 1)):
|
648
|
+
4: <% @simple_methodes.each do |simple_methode, simple_args| %>
|
649
|
+
5: <% simple_args ||= ["Using #{simple_methode.to_s}() here"] %>
|
650
|
+
6: <h2><%= simple_methode %></h2>
|
651
|
+
7: <%= send(simple_methode, *simple_args) %>
|
652
|
+
8: <% end %>
|
653
|
+
app/views/application/index.html.erb:7:in `block in _app_views_application_index_html_erb___3287548993528022255_70199534179520'
|
654
|
+
app/views/application/index.html.erb:4:in `each'
|
655
|
+
app/views/application/index.html.erb:4:in `_app_views_application_index_html_erb___3287548993528022255_70199534179520'
|
656
|
+
|
657
|
+
|
658
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.4ms)
|
659
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.6ms)
|
660
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (27.9ms)
|
661
|
+
|
662
|
+
|
663
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 22:59:58 +0200
|
664
|
+
Processing by ApplicationController#index as HTML
|
665
|
+
Rendered application/index.html.erb within layouts/application (1.4ms)
|
666
|
+
Completed 500 Internal Server Error in 4ms
|
667
|
+
|
668
|
+
ActionView::Template::Error (wrong number of arguments (2 for 1)):
|
669
|
+
4: <% @simple_methodes.each do |simple_methode, simple_args| %>
|
670
|
+
5: <% simple_args ||= ["Using #{simple_methode.to_s}() here"] %>
|
671
|
+
6: <h2><%= simple_methode %></h2>
|
672
|
+
7: <%= send(simple_methode, *simple_args) %>
|
673
|
+
8: <% end %>
|
674
|
+
app/views/application/index.html.erb:7:in `block in _app_views_application_index_html_erb___3287548993528022255_70199534179520'
|
675
|
+
app/views/application/index.html.erb:4:in `each'
|
676
|
+
app/views/application/index.html.erb:4:in `_app_views_application_index_html_erb___3287548993528022255_70199534179520'
|
677
|
+
|
678
|
+
|
679
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.0ms)
|
680
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
|
681
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (10.4ms)
|
682
|
+
|
683
|
+
|
684
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 23:00:09 +0200
|
685
|
+
|
686
|
+
SyntaxError (/Users/micha/Projects/tb-helpers/test/dummy/app/controllers/application_controller.rb:18: syntax error, unexpected tAMPER, expecting ']'
|
687
|
+
tb_button_group: [nil, &Proc.new {
|
688
|
+
^
|
689
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/controllers/application_controller.rb:20: syntax error, unexpected ']', expecting keyword_end
|
690
|
+
}],
|
691
|
+
^
|
692
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/controllers/application_controller.rb:21: syntax error, unexpected ',', expecting keyword_end):
|
693
|
+
activesupport (3.2.13) lib/active_support/dependencies.rb:469:in `load'
|
694
|
+
activesupport (3.2.13) lib/active_support/dependencies.rb:469:in `block in load_file'
|
695
|
+
activesupport (3.2.13) lib/active_support/dependencies.rb:639:in `new_constants_in'
|
696
|
+
activesupport (3.2.13) lib/active_support/dependencies.rb:468:in `load_file'
|
697
|
+
activesupport (3.2.13) lib/active_support/dependencies.rb:353:in `require_or_load'
|
698
|
+
activesupport (3.2.13) lib/active_support/dependencies.rb:502:in `load_missing_constant'
|
699
|
+
activesupport (3.2.13) lib/active_support/dependencies.rb:192:in `block in const_missing'
|
700
|
+
activesupport (3.2.13) lib/active_support/dependencies.rb:190:in `each'
|
701
|
+
activesupport (3.2.13) lib/active_support/dependencies.rb:190:in `const_missing'
|
702
|
+
activesupport (3.2.13) lib/active_support/inflector/methods.rb:230:in `block in constantize'
|
703
|
+
activesupport (3.2.13) lib/active_support/inflector/methods.rb:229:in `each'
|
704
|
+
activesupport (3.2.13) lib/active_support/inflector/methods.rb:229:in `constantize'
|
705
|
+
activesupport (3.2.13) lib/active_support/dependencies.rb:554:in `get'
|
706
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
|
707
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:54:in `controller'
|
708
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:32:in `call'
|
709
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
710
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
711
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
712
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
713
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
714
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
715
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
716
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
|
717
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
718
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
719
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
720
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
721
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
722
|
+
activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
|
723
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
724
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
725
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__903979468214417319__call__1473614711745122369__callbacks'
|
726
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
727
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
728
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
729
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
730
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
731
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
732
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
733
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
734
|
+
railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
|
735
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
|
736
|
+
activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
|
737
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
|
738
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
739
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
740
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
741
|
+
activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
742
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
743
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
|
744
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
745
|
+
railties (3.2.13) lib/rails/application.rb:223:in `call'
|
746
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
747
|
+
railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
|
748
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
749
|
+
/Users/micha/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
750
|
+
/Users/micha/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
751
|
+
/Users/micha/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
752
|
+
|
753
|
+
|
754
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.0ms)
|
755
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
|
756
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.1ms)
|
757
|
+
|
758
|
+
|
759
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 23:00:19 +0200
|
760
|
+
Processing by ApplicationController#index as HTML
|
761
|
+
Rendered application/index.html.erb within layouts/application (1.9ms)
|
762
|
+
Completed 500 Internal Server Error in 5ms
|
763
|
+
|
764
|
+
ActionView::Template::Error (wrong number of arguments (2 for 1)):
|
765
|
+
4: <% @simple_methodes.each do |simple_methode, simple_args| %>
|
766
|
+
5: <% simple_args ||= ["Using #{simple_methode.to_s}() here"] %>
|
767
|
+
6: <h2><%= simple_methode %></h2>
|
768
|
+
7: <%= send(simple_methode, *simple_args) %>
|
769
|
+
8: <% end %>
|
770
|
+
app/views/application/index.html.erb:7:in `block in _app_views_application_index_html_erb___3287548993528022255_70199534179520'
|
771
|
+
app/views/application/index.html.erb:4:in `each'
|
772
|
+
app/views/application/index.html.erb:4:in `_app_views_application_index_html_erb___3287548993528022255_70199534179520'
|
773
|
+
|
774
|
+
|
775
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.1ms)
|
776
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.5ms)
|
777
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (27.9ms)
|
778
|
+
|
779
|
+
|
780
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 23:01:49 +0200
|
781
|
+
Processing by ApplicationController#index as HTML
|
782
|
+
Rendered application/index.html.erb within layouts/application (7.3ms)
|
783
|
+
Completed 500 Internal Server Error in 12ms
|
784
|
+
|
785
|
+
ActionView::Template::Error (undefined method `tb_button' for #<ApplicationController:0x007fb133738ed0>):
|
786
|
+
6: <h2><%= simple_methode %></h2>
|
787
|
+
7: <% if simple_args.last.is_a?(Proc) %>
|
788
|
+
8: <% block = simple_args.pop %>
|
789
|
+
9: <%= send(simple_methode, *simple_args, &block) %>
|
790
|
+
10: <% else %>
|
791
|
+
11: <%= send(simple_methode, *simple_args) %>
|
792
|
+
12: <% end %>
|
793
|
+
app/controllers/application_controller.rb:19:in `block in index'
|
794
|
+
app/views/application/index.html.erb:9:in `block in _app_views_application_index_html_erb___3287548993528022255_70199524470980'
|
795
|
+
app/views/application/index.html.erb:4:in `each'
|
796
|
+
app/views/application/index.html.erb:4:in `_app_views_application_index_html_erb___3287548993528022255_70199524470980'
|
797
|
+
|
798
|
+
|
799
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.4ms)
|
800
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.5ms)
|
801
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (42.1ms)
|
802
|
+
|
803
|
+
|
804
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 23:02:28 +0200
|
805
|
+
Processing by ApplicationController#index as HTML
|
806
|
+
Rendered application/index.html.erb within layouts/application (16.5ms)
|
807
|
+
Completed 500 Internal Server Error in 21ms
|
808
|
+
|
809
|
+
ActionView::Template::Error (undefined method `tb_button' for #<ApplicationController:0x007fb134a675b0>):
|
810
|
+
6: <h2><%= simple_methode %></h2>
|
811
|
+
7: <% if simple_args.last.is_a?(Proc) %>
|
812
|
+
8: <% block = simple_args.pop %>
|
813
|
+
9: <%= send(simple_methode, *simple_args, &block) %>
|
814
|
+
10: <% else %>
|
815
|
+
11: <%= send(simple_methode, *simple_args) %>
|
816
|
+
12: <% end %>
|
817
|
+
app/controllers/application_controller.rb:19:in `block in index'
|
818
|
+
app/views/application/index.html.erb:9:in `block in _app_views_application_index_html_erb___3287548993528022255_70199524470980'
|
819
|
+
app/views/application/index.html.erb:4:in `each'
|
820
|
+
app/views/application/index.html.erb:4:in `_app_views_application_index_html_erb___3287548993528022255_70199524470980'
|
821
|
+
|
822
|
+
|
823
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.0ms)
|
824
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
|
825
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (10.9ms)
|
826
|
+
|
827
|
+
|
828
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 23:02:34 +0200
|
829
|
+
Processing by ApplicationController#index as HTML
|
830
|
+
Rendered application/index.html.erb within layouts/application (22.3ms)
|
831
|
+
Completed 500 Internal Server Error in 25ms
|
832
|
+
|
833
|
+
ActionView::Template::Error (undefined method `tb_button' for #<ApplicationController:0x007fb134990f38>):
|
834
|
+
6: <h2><%= simple_methode %></h2>
|
835
|
+
7: <% if simple_args.last.is_a?(Proc) %>
|
836
|
+
8: <% block = simple_args.pop %>
|
837
|
+
9: <%= send(simple_methode, *simple_args, &block) %>
|
838
|
+
10: <% else %>
|
839
|
+
11: <%= send(simple_methode, *simple_args) %>
|
840
|
+
12: <% end %>
|
841
|
+
app/controllers/application_controller.rb:19:in `block in index'
|
842
|
+
app/views/application/index.html.erb:9:in `block in _app_views_application_index_html_erb___3287548993528022255_70199524470980'
|
843
|
+
app/views/application/index.html.erb:4:in `each'
|
844
|
+
app/views/application/index.html.erb:4:in `_app_views_application_index_html_erb___3287548993528022255_70199524470980'
|
845
|
+
|
846
|
+
|
847
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (6.1ms)
|
848
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.6ms)
|
849
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (16.0ms)
|
850
|
+
|
851
|
+
|
852
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 23:08:07 +0200
|
853
|
+
Processing by ApplicationController#index as HTML
|
854
|
+
Rendered application/index.html.erb within layouts/application (2.2ms)
|
855
|
+
Completed 500 Internal Server Error in 7ms
|
856
|
+
|
857
|
+
ActionView::Template::Error (undefined method `first' for :partial:Symbol):
|
858
|
+
3:
|
859
|
+
4: <% @simple_methodes.each do |simple_methode, simple_args| %>
|
860
|
+
5: <h2><%= simple_methode %></h2>
|
861
|
+
6: <%= render_tb_helper_methode(simple_methode, simple_args) %>
|
862
|
+
7: <% end %>
|
863
|
+
app/helpers/application_helper.rb:5:in `render_tb_helper_methode'
|
864
|
+
app/views/application/index.html.erb:6:in `block in _app_views_application_index_html_erb___3287548993528022255_70199524175840'
|
865
|
+
app/views/application/index.html.erb:4:in `each'
|
866
|
+
app/views/application/index.html.erb:4:in `_app_views_application_index_html_erb___3287548993528022255_70199524175840'
|
867
|
+
|
868
|
+
|
869
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.0ms)
|
870
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
|
871
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (34.4ms)
|
872
|
+
|
873
|
+
|
874
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 23:08:34 +0200
|
875
|
+
Processing by ApplicationController#index as HTML
|
876
|
+
Rendered application/_tb_button_group.html.erb (0.9ms)
|
877
|
+
Rendered application/index.html.erb within layouts/application (7.6ms)
|
878
|
+
Completed 500 Internal Server Error in 15ms
|
879
|
+
|
880
|
+
ActionView::Template::Error (undefined method `has_key?' for #<ActionView::OutputBuffer:0x007fb134a40c30>):
|
881
|
+
3:
|
882
|
+
4: <% @simple_methodes.each do |simple_methode, simple_args| %>
|
883
|
+
5: <h2><%= simple_methode %></h2>
|
884
|
+
6: <%= render_tb_helper_methode(simple_methode, simple_args) %>
|
885
|
+
7: <% end %>
|
886
|
+
app/helpers/application_helper.rb:9:in `render_tb_helper_methode'
|
887
|
+
app/views/application/index.html.erb:6:in `block in _app_views_application_index_html_erb___3287548993528022255_70199524175840'
|
888
|
+
app/views/application/index.html.erb:4:in `each'
|
889
|
+
app/views/application/index.html.erb:4:in `_app_views_application_index_html_erb___3287548993528022255_70199524175840'
|
890
|
+
|
891
|
+
|
892
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.9ms)
|
893
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (4.9ms)
|
894
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (14.3ms)
|
895
|
+
|
896
|
+
|
897
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 23:12:36 +0200
|
898
|
+
Processing by ApplicationController#index as HTML
|
899
|
+
Rendered application/_tb_button_group.html.erb (0.2ms)
|
900
|
+
Rendered application/index.html.erb within layouts/application (2.0ms)
|
901
|
+
Completed 200 OK in 8ms (Views: 7.4ms | ActiveRecord: 0.0ms)
|
902
|
+
|
903
|
+
|
904
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-05 23:12:36 +0200
|
905
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
906
|
+
|
907
|
+
|
908
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 23:12:36 +0200
|
909
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
910
|
+
|
911
|
+
|
912
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 23:12:36 +0200
|
913
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
914
|
+
|
915
|
+
|
916
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-05 23:12:36 +0200
|
917
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
918
|
+
|
919
|
+
|
920
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 23:14:10 +0200
|
921
|
+
Processing by ApplicationController#index as HTML
|
922
|
+
Rendered application/_tb_button_group.html.erb (0.8ms)
|
923
|
+
Rendered application/index.html.erb within layouts/application (2.6ms)
|
924
|
+
Completed 200 OK in 8ms (Views: 7.7ms | ActiveRecord: 0.0ms)
|
925
|
+
|
926
|
+
|
927
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-05 23:14:10 +0200
|
928
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
929
|
+
|
930
|
+
|
931
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 23:14:10 +0200
|
932
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
933
|
+
|
934
|
+
|
935
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 23:14:10 +0200
|
936
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
937
|
+
|
938
|
+
|
939
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-05 23:14:11 +0200
|
940
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
941
|
+
|
942
|
+
|
943
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 23:15:30 +0200
|
944
|
+
Processing by ApplicationController#index as HTML
|
945
|
+
Rendered application/_tb_button_group.html.erb (0.8ms)
|
946
|
+
Rendered application/index.html.erb within layouts/application (2.7ms)
|
947
|
+
Completed 200 OK in 9ms (Views: 8.2ms | ActiveRecord: 0.0ms)
|
948
|
+
|
949
|
+
|
950
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 23:15:30 +0200
|
951
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
952
|
+
|
953
|
+
|
954
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 23:15:30 +0200
|
955
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
956
|
+
|
957
|
+
|
958
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-05 23:15:30 +0200
|
959
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
960
|
+
|
961
|
+
|
962
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-05 23:15:30 +0200
|
963
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
964
|
+
|
965
|
+
|
966
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 23:15:44 +0200
|
967
|
+
Processing by ApplicationController#index as HTML
|
968
|
+
Rendered application/_tb_button_group.html.erb (0.2ms)
|
969
|
+
Rendered application/index.html.erb within layouts/application (2.0ms)
|
970
|
+
Completed 200 OK in 9ms (Views: 7.9ms | ActiveRecord: 0.0ms)
|
971
|
+
|
972
|
+
|
973
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 23:15:45 +0200
|
974
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
975
|
+
|
976
|
+
|
977
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 23:15:45 +0200
|
978
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
979
|
+
|
980
|
+
|
981
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-05 23:15:45 +0200
|
982
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
983
|
+
|
984
|
+
|
985
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-05 23:15:45 +0200
|
986
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
987
|
+
|
988
|
+
|
989
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 23:17:37 +0200
|
990
|
+
|
991
|
+
SyntaxError (/Users/micha/Projects/tb-helpers/test/dummy/app/controllers/application_controller.rb:5: syntax error, unexpected ':', expecting keyword_end
|
992
|
+
flash :notice: "using tb_alert_flash() here"
|
993
|
+
^):
|
994
|
+
activesupport (3.2.13) lib/active_support/dependencies.rb:469:in `load'
|
995
|
+
activesupport (3.2.13) lib/active_support/dependencies.rb:469:in `block in load_file'
|
996
|
+
activesupport (3.2.13) lib/active_support/dependencies.rb:639:in `new_constants_in'
|
997
|
+
activesupport (3.2.13) lib/active_support/dependencies.rb:468:in `load_file'
|
998
|
+
activesupport (3.2.13) lib/active_support/dependencies.rb:353:in `require_or_load'
|
999
|
+
activesupport (3.2.13) lib/active_support/dependencies.rb:502:in `load_missing_constant'
|
1000
|
+
activesupport (3.2.13) lib/active_support/dependencies.rb:192:in `block in const_missing'
|
1001
|
+
activesupport (3.2.13) lib/active_support/dependencies.rb:190:in `each'
|
1002
|
+
activesupport (3.2.13) lib/active_support/dependencies.rb:190:in `const_missing'
|
1003
|
+
activesupport (3.2.13) lib/active_support/inflector/methods.rb:230:in `block in constantize'
|
1004
|
+
activesupport (3.2.13) lib/active_support/inflector/methods.rb:229:in `each'
|
1005
|
+
activesupport (3.2.13) lib/active_support/inflector/methods.rb:229:in `constantize'
|
1006
|
+
activesupport (3.2.13) lib/active_support/dependencies.rb:554:in `get'
|
1007
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
|
1008
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:54:in `controller'
|
1009
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:32:in `call'
|
1010
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
1011
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
1012
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
1013
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
1014
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
1015
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
1016
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
1017
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
|
1018
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
1019
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
1020
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
1021
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
1022
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
1023
|
+
activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
|
1024
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
1025
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
1026
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__903979468214417319__call__1473614711745122369__callbacks'
|
1027
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
1028
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
1029
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
1030
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
1031
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
1032
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
1033
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
1034
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
1035
|
+
railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
|
1036
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
|
1037
|
+
activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
|
1038
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
|
1039
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
1040
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
1041
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
1042
|
+
activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
1043
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
1044
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
|
1045
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
1046
|
+
railties (3.2.13) lib/rails/application.rb:223:in `call'
|
1047
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
1048
|
+
railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
|
1049
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
1050
|
+
/Users/micha/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
1051
|
+
/Users/micha/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
1052
|
+
/Users/micha/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
1053
|
+
|
1054
|
+
|
1055
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.8ms)
|
1056
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.2ms)
|
1057
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (11.1ms)
|
1058
|
+
|
1059
|
+
|
1060
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 23:17:43 +0200
|
1061
|
+
Processing by ApplicationController#index as HTML
|
1062
|
+
Completed 500 Internal Server Error in 1ms
|
1063
|
+
|
1064
|
+
ArgumentError (wrong number of arguments (1 for 0)):
|
1065
|
+
app/controllers/application_controller.rb:5:in `index'
|
1066
|
+
|
1067
|
+
|
1068
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.8ms)
|
1069
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
|
1070
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.0ms)
|
1071
|
+
|
1072
|
+
|
1073
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 23:18:11 +0200
|
1074
|
+
Processing by ApplicationController#index as HTML
|
1075
|
+
Completed 500 Internal Server Error in 1ms
|
1076
|
+
|
1077
|
+
ArgumentError (wrong number of arguments (2 for 0)):
|
1078
|
+
app/controllers/application_controller.rb:5:in `index'
|
1079
|
+
|
1080
|
+
|
1081
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.8ms)
|
1082
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
|
1083
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.7ms)
|
1084
|
+
|
1085
|
+
|
1086
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 23:18:52 +0200
|
1087
|
+
Processing by ApplicationController#index as HTML
|
1088
|
+
Rendered application/_tb_button_group.html.erb (0.2ms)
|
1089
|
+
Rendered application/index.html.erb within layouts/application (8.8ms)
|
1090
|
+
Completed 500 Internal Server Error in 12ms
|
1091
|
+
|
1092
|
+
ActionView::Template::Error (undefined method `icon_close_button' for #<#<Class:0x007fb1349aef10>:0x007fb1349ac300>):
|
1093
|
+
3:
|
1094
|
+
4: <% @simple_methodes.each do |simple_methode, simple_args| %>
|
1095
|
+
5: <h2><%= simple_methode %></h2>
|
1096
|
+
6: <%= render_tb_helper_methode(simple_methode, simple_args) %>
|
1097
|
+
7: <% end %>
|
1098
|
+
app/helpers/application_helper.rb:13:in `render_tb_helper_methode'
|
1099
|
+
app/views/application/index.html.erb:6:in `block in _app_views_application_index_html_erb___3287548993528022255_70199524175840'
|
1100
|
+
app/views/application/index.html.erb:4:in `each'
|
1101
|
+
app/views/application/index.html.erb:4:in `_app_views_application_index_html_erb___3287548993528022255_70199524175840'
|
1102
|
+
|
1103
|
+
|
1104
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.0ms)
|
1105
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
|
1106
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.0ms)
|
1107
|
+
|
1108
|
+
|
1109
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 23:20:44 +0200
|
1110
|
+
Processing by ApplicationController#index as HTML
|
1111
|
+
Rendered application/_tb_button_group.html.erb (0.2ms)
|
1112
|
+
Rendered application/index.html.erb within layouts/application (11.7ms)
|
1113
|
+
Completed 500 Internal Server Error in 14ms
|
1114
|
+
|
1115
|
+
ActionView::Template::Error (undefined method `icon_close_button' for #<#<Class:0x007fb133743560>:0x007fb13373a708>):
|
1116
|
+
3:
|
1117
|
+
4: <% @simple_methodes.each do |simple_methode, simple_args| %>
|
1118
|
+
5: <h2><%= simple_methode %></h2>
|
1119
|
+
6: <%= render_tb_helper_methode(simple_methode, simple_args) %>
|
1120
|
+
7: <% end %>
|
1121
|
+
app/helpers/application_helper.rb:13:in `render_tb_helper_methode'
|
1122
|
+
app/views/application/index.html.erb:6:in `block in _app_views_application_index_html_erb___3287548993528022255_70199524175840'
|
1123
|
+
app/views/application/index.html.erb:4:in `each'
|
1124
|
+
app/views/application/index.html.erb:4:in `_app_views_application_index_html_erb___3287548993528022255_70199524175840'
|
1125
|
+
|
1126
|
+
|
1127
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.3ms)
|
1128
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.6ms)
|
1129
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (35.5ms)
|
1130
|
+
Connecting to database specified by database.yml
|
1131
|
+
|
1132
|
+
|
1133
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 23:20:54 +0200
|
1134
|
+
Processing by ApplicationController#index as HTML
|
1135
|
+
Rendered application/_tb_button_group.html.erb (0.6ms)
|
1136
|
+
Rendered application/index.html.erb within layouts/application (5.8ms)
|
1137
|
+
Completed 200 OK in 31ms (Views: 30.2ms | ActiveRecord: 0.0ms)
|
1138
|
+
|
1139
|
+
|
1140
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 23:20:54 +0200
|
1141
|
+
Served asset /jquery.js - 304 Not Modified (26ms)
|
1142
|
+
|
1143
|
+
|
1144
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 23:20:54 +0200
|
1145
|
+
Served asset /jquery_ujs.js - 304 Not Modified (7ms)
|
1146
|
+
|
1147
|
+
|
1148
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-05 23:20:54 +0200
|
1149
|
+
Served asset /application.js - 304 Not Modified (5ms)
|
1150
|
+
|
1151
|
+
|
1152
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-05 23:20:54 +0200
|
1153
|
+
Served asset /application.css - 304 Not Modified (3ms)
|
1154
|
+
|
1155
|
+
|
1156
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 23:21:43 +0200
|
1157
|
+
Processing by ApplicationController#index as HTML
|
1158
|
+
Rendered application/_tb_button_group.html.erb (0.3ms)
|
1159
|
+
Rendered application/index.html.erb within layouts/application (2.4ms)
|
1160
|
+
Completed 200 OK in 8ms (Views: 7.3ms | ActiveRecord: 0.0ms)
|
1161
|
+
|
1162
|
+
|
1163
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 23:21:44 +0200
|
1164
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1165
|
+
|
1166
|
+
|
1167
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 23:21:44 +0200
|
1168
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1169
|
+
|
1170
|
+
|
1171
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-05 23:21:44 +0200
|
1172
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1173
|
+
|
1174
|
+
|
1175
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-05 23:21:44 +0200
|
1176
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1177
|
+
|
1178
|
+
|
1179
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 23:22:09 +0200
|
1180
|
+
Processing by ApplicationController#index as HTML
|
1181
|
+
Rendered application/_tb_button_group.html.erb (0.2ms)
|
1182
|
+
Rendered application/index.html.erb within layouts/application (2.1ms)
|
1183
|
+
Completed 200 OK in 24ms (Views: 23.8ms | ActiveRecord: 0.0ms)
|
1184
|
+
|
1185
|
+
|
1186
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 23:22:10 +0200
|
1187
|
+
Served asset /jquery_ujs.js - 304 Not Modified (5ms)
|
1188
|
+
|
1189
|
+
|
1190
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 23:22:10 +0200
|
1191
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1192
|
+
|
1193
|
+
|
1194
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-05 23:22:10 +0200
|
1195
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1196
|
+
|
1197
|
+
|
1198
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-05 23:22:10 +0200
|
1199
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1200
|
+
|
1201
|
+
|
1202
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 23:22:15 +0200
|
1203
|
+
Processing by ApplicationController#index as HTML
|
1204
|
+
Rendered application/_tb_button_group.html.erb (0.2ms)
|
1205
|
+
Rendered application/index.html.erb within layouts/application (1.9ms)
|
1206
|
+
Completed 200 OK in 9ms (Views: 8.1ms | ActiveRecord: 0.0ms)
|
1207
|
+
|
1208
|
+
|
1209
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-05 23:22:15 +0200
|
1210
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1211
|
+
|
1212
|
+
|
1213
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 23:22:15 +0200
|
1214
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1215
|
+
|
1216
|
+
|
1217
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-05 23:22:15 +0200
|
1218
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1219
|
+
|
1220
|
+
|
1221
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 23:22:15 +0200
|
1222
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1223
|
+
|
1224
|
+
|
1225
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 23:23:58 +0200
|
1226
|
+
Processing by ApplicationController#index as HTML
|
1227
|
+
Rendered application/_tb_button_group.html.erb (0.2ms)
|
1228
|
+
Rendered application/index.html.erb within layouts/application (3.9ms)
|
1229
|
+
Completed 500 Internal Server Error in 7ms
|
1230
|
+
|
1231
|
+
ActionView::Template::Error (wrong number of arguments (0 for 1)):
|
1232
|
+
3:
|
1233
|
+
4: <% @simple_methodes.each do |simple_methode, simple_args| %>
|
1234
|
+
5: <h2><%= simple_methode %></h2>
|
1235
|
+
6: <%= render_tb_helper_methode(simple_methode, simple_args) %>
|
1236
|
+
7: <% end %>
|
1237
|
+
app/helpers/application_helper.rb:13:in `render_tb_helper_methode'
|
1238
|
+
app/views/application/index.html.erb:6:in `block in _app_views_application_index_html_erb___2899951617282391438_70186632889200'
|
1239
|
+
app/views/application/index.html.erb:4:in `each'
|
1240
|
+
app/views/application/index.html.erb:4:in `_app_views_application_index_html_erb___2899951617282391438_70186632889200'
|
1241
|
+
|
1242
|
+
|
1243
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.2ms)
|
1244
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.0ms)
|
1245
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (14.8ms)
|
1246
|
+
|
1247
|
+
|
1248
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 23:26:15 +0200
|
1249
|
+
Processing by ApplicationController#index as HTML
|
1250
|
+
Rendered application/_tb_button_group.html.erb (0.2ms)
|
1251
|
+
ERROR: compiling _app_views_application__tb_icon_html_erb__613558446940886465_70186645580900 RAISED /Users/micha/Projects/tb-helpers/test/dummy/app/views/application/_tb_icon.html.erb:1: syntax error, unexpected ':', expecting ')'
|
1252
|
+
...tput_buffer.append= ( tb_icon :glass );@output_buffer.safe_c...
|
1253
|
+
... ^
|
1254
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/views/application/_tb_icon.html.erb:2: syntax error, unexpected ':', expecting ')'
|
1255
|
+
...tput_buffer.append= ( tb_icon :heart );@output_buffer.safe_c...
|
1256
|
+
... ^
|
1257
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/views/application/_tb_icon.html.erb:3: syntax error, unexpected ':', expecting ')'
|
1258
|
+
');@output_buffer.append= ( tb_icon :ok );@output_buffer.safe_concat('
|
1259
|
+
^
|
1260
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/views/application/_tb_icon.html.erb:4: syntax error, unexpected ':', expecting ')'
|
1261
|
+
');@output_buffer.append= ( tb_icon :home );@output_buffer.to_s
|
1262
|
+
^
|
1263
|
+
Function body: def _app_views_application__tb_icon_html_erb__613558446940886465_70186645580900(local_assigns, output_buffer)
|
1264
|
+
_old_virtual_path, @virtual_path = @virtual_path, "application/_tb_icon";_old_output_buffer = @output_buffer;tb_icon = local_assigns[:tb_icon];;@output_buffer = output_buffer || ActionView::OutputBuffer.new;@output_buffer.append= ( tb_icon :glass );@output_buffer.safe_concat('
|
1265
|
+
');@output_buffer.append= ( tb_icon :heart );@output_buffer.safe_concat('
|
1266
|
+
');@output_buffer.append= ( tb_icon :ok );@output_buffer.safe_concat('
|
1267
|
+
');@output_buffer.append= ( tb_icon :home );@output_buffer.to_s
|
1268
|
+
ensure
|
1269
|
+
@virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer
|
1270
|
+
end
|
1271
|
+
|
1272
|
+
Backtrace: /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/template.rb:297:in `module_eval'
|
1273
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/template.rb:297:in `compile'
|
1274
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/template.rb:244:in `block in compile!'
|
1275
|
+
<internal:prelude>:10:in `synchronize'
|
1276
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/template.rb:232:in `compile!'
|
1277
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/template.rb:144:in `block in render'
|
1278
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications.rb:125:in `instrument'
|
1279
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/template.rb:143:in `render'
|
1280
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/partial_renderer.rb:265:in `render_partial'
|
1281
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/partial_renderer.rb:238:in `block in render'
|
1282
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
1283
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications.rb:123:in `block in instrument'
|
1284
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
1285
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications.rb:123:in `instrument'
|
1286
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
1287
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/partial_renderer.rb:237:in `render'
|
1288
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/renderer.rb:41:in `render_partial'
|
1289
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/renderer.rb:15:in `render'
|
1290
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/helpers/rendering_helper.rb:24:in `render'
|
1291
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/helpers/application_helper.rb:10:in `block in render_tb_helper_methode'
|
1292
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/helpers/application_helper.rb:16:in `call'
|
1293
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/helpers/application_helper.rb:16:in `render_tb_helper_methode'
|
1294
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/views/application/index.html.erb:6:in `block in _app_views_application_index_html_erb___2899951617282391438_70186632889200'
|
1295
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/views/application/index.html.erb:4:in `each'
|
1296
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/views/application/index.html.erb:4:in `_app_views_application_index_html_erb___2899951617282391438_70186632889200'
|
1297
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/template.rb:145:in `block in render'
|
1298
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications.rb:125:in `instrument'
|
1299
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/template.rb:143:in `render'
|
1300
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
|
1301
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
1302
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications.rb:123:in `block in instrument'
|
1303
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
1304
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications.rb:123:in `instrument'
|
1305
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
1306
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
|
1307
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
|
1308
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/template_renderer.rb:45:in `render_template'
|
1309
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/template_renderer.rb:18:in `render'
|
1310
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/renderer.rb:36:in `render_template'
|
1311
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/renderer.rb:17:in `render'
|
1312
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/abstract_controller/rendering.rb:110:in `_render_template'
|
1313
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
1314
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
1315
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
1316
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
1317
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/abstract_controller/rendering.rb:88:in `render'
|
1318
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/rendering.rb:16:in `render'
|
1319
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
1320
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
1321
|
+
/Users/micha/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
|
1322
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
1323
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
1324
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
1325
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activerecord-3.2.13/lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
|
1326
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/instrumentation.rb:39:in `render'
|
1327
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
1328
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/implicit_render.rb:5:in `send_action'
|
1329
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/abstract_controller/base.rb:167:in `process_action'
|
1330
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/rendering.rb:10:in `process_action'
|
1331
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
1332
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:414:in `_run__4045942740346012207__process_action__3990503422079641631__callbacks'
|
1333
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:405:in `__run_callback'
|
1334
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
1335
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:81:in `run_callbacks'
|
1336
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/abstract_controller/callbacks.rb:17:in `process_action'
|
1337
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/rescue.rb:29:in `process_action'
|
1338
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
1339
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications.rb:123:in `block in instrument'
|
1340
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
1341
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications.rb:123:in `instrument'
|
1342
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
1343
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
1344
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activerecord-3.2.13/lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
1345
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/abstract_controller/base.rb:121:in `process'
|
1346
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/abstract_controller/rendering.rb:45:in `process'
|
1347
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal.rb:203:in `dispatch'
|
1348
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
1349
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal.rb:246:in `block in action'
|
1350
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/routing/route_set.rb:73:in `call'
|
1351
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
1352
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/routing/route_set.rb:36:in `call'
|
1353
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call'
|
1354
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/journey-1.0.4/lib/journey/router.rb:56:in `each'
|
1355
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/journey-1.0.4/lib/journey/router.rb:56:in `call'
|
1356
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/routing/route_set.rb:612:in `call'
|
1357
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
1358
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/rack-1.4.5/lib/rack/etag.rb:23:in `call'
|
1359
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/rack-1.4.5/lib/rack/conditionalget.rb:25:in `call'
|
1360
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/head.rb:14:in `call'
|
1361
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
1362
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/flash.rb:242:in `call'
|
1363
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/rack-1.4.5/lib/rack/session/abstract/id.rb:210:in `context'
|
1364
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/rack-1.4.5/lib/rack/session/abstract/id.rb:205:in `call'
|
1365
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
1366
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activerecord-3.2.13/lib/active_record/query_cache.rb:64:in `call'
|
1367
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activerecord-3.2.13/lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
1368
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
1369
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:405:in `_run__1772630717733536084__call__2067133930462886396__callbacks'
|
1370
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:405:in `__run_callback'
|
1371
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
1372
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:81:in `run_callbacks'
|
1373
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
1374
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
1375
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
1376
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
1377
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
1378
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/railties-3.2.13/lib/rails/rack/logger.rb:32:in `call_app'
|
1379
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/railties-3.2.13/lib/rails/rack/logger.rb:16:in `block in call'
|
1380
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/tagged_logging.rb:22:in `tagged'
|
1381
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/railties-3.2.13/lib/rails/rack/logger.rb:16:in `call'
|
1382
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
1383
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/rack-1.4.5/lib/rack/methodoverride.rb:21:in `call'
|
1384
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/rack-1.4.5/lib/rack/runtime.rb:17:in `call'
|
1385
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
1386
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/rack-1.4.5/lib/rack/lock.rb:15:in `call'
|
1387
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/static.rb:63:in `call'
|
1388
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/railties-3.2.13/lib/rails/engine.rb:479:in `call'
|
1389
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/railties-3.2.13/lib/rails/application.rb:223:in `call'
|
1390
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/rack-1.4.5/lib/rack/content_length.rb:14:in `call'
|
1391
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/railties-3.2.13/lib/rails/rack/log_tailer.rb:17:in `call'
|
1392
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/rack-1.4.5/lib/rack/handler/webrick.rb:59:in `service'
|
1393
|
+
/Users/micha/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
1394
|
+
/Users/micha/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
1395
|
+
/Users/micha/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
1396
|
+
Rendered application/_tb_icon.html.erb (1.2ms)
|
1397
|
+
Rendered application/index.html.erb within layouts/application (3.7ms)
|
1398
|
+
Completed 500 Internal Server Error in 6ms
|
1399
|
+
|
1400
|
+
ActionView::Template::Error (/Users/micha/Projects/tb-helpers/test/dummy/app/views/application/_tb_icon.html.erb:1: syntax error, unexpected ':', expecting ')'
|
1401
|
+
...tput_buffer.append= ( tb_icon :glass );@output_buffer.safe_c...
|
1402
|
+
... ^
|
1403
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/views/application/_tb_icon.html.erb:2: syntax error, unexpected ':', expecting ')'
|
1404
|
+
...tput_buffer.append= ( tb_icon :heart );@output_buffer.safe_c...
|
1405
|
+
... ^
|
1406
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/views/application/_tb_icon.html.erb:3: syntax error, unexpected ':', expecting ')'
|
1407
|
+
');@output_buffer.append= ( tb_icon :ok );@output_buffer.safe_concat('
|
1408
|
+
^
|
1409
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/views/application/_tb_icon.html.erb:4: syntax error, unexpected ':', expecting ')'
|
1410
|
+
');@output_buffer.append= ( tb_icon :home );@output_buffer.to_s
|
1411
|
+
^):
|
1412
|
+
1: <%= tb_icon :glass %>
|
1413
|
+
2: <%= tb_icon :heart %>
|
1414
|
+
3: <%= tb_icon :ok %>
|
1415
|
+
4: <%= tb_icon :home %>
|
1416
|
+
app/helpers/application_helper.rb:10:in `block in render_tb_helper_methode'
|
1417
|
+
app/helpers/application_helper.rb:16:in `call'
|
1418
|
+
app/helpers/application_helper.rb:16:in `render_tb_helper_methode'
|
1419
|
+
app/views/application/index.html.erb:6:in `block in _app_views_application_index_html_erb___2899951617282391438_70186632889200'
|
1420
|
+
app/views/application/index.html.erb:4:in `each'
|
1421
|
+
app/views/application/index.html.erb:4:in `_app_views_application_index_html_erb___2899951617282391438_70186632889200'
|
1422
|
+
|
1423
|
+
|
1424
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.0ms)
|
1425
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
|
1426
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (10.6ms)
|
1427
|
+
|
1428
|
+
|
1429
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 23:26:21 +0200
|
1430
|
+
Processing by ApplicationController#index as HTML
|
1431
|
+
Rendered application/_tb_button_group.html.erb (0.2ms)
|
1432
|
+
Rendered application/index.html.erb within layouts/application (2.1ms)
|
1433
|
+
Completed 200 OK in 8ms (Views: 7.2ms | ActiveRecord: 0.0ms)
|
1434
|
+
|
1435
|
+
|
1436
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-05 23:26:22 +0200
|
1437
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1438
|
+
|
1439
|
+
|
1440
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 23:26:22 +0200
|
1441
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1442
|
+
|
1443
|
+
|
1444
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-05 23:26:22 +0200
|
1445
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1446
|
+
|
1447
|
+
|
1448
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 23:26:22 +0200
|
1449
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1450
|
+
|
1451
|
+
|
1452
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 23:26:29 +0200
|
1453
|
+
Processing by ApplicationController#index as HTML
|
1454
|
+
Rendered application/_tb_button_group.html.erb (0.2ms)
|
1455
|
+
ERROR: compiling _app_views_application__tb_icon_html_erb__613558446940886465_70186645580900 RAISED /Users/micha/Projects/tb-helpers/test/dummy/app/views/application/_tb_icon.html.erb:1: syntax error, unexpected ':', expecting ')'
|
1456
|
+
...tput_buffer.append= ( tb_icon :glass );@output_buffer.safe_c...
|
1457
|
+
... ^
|
1458
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/views/application/_tb_icon.html.erb:2: syntax error, unexpected ':', expecting ')'
|
1459
|
+
...tput_buffer.append= ( tb_icon :heart );@output_buffer.safe_c...
|
1460
|
+
... ^
|
1461
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/views/application/_tb_icon.html.erb:3: syntax error, unexpected ':', expecting ')'
|
1462
|
+
');@output_buffer.append= ( tb_icon :ok );@output_buffer.safe_concat('
|
1463
|
+
^
|
1464
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/views/application/_tb_icon.html.erb:4: syntax error, unexpected ':', expecting ')'
|
1465
|
+
');@output_buffer.append= ( tb_icon :home );@output_buffer.to_s
|
1466
|
+
^
|
1467
|
+
Function body: def _app_views_application__tb_icon_html_erb__613558446940886465_70186645580900(local_assigns, output_buffer)
|
1468
|
+
_old_virtual_path, @virtual_path = @virtual_path, "application/_tb_icon";_old_output_buffer = @output_buffer;tb_icon = local_assigns[:tb_icon];;@output_buffer = output_buffer || ActionView::OutputBuffer.new;@output_buffer.append= ( tb_icon :glass );@output_buffer.safe_concat('
|
1469
|
+
');@output_buffer.append= ( tb_icon :heart );@output_buffer.safe_concat('
|
1470
|
+
');@output_buffer.append= ( tb_icon :ok );@output_buffer.safe_concat('
|
1471
|
+
');@output_buffer.append= ( tb_icon :home );@output_buffer.to_s
|
1472
|
+
ensure
|
1473
|
+
@virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer
|
1474
|
+
end
|
1475
|
+
|
1476
|
+
Backtrace: /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/template.rb:297:in `module_eval'
|
1477
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/template.rb:297:in `compile'
|
1478
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/template.rb:244:in `block in compile!'
|
1479
|
+
<internal:prelude>:10:in `synchronize'
|
1480
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/template.rb:232:in `compile!'
|
1481
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/template.rb:144:in `block in render'
|
1482
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications.rb:125:in `instrument'
|
1483
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/template.rb:143:in `render'
|
1484
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/partial_renderer.rb:265:in `render_partial'
|
1485
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/partial_renderer.rb:238:in `block in render'
|
1486
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
1487
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications.rb:123:in `block in instrument'
|
1488
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
1489
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications.rb:123:in `instrument'
|
1490
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
1491
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/partial_renderer.rb:237:in `render'
|
1492
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/renderer.rb:41:in `render_partial'
|
1493
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/renderer.rb:15:in `render'
|
1494
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/helpers/rendering_helper.rb:24:in `render'
|
1495
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/helpers/application_helper.rb:10:in `block in render_tb_helper_methode'
|
1496
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/helpers/application_helper.rb:16:in `call'
|
1497
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/helpers/application_helper.rb:16:in `render_tb_helper_methode'
|
1498
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/views/application/index.html.erb:6:in `block in _app_views_application_index_html_erb___2899951617282391438_70186632889200'
|
1499
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/views/application/index.html.erb:4:in `each'
|
1500
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/views/application/index.html.erb:4:in `_app_views_application_index_html_erb___2899951617282391438_70186632889200'
|
1501
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/template.rb:145:in `block in render'
|
1502
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications.rb:125:in `instrument'
|
1503
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/template.rb:143:in `render'
|
1504
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
|
1505
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
1506
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications.rb:123:in `block in instrument'
|
1507
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
1508
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications.rb:123:in `instrument'
|
1509
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
1510
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
|
1511
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
|
1512
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/template_renderer.rb:45:in `render_template'
|
1513
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/template_renderer.rb:18:in `render'
|
1514
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/renderer.rb:36:in `render_template'
|
1515
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/renderer.rb:17:in `render'
|
1516
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/abstract_controller/rendering.rb:110:in `_render_template'
|
1517
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
1518
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
1519
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
1520
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
1521
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/abstract_controller/rendering.rb:88:in `render'
|
1522
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/rendering.rb:16:in `render'
|
1523
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
1524
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
1525
|
+
/Users/micha/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
|
1526
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
1527
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
1528
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
1529
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activerecord-3.2.13/lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
|
1530
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/instrumentation.rb:39:in `render'
|
1531
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
1532
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/implicit_render.rb:5:in `send_action'
|
1533
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/abstract_controller/base.rb:167:in `process_action'
|
1534
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/rendering.rb:10:in `process_action'
|
1535
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
1536
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:414:in `_run__4045942740346012207__process_action__3990503422079641631__callbacks'
|
1537
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:405:in `__run_callback'
|
1538
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
1539
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:81:in `run_callbacks'
|
1540
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/abstract_controller/callbacks.rb:17:in `process_action'
|
1541
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/rescue.rb:29:in `process_action'
|
1542
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
1543
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications.rb:123:in `block in instrument'
|
1544
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
1545
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications.rb:123:in `instrument'
|
1546
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
1547
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
1548
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activerecord-3.2.13/lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
1549
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/abstract_controller/base.rb:121:in `process'
|
1550
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/abstract_controller/rendering.rb:45:in `process'
|
1551
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal.rb:203:in `dispatch'
|
1552
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
1553
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal.rb:246:in `block in action'
|
1554
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/routing/route_set.rb:73:in `call'
|
1555
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
1556
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/routing/route_set.rb:36:in `call'
|
1557
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call'
|
1558
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/journey-1.0.4/lib/journey/router.rb:56:in `each'
|
1559
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/journey-1.0.4/lib/journey/router.rb:56:in `call'
|
1560
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/routing/route_set.rb:612:in `call'
|
1561
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
1562
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/rack-1.4.5/lib/rack/etag.rb:23:in `call'
|
1563
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/rack-1.4.5/lib/rack/conditionalget.rb:25:in `call'
|
1564
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/head.rb:14:in `call'
|
1565
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
1566
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/flash.rb:242:in `call'
|
1567
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/rack-1.4.5/lib/rack/session/abstract/id.rb:210:in `context'
|
1568
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/rack-1.4.5/lib/rack/session/abstract/id.rb:205:in `call'
|
1569
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
1570
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activerecord-3.2.13/lib/active_record/query_cache.rb:64:in `call'
|
1571
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activerecord-3.2.13/lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
1572
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
1573
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:405:in `_run__1772630717733536084__call__2067133930462886396__callbacks'
|
1574
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:405:in `__run_callback'
|
1575
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
1576
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:81:in `run_callbacks'
|
1577
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
1578
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
1579
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
1580
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
1581
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
1582
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/railties-3.2.13/lib/rails/rack/logger.rb:32:in `call_app'
|
1583
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/railties-3.2.13/lib/rails/rack/logger.rb:16:in `block in call'
|
1584
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/tagged_logging.rb:22:in `tagged'
|
1585
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/railties-3.2.13/lib/rails/rack/logger.rb:16:in `call'
|
1586
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
1587
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/rack-1.4.5/lib/rack/methodoverride.rb:21:in `call'
|
1588
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/rack-1.4.5/lib/rack/runtime.rb:17:in `call'
|
1589
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
1590
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/rack-1.4.5/lib/rack/lock.rb:15:in `call'
|
1591
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/static.rb:63:in `call'
|
1592
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/railties-3.2.13/lib/rails/engine.rb:479:in `call'
|
1593
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/railties-3.2.13/lib/rails/application.rb:223:in `call'
|
1594
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/rack-1.4.5/lib/rack/content_length.rb:14:in `call'
|
1595
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/railties-3.2.13/lib/rails/rack/log_tailer.rb:17:in `call'
|
1596
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/rack-1.4.5/lib/rack/handler/webrick.rb:59:in `service'
|
1597
|
+
/Users/micha/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
1598
|
+
/Users/micha/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
1599
|
+
/Users/micha/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
1600
|
+
Rendered application/_tb_icon.html.erb (1.0ms)
|
1601
|
+
Rendered application/index.html.erb within layouts/application (3.8ms)
|
1602
|
+
Completed 500 Internal Server Error in 7ms
|
1603
|
+
|
1604
|
+
ActionView::Template::Error (/Users/micha/Projects/tb-helpers/test/dummy/app/views/application/_tb_icon.html.erb:1: syntax error, unexpected ':', expecting ')'
|
1605
|
+
...tput_buffer.append= ( tb_icon :glass );@output_buffer.safe_c...
|
1606
|
+
... ^
|
1607
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/views/application/_tb_icon.html.erb:2: syntax error, unexpected ':', expecting ')'
|
1608
|
+
...tput_buffer.append= ( tb_icon :heart );@output_buffer.safe_c...
|
1609
|
+
... ^
|
1610
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/views/application/_tb_icon.html.erb:3: syntax error, unexpected ':', expecting ')'
|
1611
|
+
');@output_buffer.append= ( tb_icon :ok );@output_buffer.safe_concat('
|
1612
|
+
^
|
1613
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/views/application/_tb_icon.html.erb:4: syntax error, unexpected ':', expecting ')'
|
1614
|
+
');@output_buffer.append= ( tb_icon :home );@output_buffer.to_s
|
1615
|
+
^):
|
1616
|
+
1: <%= tb_icon :glass %>
|
1617
|
+
2: <%= tb_icon :heart %>
|
1618
|
+
3: <%= tb_icon :ok %>
|
1619
|
+
4: <%= tb_icon :home %>
|
1620
|
+
app/helpers/application_helper.rb:10:in `block in render_tb_helper_methode'
|
1621
|
+
app/helpers/application_helper.rb:16:in `call'
|
1622
|
+
app/helpers/application_helper.rb:16:in `render_tb_helper_methode'
|
1623
|
+
app/views/application/index.html.erb:6:in `block in _app_views_application_index_html_erb___2899951617282391438_70186632889200'
|
1624
|
+
app/views/application/index.html.erb:4:in `each'
|
1625
|
+
app/views/application/index.html.erb:4:in `_app_views_application_index_html_erb___2899951617282391438_70186632889200'
|
1626
|
+
|
1627
|
+
|
1628
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.0ms)
|
1629
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.7ms)
|
1630
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (13.4ms)
|
1631
|
+
|
1632
|
+
|
1633
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 23:27:00 +0200
|
1634
|
+
Processing by ApplicationController#index as HTML
|
1635
|
+
Rendered application/_tb_button_group.html.erb (1.3ms)
|
1636
|
+
ERROR: compiling _app_views_application__tb_icon_html_erb__613558446940886465_70186645580900 RAISED /Users/micha/Projects/tb-helpers/test/dummy/app/views/application/_tb_icon.html.erb:1: syntax error, unexpected ':', expecting ')'
|
1637
|
+
...tput_buffer.append= ( tb_icon :glass );@output_buffer.safe_c...
|
1638
|
+
... ^
|
1639
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/views/application/_tb_icon.html.erb:2: syntax error, unexpected ':', expecting ')'
|
1640
|
+
...tput_buffer.append= ( tb_icon :heart );@output_buffer.safe_c...
|
1641
|
+
... ^
|
1642
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/views/application/_tb_icon.html.erb:3: syntax error, unexpected ':', expecting ')'
|
1643
|
+
');@output_buffer.append= ( tb_icon :ok );@output_buffer.safe_concat('
|
1644
|
+
^
|
1645
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/views/application/_tb_icon.html.erb:4: syntax error, unexpected ':', expecting ')'
|
1646
|
+
');@output_buffer.append= ( tb_icon :home );@output_buffer.to_s
|
1647
|
+
^
|
1648
|
+
Function body: def _app_views_application__tb_icon_html_erb__613558446940886465_70186645580900(local_assigns, output_buffer)
|
1649
|
+
_old_virtual_path, @virtual_path = @virtual_path, "application/_tb_icon";_old_output_buffer = @output_buffer;tb_icon = local_assigns[:tb_icon];;@output_buffer = output_buffer || ActionView::OutputBuffer.new;@output_buffer.append= ( tb_icon :glass );@output_buffer.safe_concat('
|
1650
|
+
');@output_buffer.append= ( tb_icon :heart );@output_buffer.safe_concat('
|
1651
|
+
');@output_buffer.append= ( tb_icon :ok );@output_buffer.safe_concat('
|
1652
|
+
');@output_buffer.append= ( tb_icon :home );@output_buffer.to_s
|
1653
|
+
ensure
|
1654
|
+
@virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer
|
1655
|
+
end
|
1656
|
+
|
1657
|
+
Backtrace: /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/template.rb:297:in `module_eval'
|
1658
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/template.rb:297:in `compile'
|
1659
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/template.rb:244:in `block in compile!'
|
1660
|
+
<internal:prelude>:10:in `synchronize'
|
1661
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/template.rb:232:in `compile!'
|
1662
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/template.rb:144:in `block in render'
|
1663
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications.rb:125:in `instrument'
|
1664
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/template.rb:143:in `render'
|
1665
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/partial_renderer.rb:265:in `render_partial'
|
1666
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/partial_renderer.rb:238:in `block in render'
|
1667
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
1668
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications.rb:123:in `block in instrument'
|
1669
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
1670
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications.rb:123:in `instrument'
|
1671
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
1672
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/partial_renderer.rb:237:in `render'
|
1673
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/renderer.rb:41:in `render_partial'
|
1674
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/renderer.rb:15:in `render'
|
1675
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/helpers/rendering_helper.rb:24:in `render'
|
1676
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/helpers/application_helper.rb:10:in `block in render_tb_helper_methode'
|
1677
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/helpers/application_helper.rb:16:in `call'
|
1678
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/helpers/application_helper.rb:16:in `render_tb_helper_methode'
|
1679
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/views/application/index.html.erb:6:in `block in _app_views_application_index_html_erb___2899951617282391438_70186632889200'
|
1680
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/views/application/index.html.erb:4:in `each'
|
1681
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/views/application/index.html.erb:4:in `_app_views_application_index_html_erb___2899951617282391438_70186632889200'
|
1682
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/template.rb:145:in `block in render'
|
1683
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications.rb:125:in `instrument'
|
1684
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/template.rb:143:in `render'
|
1685
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
|
1686
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
1687
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications.rb:123:in `block in instrument'
|
1688
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
1689
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications.rb:123:in `instrument'
|
1690
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
1691
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
|
1692
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
|
1693
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/template_renderer.rb:45:in `render_template'
|
1694
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/template_renderer.rb:18:in `render'
|
1695
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/renderer.rb:36:in `render_template'
|
1696
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/renderer.rb:17:in `render'
|
1697
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/abstract_controller/rendering.rb:110:in `_render_template'
|
1698
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
1699
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
1700
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
1701
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
1702
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/abstract_controller/rendering.rb:88:in `render'
|
1703
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/rendering.rb:16:in `render'
|
1704
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
1705
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
1706
|
+
/Users/micha/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
|
1707
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
1708
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
1709
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
1710
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activerecord-3.2.13/lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
|
1711
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/instrumentation.rb:39:in `render'
|
1712
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
1713
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/implicit_render.rb:5:in `send_action'
|
1714
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/abstract_controller/base.rb:167:in `process_action'
|
1715
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/rendering.rb:10:in `process_action'
|
1716
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
1717
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:414:in `_run__4045942740346012207__process_action__3990503422079641631__callbacks'
|
1718
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:405:in `__run_callback'
|
1719
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
1720
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:81:in `run_callbacks'
|
1721
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/abstract_controller/callbacks.rb:17:in `process_action'
|
1722
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/rescue.rb:29:in `process_action'
|
1723
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
1724
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications.rb:123:in `block in instrument'
|
1725
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
1726
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications.rb:123:in `instrument'
|
1727
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
1728
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
1729
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activerecord-3.2.13/lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
1730
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/abstract_controller/base.rb:121:in `process'
|
1731
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/abstract_controller/rendering.rb:45:in `process'
|
1732
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal.rb:203:in `dispatch'
|
1733
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
1734
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal.rb:246:in `block in action'
|
1735
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/routing/route_set.rb:73:in `call'
|
1736
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
1737
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/routing/route_set.rb:36:in `call'
|
1738
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call'
|
1739
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/journey-1.0.4/lib/journey/router.rb:56:in `each'
|
1740
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/journey-1.0.4/lib/journey/router.rb:56:in `call'
|
1741
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/routing/route_set.rb:612:in `call'
|
1742
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
1743
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/rack-1.4.5/lib/rack/etag.rb:23:in `call'
|
1744
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/rack-1.4.5/lib/rack/conditionalget.rb:25:in `call'
|
1745
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/head.rb:14:in `call'
|
1746
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
1747
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/flash.rb:242:in `call'
|
1748
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/rack-1.4.5/lib/rack/session/abstract/id.rb:210:in `context'
|
1749
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/rack-1.4.5/lib/rack/session/abstract/id.rb:205:in `call'
|
1750
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
1751
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activerecord-3.2.13/lib/active_record/query_cache.rb:64:in `call'
|
1752
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activerecord-3.2.13/lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
1753
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
1754
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:405:in `_run__1772630717733536084__call__2067133930462886396__callbacks'
|
1755
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:405:in `__run_callback'
|
1756
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
1757
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:81:in `run_callbacks'
|
1758
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
1759
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
1760
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
1761
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
1762
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
1763
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/railties-3.2.13/lib/rails/rack/logger.rb:32:in `call_app'
|
1764
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/railties-3.2.13/lib/rails/rack/logger.rb:16:in `block in call'
|
1765
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/tagged_logging.rb:22:in `tagged'
|
1766
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/railties-3.2.13/lib/rails/rack/logger.rb:16:in `call'
|
1767
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
1768
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/rack-1.4.5/lib/rack/methodoverride.rb:21:in `call'
|
1769
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/rack-1.4.5/lib/rack/runtime.rb:17:in `call'
|
1770
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
1771
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/rack-1.4.5/lib/rack/lock.rb:15:in `call'
|
1772
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/static.rb:63:in `call'
|
1773
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/railties-3.2.13/lib/rails/engine.rb:479:in `call'
|
1774
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/railties-3.2.13/lib/rails/application.rb:223:in `call'
|
1775
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/rack-1.4.5/lib/rack/content_length.rb:14:in `call'
|
1776
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/railties-3.2.13/lib/rails/rack/log_tailer.rb:17:in `call'
|
1777
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/rack-1.4.5/lib/rack/handler/webrick.rb:59:in `service'
|
1778
|
+
/Users/micha/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
1779
|
+
/Users/micha/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
1780
|
+
/Users/micha/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
1781
|
+
Rendered application/_tb_icon.html.erb (18.8ms)
|
1782
|
+
Rendered application/index.html.erb within layouts/application (22.7ms)
|
1783
|
+
Completed 500 Internal Server Error in 27ms
|
1784
|
+
|
1785
|
+
ActionView::Template::Error (/Users/micha/Projects/tb-helpers/test/dummy/app/views/application/_tb_icon.html.erb:1: syntax error, unexpected ':', expecting ')'
|
1786
|
+
...tput_buffer.append= ( tb_icon :glass );@output_buffer.safe_c...
|
1787
|
+
... ^
|
1788
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/views/application/_tb_icon.html.erb:2: syntax error, unexpected ':', expecting ')'
|
1789
|
+
...tput_buffer.append= ( tb_icon :heart );@output_buffer.safe_c...
|
1790
|
+
... ^
|
1791
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/views/application/_tb_icon.html.erb:3: syntax error, unexpected ':', expecting ')'
|
1792
|
+
');@output_buffer.append= ( tb_icon :ok );@output_buffer.safe_concat('
|
1793
|
+
^
|
1794
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/views/application/_tb_icon.html.erb:4: syntax error, unexpected ':', expecting ')'
|
1795
|
+
');@output_buffer.append= ( tb_icon :home );@output_buffer.to_s
|
1796
|
+
^):
|
1797
|
+
1: <%= tb_icon :glass %>
|
1798
|
+
2: <%= tb_icon :heart %>
|
1799
|
+
3: <%= tb_icon :ok %>
|
1800
|
+
4: <%= tb_icon :home %>
|
1801
|
+
app/helpers/application_helper.rb:10:in `block in render_tb_helper_methode'
|
1802
|
+
app/helpers/application_helper.rb:16:in `call'
|
1803
|
+
app/helpers/application_helper.rb:16:in `render_tb_helper_methode'
|
1804
|
+
app/views/application/index.html.erb:6:in `block in _app_views_application_index_html_erb___2899951617282391438_70186632889200'
|
1805
|
+
app/views/application/index.html.erb:4:in `each'
|
1806
|
+
app/views/application/index.html.erb:4:in `_app_views_application_index_html_erb___2899951617282391438_70186632889200'
|
1807
|
+
|
1808
|
+
|
1809
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.1ms)
|
1810
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.8ms)
|
1811
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (14.0ms)
|
1812
|
+
|
1813
|
+
|
1814
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 23:27:07 +0200
|
1815
|
+
Processing by ApplicationController#index as HTML
|
1816
|
+
Rendered application/_tb_button_group.html.erb (0.2ms)
|
1817
|
+
Rendered application/index.html.erb within layouts/application (2.3ms)
|
1818
|
+
Completed 200 OK in 8ms (Views: 7.5ms | ActiveRecord: 0.0ms)
|
1819
|
+
|
1820
|
+
|
1821
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 23:27:07 +0200
|
1822
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1823
|
+
|
1824
|
+
|
1825
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 23:27:07 +0200
|
1826
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1827
|
+
|
1828
|
+
|
1829
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-05 23:27:07 +0200
|
1830
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1831
|
+
|
1832
|
+
|
1833
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-05 23:27:07 +0200
|
1834
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1835
|
+
|
1836
|
+
|
1837
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 23:27:32 +0200
|
1838
|
+
Processing by ApplicationController#index as HTML
|
1839
|
+
Rendered application/_tb_button_group.html.erb (0.3ms)
|
1840
|
+
ERROR: compiling _app_views_application__tb_icon_html_erb__613558446940886465_70186645580900 RAISED /Users/micha/Projects/tb-helpers/test/dummy/app/views/application/_tb_icon.html.erb:1: syntax error, unexpected ':', expecting ')'
|
1841
|
+
...tput_buffer.append= ( tb_icon :glass );@output_buffer.safe_c...
|
1842
|
+
... ^
|
1843
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/views/application/_tb_icon.html.erb:2: syntax error, unexpected ':', expecting ')'
|
1844
|
+
...tput_buffer.append= ( tb_icon :heart );@output_buffer.safe_c...
|
1845
|
+
... ^
|
1846
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/views/application/_tb_icon.html.erb:3: syntax error, unexpected ':', expecting ')'
|
1847
|
+
');@output_buffer.append= ( tb_icon :ok );@output_buffer.safe_concat('
|
1848
|
+
^
|
1849
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/views/application/_tb_icon.html.erb:4: syntax error, unexpected ':', expecting ')'
|
1850
|
+
');@output_buffer.append= ( tb_icon :home );@output_buffer.to_s
|
1851
|
+
^
|
1852
|
+
Function body: def _app_views_application__tb_icon_html_erb__613558446940886465_70186645580900(local_assigns, output_buffer)
|
1853
|
+
_old_virtual_path, @virtual_path = @virtual_path, "application/_tb_icon";_old_output_buffer = @output_buffer;tb_icon = local_assigns[:tb_icon];;@output_buffer = output_buffer || ActionView::OutputBuffer.new;@output_buffer.append= ( tb_icon :glass );@output_buffer.safe_concat('
|
1854
|
+
');@output_buffer.append= ( tb_icon :heart );@output_buffer.safe_concat('
|
1855
|
+
');@output_buffer.append= ( tb_icon :ok );@output_buffer.safe_concat('
|
1856
|
+
');@output_buffer.append= ( tb_icon :home );@output_buffer.to_s
|
1857
|
+
ensure
|
1858
|
+
@virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer
|
1859
|
+
end
|
1860
|
+
|
1861
|
+
Backtrace: /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/template.rb:297:in `module_eval'
|
1862
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/template.rb:297:in `compile'
|
1863
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/template.rb:244:in `block in compile!'
|
1864
|
+
<internal:prelude>:10:in `synchronize'
|
1865
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/template.rb:232:in `compile!'
|
1866
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/template.rb:144:in `block in render'
|
1867
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications.rb:125:in `instrument'
|
1868
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/template.rb:143:in `render'
|
1869
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/partial_renderer.rb:265:in `render_partial'
|
1870
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/partial_renderer.rb:238:in `block in render'
|
1871
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
1872
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications.rb:123:in `block in instrument'
|
1873
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
1874
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications.rb:123:in `instrument'
|
1875
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
1876
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/partial_renderer.rb:237:in `render'
|
1877
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/renderer.rb:41:in `render_partial'
|
1878
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/renderer.rb:15:in `render'
|
1879
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/helpers/rendering_helper.rb:24:in `render'
|
1880
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/helpers/application_helper.rb:10:in `block in render_tb_helper_methode'
|
1881
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/helpers/capture_helper.rb:40:in `block in capture'
|
1882
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/helpers/capture_helper.rb:187:in `with_output_buffer'
|
1883
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/helpers/capture_helper.rb:40:in `capture'
|
1884
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/helpers/application_helper.rb:16:in `render_tb_helper_methode'
|
1885
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/views/application/index.html.erb:6:in `block in _app_views_application_index_html_erb___2899951617282391438_70186632889200'
|
1886
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/views/application/index.html.erb:4:in `each'
|
1887
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/views/application/index.html.erb:4:in `_app_views_application_index_html_erb___2899951617282391438_70186632889200'
|
1888
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/template.rb:145:in `block in render'
|
1889
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications.rb:125:in `instrument'
|
1890
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/template.rb:143:in `render'
|
1891
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
|
1892
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
1893
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications.rb:123:in `block in instrument'
|
1894
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
1895
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications.rb:123:in `instrument'
|
1896
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
1897
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
|
1898
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
|
1899
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/template_renderer.rb:45:in `render_template'
|
1900
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/template_renderer.rb:18:in `render'
|
1901
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/renderer.rb:36:in `render_template'
|
1902
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/renderer.rb:17:in `render'
|
1903
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/abstract_controller/rendering.rb:110:in `_render_template'
|
1904
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
1905
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
1906
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
1907
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
1908
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/abstract_controller/rendering.rb:88:in `render'
|
1909
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/rendering.rb:16:in `render'
|
1910
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
1911
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
1912
|
+
/Users/micha/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
|
1913
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
1914
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
1915
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
1916
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activerecord-3.2.13/lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
|
1917
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/instrumentation.rb:39:in `render'
|
1918
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
1919
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/implicit_render.rb:5:in `send_action'
|
1920
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/abstract_controller/base.rb:167:in `process_action'
|
1921
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/rendering.rb:10:in `process_action'
|
1922
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
1923
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:414:in `_run__4045942740346012207__process_action__3990503422079641631__callbacks'
|
1924
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:405:in `__run_callback'
|
1925
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
1926
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:81:in `run_callbacks'
|
1927
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/abstract_controller/callbacks.rb:17:in `process_action'
|
1928
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/rescue.rb:29:in `process_action'
|
1929
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
1930
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications.rb:123:in `block in instrument'
|
1931
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
1932
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications.rb:123:in `instrument'
|
1933
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
1934
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
1935
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activerecord-3.2.13/lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
1936
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/abstract_controller/base.rb:121:in `process'
|
1937
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/abstract_controller/rendering.rb:45:in `process'
|
1938
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal.rb:203:in `dispatch'
|
1939
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
1940
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal.rb:246:in `block in action'
|
1941
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/routing/route_set.rb:73:in `call'
|
1942
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
1943
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/routing/route_set.rb:36:in `call'
|
1944
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call'
|
1945
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/journey-1.0.4/lib/journey/router.rb:56:in `each'
|
1946
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/journey-1.0.4/lib/journey/router.rb:56:in `call'
|
1947
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/routing/route_set.rb:612:in `call'
|
1948
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
1949
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/rack-1.4.5/lib/rack/etag.rb:23:in `call'
|
1950
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/rack-1.4.5/lib/rack/conditionalget.rb:25:in `call'
|
1951
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/head.rb:14:in `call'
|
1952
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
1953
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/flash.rb:242:in `call'
|
1954
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/rack-1.4.5/lib/rack/session/abstract/id.rb:210:in `context'
|
1955
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/rack-1.4.5/lib/rack/session/abstract/id.rb:205:in `call'
|
1956
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
1957
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activerecord-3.2.13/lib/active_record/query_cache.rb:64:in `call'
|
1958
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activerecord-3.2.13/lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
1959
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
1960
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:405:in `_run__1772630717733536084__call__2067133930462886396__callbacks'
|
1961
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:405:in `__run_callback'
|
1962
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
1963
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:81:in `run_callbacks'
|
1964
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
1965
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
1966
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
1967
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
1968
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
1969
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/railties-3.2.13/lib/rails/rack/logger.rb:32:in `call_app'
|
1970
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/railties-3.2.13/lib/rails/rack/logger.rb:16:in `block in call'
|
1971
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/tagged_logging.rb:22:in `tagged'
|
1972
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/railties-3.2.13/lib/rails/rack/logger.rb:16:in `call'
|
1973
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
1974
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/rack-1.4.5/lib/rack/methodoverride.rb:21:in `call'
|
1975
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/rack-1.4.5/lib/rack/runtime.rb:17:in `call'
|
1976
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
1977
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/rack-1.4.5/lib/rack/lock.rb:15:in `call'
|
1978
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/static.rb:63:in `call'
|
1979
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/railties-3.2.13/lib/rails/engine.rb:479:in `call'
|
1980
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/railties-3.2.13/lib/rails/application.rb:223:in `call'
|
1981
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/rack-1.4.5/lib/rack/content_length.rb:14:in `call'
|
1982
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/railties-3.2.13/lib/rails/rack/log_tailer.rb:17:in `call'
|
1983
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/rack-1.4.5/lib/rack/handler/webrick.rb:59:in `service'
|
1984
|
+
/Users/micha/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
1985
|
+
/Users/micha/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
1986
|
+
/Users/micha/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
1987
|
+
Rendered application/_tb_icon.html.erb (2.6ms)
|
1988
|
+
Rendered application/index.html.erb within layouts/application (30.4ms)
|
1989
|
+
Completed 500 Internal Server Error in 34ms
|
1990
|
+
|
1991
|
+
ActionView::Template::Error (/Users/micha/Projects/tb-helpers/test/dummy/app/views/application/_tb_icon.html.erb:1: syntax error, unexpected ':', expecting ')'
|
1992
|
+
...tput_buffer.append= ( tb_icon :glass );@output_buffer.safe_c...
|
1993
|
+
... ^
|
1994
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/views/application/_tb_icon.html.erb:2: syntax error, unexpected ':', expecting ')'
|
1995
|
+
...tput_buffer.append= ( tb_icon :heart );@output_buffer.safe_c...
|
1996
|
+
... ^
|
1997
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/views/application/_tb_icon.html.erb:3: syntax error, unexpected ':', expecting ')'
|
1998
|
+
');@output_buffer.append= ( tb_icon :ok );@output_buffer.safe_concat('
|
1999
|
+
^
|
2000
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/views/application/_tb_icon.html.erb:4: syntax error, unexpected ':', expecting ')'
|
2001
|
+
');@output_buffer.append= ( tb_icon :home );@output_buffer.to_s
|
2002
|
+
^):
|
2003
|
+
1: <%= tb_icon :glass %>
|
2004
|
+
2: <%= tb_icon :heart %>
|
2005
|
+
3: <%= tb_icon :ok %>
|
2006
|
+
4: <%= tb_icon :home %>
|
2007
|
+
app/helpers/application_helper.rb:10:in `block in render_tb_helper_methode'
|
2008
|
+
app/helpers/application_helper.rb:16:in `render_tb_helper_methode'
|
2009
|
+
app/views/application/index.html.erb:6:in `block in _app_views_application_index_html_erb___2899951617282391438_70186632889200'
|
2010
|
+
app/views/application/index.html.erb:4:in `each'
|
2011
|
+
app/views/application/index.html.erb:4:in `_app_views_application_index_html_erb___2899951617282391438_70186632889200'
|
2012
|
+
|
2013
|
+
|
2014
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.1ms)
|
2015
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
|
2016
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.0ms)
|
2017
|
+
|
2018
|
+
|
2019
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 23:27:51 +0200
|
2020
|
+
Processing by ApplicationController#index as HTML
|
2021
|
+
Rendered application/_tb_button_group.html.erb (0.2ms)
|
2022
|
+
ERROR: compiling _app_views_application__tb_icon_html_erb__613558446940886465_70186645634760 RAISED /Users/micha/Projects/tb-helpers/test/dummy/app/views/application/_tb_icon.html.erb:2: syntax error, unexpected ':', expecting ')'
|
2023
|
+
...tput_buffer.append= ( tb_icon :heart );@output_buffer.safe_c...
|
2024
|
+
... ^
|
2025
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/views/application/_tb_icon.html.erb:3: syntax error, unexpected ':', expecting ')'
|
2026
|
+
');@output_buffer.append= ( tb_icon :ok );@output_buffer.safe_concat('
|
2027
|
+
^
|
2028
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/views/application/_tb_icon.html.erb:4: syntax error, unexpected ':', expecting ')'
|
2029
|
+
');@output_buffer.append= ( tb_icon :home );@output_buffer.to_s
|
2030
|
+
^
|
2031
|
+
Function body: def _app_views_application__tb_icon_html_erb__613558446940886465_70186645634760(local_assigns, output_buffer)
|
2032
|
+
_old_virtual_path, @virtual_path = @virtual_path, "application/_tb_icon";_old_output_buffer = @output_buffer;tb_icon = local_assigns[:tb_icon];;@output_buffer = output_buffer || ActionView::OutputBuffer.new;@output_buffer.append= ( tb_icon(:glass) );@output_buffer.safe_concat('
|
2033
|
+
');@output_buffer.append= ( tb_icon :heart );@output_buffer.safe_concat('
|
2034
|
+
');@output_buffer.append= ( tb_icon :ok );@output_buffer.safe_concat('
|
2035
|
+
');@output_buffer.append= ( tb_icon :home );@output_buffer.to_s
|
2036
|
+
ensure
|
2037
|
+
@virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer
|
2038
|
+
end
|
2039
|
+
|
2040
|
+
Backtrace: /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/template.rb:297:in `module_eval'
|
2041
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/template.rb:297:in `compile'
|
2042
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/template.rb:244:in `block in compile!'
|
2043
|
+
<internal:prelude>:10:in `synchronize'
|
2044
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/template.rb:232:in `compile!'
|
2045
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/template.rb:144:in `block in render'
|
2046
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications.rb:125:in `instrument'
|
2047
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/template.rb:143:in `render'
|
2048
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/partial_renderer.rb:265:in `render_partial'
|
2049
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/partial_renderer.rb:238:in `block in render'
|
2050
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
2051
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications.rb:123:in `block in instrument'
|
2052
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
2053
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications.rb:123:in `instrument'
|
2054
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
2055
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/partial_renderer.rb:237:in `render'
|
2056
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/renderer.rb:41:in `render_partial'
|
2057
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/renderer.rb:15:in `render'
|
2058
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/helpers/rendering_helper.rb:24:in `render'
|
2059
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/helpers/application_helper.rb:10:in `block in render_tb_helper_methode'
|
2060
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/helpers/capture_helper.rb:40:in `block in capture'
|
2061
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/helpers/capture_helper.rb:187:in `with_output_buffer'
|
2062
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/helpers/capture_helper.rb:40:in `capture'
|
2063
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/helpers/application_helper.rb:16:in `render_tb_helper_methode'
|
2064
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/views/application/index.html.erb:6:in `block in _app_views_application_index_html_erb___2899951617282391438_70186632889200'
|
2065
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/views/application/index.html.erb:4:in `each'
|
2066
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/views/application/index.html.erb:4:in `_app_views_application_index_html_erb___2899951617282391438_70186632889200'
|
2067
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/template.rb:145:in `block in render'
|
2068
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications.rb:125:in `instrument'
|
2069
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/template.rb:143:in `render'
|
2070
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
|
2071
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
2072
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications.rb:123:in `block in instrument'
|
2073
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
2074
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications.rb:123:in `instrument'
|
2075
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
2076
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
|
2077
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
|
2078
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/template_renderer.rb:45:in `render_template'
|
2079
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/template_renderer.rb:18:in `render'
|
2080
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/renderer.rb:36:in `render_template'
|
2081
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/renderer.rb:17:in `render'
|
2082
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/abstract_controller/rendering.rb:110:in `_render_template'
|
2083
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
2084
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
2085
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
2086
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
2087
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/abstract_controller/rendering.rb:88:in `render'
|
2088
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/rendering.rb:16:in `render'
|
2089
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
2090
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
2091
|
+
/Users/micha/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
|
2092
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
2093
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
2094
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
2095
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activerecord-3.2.13/lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
|
2096
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/instrumentation.rb:39:in `render'
|
2097
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
2098
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/implicit_render.rb:5:in `send_action'
|
2099
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/abstract_controller/base.rb:167:in `process_action'
|
2100
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/rendering.rb:10:in `process_action'
|
2101
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
2102
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:414:in `_run__4045942740346012207__process_action__3990503422079641631__callbacks'
|
2103
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:405:in `__run_callback'
|
2104
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
2105
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:81:in `run_callbacks'
|
2106
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/abstract_controller/callbacks.rb:17:in `process_action'
|
2107
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/rescue.rb:29:in `process_action'
|
2108
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
2109
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications.rb:123:in `block in instrument'
|
2110
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
2111
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications.rb:123:in `instrument'
|
2112
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
2113
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
2114
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activerecord-3.2.13/lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
2115
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/abstract_controller/base.rb:121:in `process'
|
2116
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/abstract_controller/rendering.rb:45:in `process'
|
2117
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal.rb:203:in `dispatch'
|
2118
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
2119
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal.rb:246:in `block in action'
|
2120
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/routing/route_set.rb:73:in `call'
|
2121
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
2122
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/routing/route_set.rb:36:in `call'
|
2123
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call'
|
2124
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/journey-1.0.4/lib/journey/router.rb:56:in `each'
|
2125
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/journey-1.0.4/lib/journey/router.rb:56:in `call'
|
2126
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/routing/route_set.rb:612:in `call'
|
2127
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
2128
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/rack-1.4.5/lib/rack/etag.rb:23:in `call'
|
2129
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/rack-1.4.5/lib/rack/conditionalget.rb:25:in `call'
|
2130
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/head.rb:14:in `call'
|
2131
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
2132
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/flash.rb:242:in `call'
|
2133
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/rack-1.4.5/lib/rack/session/abstract/id.rb:210:in `context'
|
2134
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/rack-1.4.5/lib/rack/session/abstract/id.rb:205:in `call'
|
2135
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
2136
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activerecord-3.2.13/lib/active_record/query_cache.rb:64:in `call'
|
2137
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activerecord-3.2.13/lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
2138
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
2139
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:405:in `_run__1772630717733536084__call__2067133930462886396__callbacks'
|
2140
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:405:in `__run_callback'
|
2141
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
2142
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:81:in `run_callbacks'
|
2143
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
2144
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
2145
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
2146
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
2147
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
2148
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/railties-3.2.13/lib/rails/rack/logger.rb:32:in `call_app'
|
2149
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/railties-3.2.13/lib/rails/rack/logger.rb:16:in `block in call'
|
2150
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/tagged_logging.rb:22:in `tagged'
|
2151
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/railties-3.2.13/lib/rails/rack/logger.rb:16:in `call'
|
2152
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
2153
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/rack-1.4.5/lib/rack/methodoverride.rb:21:in `call'
|
2154
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/rack-1.4.5/lib/rack/runtime.rb:17:in `call'
|
2155
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
2156
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/rack-1.4.5/lib/rack/lock.rb:15:in `call'
|
2157
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/static.rb:63:in `call'
|
2158
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/railties-3.2.13/lib/rails/engine.rb:479:in `call'
|
2159
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/railties-3.2.13/lib/rails/application.rb:223:in `call'
|
2160
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/rack-1.4.5/lib/rack/content_length.rb:14:in `call'
|
2161
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/railties-3.2.13/lib/rails/rack/log_tailer.rb:17:in `call'
|
2162
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/rack-1.4.5/lib/rack/handler/webrick.rb:59:in `service'
|
2163
|
+
/Users/micha/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
2164
|
+
/Users/micha/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
2165
|
+
/Users/micha/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
2166
|
+
Rendered application/_tb_icon.html.erb (1.5ms)
|
2167
|
+
Rendered application/index.html.erb within layouts/application (4.2ms)
|
2168
|
+
Completed 500 Internal Server Error in 6ms
|
2169
|
+
|
2170
|
+
ActionView::Template::Error (/Users/micha/Projects/tb-helpers/test/dummy/app/views/application/_tb_icon.html.erb:2: syntax error, unexpected ':', expecting ')'
|
2171
|
+
...tput_buffer.append= ( tb_icon :heart );@output_buffer.safe_c...
|
2172
|
+
... ^
|
2173
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/views/application/_tb_icon.html.erb:3: syntax error, unexpected ':', expecting ')'
|
2174
|
+
');@output_buffer.append= ( tb_icon :ok );@output_buffer.safe_concat('
|
2175
|
+
^
|
2176
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/views/application/_tb_icon.html.erb:4: syntax error, unexpected ':', expecting ')'
|
2177
|
+
');@output_buffer.append= ( tb_icon :home );@output_buffer.to_s
|
2178
|
+
^):
|
2179
|
+
1: <%= tb_icon(:glass) %>
|
2180
|
+
2: <%= tb_icon :heart %>
|
2181
|
+
3: <%= tb_icon :ok %>
|
2182
|
+
4: <%= tb_icon :home %>
|
2183
|
+
app/helpers/application_helper.rb:10:in `block in render_tb_helper_methode'
|
2184
|
+
app/helpers/application_helper.rb:16:in `render_tb_helper_methode'
|
2185
|
+
app/views/application/index.html.erb:6:in `block in _app_views_application_index_html_erb___2899951617282391438_70186632889200'
|
2186
|
+
app/views/application/index.html.erb:4:in `each'
|
2187
|
+
app/views/application/index.html.erb:4:in `_app_views_application_index_html_erb___2899951617282391438_70186632889200'
|
2188
|
+
|
2189
|
+
|
2190
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.8ms)
|
2191
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
|
2192
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.9ms)
|
2193
|
+
|
2194
|
+
|
2195
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 23:28:08 +0200
|
2196
|
+
Processing by ApplicationController#index as HTML
|
2197
|
+
Rendered application/_tb_button_group.html.erb (0.2ms)
|
2198
|
+
Rendered application/_tb_icon.html.erb (0.9ms)
|
2199
|
+
Rendered application/index.html.erb within layouts/application (3.9ms)
|
2200
|
+
Completed 200 OK in 11ms (Views: 8.8ms | ActiveRecord: 0.0ms)
|
2201
|
+
|
2202
|
+
|
2203
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 23:28:08 +0200
|
2204
|
+
Served asset /jquery.js - 304 Not Modified (2ms)
|
2205
|
+
|
2206
|
+
|
2207
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-05 23:28:08 +0200
|
2208
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
2209
|
+
|
2210
|
+
|
2211
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-05 23:28:08 +0200
|
2212
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
2213
|
+
|
2214
|
+
|
2215
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 23:28:08 +0200
|
2216
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
2217
|
+
|
2218
|
+
|
2219
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 23:28:43 +0200
|
2220
|
+
Processing by ApplicationController#index as HTML
|
2221
|
+
Rendered application/_tb_button_group.html.erb (0.2ms)
|
2222
|
+
Rendered application/_tb_icon.html.erb (1.0ms)
|
2223
|
+
Rendered application/index.html.erb within layouts/application (4.4ms)
|
2224
|
+
Completed 200 OK in 24ms (Views: 23.1ms | ActiveRecord: 0.0ms)
|
2225
|
+
|
2226
|
+
|
2227
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-05 23:28:43 +0200
|
2228
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
2229
|
+
|
2230
|
+
|
2231
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 23:28:43 +0200
|
2232
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
2233
|
+
|
2234
|
+
|
2235
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 23:28:43 +0200
|
2236
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
2237
|
+
|
2238
|
+
|
2239
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-05 23:28:43 +0200
|
2240
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
2241
|
+
|
2242
|
+
|
2243
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 23:29:36 +0200
|
2244
|
+
Processing by ApplicationController#index as HTML
|
2245
|
+
Rendered application/_tb_button_group.html.erb (0.2ms)
|
2246
|
+
Rendered application/_tb_icon.html.erb (0.2ms)
|
2247
|
+
Rendered application/index.html.erb within layouts/application (6.9ms)
|
2248
|
+
Completed 200 OK in 18ms (Views: 17.8ms | ActiveRecord: 0.0ms)
|
2249
|
+
|
2250
|
+
|
2251
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 23:29:36 +0200
|
2252
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
2253
|
+
|
2254
|
+
|
2255
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 23:29:36 +0200
|
2256
|
+
Served asset /jquery.js - 304 Not Modified (2ms)
|
2257
|
+
|
2258
|
+
|
2259
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-05 23:29:36 +0200
|
2260
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
2261
|
+
|
2262
|
+
|
2263
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-05 23:29:36 +0200
|
2264
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
2265
|
+
Connecting to database specified by database.yml
|
2266
|
+
|
2267
|
+
|
2268
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 23:33:45 +0200
|
2269
|
+
Processing by ApplicationController#index as HTML
|
2270
|
+
Rendered application/_tb_table.html.erb (11.4ms)
|
2271
|
+
Rendered application/index.html.erb within layouts/application (23.5ms)
|
2272
|
+
Completed 500 Internal Server Error in 37ms
|
2273
|
+
|
2274
|
+
ActionView::Template::Error (wrong number of arguments (0 for 1)):
|
2275
|
+
1: <%= tb_table do %>
|
2276
|
+
2: <tbody>
|
2277
|
+
3: <%= tb_table_row do %>
|
2278
|
+
4: <td>Using</td>
|
2279
|
+
app/views/application/_tb_table.html.erb:1:in `_app_views_application__tb_table_html_erb___4129035676054323967_70351250805780'
|
2280
|
+
app/helpers/application_helper.rb:10:in `block in render_tb_helper_methode'
|
2281
|
+
app/helpers/application_helper.rb:16:in `render_tb_helper_methode'
|
2282
|
+
app/views/application/index.html.erb:6:in `block in _app_views_application_index_html_erb__4521498134253623626_70351250730180'
|
2283
|
+
app/views/application/index.html.erb:4:in `each'
|
2284
|
+
app/views/application/index.html.erb:4:in `_app_views_application_index_html_erb__4521498134253623626_70351250730180'
|
2285
|
+
|
2286
|
+
|
2287
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.5ms)
|
2288
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.6ms)
|
2289
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (25.8ms)
|
2290
|
+
Connecting to database specified by database.yml
|
2291
|
+
|
2292
|
+
|
2293
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 23:33:58 +0200
|
2294
|
+
Processing by ApplicationController#index as HTML
|
2295
|
+
Rendered application/_tb_table.html.erb (0.7ms)
|
2296
|
+
Rendered application/_tb_button_group.html.erb (0.6ms)
|
2297
|
+
Rendered application/_tb_icon.html.erb (0.6ms)
|
2298
|
+
Rendered application/index.html.erb within layouts/application (8.9ms)
|
2299
|
+
Completed 200 OK in 31ms (Views: 30.7ms | ActiveRecord: 0.0ms)
|
2300
|
+
|
2301
|
+
|
2302
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 23:33:58 +0200
|
2303
|
+
Served asset /jquery.js - 304 Not Modified (6ms)
|
2304
|
+
|
2305
|
+
|
2306
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-05 23:33:58 +0200
|
2307
|
+
Served asset /application.js - 304 Not Modified (6ms)
|
2308
|
+
|
2309
|
+
|
2310
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 23:33:58 +0200
|
2311
|
+
Served asset /jquery_ujs.js - 304 Not Modified (39ms)
|
2312
|
+
|
2313
|
+
|
2314
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-05 23:33:58 +0200
|
2315
|
+
Served asset /application.css - 304 Not Modified (3ms)
|
2316
|
+
|
2317
|
+
|
2318
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 23:35:15 +0200
|
2319
|
+
Processing by ApplicationController#index as HTML
|
2320
|
+
ERROR: compiling _app_views_application__tb_table_html_erb__4541863141310170714_70354674620620 RAISED /Users/micha/Projects/tb-helpers/test/dummy/app/views/application/_tb_table.html.erb:1: syntax error, unexpected ':', expecting keyword_end
|
2321
|
+
...fer.append= tb_table bordered: true do @output_buffer.safe_...
|
2322
|
+
... ^
|
2323
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/views/application/_tb_table.html.erb:12: syntax error, unexpected keyword_ensure, expecting $end
|
2324
|
+
Function body: def _app_views_application__tb_table_html_erb__4541863141310170714_70354674620620(local_assigns, output_buffer)
|
2325
|
+
_old_virtual_path, @virtual_path = @virtual_path, "application/_tb_table";_old_output_buffer = @output_buffer;tb_table = local_assigns[:tb_table];;@output_buffer = output_buffer || ActionView::OutputBuffer.new;@output_buffer.append= tb_table bordered: true do @output_buffer.safe_concat('
|
2326
|
+
');@output_buffer.safe_concat(' <tbody>
|
2327
|
+
');@output_buffer.append= tb_table_row do @output_buffer.safe_concat('
|
2328
|
+
');@output_buffer.safe_concat(' <td>Using</td>
|
2329
|
+
<td>tb_table</td>
|
2330
|
+
<td>and</td>
|
2331
|
+
<td>tb_table_row</td>
|
2332
|
+
<td>here</td>
|
2333
|
+
'); end
|
2334
|
+
@output_buffer.safe_concat(' </tbody>
|
2335
|
+
'); end ;@output_buffer.to_s
|
2336
|
+
ensure
|
2337
|
+
@virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer
|
2338
|
+
end
|
2339
|
+
|
2340
|
+
Backtrace: /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/template.rb:297:in `module_eval'
|
2341
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/template.rb:297:in `compile'
|
2342
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/template.rb:244:in `block in compile!'
|
2343
|
+
<internal:prelude>:10:in `synchronize'
|
2344
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/template.rb:232:in `compile!'
|
2345
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/template.rb:144:in `block in render'
|
2346
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications.rb:125:in `instrument'
|
2347
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/template.rb:143:in `render'
|
2348
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/partial_renderer.rb:265:in `render_partial'
|
2349
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/partial_renderer.rb:238:in `block in render'
|
2350
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
2351
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications.rb:123:in `block in instrument'
|
2352
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
2353
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications.rb:123:in `instrument'
|
2354
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
2355
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/partial_renderer.rb:237:in `render'
|
2356
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/renderer.rb:41:in `render_partial'
|
2357
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/renderer.rb:15:in `render'
|
2358
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/helpers/rendering_helper.rb:24:in `render'
|
2359
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/helpers/application_helper.rb:10:in `block in render_tb_helper_methode'
|
2360
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/helpers/capture_helper.rb:40:in `block in capture'
|
2361
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/helpers/capture_helper.rb:187:in `with_output_buffer'
|
2362
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/helpers/capture_helper.rb:40:in `capture'
|
2363
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/helpers/application_helper.rb:16:in `render_tb_helper_methode'
|
2364
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/views/application/index.html.erb:6:in `block in _app_views_application_index_html_erb__1773766814672156631_70354684962980'
|
2365
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/views/application/index.html.erb:4:in `each'
|
2366
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/views/application/index.html.erb:4:in `_app_views_application_index_html_erb__1773766814672156631_70354684962980'
|
2367
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/template.rb:145:in `block in render'
|
2368
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications.rb:125:in `instrument'
|
2369
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/template.rb:143:in `render'
|
2370
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
|
2371
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
2372
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications.rb:123:in `block in instrument'
|
2373
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
2374
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications.rb:123:in `instrument'
|
2375
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
2376
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
|
2377
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
|
2378
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/template_renderer.rb:45:in `render_template'
|
2379
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/template_renderer.rb:18:in `render'
|
2380
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/renderer.rb:36:in `render_template'
|
2381
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/renderer.rb:17:in `render'
|
2382
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/abstract_controller/rendering.rb:110:in `_render_template'
|
2383
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
2384
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
2385
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
2386
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
2387
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/abstract_controller/rendering.rb:88:in `render'
|
2388
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/rendering.rb:16:in `render'
|
2389
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
2390
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
2391
|
+
/Users/micha/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
|
2392
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
2393
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
2394
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
2395
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activerecord-3.2.13/lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
|
2396
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/instrumentation.rb:39:in `render'
|
2397
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
2398
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/implicit_render.rb:5:in `send_action'
|
2399
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/abstract_controller/base.rb:167:in `process_action'
|
2400
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/rendering.rb:10:in `process_action'
|
2401
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
2402
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:414:in `_run__1186425160434969799__process_action__3116578589448561697__callbacks'
|
2403
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:405:in `__run_callback'
|
2404
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
2405
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:81:in `run_callbacks'
|
2406
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/abstract_controller/callbacks.rb:17:in `process_action'
|
2407
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/rescue.rb:29:in `process_action'
|
2408
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
2409
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications.rb:123:in `block in instrument'
|
2410
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
2411
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications.rb:123:in `instrument'
|
2412
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
2413
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
2414
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activerecord-3.2.13/lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
2415
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/abstract_controller/base.rb:121:in `process'
|
2416
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/abstract_controller/rendering.rb:45:in `process'
|
2417
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal.rb:203:in `dispatch'
|
2418
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
2419
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal.rb:246:in `block in action'
|
2420
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/routing/route_set.rb:73:in `call'
|
2421
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
2422
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/routing/route_set.rb:36:in `call'
|
2423
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call'
|
2424
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/journey-1.0.4/lib/journey/router.rb:56:in `each'
|
2425
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/journey-1.0.4/lib/journey/router.rb:56:in `call'
|
2426
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/routing/route_set.rb:612:in `call'
|
2427
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
2428
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/rack-1.4.5/lib/rack/etag.rb:23:in `call'
|
2429
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/rack-1.4.5/lib/rack/conditionalget.rb:25:in `call'
|
2430
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/head.rb:14:in `call'
|
2431
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
2432
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/flash.rb:242:in `call'
|
2433
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/rack-1.4.5/lib/rack/session/abstract/id.rb:210:in `context'
|
2434
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/rack-1.4.5/lib/rack/session/abstract/id.rb:205:in `call'
|
2435
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
2436
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activerecord-3.2.13/lib/active_record/query_cache.rb:64:in `call'
|
2437
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activerecord-3.2.13/lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
2438
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
2439
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:405:in `_run__2204462665687291544__call__3239855298578259391__callbacks'
|
2440
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:405:in `__run_callback'
|
2441
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
2442
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:81:in `run_callbacks'
|
2443
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
2444
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
2445
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
2446
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
2447
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
2448
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/railties-3.2.13/lib/rails/rack/logger.rb:32:in `call_app'
|
2449
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/railties-3.2.13/lib/rails/rack/logger.rb:16:in `block in call'
|
2450
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/tagged_logging.rb:22:in `tagged'
|
2451
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/railties-3.2.13/lib/rails/rack/logger.rb:16:in `call'
|
2452
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
2453
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/rack-1.4.5/lib/rack/methodoverride.rb:21:in `call'
|
2454
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/rack-1.4.5/lib/rack/runtime.rb:17:in `call'
|
2455
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
2456
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/rack-1.4.5/lib/rack/lock.rb:15:in `call'
|
2457
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/static.rb:63:in `call'
|
2458
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/railties-3.2.13/lib/rails/engine.rb:479:in `call'
|
2459
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/railties-3.2.13/lib/rails/application.rb:223:in `call'
|
2460
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/rack-1.4.5/lib/rack/content_length.rb:14:in `call'
|
2461
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/railties-3.2.13/lib/rails/rack/log_tailer.rb:17:in `call'
|
2462
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/rack-1.4.5/lib/rack/handler/webrick.rb:59:in `service'
|
2463
|
+
/Users/micha/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
2464
|
+
/Users/micha/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
2465
|
+
/Users/micha/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
2466
|
+
Rendered application/_tb_table.html.erb (2.4ms)
|
2467
|
+
Rendered application/index.html.erb within layouts/application (3.7ms)
|
2468
|
+
Completed 500 Internal Server Error in 6ms
|
2469
|
+
|
2470
|
+
ActionView::Template::Error (/Users/micha/Projects/tb-helpers/test/dummy/app/views/application/_tb_table.html.erb:1: syntax error, unexpected ':', expecting keyword_end
|
2471
|
+
...fer.append= tb_table bordered: true do @output_buffer.safe_...
|
2472
|
+
... ^
|
2473
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/views/application/_tb_table.html.erb:12: syntax error, unexpected keyword_ensure, expecting $end):
|
2474
|
+
1: <%= tb_table bordered: true do %>
|
2475
|
+
2: <tbody>
|
2476
|
+
3: <%= tb_table_row do %>
|
2477
|
+
4: <td>Using</td>
|
2478
|
+
app/helpers/application_helper.rb:10:in `block in render_tb_helper_methode'
|
2479
|
+
app/helpers/application_helper.rb:16:in `render_tb_helper_methode'
|
2480
|
+
app/views/application/index.html.erb:6:in `block in _app_views_application_index_html_erb__1773766814672156631_70354684962980'
|
2481
|
+
app/views/application/index.html.erb:4:in `each'
|
2482
|
+
app/views/application/index.html.erb:4:in `_app_views_application_index_html_erb__1773766814672156631_70354684962980'
|
2483
|
+
|
2484
|
+
|
2485
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.8ms)
|
2486
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
|
2487
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (10.1ms)
|
2488
|
+
|
2489
|
+
|
2490
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 23:35:21 +0200
|
2491
|
+
Processing by ApplicationController#index as HTML
|
2492
|
+
Rendered application/_tb_table.html.erb (0.7ms)
|
2493
|
+
Rendered application/_tb_button_group.html.erb (0.2ms)
|
2494
|
+
Rendered application/_tb_icon.html.erb (0.2ms)
|
2495
|
+
Rendered application/index.html.erb within layouts/application (4.1ms)
|
2496
|
+
Completed 200 OK in 27ms (Views: 26.1ms | ActiveRecord: 0.0ms)
|
2497
|
+
|
2498
|
+
|
2499
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-05 23:35:22 +0200
|
2500
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
2501
|
+
|
2502
|
+
|
2503
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 23:35:22 +0200
|
2504
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
2505
|
+
|
2506
|
+
|
2507
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 23:35:22 +0200
|
2508
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
2509
|
+
|
2510
|
+
|
2511
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-05 23:35:22 +0200
|
2512
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
2513
|
+
|
2514
|
+
|
2515
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 23:35:56 +0200
|
2516
|
+
Processing by ApplicationController#index as HTML
|
2517
|
+
Rendered application/_tb_table.html.erb (0.7ms)
|
2518
|
+
Rendered application/_tb_button_group.html.erb (0.2ms)
|
2519
|
+
Rendered application/_tb_icon.html.erb (0.2ms)
|
2520
|
+
Rendered application/index.html.erb within layouts/application (4.0ms)
|
2521
|
+
Completed 200 OK in 9ms (Views: 8.3ms | ActiveRecord: 0.0ms)
|
2522
|
+
|
2523
|
+
|
2524
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-05 23:35:56 +0200
|
2525
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
2526
|
+
|
2527
|
+
|
2528
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-05 23:35:56 +0200
|
2529
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
2530
|
+
|
2531
|
+
|
2532
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 23:35:56 +0200
|
2533
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
2534
|
+
|
2535
|
+
|
2536
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 23:35:56 +0200
|
2537
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
2538
|
+
|
2539
|
+
|
2540
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 23:39:20 +0200
|
2541
|
+
Processing by ApplicationController#index as HTML
|
2542
|
+
Rendered application/_tb_table.html.erb (0.8ms)
|
2543
|
+
Rendered application/_tb_form_for.html.erb (0.8ms)
|
2544
|
+
Rendered application/_tb_button_group.html.erb (0.9ms)
|
2545
|
+
Rendered application/_tb_icon.html.erb (0.2ms)
|
2546
|
+
Rendered application/index.html.erb within layouts/application (31.8ms)
|
2547
|
+
Completed 200 OK in 38ms (Views: 37.5ms | ActiveRecord: 0.0ms)
|
2548
|
+
|
2549
|
+
|
2550
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 23:39:20 +0200
|
2551
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
2552
|
+
|
2553
|
+
|
2554
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 23:39:20 +0200
|
2555
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
2556
|
+
|
2557
|
+
|
2558
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-05 23:39:20 +0200
|
2559
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
2560
|
+
|
2561
|
+
|
2562
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-05 23:39:20 +0200
|
2563
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
2564
|
+
|
2565
|
+
|
2566
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 23:40:30 +0200
|
2567
|
+
Processing by ApplicationController#index as HTML
|
2568
|
+
Rendered application/_tb_table.html.erb (0.2ms)
|
2569
|
+
Rendered application/_tb_form_for.html.erb (0.9ms)
|
2570
|
+
Rendered application/_tb_button_group.html.erb (0.2ms)
|
2571
|
+
Rendered application/_tb_icon.html.erb (0.2ms)
|
2572
|
+
Rendered application/index.html.erb within layouts/application (5.2ms)
|
2573
|
+
Completed 200 OK in 10ms (Views: 10.0ms | ActiveRecord: 0.0ms)
|
2574
|
+
|
2575
|
+
|
2576
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 23:40:30 +0200
|
2577
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
2578
|
+
|
2579
|
+
|
2580
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-05 23:40:30 +0200
|
2581
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
2582
|
+
|
2583
|
+
|
2584
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 23:40:30 +0200
|
2585
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
2586
|
+
|
2587
|
+
|
2588
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-05 23:40:30 +0200
|
2589
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
2590
|
+
|
2591
|
+
|
2592
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 23:43:05 +0200
|
2593
|
+
Processing by ApplicationController#index as HTML
|
2594
|
+
Rendered application/_tb_table.html.erb (0.2ms)
|
2595
|
+
ERROR: compiling _app_views_application__tb_form_for_html_erb__4490725045175393391_70354685077480 RAISED /Users/micha/Projects/tb-helpers/test/dummy/app/views/application/_tb_form_for.html.erb:11: syntax error, unexpected keyword_ensure, expecting $end
|
2596
|
+
Function body: def _app_views_application__tb_form_for_html_erb__4490725045175393391_70354685077480(local_assigns, output_buffer)
|
2597
|
+
_old_virtual_path, @virtual_path = @virtual_path, "application/_tb_form_for";_old_output_buffer = @output_buffer;tb_form_for = local_assigns[:tb_form_for];;@output_buffer = output_buffer || ActionView::OutputBuffer.new;@output_buffer.append= form_tag('#', class: 'form-horizontal') do @output_buffer.safe_concat('
|
2598
|
+
');@output_buffer.safe_concat(' ');@output_buffer.append= tb_fieldset(legend: 'legend of tb_fieldset() here') do @output_buffer.safe_concat('
|
2599
|
+
');@output_buffer.safe_concat(' ');@output_buffer.append= tb_control_group do @output_buffer.safe_concat('
|
2600
|
+
');@output_buffer.safe_concat(' ');@output_buffer.append= ( tb_control_label 'Using tb_control_label() here' );@output_buffer.safe_concat('
|
2601
|
+
');@output_buffer.safe_concat(' ');@output_buffer.append= ( tb_controls );@output_buffer.safe_concat('
|
2602
|
+
');@output_buffer.safe_concat(' ');@output_buffer.append= ( input_tag 'tb_input', value: 'tb_input' );@output_buffer.safe_concat('
|
2603
|
+
'); end
|
2604
|
+
end
|
2605
|
+
end
|
2606
|
+
end ;@output_buffer.to_s
|
2607
|
+
ensure
|
2608
|
+
@virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer
|
2609
|
+
end
|
2610
|
+
|
2611
|
+
Backtrace: /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/template.rb:297:in `module_eval'
|
2612
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/template.rb:297:in `compile'
|
2613
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/template.rb:244:in `block in compile!'
|
2614
|
+
<internal:prelude>:10:in `synchronize'
|
2615
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/template.rb:232:in `compile!'
|
2616
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/template.rb:144:in `block in render'
|
2617
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications.rb:125:in `instrument'
|
2618
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/template.rb:143:in `render'
|
2619
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/partial_renderer.rb:265:in `render_partial'
|
2620
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/partial_renderer.rb:238:in `block in render'
|
2621
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
2622
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications.rb:123:in `block in instrument'
|
2623
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
2624
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications.rb:123:in `instrument'
|
2625
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
2626
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/partial_renderer.rb:237:in `render'
|
2627
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/renderer.rb:41:in `render_partial'
|
2628
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/renderer.rb:15:in `render'
|
2629
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/helpers/rendering_helper.rb:24:in `render'
|
2630
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/helpers/application_helper.rb:10:in `block in render_tb_helper_methode'
|
2631
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/helpers/capture_helper.rb:40:in `block in capture'
|
2632
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/helpers/capture_helper.rb:187:in `with_output_buffer'
|
2633
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/helpers/capture_helper.rb:40:in `capture'
|
2634
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/helpers/application_helper.rb:16:in `render_tb_helper_methode'
|
2635
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/views/application/index.html.erb:6:in `block in _app_views_application_index_html_erb__1773766814672156631_70354685763340'
|
2636
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/views/application/index.html.erb:4:in `each'
|
2637
|
+
/Users/micha/Projects/tb-helpers/test/dummy/app/views/application/index.html.erb:4:in `_app_views_application_index_html_erb__1773766814672156631_70354685763340'
|
2638
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/template.rb:145:in `block in render'
|
2639
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications.rb:125:in `instrument'
|
2640
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/template.rb:143:in `render'
|
2641
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
|
2642
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
2643
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications.rb:123:in `block in instrument'
|
2644
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
2645
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications.rb:123:in `instrument'
|
2646
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
2647
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
|
2648
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
|
2649
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/template_renderer.rb:45:in `render_template'
|
2650
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/template_renderer.rb:18:in `render'
|
2651
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/renderer.rb:36:in `render_template'
|
2652
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/renderer/renderer.rb:17:in `render'
|
2653
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/abstract_controller/rendering.rb:110:in `_render_template'
|
2654
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
2655
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
2656
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
2657
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
2658
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/abstract_controller/rendering.rb:88:in `render'
|
2659
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/rendering.rb:16:in `render'
|
2660
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
2661
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
2662
|
+
/Users/micha/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
|
2663
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
2664
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
2665
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
2666
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activerecord-3.2.13/lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
|
2667
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/instrumentation.rb:39:in `render'
|
2668
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
2669
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/implicit_render.rb:5:in `send_action'
|
2670
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/abstract_controller/base.rb:167:in `process_action'
|
2671
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/rendering.rb:10:in `process_action'
|
2672
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
2673
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:414:in `_run__1186425160434969799__process_action__3116578589448561697__callbacks'
|
2674
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:405:in `__run_callback'
|
2675
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
2676
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:81:in `run_callbacks'
|
2677
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/abstract_controller/callbacks.rb:17:in `process_action'
|
2678
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/rescue.rb:29:in `process_action'
|
2679
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
2680
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications.rb:123:in `block in instrument'
|
2681
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
2682
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/notifications.rb:123:in `instrument'
|
2683
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
2684
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
2685
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activerecord-3.2.13/lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
2686
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/abstract_controller/base.rb:121:in `process'
|
2687
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/abstract_controller/rendering.rb:45:in `process'
|
2688
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal.rb:203:in `dispatch'
|
2689
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
2690
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_controller/metal.rb:246:in `block in action'
|
2691
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/routing/route_set.rb:73:in `call'
|
2692
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
2693
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/routing/route_set.rb:36:in `call'
|
2694
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call'
|
2695
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/journey-1.0.4/lib/journey/router.rb:56:in `each'
|
2696
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/journey-1.0.4/lib/journey/router.rb:56:in `call'
|
2697
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/routing/route_set.rb:612:in `call'
|
2698
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
2699
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/rack-1.4.5/lib/rack/etag.rb:23:in `call'
|
2700
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/rack-1.4.5/lib/rack/conditionalget.rb:25:in `call'
|
2701
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/head.rb:14:in `call'
|
2702
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
2703
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/flash.rb:242:in `call'
|
2704
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/rack-1.4.5/lib/rack/session/abstract/id.rb:210:in `context'
|
2705
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/rack-1.4.5/lib/rack/session/abstract/id.rb:205:in `call'
|
2706
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
2707
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activerecord-3.2.13/lib/active_record/query_cache.rb:64:in `call'
|
2708
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activerecord-3.2.13/lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
2709
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
2710
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:405:in `_run__2204462665687291544__call__3239855298578259391__callbacks'
|
2711
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:405:in `__run_callback'
|
2712
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
2713
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/callbacks.rb:81:in `run_callbacks'
|
2714
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
2715
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
2716
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
2717
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
2718
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
2719
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/railties-3.2.13/lib/rails/rack/logger.rb:32:in `call_app'
|
2720
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/railties-3.2.13/lib/rails/rack/logger.rb:16:in `block in call'
|
2721
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/tagged_logging.rb:22:in `tagged'
|
2722
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/railties-3.2.13/lib/rails/rack/logger.rb:16:in `call'
|
2723
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
2724
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/rack-1.4.5/lib/rack/methodoverride.rb:21:in `call'
|
2725
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/rack-1.4.5/lib/rack/runtime.rb:17:in `call'
|
2726
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/activesupport-3.2.13/lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
2727
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/rack-1.4.5/lib/rack/lock.rb:15:in `call'
|
2728
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/static.rb:63:in `call'
|
2729
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/railties-3.2.13/lib/rails/engine.rb:479:in `call'
|
2730
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/railties-3.2.13/lib/rails/application.rb:223:in `call'
|
2731
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/rack-1.4.5/lib/rack/content_length.rb:14:in `call'
|
2732
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/railties-3.2.13/lib/rails/rack/log_tailer.rb:17:in `call'
|
2733
|
+
/Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/rack-1.4.5/lib/rack/handler/webrick.rb:59:in `service'
|
2734
|
+
/Users/micha/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
2735
|
+
/Users/micha/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
2736
|
+
/Users/micha/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
2737
|
+
Rendered application/_tb_form_for.html.erb (1.3ms)
|
2738
|
+
Rendered application/index.html.erb within layouts/application (4.3ms)
|
2739
|
+
Completed 500 Internal Server Error in 8ms
|
2740
|
+
|
2741
|
+
ActionView::Template::Error (/Users/micha/Projects/tb-helpers/test/dummy/app/views/application/_tb_form_for.html.erb:11: syntax error, unexpected keyword_ensure, expecting $end):
|
2742
|
+
8: <% end %>
|
2743
|
+
9: <% end %>
|
2744
|
+
10: <% end %>
|
2745
|
+
app/helpers/application_helper.rb:10:in `block in render_tb_helper_methode'
|
2746
|
+
app/helpers/application_helper.rb:16:in `render_tb_helper_methode'
|
2747
|
+
app/views/application/index.html.erb:6:in `block in _app_views_application_index_html_erb__1773766814672156631_70354685763340'
|
2748
|
+
app/views/application/index.html.erb:4:in `each'
|
2749
|
+
app/views/application/index.html.erb:4:in `_app_views_application_index_html_erb__1773766814672156631_70354685763340'
|
2750
|
+
|
2751
|
+
|
2752
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (6.4ms)
|
2753
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.1ms)
|
2754
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (21.8ms)
|
2755
|
+
|
2756
|
+
|
2757
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 23:43:17 +0200
|
2758
|
+
Processing by ApplicationController#index as HTML
|
2759
|
+
Rendered application/_tb_table.html.erb (0.2ms)
|
2760
|
+
Rendered application/_tb_form_for.html.erb (9.3ms)
|
2761
|
+
Rendered application/index.html.erb within layouts/application (11.7ms)
|
2762
|
+
Completed 500 Internal Server Error in 14ms
|
2763
|
+
|
2764
|
+
ActionView::Template::Error (undefined method `input_tag' for #<#<Class:0x007ff9741afb10>:0x007ff972ef77c0>):
|
2765
|
+
3: <%= tb_control_group do %>
|
2766
|
+
4: <%= tb_control_label 'Using tb_control_label() here' %>
|
2767
|
+
5: <%= tb_controls do %>
|
2768
|
+
6: <%= input_tag 'tb_input', value: 'tb_input' %>
|
2769
|
+
7: <% end %>
|
2770
|
+
8: <% end %>
|
2771
|
+
9: <% end %>
|
2772
|
+
app/views/application/_tb_form_for.html.erb:6:in `block (4 levels) in _app_views_application__tb_form_for_html_erb__4490725045175393391_70354675809800'
|
2773
|
+
app/views/application/_tb_form_for.html.erb:5:in `block (3 levels) in _app_views_application__tb_form_for_html_erb__4490725045175393391_70354675809800'
|
2774
|
+
app/views/application/_tb_form_for.html.erb:3:in `block (2 levels) in _app_views_application__tb_form_for_html_erb__4490725045175393391_70354675809800'
|
2775
|
+
app/views/application/_tb_form_for.html.erb:2:in `block in _app_views_application__tb_form_for_html_erb__4490725045175393391_70354675809800'
|
2776
|
+
app/views/application/_tb_form_for.html.erb:1:in `_app_views_application__tb_form_for_html_erb__4490725045175393391_70354675809800'
|
2777
|
+
app/helpers/application_helper.rb:10:in `block in render_tb_helper_methode'
|
2778
|
+
app/helpers/application_helper.rb:16:in `render_tb_helper_methode'
|
2779
|
+
app/views/application/index.html.erb:6:in `block in _app_views_application_index_html_erb__1773766814672156631_70354685763340'
|
2780
|
+
app/views/application/index.html.erb:4:in `each'
|
2781
|
+
app/views/application/index.html.erb:4:in `_app_views_application_index_html_erb__1773766814672156631_70354685763340'
|
2782
|
+
|
2783
|
+
|
2784
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.0ms)
|
2785
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.6ms)
|
2786
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.0ms)
|
2787
|
+
|
2788
|
+
|
2789
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 23:44:13 +0200
|
2790
|
+
Processing by ApplicationController#index as HTML
|
2791
|
+
Rendered application/_tb_table.html.erb (0.2ms)
|
2792
|
+
Rendered application/_tb_form_for.html.erb (1.7ms)
|
2793
|
+
Rendered application/_tb_button_group.html.erb (0.2ms)
|
2794
|
+
Rendered application/_tb_icon.html.erb (0.3ms)
|
2795
|
+
Rendered application/index.html.erb within layouts/application (6.7ms)
|
2796
|
+
Completed 200 OK in 12ms (Views: 11.3ms | ActiveRecord: 0.0ms)
|
2797
|
+
|
2798
|
+
|
2799
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-05 23:44:13 +0200
|
2800
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
2801
|
+
|
2802
|
+
|
2803
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-05 23:44:13 +0200
|
2804
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
2805
|
+
|
2806
|
+
|
2807
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 23:44:13 +0200
|
2808
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
2809
|
+
|
2810
|
+
|
2811
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 23:44:13 +0200
|
2812
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
2813
|
+
|
2814
|
+
|
2815
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 23:46:24 +0200
|
2816
|
+
Processing by ApplicationController#index as HTML
|
2817
|
+
Rendered application/_tb_table.html.erb (0.3ms)
|
2818
|
+
Rendered application/_tb_form_for.html.erb (28.9ms)
|
2819
|
+
Rendered application/index.html.erb within layouts/application (31.6ms)
|
2820
|
+
Completed 500 Internal Server Error in 35ms
|
2821
|
+
|
2822
|
+
ActionView::Template::Error (undefined method `checkbox_tag' for #<#<Class:0x007ff9741afb10>:0x007ff9740b6830>):
|
2823
|
+
12: <%= tb_control_label 'Using tb_control_label() here' %>
|
2824
|
+
13: <%= tb_controls do %>
|
2825
|
+
14: <%= tb_checkbox_label do %>
|
2826
|
+
15: <%= checkbox_tag 'tb_input', nil, placeholder: 'tb_input' %>
|
2827
|
+
16: <% end %>
|
2828
|
+
17: <% end %>
|
2829
|
+
18: <% end %>
|
2830
|
+
app/views/application/_tb_form_for.html.erb:15:in `block (5 levels) in _app_views_application__tb_form_for_html_erb__4490725045175393391_70354685217760'
|
2831
|
+
app/views/application/_tb_form_for.html.erb:14:in `block (4 levels) in _app_views_application__tb_form_for_html_erb__4490725045175393391_70354685217760'
|
2832
|
+
app/views/application/_tb_form_for.html.erb:13:in `block (3 levels) in _app_views_application__tb_form_for_html_erb__4490725045175393391_70354685217760'
|
2833
|
+
app/views/application/_tb_form_for.html.erb:11:in `block (2 levels) in _app_views_application__tb_form_for_html_erb__4490725045175393391_70354685217760'
|
2834
|
+
app/views/application/_tb_form_for.html.erb:2:in `block in _app_views_application__tb_form_for_html_erb__4490725045175393391_70354685217760'
|
2835
|
+
app/views/application/_tb_form_for.html.erb:1:in `_app_views_application__tb_form_for_html_erb__4490725045175393391_70354685217760'
|
2836
|
+
app/helpers/application_helper.rb:10:in `block in render_tb_helper_methode'
|
2837
|
+
app/helpers/application_helper.rb:16:in `render_tb_helper_methode'
|
2838
|
+
app/views/application/index.html.erb:6:in `block in _app_views_application_index_html_erb__1773766814672156631_70354685763340'
|
2839
|
+
app/views/application/index.html.erb:4:in `each'
|
2840
|
+
app/views/application/index.html.erb:4:in `_app_views_application_index_html_erb__1773766814672156631_70354685763340'
|
2841
|
+
|
2842
|
+
|
2843
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.5ms)
|
2844
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.6ms)
|
2845
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (22.7ms)
|
2846
|
+
|
2847
|
+
|
2848
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 23:46:28 +0200
|
2849
|
+
Processing by ApplicationController#index as HTML
|
2850
|
+
Rendered application/_tb_table.html.erb (0.2ms)
|
2851
|
+
Rendered application/_tb_form_for.html.erb (2.6ms)
|
2852
|
+
Rendered application/_tb_button_group.html.erb (0.2ms)
|
2853
|
+
Rendered application/_tb_icon.html.erb (0.2ms)
|
2854
|
+
Rendered application/index.html.erb within layouts/application (7.3ms)
|
2855
|
+
Completed 200 OK in 29ms (Views: 28.9ms | ActiveRecord: 0.0ms)
|
2856
|
+
|
2857
|
+
|
2858
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-05 23:46:28 +0200
|
2859
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
2860
|
+
|
2861
|
+
|
2862
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 23:46:28 +0200
|
2863
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
2864
|
+
|
2865
|
+
|
2866
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 23:46:28 +0200
|
2867
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
2868
|
+
|
2869
|
+
|
2870
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-05 23:46:28 +0200
|
2871
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
2872
|
+
|
2873
|
+
|
2874
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 23:46:45 +0200
|
2875
|
+
Processing by ApplicationController#index as HTML
|
2876
|
+
Rendered application/_tb_table.html.erb (0.2ms)
|
2877
|
+
Rendered application/_tb_form_for.html.erb (4.5ms)
|
2878
|
+
Rendered application/_tb_button_group.html.erb (0.2ms)
|
2879
|
+
Rendered application/_tb_icon.html.erb (0.2ms)
|
2880
|
+
Rendered application/index.html.erb within layouts/application (10.5ms)
|
2881
|
+
Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.0ms)
|
2882
|
+
|
2883
|
+
|
2884
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 23:46:45 +0200
|
2885
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
2886
|
+
|
2887
|
+
|
2888
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-05 23:46:45 +0200
|
2889
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
2890
|
+
|
2891
|
+
|
2892
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 23:46:45 +0200
|
2893
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
2894
|
+
|
2895
|
+
|
2896
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-05 23:46:45 +0200
|
2897
|
+
Served asset /application.css - 304 Not Modified (1ms)
|
2898
|
+
|
2899
|
+
|
2900
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 23:49:00 +0200
|
2901
|
+
Processing by ApplicationController#index as HTML
|
2902
|
+
Rendered application/_tb_table.html.erb (0.2ms)
|
2903
|
+
Rendered application/_tb_form_for.html.erb (2.8ms)
|
2904
|
+
Rendered application/_tb_button_group.html.erb (0.2ms)
|
2905
|
+
Rendered application/_tb_icon.html.erb (0.3ms)
|
2906
|
+
Rendered application/index.html.erb within layouts/application (8.3ms)
|
2907
|
+
Completed 200 OK in 14ms (Views: 13.3ms | ActiveRecord: 0.0ms)
|
2908
|
+
|
2909
|
+
|
2910
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 23:49:00 +0200
|
2911
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
2912
|
+
|
2913
|
+
|
2914
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-05 23:49:00 +0200
|
2915
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
2916
|
+
|
2917
|
+
|
2918
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 23:49:00 +0200
|
2919
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
2920
|
+
|
2921
|
+
|
2922
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-05 23:49:00 +0200
|
2923
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
2924
|
+
|
2925
|
+
|
2926
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 23:50:22 +0200
|
2927
|
+
Processing by ApplicationController#index as HTML
|
2928
|
+
Rendered application/_tb_table.html.erb (0.3ms)
|
2929
|
+
Rendered application/_tb_form_for.html.erb (2.6ms)
|
2930
|
+
Rendered application/_tb_button_group.html.erb (0.3ms)
|
2931
|
+
Rendered application/_tb_icon.html.erb (0.5ms)
|
2932
|
+
Rendered application/index.html.erb within layouts/application (8.7ms)
|
2933
|
+
Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.0ms)
|
2934
|
+
|
2935
|
+
|
2936
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 23:50:22 +0200
|
2937
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
2938
|
+
|
2939
|
+
|
2940
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-05 23:50:22 +0200
|
2941
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
2942
|
+
|
2943
|
+
|
2944
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-05 23:50:22 +0200
|
2945
|
+
Served asset /application.css - 304 Not Modified (14ms)
|
2946
|
+
|
2947
|
+
|
2948
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 23:50:22 +0200
|
2949
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
2950
|
+
|
2951
|
+
|
2952
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 23:54:14 +0200
|
2953
|
+
Processing by ApplicationController#index as HTML
|
2954
|
+
Rendered application/_tb_table.html.erb (0.2ms)
|
2955
|
+
Rendered application/_tb_form_for.html.erb (36.4ms)
|
2956
|
+
Rendered application/index.html.erb within layouts/application (73.8ms)
|
2957
|
+
Completed 500 Internal Server Error in 79ms
|
2958
|
+
|
2959
|
+
ActionView::Template::Error (undefined method `input_addon' for #<#<Class:0x007ff9741afb10>:0x007ff97298e2e8>):
|
2960
|
+
26: <%= tb_control_group do %>
|
2961
|
+
27: <%= tb_control_label 'Using tb_control_label() here' %>
|
2962
|
+
28: <%= tb_controls do %>
|
2963
|
+
29: <%= tb_input_addon_prepend(addon: ['foo', nil]) do %>
|
2964
|
+
30: <%= text_field_tag 'tb_input', nil, placeholder: 'tb_input' %>
|
2965
|
+
31: <% end %>
|
2966
|
+
32:
|
2967
|
+
app/views/application/_tb_form_for.html.erb:29:in `block (4 levels) in _app_views_application__tb_form_for_html_erb__4490725045175393391_70354685792520'
|
2968
|
+
app/views/application/_tb_form_for.html.erb:28:in `block (3 levels) in _app_views_application__tb_form_for_html_erb__4490725045175393391_70354685792520'
|
2969
|
+
app/views/application/_tb_form_for.html.erb:26:in `block (2 levels) in _app_views_application__tb_form_for_html_erb__4490725045175393391_70354685792520'
|
2970
|
+
app/views/application/_tb_form_for.html.erb:2:in `block in _app_views_application__tb_form_for_html_erb__4490725045175393391_70354685792520'
|
2971
|
+
app/views/application/_tb_form_for.html.erb:1:in `_app_views_application__tb_form_for_html_erb__4490725045175393391_70354685792520'
|
2972
|
+
app/helpers/application_helper.rb:10:in `block in render_tb_helper_methode'
|
2973
|
+
app/helpers/application_helper.rb:16:in `render_tb_helper_methode'
|
2974
|
+
app/views/application/index.html.erb:6:in `block in _app_views_application_index_html_erb__1773766814672156631_70354685763340'
|
2975
|
+
app/views/application/index.html.erb:4:in `each'
|
2976
|
+
app/views/application/index.html.erb:4:in `_app_views_application_index_html_erb__1773766814672156631_70354685763340'
|
2977
|
+
|
2978
|
+
|
2979
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.9ms)
|
2980
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
|
2981
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (10.4ms)
|
2982
|
+
|
2983
|
+
|
2984
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 23:55:12 +0200
|
2985
|
+
Processing by ApplicationController#index as HTML
|
2986
|
+
Rendered application/_tb_table.html.erb (0.3ms)
|
2987
|
+
Rendered application/_tb_form_for.html.erb (15.8ms)
|
2988
|
+
Rendered application/index.html.erb within layouts/application (18.8ms)
|
2989
|
+
Completed 500 Internal Server Error in 24ms
|
2990
|
+
|
2991
|
+
ActionView::Template::Error (undefined method `input_addon' for #<#<Class:0x007ff9741afb10>:0x007ff9740de4c0>):
|
2992
|
+
26: <%= tb_control_group do %>
|
2993
|
+
27: <%= tb_control_label 'Using tb_control_label() here' %>
|
2994
|
+
28: <%= tb_controls do %>
|
2995
|
+
29: <%= tb_input_addon_prepend(addon: ['foo', nil]) do %>
|
2996
|
+
30: <%= text_field_tag 'tb_input', nil, placeholder: 'tb_input' %>
|
2997
|
+
31: <% end %>
|
2998
|
+
32:
|
2999
|
+
app/views/application/_tb_form_for.html.erb:29:in `block (4 levels) in _app_views_application__tb_form_for_html_erb__4490725045175393391_70354685300460'
|
3000
|
+
app/views/application/_tb_form_for.html.erb:28:in `block (3 levels) in _app_views_application__tb_form_for_html_erb__4490725045175393391_70354685300460'
|
3001
|
+
app/views/application/_tb_form_for.html.erb:26:in `block (2 levels) in _app_views_application__tb_form_for_html_erb__4490725045175393391_70354685300460'
|
3002
|
+
app/views/application/_tb_form_for.html.erb:2:in `block in _app_views_application__tb_form_for_html_erb__4490725045175393391_70354685300460'
|
3003
|
+
app/views/application/_tb_form_for.html.erb:1:in `_app_views_application__tb_form_for_html_erb__4490725045175393391_70354685300460'
|
3004
|
+
app/helpers/application_helper.rb:10:in `block in render_tb_helper_methode'
|
3005
|
+
app/helpers/application_helper.rb:16:in `render_tb_helper_methode'
|
3006
|
+
app/views/application/index.html.erb:6:in `block in _app_views_application_index_html_erb__1773766814672156631_70354685763340'
|
3007
|
+
app/views/application/index.html.erb:4:in `each'
|
3008
|
+
app/views/application/index.html.erb:4:in `_app_views_application_index_html_erb__1773766814672156631_70354685763340'
|
3009
|
+
|
3010
|
+
|
3011
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.5ms)
|
3012
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
|
3013
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.0ms)
|
3014
|
+
Connecting to database specified by database.yml
|
3015
|
+
|
3016
|
+
|
3017
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 23:55:23 +0200
|
3018
|
+
Processing by ApplicationController#index as HTML
|
3019
|
+
Rendered application/_tb_table.html.erb (0.7ms)
|
3020
|
+
Rendered application/_tb_form_for.html.erb (3.4ms)
|
3021
|
+
Rendered application/_tb_button_group.html.erb (0.6ms)
|
3022
|
+
Rendered application/_tb_icon.html.erb (0.7ms)
|
3023
|
+
Rendered application/index.html.erb within layouts/application (13.4ms)
|
3024
|
+
Completed 200 OK in 36ms (Views: 35.0ms | ActiveRecord: 0.0ms)
|
3025
|
+
|
3026
|
+
|
3027
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 23:55:23 +0200
|
3028
|
+
Served asset /jquery.js - 304 Not Modified (4ms)
|
3029
|
+
|
3030
|
+
|
3031
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 23:55:23 +0200
|
3032
|
+
Served asset /jquery_ujs.js - 304 Not Modified (5ms)
|
3033
|
+
|
3034
|
+
|
3035
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-05 23:55:23 +0200
|
3036
|
+
Served asset /application.js - 304 Not Modified (55ms)
|
3037
|
+
|
3038
|
+
|
3039
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-05 23:55:23 +0200
|
3040
|
+
Served asset /application.css - 304 Not Modified (2ms)
|
3041
|
+
|
3042
|
+
|
3043
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 23:56:26 +0200
|
3044
|
+
Processing by ApplicationController#index as HTML
|
3045
|
+
Rendered application/_tb_table.html.erb (0.2ms)
|
3046
|
+
Rendered application/_tb_form_for.html.erb (3.7ms)
|
3047
|
+
Rendered application/_tb_button_group.html.erb (0.2ms)
|
3048
|
+
Rendered application/_tb_icon.html.erb (0.2ms)
|
3049
|
+
Rendered application/index.html.erb within layouts/application (8.3ms)
|
3050
|
+
Completed 200 OK in 13ms (Views: 12.7ms | ActiveRecord: 0.0ms)
|
3051
|
+
|
3052
|
+
|
3053
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-05 23:56:26 +0200
|
3054
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
3055
|
+
|
3056
|
+
|
3057
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 23:56:26 +0200
|
3058
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
3059
|
+
|
3060
|
+
|
3061
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-05 23:56:26 +0200
|
3062
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
3063
|
+
|
3064
|
+
|
3065
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 23:56:26 +0200
|
3066
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
3067
|
+
|
3068
|
+
|
3069
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 23:57:08 +0200
|
3070
|
+
Processing by ApplicationController#index as HTML
|
3071
|
+
Rendered application/_tb_table.html.erb (0.2ms)
|
3072
|
+
Rendered application/_tb_form_for.html.erb (4.2ms)
|
3073
|
+
Rendered application/_tb_button_group.html.erb (0.2ms)
|
3074
|
+
Rendered application/_tb_icon.html.erb (0.2ms)
|
3075
|
+
Rendered application/index.html.erb within layouts/application (8.5ms)
|
3076
|
+
Completed 200 OK in 25ms (Views: 13.3ms | ActiveRecord: 0.0ms)
|
3077
|
+
|
3078
|
+
|
3079
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-05 23:57:08 +0200
|
3080
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
3081
|
+
|
3082
|
+
|
3083
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-05 23:57:08 +0200
|
3084
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
3085
|
+
|
3086
|
+
|
3087
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 23:57:08 +0200
|
3088
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
3089
|
+
|
3090
|
+
|
3091
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 23:57:08 +0200
|
3092
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
3093
|
+
|
3094
|
+
|
3095
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 23:57:33 +0200
|
3096
|
+
Processing by ApplicationController#index as HTML
|
3097
|
+
Rendered application/_tb_table.html.erb (0.2ms)
|
3098
|
+
Rendered application/_tb_form_for.html.erb (4.5ms)
|
3099
|
+
Rendered application/_tb_button_group.html.erb (0.2ms)
|
3100
|
+
Rendered application/_tb_icon.html.erb (0.2ms)
|
3101
|
+
Rendered application/index.html.erb within layouts/application (9.0ms)
|
3102
|
+
Completed 200 OK in 14ms (Views: 13.4ms | ActiveRecord: 0.0ms)
|
3103
|
+
|
3104
|
+
|
3105
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 23:57:33 +0200
|
3106
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
3107
|
+
|
3108
|
+
|
3109
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 23:57:33 +0200
|
3110
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
3111
|
+
|
3112
|
+
|
3113
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-05 23:57:33 +0200
|
3114
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
3115
|
+
|
3116
|
+
|
3117
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-05 23:57:33 +0200
|
3118
|
+
Served asset /application.css - 304 Not Modified (70ms)
|
3119
|
+
|
3120
|
+
|
3121
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 23:58:04 +0200
|
3122
|
+
Processing by ApplicationController#index as HTML
|
3123
|
+
Rendered application/_tb_table.html.erb (0.2ms)
|
3124
|
+
Rendered application/_tb_form_for.html.erb (2.2ms)
|
3125
|
+
Rendered application/_tb_button_group.html.erb (0.2ms)
|
3126
|
+
Rendered application/_tb_icon.html.erb (0.2ms)
|
3127
|
+
Rendered application/index.html.erb within layouts/application (6.4ms)
|
3128
|
+
Completed 200 OK in 11ms (Views: 11.0ms | ActiveRecord: 0.0ms)
|
3129
|
+
|
3130
|
+
|
3131
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 23:58:05 +0200
|
3132
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
3133
|
+
|
3134
|
+
|
3135
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 23:58:05 +0200
|
3136
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
3137
|
+
|
3138
|
+
|
3139
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-05 23:58:05 +0200
|
3140
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
3141
|
+
|
3142
|
+
|
3143
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-05 23:58:05 +0200
|
3144
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
3145
|
+
|
3146
|
+
|
3147
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 23:58:45 +0200
|
3148
|
+
Processing by ApplicationController#index as HTML
|
3149
|
+
Rendered application/_tb_table.html.erb (0.2ms)
|
3150
|
+
Rendered application/_tb_form_for.html.erb (4.4ms)
|
3151
|
+
Rendered application/_tb_button_group.html.erb (0.2ms)
|
3152
|
+
Rendered application/_tb_icon.html.erb (0.2ms)
|
3153
|
+
Rendered application/index.html.erb within layouts/application (9.1ms)
|
3154
|
+
Completed 200 OK in 14ms (Views: 13.9ms | ActiveRecord: 0.0ms)
|
3155
|
+
|
3156
|
+
|
3157
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-05 23:58:46 +0200
|
3158
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
3159
|
+
|
3160
|
+
|
3161
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 23:58:46 +0200
|
3162
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
3163
|
+
|
3164
|
+
|
3165
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 23:58:46 +0200
|
3166
|
+
Served asset /jquery_ujs.js - 304 Not Modified (1ms)
|
3167
|
+
|
3168
|
+
|
3169
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-05 23:58:46 +0200
|
3170
|
+
Served asset /application.js - 304 Not Modified (1ms)
|
3171
|
+
|
3172
|
+
|
3173
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 23:59:08 +0200
|
3174
|
+
Processing by ApplicationController#index as HTML
|
3175
|
+
Rendered application/_tb_table.html.erb (0.2ms)
|
3176
|
+
Rendered application/_tb_form_for.html.erb (5.0ms)
|
3177
|
+
Rendered application/_tb_button_group.html.erb (0.2ms)
|
3178
|
+
Rendered application/_tb_icon.html.erb (0.2ms)
|
3179
|
+
Rendered application/index.html.erb within layouts/application (10.3ms)
|
3180
|
+
Completed 200 OK in 21ms (Views: 19.8ms | ActiveRecord: 0.0ms)
|
3181
|
+
|
3182
|
+
|
3183
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 23:59:08 +0200
|
3184
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
3185
|
+
|
3186
|
+
|
3187
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-05 23:59:08 +0200
|
3188
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
3189
|
+
|
3190
|
+
|
3191
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 23:59:08 +0200
|
3192
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
3193
|
+
|
3194
|
+
|
3195
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-05 23:59:08 +0200
|
3196
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
3197
|
+
|
3198
|
+
|
3199
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 23:59:17 +0200
|
3200
|
+
Processing by ApplicationController#index as HTML
|
3201
|
+
Rendered application/_tb_table.html.erb (0.2ms)
|
3202
|
+
Rendered application/_tb_form_for.html.erb (4.9ms)
|
3203
|
+
Rendered application/_tb_button_group.html.erb (0.2ms)
|
3204
|
+
Rendered application/_tb_icon.html.erb (0.2ms)
|
3205
|
+
Rendered application/index.html.erb within layouts/application (59.7ms)
|
3206
|
+
Completed 200 OK in 85ms (Views: 83.7ms | ActiveRecord: 0.0ms)
|
3207
|
+
|
3208
|
+
|
3209
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-05 23:59:17 +0200
|
3210
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
3211
|
+
|
3212
|
+
|
3213
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-05 23:59:17 +0200
|
3214
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
3215
|
+
|
3216
|
+
|
3217
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 23:59:17 +0200
|
3218
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
3219
|
+
|
3220
|
+
|
3221
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 23:59:17 +0200
|
3222
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
3223
|
+
|
3224
|
+
|
3225
|
+
Started GET "/" for 127.0.0.1 at 2013-04-06 00:00:10 +0200
|
3226
|
+
Processing by ApplicationController#index as HTML
|
3227
|
+
Rendered application/_tb_table.html.erb (0.2ms)
|
3228
|
+
Rendered application/_tb_form_for.html.erb (4.4ms)
|
3229
|
+
Rendered application/_tb_button_group.html.erb (0.2ms)
|
3230
|
+
Rendered application/_tb_icon.html.erb (0.2ms)
|
3231
|
+
Rendered application/index.html.erb within layouts/application (9.1ms)
|
3232
|
+
Completed 200 OK in 14ms (Views: 13.8ms | ActiveRecord: 0.0ms)
|
3233
|
+
|
3234
|
+
|
3235
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-06 00:00:10 +0200
|
3236
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
3237
|
+
|
3238
|
+
|
3239
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-06 00:00:10 +0200
|
3240
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
3241
|
+
|
3242
|
+
|
3243
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-06 00:00:10 +0200
|
3244
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
3245
|
+
|
3246
|
+
|
3247
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-06 00:00:10 +0200
|
3248
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
3249
|
+
|
3250
|
+
|
3251
|
+
Started GET "/" for 127.0.0.1 at 2013-04-06 00:01:52 +0200
|
3252
|
+
Processing by ApplicationController#index as HTML
|
3253
|
+
Rendered application/_tb_table.html.erb (0.2ms)
|
3254
|
+
Rendered application/_tb_form_for.html.erb (5.6ms)
|
3255
|
+
Rendered application/_tb_button_group.html.erb (0.2ms)
|
3256
|
+
Rendered application/_tb_icon.html.erb (0.2ms)
|
3257
|
+
Rendered application/index.html.erb within layouts/application (10.4ms)
|
3258
|
+
Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.0ms)
|
3259
|
+
|
3260
|
+
|
3261
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-06 00:01:52 +0200
|
3262
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
3263
|
+
|
3264
|
+
|
3265
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-06 00:01:52 +0200
|
3266
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
3267
|
+
|
3268
|
+
|
3269
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-06 00:01:52 +0200
|
3270
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
3271
|
+
|
3272
|
+
|
3273
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-06 00:01:52 +0200
|
3274
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
3275
|
+
|
3276
|
+
|
3277
|
+
Started GET "/" for 127.0.0.1 at 2013-04-06 00:02:05 +0200
|
3278
|
+
Processing by ApplicationController#index as HTML
|
3279
|
+
Rendered application/_tb_table.html.erb (0.2ms)
|
3280
|
+
Rendered application/_tb_form_for.html.erb (5.2ms)
|
3281
|
+
Rendered application/_tb_button_group.html.erb (0.3ms)
|
3282
|
+
Rendered application/_tb_icon.html.erb (0.2ms)
|
3283
|
+
Rendered application/index.html.erb within layouts/application (10.7ms)
|
3284
|
+
Completed 200 OK in 35ms (Views: 33.2ms | ActiveRecord: 0.0ms)
|
3285
|
+
|
3286
|
+
|
3287
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-06 00:02:05 +0200
|
3288
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
3289
|
+
|
3290
|
+
|
3291
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-06 00:02:05 +0200
|
3292
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
3293
|
+
|
3294
|
+
|
3295
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-06 00:02:06 +0200
|
3296
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
3297
|
+
|
3298
|
+
|
3299
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-06 00:02:06 +0200
|
3300
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
3301
|
+
|
3302
|
+
|
3303
|
+
Started GET "/" for 127.0.0.1 at 2013-04-06 00:02:55 +0200
|
3304
|
+
Processing by ApplicationController#index as HTML
|
3305
|
+
Rendered application/_tb_table.html.erb (0.2ms)
|
3306
|
+
Rendered application/_tb_form_for.html.erb (14.7ms)
|
3307
|
+
Rendered application/index.html.erb within layouts/application (17.1ms)
|
3308
|
+
Completed 500 Internal Server Error in 20ms
|
3309
|
+
|
3310
|
+
ActionView::Template::Error (undefined method `input_help' for #<#<Class:0x007f9600c5c450>:0x007f9600d9e0e8>):
|
3311
|
+
54: <%= tb_control_label 'Using tb_input_uneditable() here' %>
|
3312
|
+
55: <%= tb_controls do %>
|
3313
|
+
56: <%= tb_input_uneditable 'tb_input' %>
|
3314
|
+
57: <%= tb_input_help_inline 'Using tb_input_help_inline() here' %>
|
3315
|
+
58: <% end %>
|
3316
|
+
59: <% end %>
|
3317
|
+
60: <% end %>
|
3318
|
+
app/views/application/_tb_form_for.html.erb:57:in `block (4 levels) in _app_views_application__tb_form_for_html_erb___2069708201915933569_70141118025200'
|
3319
|
+
app/views/application/_tb_form_for.html.erb:55:in `block (3 levels) in _app_views_application__tb_form_for_html_erb___2069708201915933569_70141118025200'
|
3320
|
+
app/views/application/_tb_form_for.html.erb:53:in `block (2 levels) in _app_views_application__tb_form_for_html_erb___2069708201915933569_70141118025200'
|
3321
|
+
app/views/application/_tb_form_for.html.erb:2:in `block in _app_views_application__tb_form_for_html_erb___2069708201915933569_70141118025200'
|
3322
|
+
app/views/application/_tb_form_for.html.erb:1:in `_app_views_application__tb_form_for_html_erb___2069708201915933569_70141118025200'
|
3323
|
+
app/helpers/application_helper.rb:10:in `block in render_tb_helper_methode'
|
3324
|
+
app/helpers/application_helper.rb:16:in `render_tb_helper_methode'
|
3325
|
+
app/views/application/index.html.erb:6:in `block in _app_views_application_index_html_erb__4143568232581483033_70141117451700'
|
3326
|
+
app/views/application/index.html.erb:4:in `each'
|
3327
|
+
app/views/application/index.html.erb:4:in `_app_views_application_index_html_erb__4143568232581483033_70141117451700'
|
3328
|
+
|
3329
|
+
|
3330
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.0ms)
|
3331
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
|
3332
|
+
Rendered /Users/micha/.rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (10.4ms)
|
3333
|
+
Connecting to database specified by database.yml
|
3334
|
+
|
3335
|
+
|
3336
|
+
Started GET "/" for 127.0.0.1 at 2013-04-06 00:03:23 +0200
|
3337
|
+
Processing by ApplicationController#index as HTML
|
3338
|
+
Rendered application/_tb_table.html.erb (1.0ms)
|
3339
|
+
Rendered application/_tb_form_for.html.erb (5.0ms)
|
3340
|
+
Rendered application/_tb_button_group.html.erb (0.6ms)
|
3341
|
+
Rendered application/_tb_icon.html.erb (0.6ms)
|
3342
|
+
Rendered application/index.html.erb within layouts/application (15.7ms)
|
3343
|
+
Completed 200 OK in 38ms (Views: 37.1ms | ActiveRecord: 0.0ms)
|
3344
|
+
|
3345
|
+
|
3346
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-06 00:03:23 +0200
|
3347
|
+
Served asset /application.css - 304 Not Modified (2ms)
|
3348
|
+
|
3349
|
+
|
3350
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-06 00:03:23 +0200
|
3351
|
+
Served asset /jquery.js - 304 Not Modified (5ms)
|
3352
|
+
|
3353
|
+
|
3354
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-06 00:03:23 +0200
|
3355
|
+
Served asset /jquery_ujs.js - 304 Not Modified (2ms)
|
3356
|
+
|
3357
|
+
|
3358
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-06 00:03:23 +0200
|
3359
|
+
Served asset /application.js - 304 Not Modified (125ms)
|
3360
|
+
|
3361
|
+
|
3362
|
+
Started GET "/" for 127.0.0.1 at 2013-04-06 00:04:17 +0200
|
3363
|
+
Processing by ApplicationController#index as HTML
|
3364
|
+
Rendered application/_tb_table.html.erb (0.2ms)
|
3365
|
+
Rendered application/_tb_form_for.html.erb (4.6ms)
|
3366
|
+
Rendered application/_tb_button_group.html.erb (0.2ms)
|
3367
|
+
Rendered application/_tb_icon.html.erb (0.2ms)
|
3368
|
+
Rendered application/index.html.erb within layouts/application (8.9ms)
|
3369
|
+
Completed 200 OK in 14ms (Views: 13.1ms | ActiveRecord: 0.0ms)
|
3370
|
+
|
3371
|
+
|
3372
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-06 00:04:17 +0200
|
3373
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
3374
|
+
|
3375
|
+
|
3376
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-06 00:04:17 +0200
|
3377
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
3378
|
+
|
3379
|
+
|
3380
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-06 00:04:17 +0200
|
3381
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
3382
|
+
|
3383
|
+
|
3384
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-06 00:04:17 +0200
|
3385
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
3386
|
+
|
3387
|
+
|
3388
|
+
Started GET "/" for 127.0.0.1 at 2013-04-06 00:04:28 +0200
|
3389
|
+
Processing by ApplicationController#index as HTML
|
3390
|
+
Rendered application/_tb_table.html.erb (0.2ms)
|
3391
|
+
Rendered application/_tb_form_for.html.erb (4.4ms)
|
3392
|
+
Rendered application/_tb_button_group.html.erb (0.2ms)
|
3393
|
+
Rendered application/_tb_icon.html.erb (0.2ms)
|
3394
|
+
Rendered application/index.html.erb within layouts/application (8.7ms)
|
3395
|
+
Completed 200 OK in 13ms (Views: 13.0ms | ActiveRecord: 0.0ms)
|
3396
|
+
|
3397
|
+
|
3398
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-06 00:04:28 +0200
|
3399
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
3400
|
+
|
3401
|
+
|
3402
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-06 00:04:28 +0200
|
3403
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
3404
|
+
|
3405
|
+
|
3406
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-06 00:04:28 +0200
|
3407
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
3408
|
+
|
3409
|
+
|
3410
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-06 00:04:28 +0200
|
3411
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
3412
|
+
Connecting to database specified by database.yml
|
3413
|
+
|
3414
|
+
|
3415
|
+
Started GET "/" for 127.0.0.1 at 2013-04-06 00:05:23 +0200
|
3416
|
+
Processing by ApplicationController#index as HTML
|
3417
|
+
Rendered application/_tb_table.html.erb (0.7ms)
|
3418
|
+
Rendered application/_tb_form_for.html.erb (4.7ms)
|
3419
|
+
Rendered application/_tb_button_group.html.erb (0.6ms)
|
3420
|
+
Rendered application/_tb_icon.html.erb (0.7ms)
|
3421
|
+
Rendered application/index.html.erb within layouts/application (14.0ms)
|
3422
|
+
Completed 200 OK in 41ms (Views: 40.3ms | ActiveRecord: 0.0ms)
|
3423
|
+
|
3424
|
+
|
3425
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-06 00:05:23 +0200
|
3426
|
+
Served asset /jquery.js - 304 Not Modified (93ms)
|
3427
|
+
|
3428
|
+
|
3429
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-06 00:05:23 +0200
|
3430
|
+
Served asset /jquery_ujs.js - 304 Not Modified (2ms)
|
3431
|
+
|
3432
|
+
|
3433
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-06 00:05:23 +0200
|
3434
|
+
Served asset /application.js - 304 Not Modified (5ms)
|
3435
|
+
|
3436
|
+
|
3437
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-06 00:05:23 +0200
|
3438
|
+
Served asset /application.css - 304 Not Modified (2ms)
|
3439
|
+
|
3440
|
+
|
3441
|
+
Started GET "/" for 127.0.0.1 at 2013-04-06 00:06:02 +0200
|
3442
|
+
Processing by ApplicationController#index as HTML
|
3443
|
+
Rendered application/_tb_table.html.erb (0.2ms)
|
3444
|
+
Rendered application/_tb_form_for.html.erb (5.1ms)
|
3445
|
+
Rendered application/_tb_button_group.html.erb (0.2ms)
|
3446
|
+
Rendered application/_tb_icon.html.erb (0.2ms)
|
3447
|
+
Rendered application/index.html.erb within layouts/application (10.1ms)
|
3448
|
+
Completed 200 OK in 15ms (Views: 14.8ms | ActiveRecord: 0.0ms)
|
3449
|
+
|
3450
|
+
|
3451
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-06 00:06:03 +0200
|
3452
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
3453
|
+
|
3454
|
+
|
3455
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-06 00:06:03 +0200
|
3456
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
3457
|
+
|
3458
|
+
|
3459
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-06 00:06:03 +0200
|
3460
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
3461
|
+
|
3462
|
+
|
3463
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-06 00:06:03 +0200
|
3464
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
3465
|
+
|
3466
|
+
|
3467
|
+
Started GET "/" for 127.0.0.1 at 2013-04-06 00:06:28 +0200
|
3468
|
+
Processing by ApplicationController#index as HTML
|
3469
|
+
Rendered application/_tb_table.html.erb (0.2ms)
|
3470
|
+
Rendered application/_tb_form_for.html.erb (5.0ms)
|
3471
|
+
Rendered application/_tb_button_group.html.erb (0.2ms)
|
3472
|
+
Rendered application/_tb_icon.html.erb (0.2ms)
|
3473
|
+
Rendered application/index.html.erb within layouts/application (11.7ms)
|
3474
|
+
Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.0ms)
|
3475
|
+
|
3476
|
+
|
3477
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-06 00:06:28 +0200
|
3478
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
3479
|
+
|
3480
|
+
|
3481
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-06 00:06:28 +0200
|
3482
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
3483
|
+
|
3484
|
+
|
3485
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-06 00:06:29 +0200
|
3486
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
3487
|
+
|
3488
|
+
|
3489
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-06 00:06:29 +0200
|
3490
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
3491
|
+
|
3492
|
+
|
3493
|
+
Started GET "/" for 127.0.0.1 at 2013-04-06 00:06:49 +0200
|
3494
|
+
Processing by ApplicationController#index as HTML
|
3495
|
+
Rendered application/_tb_table.html.erb (0.2ms)
|
3496
|
+
Rendered application/_tb_form_for.html.erb (4.6ms)
|
3497
|
+
Rendered application/_tb_button_group.html.erb (0.2ms)
|
3498
|
+
Rendered application/_tb_icon.html.erb (0.2ms)
|
3499
|
+
Rendered application/index.html.erb within layouts/application (8.9ms)
|
3500
|
+
Completed 200 OK in 36ms (Views: 35.9ms | ActiveRecord: 0.0ms)
|
3501
|
+
|
3502
|
+
|
3503
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-06 00:06:49 +0200
|
3504
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
3505
|
+
|
3506
|
+
|
3507
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-06 00:06:49 +0200
|
3508
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
3509
|
+
|
3510
|
+
|
3511
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-06 00:06:49 +0200
|
3512
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
3513
|
+
|
3514
|
+
|
3515
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-06 00:06:49 +0200
|
3516
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
3517
|
+
|
3518
|
+
|
3519
|
+
Started GET "/" for 127.0.0.1 at 2013-04-06 00:07:29 +0200
|
3520
|
+
Processing by ApplicationController#index as HTML
|
3521
|
+
Rendered application/_tb_table.html.erb (0.2ms)
|
3522
|
+
Rendered application/_tb_form_for.html.erb (7.3ms)
|
3523
|
+
Rendered application/_tb_button_group.html.erb (0.2ms)
|
3524
|
+
Rendered application/_tb_icon.html.erb (0.2ms)
|
3525
|
+
Rendered application/index.html.erb within layouts/application (11.9ms)
|
3526
|
+
Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.0ms)
|
3527
|
+
|
3528
|
+
|
3529
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-06 00:07:29 +0200
|
3530
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
3531
|
+
|
3532
|
+
|
3533
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-06 00:07:29 +0200
|
3534
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
3535
|
+
|
3536
|
+
|
3537
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-06 00:07:29 +0200
|
3538
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
3539
|
+
|
3540
|
+
|
3541
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-06 00:07:29 +0200
|
3542
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
3543
|
+
|
3544
|
+
|
3545
|
+
Started GET "/" for 127.0.0.1 at 2013-04-06 00:09:04 +0200
|
3546
|
+
Processing by ApplicationController#index as HTML
|
3547
|
+
Rendered application/_tb_table.html.erb (0.2ms)
|
3548
|
+
Rendered application/_tb_form_for.html.erb (6.2ms)
|
3549
|
+
Rendered application/_tb_button_group.html.erb (0.2ms)
|
3550
|
+
Rendered application/_tb_icon.html.erb (0.3ms)
|
3551
|
+
Rendered application/index.html.erb within layouts/application (11.1ms)
|
3552
|
+
Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.0ms)
|
3553
|
+
|
3554
|
+
|
3555
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-06 00:09:04 +0200
|
3556
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
3557
|
+
|
3558
|
+
|
3559
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-06 00:09:04 +0200
|
3560
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
3561
|
+
|
3562
|
+
|
3563
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-06 00:09:04 +0200
|
3564
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
3565
|
+
|
3566
|
+
|
3567
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-06 00:09:04 +0200
|
3568
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|