spik 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (61) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.rdoc +130 -0
  3. data/Rakefile +37 -0
  4. data/lib/spik/execution.rb +29 -0
  5. data/lib/spik/models.rb +15 -0
  6. data/lib/spik/tmp.rb +50 -0
  7. data/lib/spik/version.rb +3 -0
  8. data/lib/spik.rb +48 -0
  9. data/lib/tasks/spik_tasks.rake +4 -0
  10. data/test/dummy/Rakefile +7 -0
  11. data/test/dummy/app/assets/javascripts/application.js +9 -0
  12. data/test/dummy/app/assets/stylesheets/application.css +7 -0
  13. data/test/dummy/app/controllers/application_controller.rb +3 -0
  14. data/test/dummy/app/controllers/home_controller.rb +23 -0
  15. data/test/dummy/app/helpers/application_helper.rb +2 -0
  16. data/test/dummy/app/models/notice.rb +3 -0
  17. data/test/dummy/app/models/post.rb +3 -0
  18. data/test/dummy/app/views/home/index.html.erb +23 -0
  19. data/test/dummy/app/views/home/search.html.erb +12 -0
  20. data/test/dummy/app/views/layouts/application.html.erb +12 -0
  21. data/test/dummy/config/application.rb +45 -0
  22. data/test/dummy/config/boot.rb +10 -0
  23. data/test/dummy/config/database.yml +25 -0
  24. data/test/dummy/config/environment.rb +5 -0
  25. data/test/dummy/config/environments/development.rb +30 -0
  26. data/test/dummy/config/environments/production.rb +60 -0
  27. data/test/dummy/config/environments/test.rb +39 -0
  28. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  29. data/test/dummy/config/initializers/inflections.rb +10 -0
  30. data/test/dummy/config/initializers/mime_types.rb +5 -0
  31. data/test/dummy/config/initializers/secret_token.rb +7 -0
  32. data/test/dummy/config/initializers/session_store.rb +8 -0
  33. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  34. data/test/dummy/config/locales/en.yml +5 -0
  35. data/test/dummy/config/routes.rb +60 -0
  36. data/test/dummy/config.ru +4 -0
  37. data/test/dummy/db/development.sqlite3 +0 -0
  38. data/test/dummy/db/migrate/20111022073857_create_posts.rb +13 -0
  39. data/test/dummy/db/migrate/20111022090628_create_notices.rb +13 -0
  40. data/test/dummy/db/production.sqlite3 +0 -0
  41. data/test/dummy/db/schema.rb +30 -0
  42. data/test/dummy/log/development.log +1339 -0
  43. data/test/dummy/log/production.log +5372 -0
  44. data/test/dummy/log/test.log +0 -0
  45. data/test/dummy/public/404.html +26 -0
  46. data/test/dummy/public/422.html +26 -0
  47. data/test/dummy/public/500.html +26 -0
  48. data/test/dummy/public/favicon.ico +0 -0
  49. data/test/dummy/script/rails +6 -0
  50. data/test/dummy/tmp/cache/assets/CB3/ED0/sprockets%2F21371325c045193edd88a7eb5897e4d0 +9052 -0
  51. data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  52. data/test/dummy/tmp/cache/assets/D54/ED0/sprockets%2F71c9fa01091d432b131da3bb73faf3d4 +10 -0
  53. data/test/dummy/tmp/cache/assets/D84/210/sprockets%2Fabd0103ccec2b428ac62c94e4c40b384 +9427 -0
  54. data/test/dummy/tmp/cache/assets/DB4/540/sprockets%2F77df85bd03af068df99d6a714cd58ff2 +373 -0
  55. data/test/dummy/tmp/cache/assets/DD0/030/sprockets%2F6fea4f8c8ac6003482feb9df8afa0361 +9068 -0
  56. data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  57. data/test/dummy/tmp/cache/assets/E54/940/sprockets%2Fe5c4f565eaabc3ea3cc4006bf5b9c6ce +389 -0
  58. data/test/integration/missing_method_test.rb +12 -0
  59. data/test/spik_test.rb +13 -0
  60. data/test/test_helper.rb +10 -0
  61. metadata +156 -0
@@ -0,0 +1,1339 @@
1
+
2
+
3
+ Started GET "/" for 127.0.0.1 at 2011-10-17 22:48:33 +0400
4
+
5
+ ActionController::RoutingError (No route matches [GET] "/"):
6
+
7
+
8
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (3.3ms)
9
+
10
+
11
+ Started GET "/home" for 127.0.0.1 at 2011-10-17 22:48:46 +0400
12
+ Processing by HomeController#index as HTML
13
+ Completed 500 Internal Server Error in 6ms
14
+
15
+ NameError (undefined local variable or method `abc' for #<HomeController:0x00000101af6cc8>):
16
+ app/controllers/home_controller.rb:5:in `index'
17
+
18
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
19
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
20
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (5.9ms)
21
+
22
+
23
+ Started GET "/home" for 127.0.0.1 at 2011-10-17 22:49:17 +0400
24
+ Processing by HomeController#index as HTML
25
+ Completed 500 Internal Server Error in 27ms
26
+
27
+ NameError (undefined local variable or method `abc' for #<HomeController:0x000001032b07d8>):
28
+ app/controllers/home_controller.rb:5:in `index'
29
+
30
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
31
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
32
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (6.7ms)
33
+
34
+
35
+ Started GET "/home" for 127.0.0.1 at 2011-10-17 22:49:20 +0400
36
+ Processing by HomeController#index as HTML
37
+ Completed 500 Internal Server Error in 7ms
38
+
39
+ NameError (undefined local variable or method `abc' for #<HomeController:0x00000103585760>):
40
+ app/controllers/home_controller.rb:5:in `index'
41
+
42
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
43
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
44
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (4.7ms)
45
+
46
+
47
+ Started GET "/home" for 127.0.0.1 at 2011-10-17 22:49:21 +0400
48
+ Processing by HomeController#index as HTML
49
+ Completed 500 Internal Server Error in 6ms
50
+
51
+ NameError (undefined local variable or method `abc' for #<HomeController:0x0000010085e390>):
52
+ app/controllers/home_controller.rb:5:in `index'
53
+
54
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
55
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
56
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (4.6ms)
57
+
58
+
59
+ Started GET "/home" for 127.0.0.1 at 2011-10-17 22:50:20 +0400
60
+ Processing by HomeController#index as HTML
61
+ #<HomeController:0x0000010139ec78>
62
+ Completed 500 Internal Server Error in 6ms
63
+
64
+ NoMethodError (private method `method_missing' called for #<HomeController:0x0000010139ec78>):
65
+ app/controllers/home_controller.rb:6:in `index'
66
+
67
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
68
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
69
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (4.9ms)
70
+
71
+
72
+ Started GET "/home" for 127.0.0.1 at 2011-10-17 22:50:37 +0400
73
+ Processing by HomeController#index as HTML
74
+ #<HomeController:0x00000103658110>
75
+ [:_layout, :_run_process_action_callbacks, :_wrapper_key, :_wrapper_formats, :_wrap_parameters, :_wrapper_enabled?, :send_file_headers!, :cookies, :cache_configured?, :_normalize_args, :_extract_redirect_to_status, :_compute_redirect_to_location, :initialize, :action_prefix, :routing_type, :build_named_route_call, :extract_record, :_layout_for_option, :_default_layout, :_include_layout?, :_normalize_render, :action_method?, :_handle_action_missing, :Digest, :DelegateClass, :timeout, :initialize_copy, :remove_instance_variable, :sprintf, :format, :Integer, :Float, :String, :Array, :warn, :raise, :fail, :global_variables, :__method__, :__callee__, :eval, :local_variables, :iterator?, :block_given?, :catch, :throw, :loop, :caller, :trace_var, :untrace_var, :at_exit, :syscall, :open, :printf, :print, :putc, :puts, :gets, :readline, :select, :readlines, :p, :test, :srand, :rand, :trap, :exec, :fork, :exit!, :system, :spawn, :sleep, :exit, :abort, :require_relative, :autoload, :autoload?, :proc, :lambda, :binding, :set_trace_func, :Rational, :Complex, :gem_original_require, :Pathname, :y, :URI, :rubygems_require, :BigDecimal, :j, :jj, :JSON, :singleton_method_added, :singleton_method_removed, :singleton_method_undefined, :method_missing]
76
+ Completed 500 Internal Server Error in 6ms
77
+
78
+ NameError (undefined local variable or method `abc' for #<HomeController:0x00000103658110>):
79
+ app/controllers/home_controller.rb:7:in `index'
80
+
81
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
82
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
83
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (5.0ms)
84
+
85
+
86
+ Started GET "/home" for 127.0.0.1 at 2011-10-17 22:51:01 +0400
87
+ Processing by HomeController#index as HTML
88
+ #<HomeController:0x00000100ba8528>
89
+ Completed 500 Internal Server Error in 6ms
90
+
91
+ NoMethodError (undefined method `call' for #<HomeController:0x00000100ba8528>):
92
+ app/controllers/home_controller.rb:6:in `index'
93
+
94
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
95
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
96
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (4.8ms)
97
+
98
+
99
+ Started GET "/home" for 127.0.0.1 at 2011-10-17 22:51:11 +0400
100
+ Processing by HomeController#index as HTML
101
+ #<HomeController:0x00000100e722e0>
102
+ Completed 500 Internal Server Error in 1ms
103
+
104
+ ArgumentError (no id given):
105
+ app/controllers/home_controller.rb:6:in `method_missing'
106
+ app/controllers/home_controller.rb:6:in `index'
107
+
108
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
109
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
110
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (4.9ms)
111
+
112
+
113
+ Started GET "/home" for 127.0.0.1 at 2011-10-17 22:52:13 +0400
114
+ Processing by HomeController#index as HTML
115
+ #<HomeController:0x000001031e20b8>
116
+ [:index, :_run__2229243685768872126__process_action__3669759290197164032__callbacks, :_one_time_conditions_valid_12?, :hash_for_home_url, :home_url, :hash_for_home_path, :home_path, :hash_for_rails_info_properties_url, :rails_info_properties_url, :hash_for_rails_info_properties_path, :rails_info_properties_path, :_routes, :_view_paths, :_view_paths?, :_view_paths=, :protected_instance_variables=, :_layout_conditions?, :_layout_conditions=, :_layout_conditions, :asset_host, :asset_host=, :asset_path, :asset_path=, :assets_dir, :assets_dir=, :javascripts_dir, :javascripts_dir=, :stylesheets_dir, :stylesheets_dir=, :default_asset_host_protocol, :default_asset_host_protocol=, :_helpers, :_helpers?, :_helpers=, :_helper_methods, :_helper_methods?, :_helper_methods=, :helpers_path, :helpers_path=, :include_all_helpers, :include_all_helpers=, :hidden_actions, :hidden_actions?, :hidden_actions=, :default_url_options, :default_url_options?, :default_url_options=, :logger, :logger=, :_renderers, :_renderers?, :_renderers=, :page_cache_directory, :page_cache_directory=, :page_cache_extension, :page_cache_extension=, :perform_caching, :perform_caching=, :responder, :responder?, :responder=, :mimes_for_respond_to, :mimes_for_respond_to?, :mimes_for_respond_to=, :flash, :alert, :notice, :_process_action_callbacks, :_process_action_callbacks?, :_process_action_callbacks=, :request_forgery_protection_token, :request_forgery_protection_token=, :allow_forgery_protection, :allow_forgery_protection=, :rescue_handlers, :rescue_handlers?, :rescue_handlers=, :_wrapper_options, :_wrapper_options?, :_wrapper_options=, :rescue_action, :_main_app, :main_app, :db_runtime, :db_runtime=, :process_action, :cleanup_view_runtime, :append_info_to_payload, :initialize_template_class, :assign_shortcuts, :_normalize_options, :render_to_body, :_handle_method_missing, :method_for_action, :performed?, :view_runtime, :view_runtime=, :render, :send_file, :send_data, :redirect_to, :rescue_with_handler, :handler_for_rescue, :authenticate_or_request_with_http_token, :authenticate_with_http_token, :request_http_token_authentication, :authenticate_or_request_with_http_digest, :authenticate_with_http_digest, :request_http_digest_authentication, :authenticate_or_request_with_http_basic, :authenticate_with_http_basic, :request_http_basic_authentication, :dom_class, :dom_id, :record_key_for_dom_id, :sanitize_dom_id, :stream, :stream=, :_stream_filter, :_process_options, :_render_template, :verify_authenticity_token, :handle_unverified_request, :verified_request?, :form_authenticity_token, :form_authenticity_param, :protect_against_forgery?, :run_callbacks, :respond_to, :respond_with, :collect_mimes_from_class_level, :retrieve_response_from_mimes, :send_action, :default_render, :caching_allowed?, :cache, :fragment_cache_key, :write_fragment, :read_fragment, :fragment_exist?, :expire_fragment, :instrument_fragment_cache, :cache_store, :cache_store=, :expire_page, :cache_page, :_save_fragment, :expire_action, :fresh_when, :stale?, :expires_in, :expires_now, :head, :_handle_render_options, :_render_option_json, :_render_option_js, :_render_option_xml, :render_to_string, :headers, :status=, :location=, :content_type=, :status, :location, :content_type, :dispatch, :response_body=, :reset_session, :url_options, :url_for, :_with_routes, :_routes_context, :polymorphic_url, :polymorphic_path, :edit_polymorphic_url, :edit_polymorphic_path, :new_polymorphic_url, :new_polymorphic_path, :translate, :t, :localize, :l, :action_has_layout=, :action_has_layout?, :process, :view_context_class=, :protected_instance_variables, :view_context_class, :view_context, :view_renderer, :view_assigns, :find_template, :template_exists?, :view_paths, :formats, :formats=, :locale, :locale=, :_prefixes, :lookup_context, :details_for_lookup, :append_view_path, :prepend_view_path, :env=, :env, :controller_name, :response, :request, :headers=, :response=, :request=, :session, :params, :params=, :to_a, :middleware_stack, :middleware_stack?, :middleware_stack=, :response_body, :action_name, :action_name=, :controller_path, :action_methods, :available_action?, :config, :psych_to_yaml, :to_yaml_properties, :to_yaml, :in?, :blank?, :present?, :presence, :acts_like?, :try, :html_safe?, :duplicable?, :to_param, :to_query, :`, :instance_values, :instance_variable_names, :to_json, :with_options, :as_json, :require_or_load, :require_dependency, :require_association, :load_dependency, :load, :require, :unloadable, :nil?, :===, :=~, :!~, :eql?, :hash, :<=>, :class, :singleton_class, :clone, :dup, :initialize_dup, :initialize_clone, :taint, :tainted?, :untaint, :untrust, :untrusted?, :trust, :freeze, :frozen?, :to_s, :inspect, :methods, :singleton_methods, :protected_methods, :private_methods, :public_methods, :instance_variables, :instance_variable_get, :instance_variable_set, :instance_variable_defined?, :instance_of?, :kind_of?, :is_a?, :tap, :send, :public_send, :respond_to?, :respond_to_missing?, :extend, :display, :method, :public_method, :define_singleton_method, :object_id, :to_enum, :enum_for, :gem, :psych_y, :silence_warnings, :enable_warnings, :with_warnings, :silence_stderr, :silence_stream, :suppress, :capture, :silence, :quietly, :class_eval, :require_library_or_gem, :require_library_or_gem_with_deprecation, :require_library_or_gem_without_deprecation, :debugger, :breakpoint, :suppress_warnings, :==, :equal?, :!, :!=, :instance_eval, :instance_exec, :__send__, :__id__]
117
+ Completed 500 Internal Server Error in 7ms
118
+
119
+ NameError (undefined local variable or method `abc' for #<HomeController:0x000001031e20b8>):
120
+ app/controllers/home_controller.rb:7:in `index'
121
+
122
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
123
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
124
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (6.7ms)
125
+
126
+
127
+ Started GET "/home" for 127.0.0.1 at 2011-10-17 22:53:21 +0400
128
+ Processing by HomeController#index as HTML
129
+ #<HomeController:0x000001023cf908>
130
+ [:method_missing, :wer, :index, :_run__2229243685768872126__process_action__3669759290197164032__callbacks, :_one_time_conditions_valid_14?, :hash_for_home_url, :home_url, :hash_for_home_path, :home_path, :hash_for_rails_info_properties_url, :rails_info_properties_url, :hash_for_rails_info_properties_path, :rails_info_properties_path, :_routes, :_view_paths, :_view_paths?, :_view_paths=, :protected_instance_variables=, :_layout_conditions?, :_layout_conditions=, :_layout_conditions, :asset_host, :asset_host=, :asset_path, :asset_path=, :assets_dir, :assets_dir=, :javascripts_dir, :javascripts_dir=, :stylesheets_dir, :stylesheets_dir=, :default_asset_host_protocol, :default_asset_host_protocol=, :_helpers, :_helpers?, :_helpers=, :_helper_methods, :_helper_methods?, :_helper_methods=, :helpers_path, :helpers_path=, :include_all_helpers, :include_all_helpers=, :hidden_actions, :hidden_actions?, :hidden_actions=, :default_url_options, :default_url_options?, :default_url_options=, :logger, :logger=, :_renderers, :_renderers?, :_renderers=, :page_cache_directory, :page_cache_directory=, :page_cache_extension, :page_cache_extension=, :perform_caching, :perform_caching=, :responder, :responder?, :responder=, :mimes_for_respond_to, :mimes_for_respond_to?, :mimes_for_respond_to=, :flash, :alert, :notice, :_process_action_callbacks, :_process_action_callbacks?, :_process_action_callbacks=, :request_forgery_protection_token, :request_forgery_protection_token=, :allow_forgery_protection, :allow_forgery_protection=, :rescue_handlers, :rescue_handlers?, :rescue_handlers=, :_wrapper_options, :_wrapper_options?, :_wrapper_options=, :rescue_action, :_main_app, :main_app, :db_runtime, :db_runtime=, :process_action, :cleanup_view_runtime, :append_info_to_payload, :initialize_template_class, :assign_shortcuts, :_normalize_options, :render_to_body, :_handle_method_missing, :method_for_action, :performed?, :view_runtime, :view_runtime=, :render, :send_file, :send_data, :redirect_to, :rescue_with_handler, :handler_for_rescue, :authenticate_or_request_with_http_token, :authenticate_with_http_token, :request_http_token_authentication, :authenticate_or_request_with_http_digest, :authenticate_with_http_digest, :request_http_digest_authentication, :authenticate_or_request_with_http_basic, :authenticate_with_http_basic, :request_http_basic_authentication, :dom_class, :dom_id, :record_key_for_dom_id, :sanitize_dom_id, :stream, :stream=, :_stream_filter, :_process_options, :_render_template, :verify_authenticity_token, :handle_unverified_request, :verified_request?, :form_authenticity_token, :form_authenticity_param, :protect_against_forgery?, :run_callbacks, :respond_to, :respond_with, :collect_mimes_from_class_level, :retrieve_response_from_mimes, :send_action, :default_render, :caching_allowed?, :cache, :fragment_cache_key, :write_fragment, :read_fragment, :fragment_exist?, :expire_fragment, :instrument_fragment_cache, :cache_store, :cache_store=, :expire_page, :cache_page, :_save_fragment, :expire_action, :fresh_when, :stale?, :expires_in, :expires_now, :head, :_handle_render_options, :_render_option_json, :_render_option_js, :_render_option_xml, :render_to_string, :headers, :status=, :location=, :content_type=, :status, :location, :content_type, :dispatch, :response_body=, :reset_session, :url_options, :url_for, :_with_routes, :_routes_context, :polymorphic_url, :polymorphic_path, :edit_polymorphic_url, :edit_polymorphic_path, :new_polymorphic_url, :new_polymorphic_path, :translate, :t, :localize, :l, :action_has_layout=, :action_has_layout?, :process, :view_context_class=, :protected_instance_variables, :view_context_class, :view_context, :view_renderer, :view_assigns, :find_template, :template_exists?, :view_paths, :formats, :formats=, :locale, :locale=, :_prefixes, :lookup_context, :details_for_lookup, :append_view_path, :prepend_view_path, :env=, :env, :controller_name, :response, :request, :headers=, :response=, :request=, :session, :params, :params=, :to_a, :middleware_stack, :middleware_stack?, :middleware_stack=, :response_body, :action_name, :action_name=, :controller_path, :action_methods, :available_action?, :config, :psych_to_yaml, :to_yaml_properties, :to_yaml, :in?, :blank?, :present?, :presence, :acts_like?, :try, :html_safe?, :duplicable?, :to_param, :to_query, :`, :instance_values, :instance_variable_names, :to_json, :with_options, :as_json, :require_or_load, :require_dependency, :require_association, :load_dependency, :load, :require, :unloadable, :nil?, :===, :=~, :!~, :eql?, :hash, :<=>, :class, :singleton_class, :clone, :dup, :initialize_dup, :initialize_clone, :taint, :tainted?, :untaint, :untrust, :untrusted?, :trust, :freeze, :frozen?, :to_s, :inspect, :methods, :singleton_methods, :protected_methods, :private_methods, :public_methods, :instance_variables, :instance_variable_get, :instance_variable_set, :instance_variable_defined?, :instance_of?, :kind_of?, :is_a?, :tap, :send, :public_send, :respond_to?, :respond_to_missing?, :extend, :display, :method, :public_method, :define_singleton_method, :object_id, :to_enum, :enum_for, :gem, :psych_y, :silence_warnings, :enable_warnings, :with_warnings, :silence_stderr, :silence_stream, :suppress, :capture, :silence, :quietly, :class_eval, :require_library_or_gem, :require_library_or_gem_with_deprecation, :require_library_or_gem_without_deprecation, :debugger, :breakpoint, :suppress_warnings, :==, :equal?, :!, :!=, :instance_eval, :instance_exec, :__send__, :__id__]
131
+ Completed 500 Internal Server Error in 11ms
132
+
133
+ ActionView::MissingTemplate (Missing template home/index, application/index with {:handlers=>[:erb, :builder], :formats=>[:html], :locale=>[:en, :en]}. Searched in:
134
+ * "/Users/gazay/code/spike/test/dummy/app/views"
135
+ ):
136
+
137
+
138
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.5ms)
139
+
140
+
141
+ Started GET "/home" for 127.0.0.1 at 2011-10-17 22:54:04 +0400
142
+ Processing by HomeController#index as HTML
143
+ #<HomeController:0x00000100c2d228>
144
+ [:index, :_run__2229243685768872126__process_action__3669759290197164032__callbacks, :method_missing, :wer, :_one_time_conditions_valid_16?, :hash_for_home_url, :home_url, :hash_for_home_path, :home_path, :hash_for_rails_info_properties_url, :rails_info_properties_url, :hash_for_rails_info_properties_path, :rails_info_properties_path, :_routes, :_view_paths, :_view_paths?, :_view_paths=, :protected_instance_variables=, :_layout_conditions?, :_layout_conditions=, :_layout_conditions, :asset_host, :asset_host=, :asset_path, :asset_path=, :assets_dir, :assets_dir=, :javascripts_dir, :javascripts_dir=, :stylesheets_dir, :stylesheets_dir=, :default_asset_host_protocol, :default_asset_host_protocol=, :_helpers, :_helpers?, :_helpers=, :_helper_methods, :_helper_methods?, :_helper_methods=, :helpers_path, :helpers_path=, :include_all_helpers, :include_all_helpers=, :hidden_actions, :hidden_actions?, :hidden_actions=, :default_url_options, :default_url_options?, :default_url_options=, :logger, :logger=, :_renderers, :_renderers?, :_renderers=, :page_cache_directory, :page_cache_directory=, :page_cache_extension, :page_cache_extension=, :perform_caching, :perform_caching=, :responder, :responder?, :responder=, :mimes_for_respond_to, :mimes_for_respond_to?, :mimes_for_respond_to=, :flash, :alert, :notice, :_process_action_callbacks, :_process_action_callbacks?, :_process_action_callbacks=, :request_forgery_protection_token, :request_forgery_protection_token=, :allow_forgery_protection, :allow_forgery_protection=, :rescue_handlers, :rescue_handlers?, :rescue_handlers=, :_wrapper_options, :_wrapper_options?, :_wrapper_options=, :rescue_action, :_main_app, :main_app, :db_runtime, :db_runtime=, :process_action, :cleanup_view_runtime, :append_info_to_payload, :initialize_template_class, :assign_shortcuts, :_normalize_options, :render_to_body, :_handle_method_missing, :method_for_action, :performed?, :view_runtime, :view_runtime=, :render, :send_file, :send_data, :redirect_to, :rescue_with_handler, :handler_for_rescue, :authenticate_or_request_with_http_token, :authenticate_with_http_token, :request_http_token_authentication, :authenticate_or_request_with_http_digest, :authenticate_with_http_digest, :request_http_digest_authentication, :authenticate_or_request_with_http_basic, :authenticate_with_http_basic, :request_http_basic_authentication, :dom_class, :dom_id, :record_key_for_dom_id, :sanitize_dom_id, :stream, :stream=, :_stream_filter, :_process_options, :_render_template, :verify_authenticity_token, :handle_unverified_request, :verified_request?, :form_authenticity_token, :form_authenticity_param, :protect_against_forgery?, :run_callbacks, :respond_to, :respond_with, :collect_mimes_from_class_level, :retrieve_response_from_mimes, :send_action, :default_render, :caching_allowed?, :cache, :fragment_cache_key, :write_fragment, :read_fragment, :fragment_exist?, :expire_fragment, :instrument_fragment_cache, :cache_store, :cache_store=, :expire_page, :cache_page, :_save_fragment, :expire_action, :fresh_when, :stale?, :expires_in, :expires_now, :head, :_handle_render_options, :_render_option_json, :_render_option_js, :_render_option_xml, :render_to_string, :headers, :status=, :location=, :content_type=, :status, :location, :content_type, :dispatch, :response_body=, :reset_session, :url_options, :url_for, :_with_routes, :_routes_context, :polymorphic_url, :polymorphic_path, :edit_polymorphic_url, :edit_polymorphic_path, :new_polymorphic_url, :new_polymorphic_path, :translate, :t, :localize, :l, :action_has_layout=, :action_has_layout?, :process, :view_context_class=, :protected_instance_variables, :view_context_class, :view_context, :view_renderer, :view_assigns, :find_template, :template_exists?, :view_paths, :formats, :formats=, :locale, :locale=, :_prefixes, :lookup_context, :details_for_lookup, :append_view_path, :prepend_view_path, :env=, :env, :controller_name, :response, :request, :headers=, :response=, :request=, :session, :params, :params=, :to_a, :middleware_stack, :middleware_stack?, :middleware_stack=, :response_body, :action_name, :action_name=, :controller_path, :action_methods, :available_action?, :config, :psych_to_yaml, :to_yaml_properties, :to_yaml, :in?, :blank?, :present?, :presence, :acts_like?, :try, :html_safe?, :duplicable?, :to_param, :to_query, :`, :instance_values, :instance_variable_names, :to_json, :with_options, :as_json, :require_or_load, :require_dependency, :require_association, :load_dependency, :load, :require, :unloadable, :nil?, :===, :=~, :!~, :eql?, :hash, :<=>, :class, :singleton_class, :clone, :dup, :initialize_dup, :initialize_clone, :taint, :tainted?, :untaint, :untrust, :untrusted?, :trust, :freeze, :frozen?, :to_s, :inspect, :methods, :singleton_methods, :protected_methods, :private_methods, :public_methods, :instance_variables, :instance_variable_get, :instance_variable_set, :instance_variable_defined?, :instance_of?, :kind_of?, :is_a?, :tap, :send, :public_send, :respond_to?, :respond_to_missing?, :extend, :display, :method, :public_method, :define_singleton_method, :object_id, :to_enum, :enum_for, :gem, :psych_y, :silence_warnings, :enable_warnings, :with_warnings, :silence_stderr, :silence_stream, :suppress, :capture, :silence, :quietly, :class_eval, :require_library_or_gem, :require_library_or_gem_with_deprecation, :require_library_or_gem_without_deprecation, :debugger, :breakpoint, :suppress_warnings, :==, :equal?, :!, :!=, :instance_eval, :instance_exec, :__send__, :__id__]
145
+ Completed 500 Internal Server Error in 4ms
146
+
147
+ ActionView::MissingTemplate (Missing template home/index, application/index with {:handlers=>[:erb, :builder], :formats=>[:html], :locale=>[:en, :en]}. Searched in:
148
+ * "/Users/gazay/code/spike/test/dummy/app/views"
149
+ ):
150
+
151
+
152
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.4ms)
153
+
154
+
155
+ Started GET "/home" for 127.0.0.1 at 2011-10-17 22:55:02 +0400
156
+ Processing by HomeController#index as HTML
157
+ #<HomeController:0x00000101595a18>
158
+ [:index, :_run__2229243685768872126__process_action__3669759290197164032__callbacks, :method_missing, :wer, :_one_time_conditions_valid_18?, :hash_for_home_url, :home_url, :hash_for_home_path, :home_path, :hash_for_rails_info_properties_url, :rails_info_properties_url, :hash_for_rails_info_properties_path, :rails_info_properties_path, :_routes, :_view_paths, :_view_paths?, :_view_paths=, :protected_instance_variables=, :_layout_conditions?, :_layout_conditions=, :_layout_conditions, :asset_host, :asset_host=, :asset_path, :asset_path=, :assets_dir, :assets_dir=, :javascripts_dir, :javascripts_dir=, :stylesheets_dir, :stylesheets_dir=, :default_asset_host_protocol, :default_asset_host_protocol=, :_helpers, :_helpers?, :_helpers=, :_helper_methods, :_helper_methods?, :_helper_methods=, :helpers_path, :helpers_path=, :include_all_helpers, :include_all_helpers=, :hidden_actions, :hidden_actions?, :hidden_actions=, :default_url_options, :default_url_options?, :default_url_options=, :logger, :logger=, :_renderers, :_renderers?, :_renderers=, :page_cache_directory, :page_cache_directory=, :page_cache_extension, :page_cache_extension=, :perform_caching, :perform_caching=, :responder, :responder?, :responder=, :mimes_for_respond_to, :mimes_for_respond_to?, :mimes_for_respond_to=, :flash, :alert, :notice, :_process_action_callbacks, :_process_action_callbacks?, :_process_action_callbacks=, :request_forgery_protection_token, :request_forgery_protection_token=, :allow_forgery_protection, :allow_forgery_protection=, :rescue_handlers, :rescue_handlers?, :rescue_handlers=, :_wrapper_options, :_wrapper_options?, :_wrapper_options=, :rescue_action, :_main_app, :main_app, :db_runtime, :db_runtime=, :process_action, :cleanup_view_runtime, :append_info_to_payload, :initialize_template_class, :assign_shortcuts, :_normalize_options, :render_to_body, :_handle_method_missing, :method_for_action, :performed?, :view_runtime, :view_runtime=, :render, :send_file, :send_data, :redirect_to, :rescue_with_handler, :handler_for_rescue, :authenticate_or_request_with_http_token, :authenticate_with_http_token, :request_http_token_authentication, :authenticate_or_request_with_http_digest, :authenticate_with_http_digest, :request_http_digest_authentication, :authenticate_or_request_with_http_basic, :authenticate_with_http_basic, :request_http_basic_authentication, :dom_class, :dom_id, :record_key_for_dom_id, :sanitize_dom_id, :stream, :stream=, :_stream_filter, :_process_options, :_render_template, :verify_authenticity_token, :handle_unverified_request, :verified_request?, :form_authenticity_token, :form_authenticity_param, :protect_against_forgery?, :run_callbacks, :respond_to, :respond_with, :collect_mimes_from_class_level, :retrieve_response_from_mimes, :send_action, :default_render, :caching_allowed?, :cache, :fragment_cache_key, :write_fragment, :read_fragment, :fragment_exist?, :expire_fragment, :instrument_fragment_cache, :cache_store, :cache_store=, :expire_page, :cache_page, :_save_fragment, :expire_action, :fresh_when, :stale?, :expires_in, :expires_now, :head, :_handle_render_options, :_render_option_json, :_render_option_js, :_render_option_xml, :render_to_string, :headers, :status=, :location=, :content_type=, :status, :location, :content_type, :dispatch, :response_body=, :reset_session, :url_options, :url_for, :_with_routes, :_routes_context, :polymorphic_url, :polymorphic_path, :edit_polymorphic_url, :edit_polymorphic_path, :new_polymorphic_url, :new_polymorphic_path, :translate, :t, :localize, :l, :action_has_layout=, :action_has_layout?, :process, :view_context_class=, :protected_instance_variables, :view_context_class, :view_context, :view_renderer, :view_assigns, :find_template, :template_exists?, :view_paths, :formats, :formats=, :locale, :locale=, :_prefixes, :lookup_context, :details_for_lookup, :append_view_path, :prepend_view_path, :env=, :env, :controller_name, :response, :request, :headers=, :response=, :request=, :session, :params, :params=, :to_a, :middleware_stack, :middleware_stack?, :middleware_stack=, :response_body, :action_name, :action_name=, :controller_path, :action_methods, :available_action?, :config, :psych_to_yaml, :to_yaml_properties, :to_yaml, :in?, :blank?, :present?, :presence, :acts_like?, :try, :html_safe?, :duplicable?, :to_param, :to_query, :`, :instance_values, :instance_variable_names, :to_json, :with_options, :as_json, :require_or_load, :require_dependency, :require_association, :load_dependency, :load, :require, :unloadable, :nil?, :===, :=~, :!~, :eql?, :hash, :<=>, :class, :singleton_class, :clone, :dup, :initialize_dup, :initialize_clone, :taint, :tainted?, :untaint, :untrust, :untrusted?, :trust, :freeze, :frozen?, :to_s, :inspect, :methods, :singleton_methods, :protected_methods, :private_methods, :public_methods, :instance_variables, :instance_variable_get, :instance_variable_set, :instance_variable_defined?, :instance_of?, :kind_of?, :is_a?, :tap, :send, :public_send, :respond_to?, :respond_to_missing?, :extend, :display, :method, :public_method, :define_singleton_method, :object_id, :to_enum, :enum_for, :gem, :psych_y, :silence_warnings, :enable_warnings, :with_warnings, :silence_stderr, :silence_stream, :suppress, :capture, :silence, :quietly, :class_eval, :require_library_or_gem, :require_library_or_gem_with_deprecation, :require_library_or_gem_without_deprecation, :debugger, :breakpoint, :suppress_warnings, :==, :equal?, :!, :!=, :instance_eval, :instance_exec, :__send__, :__id__]
159
+ Completed 500 Internal Server Error in 4ms
160
+
161
+ ActionView::MissingTemplate (Missing template home/index, application/index with {:handlers=>[:erb, :builder], :formats=>[:html], :locale=>[:en, :en]}. Searched in:
162
+ * "/Users/gazay/code/spike/test/dummy/app/views"
163
+ ):
164
+
165
+
166
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.5ms)
167
+
168
+
169
+ Started GET "/home" for 127.0.0.1 at 2011-10-17 22:55:20 +0400
170
+ Processing by HomeController#index as HTML
171
+ Completed 500 Internal Server Error in 4ms
172
+
173
+ ActionView::MissingTemplate (Missing template home/index, application/index with {:handlers=>[:erb, :builder], :formats=>[:html], :locale=>[:en, :en]}. Searched in:
174
+ * "/Users/gazay/code/spike/test/dummy/app/views"
175
+ ):
176
+
177
+
178
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.5ms)
179
+  (0.1ms) select sqlite_version(*)
180
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
181
+  (0.0ms) PRAGMA index_list("schema_migrations")
182
+  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
183
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
184
+ Migrating to CreatePosts (20111022073857)
185
+  (0.4ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "body" integer, "created_at" datetime, "updated_at" datetime)
186
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111022073857')
187
+  (0.3ms) select sqlite_version(*)
188
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
189
+  (0.0ms) PRAGMA index_list("posts")
190
+
191
+
192
+ Started GET "/" for 127.0.0.1 at 2011-10-22 14:41:34 +0700
193
+
194
+ ActionController::RoutingError (No route matches [GET] "/"):
195
+
196
+
197
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (3.5ms)
198
+
199
+
200
+ Started GET "/" for 127.0.0.1 at 2011-10-22 14:41:54 +0700
201
+ Processing by HomeController#index as HTML
202
+ Completed 500 Internal Server Error in 2ms
203
+
204
+ NoMethodError (undefined method `all' for Post:Class):
205
+ app/controllers/home_controller.rb:5:in `index'
206
+
207
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
208
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
209
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (5.9ms)
210
+
211
+
212
+ Started GET "/" for 127.0.0.1 at 2011-10-22 14:42:18 +0700
213
+ Processing by HomeController#index as HTML
214
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
215
+ Rendered home/index.html.erb within layouts/application (0.4ms)
216
+ Compiled application.css (1ms) (pid 8780)
217
+ Compiled application.js (3ms) (pid 8780)
218
+ Compiled jquery.js (4ms) (pid 8780)
219
+ Compiled jquery_ujs.js (1ms) (pid 8780)
220
+ Completed 200 OK in 148ms (Views: 87.5ms | ActiveRecord: 0.7ms)
221
+
222
+
223
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-22 14:42:18 +0700
224
+ Served asset /application.css - 200 OK (0ms)
225
+
226
+
227
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-22 14:42:18 +0700
228
+ Served asset /jquery.js - 200 OK (6ms)
229
+
230
+
231
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-22 14:42:18 +0700
232
+ Served asset /jquery_ujs.js - 200 OK (14ms)
233
+
234
+
235
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-22 14:42:18 +0700
236
+ Served asset /application.js - 200 OK (0ms)
237
+
238
+
239
+ Started GET "/" for 127.0.0.1 at 2011-10-22 14:43:38 +0700
240
+ Processing by HomeController#index as HTML
241
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
242
+ Rendered home/index.html.erb within layouts/application (0.1ms)
243
+ Completed 200 OK in 11ms (Views: 5.7ms | ActiveRecord: 0.7ms)
244
+
245
+
246
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-22 14:43:38 +0700
247
+ Served asset /application.css - 304 Not Modified (0ms)
248
+
249
+
250
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-22 14:43:38 +0700
251
+ Served asset /jquery.js - 304 Not Modified (0ms)
252
+
253
+
254
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-22 14:43:38 +0700
255
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
256
+
257
+
258
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-22 14:43:38 +0700
259
+ Served asset /application.js - 304 Not Modified (0ms)
260
+
261
+
262
+ Started GET "/" for 127.0.0.1 at 2011-10-22 14:58:00 +0700
263
+ Processing by HomeController#index as HTML
264
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
265
+ Rendered home/index.html.erb within layouts/application (0.1ms)
266
+ Completed 200 OK in 13ms (Views: 6.2ms | ActiveRecord: 0.7ms)
267
+
268
+
269
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-22 14:58:00 +0700
270
+ Served asset /application.css - 304 Not Modified (0ms)
271
+
272
+
273
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-22 14:58:00 +0700
274
+ Served asset /jquery.js - 304 Not Modified (0ms)
275
+
276
+
277
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-22 14:58:00 +0700
278
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
279
+
280
+
281
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-22 14:58:00 +0700
282
+ Served asset /application.js - 304 Not Modified (0ms)
283
+
284
+
285
+ Started GET "/" for 127.0.0.1 at 2011-10-22 14:58:17 +0700
286
+ Processing by HomeController#index as HTML
287
+ Rendered home/index.html.erb within layouts/application (7.3ms)
288
+ Completed 500 Internal Server Error in 12ms
289
+
290
+ ActionView::Template::Error (You have a nil object when you didn't expect it!
291
+ You might have expected an instance of Array.
292
+ The error occurred while evaluating nil.size):
293
+ 1: <h1>Hello!</h1>
294
+ 2: <%= @posts.size %>
295
+ app/views/home/index.html.erb:2:in `_app_views_home_index_html_erb__91327435345163357_2154931020'
296
+
297
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
298
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
299
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.1ms)
300
+
301
+
302
+ Started GET "/" for 127.0.0.1 at 2011-10-22 15:01:07 +0700
303
+ Processing by HomeController#index as HTML
304
+ Rendered home/index.html.erb within layouts/application (0.7ms)
305
+ Completed 500 Internal Server Error in 5ms
306
+
307
+ ActionView::Template::Error (You have a nil object when you didn't expect it!
308
+ You might have expected an instance of Array.
309
+ The error occurred while evaluating nil.size):
310
+ 1: <h1>Hello!</h1>
311
+ 2: <%= @posts.size %>
312
+ app/views/home/index.html.erb:2:in `_app_views_home_index_html_erb__91327435345163357_2154931020'
313
+
314
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
315
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
316
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.0ms)
317
+
318
+
319
+ Started GET "/" for 127.0.0.1 at 2011-10-22 15:01:09 +0700
320
+ Processing by HomeController#index as HTML
321
+ Rendered home/index.html.erb within layouts/application (0.6ms)
322
+ Completed 500 Internal Server Error in 6ms
323
+
324
+ ActionView::Template::Error (You have a nil object when you didn't expect it!
325
+ You might have expected an instance of Array.
326
+ The error occurred while evaluating nil.size):
327
+ 1: <h1>Hello!</h1>
328
+ 2: <%= @posts.size %>
329
+ app/views/home/index.html.erb:2:in `_app_views_home_index_html_erb__91327435345163357_2154931020'
330
+
331
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
332
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
333
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.2ms)
334
+
335
+
336
+ Started GET "/" for 127.0.0.1 at 2011-10-22 15:01:33 +0700
337
+ Processing by HomeController#index as HTML
338
+ posts - []
339
+ Rendered home/index.html.erb within layouts/application (0.6ms)
340
+ Completed 500 Internal Server Error in 7ms
341
+
342
+ ActionView::Template::Error (You have a nil object when you didn't expect it!
343
+ You might have expected an instance of Array.
344
+ The error occurred while evaluating nil.size):
345
+ 1: <h1>Hello!</h1>
346
+ 2: <%= @posts.size %>
347
+ app/views/home/index.html.erb:2:in `_app_views_home_index_html_erb__91327435345163357_2154931020'
348
+
349
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
350
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
351
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.2ms)
352
+
353
+
354
+ Started GET "/" for 127.0.0.1 at 2011-10-22 15:01:54 +0700
355
+ Processing by HomeController#index as HTML
356
+ Completed 500 Internal Server Error in 1ms
357
+
358
+ NoMethodError (undefined method `+' for :posts:Symbol):
359
+ app/controllers/home_controller.rb:5:in `index'
360
+
361
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
362
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
363
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.4ms)
364
+
365
+
366
+ Started GET "/" for 127.0.0.1 at 2011-10-22 15:02:27 +0700
367
+ Processing by HomeController#index as HTML
368
+ Completed 500 Internal Server Error in 0ms
369
+
370
+ NoMethodError (undefined method `+' for :posts:Symbol):
371
+ app/controllers/home_controller.rb:5:in `index'
372
+
373
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
374
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
375
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (5.6ms)
376
+
377
+
378
+ Started GET "/" for 127.0.0.1 at 2011-10-22 15:02:30 +0700
379
+ Processing by HomeController#index as HTML
380
+ Completed 500 Internal Server Error in 1ms
381
+
382
+ NoMethodError (undefined method `+' for :posts:Symbol):
383
+ app/controllers/home_controller.rb:5:in `index'
384
+
385
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
386
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
387
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (4.9ms)
388
+
389
+
390
+ Started GET "/" for 127.0.0.1 at 2011-10-22 15:02:40 +0700
391
+ Processing by HomeController#index as HTML
392
+
393
+ Rendered home/index.html.erb within layouts/application (8.3ms)
394
+ Completed 500 Internal Server Error in 43ms
395
+
396
+ ActionView::Template::Error (You have a nil object when you didn't expect it!
397
+ You might have expected an instance of Array.
398
+ The error occurred while evaluating nil.size):
399
+ 1: <h1>Hello!</h1>
400
+ 2: <%= @posts.size %>
401
+ app/views/home/index.html.erb:2:in `_app_views_home_index_html_erb__1174637766879414619_2155553900'
402
+
403
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
404
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
405
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.0ms)
406
+
407
+
408
+ Started GET "/" for 127.0.0.1 at 2011-10-22 15:02:59 +0700
409
+ Processing by HomeController#index as HTML
410
+ Completed 500 Internal Server Error in 1ms
411
+
412
+ TypeError (can't convert nil into String):
413
+ app/controllers/home_controller.rb:5:in `+'
414
+ app/controllers/home_controller.rb:5:in `index'
415
+
416
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
417
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
418
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (5.1ms)
419
+
420
+
421
+ Started GET "/" for 127.0.0.1 at 2011-10-22 15:03:41 +0700
422
+ Processing by HomeController#index as HTML
423
+ Completed 500 Internal Server Error in 1ms
424
+
425
+ TypeError (can't convert nil into String):
426
+ app/controllers/home_controller.rb:5:in `+'
427
+ app/controllers/home_controller.rb:5:in `index'
428
+
429
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
430
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
431
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.2ms)
432
+
433
+
434
+ Started GET "/" for 127.0.0.1 at 2011-10-22 15:03:49 +0700
435
+ Processing by HomeController#index as HTML
436
+ Completed 500 Internal Server Error in 1ms
437
+
438
+ TypeError (can't convert nil into String):
439
+ app/controllers/home_controller.rb:5:in `+'
440
+ app/controllers/home_controller.rb:5:in `index'
441
+
442
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
443
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
444
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (4.7ms)
445
+
446
+
447
+ Started GET "/" for 127.0.0.1 at 2011-10-22 15:04:31 +0700
448
+ Processing by HomeController#index as HTML
449
+ Completed 500 Internal Server Error in 1ms
450
+
451
+ TypeError (can't convert nil into String):
452
+ app/controllers/home_controller.rb:5:in `+'
453
+ app/controllers/home_controller.rb:5:in `index'
454
+
455
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
456
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
457
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.1ms)
458
+
459
+
460
+ Started GET "/" for 127.0.0.1 at 2011-10-22 15:04:35 +0700
461
+ Processing by HomeController#index as HTML
462
+ Completed 500 Internal Server Error in 1ms
463
+
464
+ TypeError (can't convert nil into String):
465
+ app/controllers/home_controller.rb:5:in `+'
466
+ app/controllers/home_controller.rb:5:in `index'
467
+
468
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
469
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
470
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (4.8ms)
471
+
472
+
473
+ Started GET "/" for 127.0.0.1 at 2011-10-22 15:05:15 +0700
474
+ Processing by HomeController#index as HTML
475
+ posts
476
+ Completed 500 Internal Server Error in 1ms
477
+
478
+ TypeError (can't convert nil into String):
479
+ app/controllers/home_controller.rb:5:in `+'
480
+ app/controllers/home_controller.rb:5:in `index'
481
+
482
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms)
483
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
484
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.4ms)
485
+
486
+
487
+ Started GET "/" for 127.0.0.1 at 2011-10-22 15:05:59 +0700
488
+ Processing by HomeController#index as HTML
489
+ Completed 500 Internal Server Error in 1ms
490
+
491
+ TypeError (can't convert nil into String):
492
+ app/controllers/home_controller.rb:5:in `+'
493
+ app/controllers/home_controller.rb:5:in `index'
494
+
495
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
496
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
497
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.9ms)
498
+
499
+
500
+ Started GET "/" for 127.0.0.1 at 2011-10-22 15:07:10 +0700
501
+ Processing by HomeController#index as HTML
502
+ Completed 500 Internal Server Error in 1ms
503
+
504
+ TypeError (can't convert nil into String):
505
+ app/controllers/home_controller.rb:5:in `+'
506
+ app/controllers/home_controller.rb:5:in `index'
507
+
508
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
509
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
510
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (5.3ms)
511
+
512
+
513
+ Started GET "/" for 127.0.0.1 at 2011-10-22 15:07:18 +0700
514
+ Processing by HomeController#index as HTML
515
+ Completed 500 Internal Server Error in 1ms
516
+
517
+ TypeError (can't convert nil into String):
518
+ app/controllers/home_controller.rb:5:in `+'
519
+ app/controllers/home_controller.rb:5:in `index'
520
+
521
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
522
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
523
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (8.0ms)
524
+
525
+
526
+ Started GET "/" for 127.0.0.1 at 2011-10-22 15:08:49 +0700
527
+ Processing by HomeController#index as HTML
528
+ posts
529
+ Completed 500 Internal Server Error in 1ms
530
+
531
+ TypeError (can't convert nil into String):
532
+ app/controllers/home_controller.rb:5:in `+'
533
+ app/controllers/home_controller.rb:5:in `index'
534
+
535
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
536
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
537
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.7ms)
538
+
539
+
540
+ Started GET "/" for 127.0.0.1 at 2011-10-22 15:10:01 +0700
541
+ Processing by HomeController#index as HTML
542
+ posts
543
+
544
+ true
545
+ Completed 500 Internal Server Error in 1ms
546
+
547
+ TypeError (can't convert nil into String):
548
+ app/controllers/home_controller.rb:5:in `+'
549
+ app/controllers/home_controller.rb:5:in `index'
550
+
551
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.3ms)
552
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
553
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.1ms)
554
+
555
+
556
+ Started GET "/" for 127.0.0.1 at 2011-10-22 15:11:00 +0700
557
+ Processing by HomeController#index as HTML
558
+ posts
559
+
560
+ true
561
+ ======> posts
562
+ Rendered home/index.html.erb within layouts/application (8.7ms)
563
+ Completed 500 Internal Server Error in 47ms
564
+
565
+ ActionView::Template::Error (You have a nil object when you didn't expect it!
566
+ You might have expected an instance of Array.
567
+ The error occurred while evaluating nil.size):
568
+ 1: <h1>Hello!</h1>
569
+ 2: <%= @posts.size %>
570
+ app/views/home/index.html.erb:2:in `_app_views_home_index_html_erb___4035498842492153884_2161785540'
571
+
572
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
573
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
574
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.1ms)
575
+
576
+
577
+ Started GET "/" for 127.0.0.1 at 2011-10-22 15:29:01 +0700
578
+ Processing by HomeController#index as HTML
579
+ posts
580
+
581
+ true
582
+ Completed 500 Internal Server Error in 1ms
583
+
584
+ ArgumentError (wrong number of arguments (0 for 1..4)):
585
+ app/controllers/home_controller.rb:5:in `index'
586
+
587
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
588
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
589
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.2ms)
590
+
591
+
592
+ Started GET "/" for 127.0.0.1 at 2011-10-22 15:30:40 +0700
593
+ Processing by HomeController#index as HTML
594
+ posts
595
+
596
+ true
597
+ Completed 500 Internal Server Error in 1ms
598
+
599
+ ArgumentError (wrong number of arguments (0 for 1..4)):
600
+ app/controllers/home_controller.rb:5:in `index'
601
+
602
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
603
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.5ms)
604
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (5.2ms)
605
+
606
+
607
+ Started GET "/" for 127.0.0.1 at 2011-10-22 15:33:51 +0700
608
+ Processing by HomeController#index as HTML
609
+ posts
610
+ model_names include post
611
+ ======> post
612
+ Rendered home/index.html.erb within layouts/application (9.9ms)
613
+ Completed 500 Internal Server Error in 44ms
614
+
615
+ ActionView::Template::Error (You have a nil object when you didn't expect it!
616
+ You might have expected an instance of Array.
617
+ The error occurred while evaluating nil.size):
618
+ 1: <h1>Hello!</h1>
619
+ 2: <%= @posts.size %>
620
+ app/views/home/index.html.erb:2:in `_app_views_home_index_html_erb___2310517448443136653_2157930320'
621
+
622
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
623
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
624
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.9ms)
625
+
626
+
627
+ Started GET "/" for 127.0.0.1 at 2011-10-22 15:34:10 +0700
628
+
629
+ SyntaxError (/Users/gazay/code/spike/test/dummy/app/controllers/home_controller.rb:5: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '('):
630
+
631
+
632
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
633
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
634
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (5.1ms)
635
+
636
+
637
+ Started GET "/" for 127.0.0.1 at 2011-10-22 15:34:30 +0700
638
+ Processing by HomeController#index as HTML
639
+ posts
640
+ model_names include post
641
+ all
642
+ which_names include all
643
+ Completed 500 Internal Server Error in 1ms
644
+
645
+ TypeError (can't convert Array into String):
646
+ app/controllers/home_controller.rb:5:in `+'
647
+ app/controllers/home_controller.rb:5:in `index'
648
+
649
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
650
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
651
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (5.2ms)
652
+
653
+
654
+ Started GET "/" for 127.0.0.1 at 2011-10-22 15:34:36 +0700
655
+ Processing by HomeController#index as HTML
656
+ posts
657
+ model_names include post
658
+ all
659
+ which_names include all
660
+ ======> ["all", "post"]
661
+ Rendered home/index.html.erb within layouts/application (0.6ms)
662
+ Completed 500 Internal Server Error in 5ms
663
+
664
+ ActionView::Template::Error (You have a nil object when you didn't expect it!
665
+ You might have expected an instance of Array.
666
+ The error occurred while evaluating nil.size):
667
+ 1: <h1>Hello!</h1>
668
+ 2: <%= @posts.size %>
669
+ app/views/home/index.html.erb:2:in `_app_views_home_index_html_erb___2310517448443136653_2157930320'
670
+
671
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms)
672
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
673
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.7ms)
674
+
675
+
676
+ Started GET "/" for 127.0.0.1 at 2011-10-22 15:34:51 +0700
677
+ Processing by HomeController#index as HTML
678
+ posts
679
+ model_names include post
680
+ all
681
+ which_names include all
682
+ find
683
+ methods_names include find
684
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "all"]]
685
+ Completed 404 Not Found in 28ms
686
+
687
+ ActiveRecord::RecordNotFound (Couldn't find Post with id=all):
688
+ app/controllers/home_controller.rb:5:in `index'
689
+
690
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
691
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
692
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (5.1ms)
693
+
694
+
695
+ Started GET "/" for 127.0.0.1 at 2011-10-22 15:35:43 +0700
696
+ Processing by HomeController#index as HTML
697
+ posts
698
+ model_names include post
699
+ all
700
+ which_names include all
701
+ find
702
+ methods_names include find
703
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
704
+ ======> [#<Post id: 1, title: "title", body: 0, created_at: "2011-10-22 07:43:34", updated_at: "2011-10-22 07:43:34">]
705
+ Rendered home/index.html.erb within layouts/application (2.6ms)
706
+ Completed 200 OK in 90ms (Views: 28.8ms | ActiveRecord: 1.3ms)
707
+
708
+
709
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-22 15:35:44 +0700
710
+ Served asset /jquery.js - 304 Not Modified (7ms)
711
+
712
+
713
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-22 15:35:44 +0700
714
+ Served asset /application.css - 304 Not Modified (0ms)
715
+
716
+
717
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-22 15:35:44 +0700
718
+ Served asset /application.js - 304 Not Modified (0ms)
719
+
720
+
721
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-22 15:35:44 +0700
722
+ Served asset /jquery_ujs.js - 304 Not Modified (3ms)
723
+
724
+
725
+ Started GET "/" for 127.0.0.1 at 2011-10-22 15:36:01 +0700
726
+ Processing by HomeController#index as HTML
727
+ posts
728
+ model_names include post
729
+ all
730
+ which_names include all
731
+ find
732
+ methods_names include find
733
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
734
+ Rendered home/index.html.erb within layouts/application (0.1ms)
735
+ Completed 200 OK in 12ms (Views: 5.9ms | ActiveRecord: 0.7ms)
736
+
737
+
738
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-22 15:36:01 +0700
739
+ Served asset /application.css - 304 Not Modified (0ms)
740
+
741
+
742
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-22 15:36:01 +0700
743
+ Served asset /jquery.js - 304 Not Modified (0ms)
744
+
745
+
746
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-22 15:36:01 +0700
747
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
748
+
749
+
750
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-22 15:36:01 +0700
751
+ Served asset /application.js - 304 Not Modified (0ms)
752
+
753
+
754
+ Started GET "/" for 127.0.0.1 at 2011-10-22 15:36:32 +0700
755
+ Processing by HomeController#index as HTML
756
+ posts
757
+ model_names include post
758
+ one
759
+ which_names include one
760
+ find
761
+ methods_names include find
762
+ Post Load (35.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", :one]]
763
+ Completed 404 Not Found in 43ms
764
+
765
+ ActiveRecord::RecordNotFound (Couldn't find Post with id=one):
766
+ app/controllers/home_controller.rb:5:in `index'
767
+
768
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms)
769
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
770
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (5.0ms)
771
+
772
+
773
+ Started GET "/" for 127.0.0.1 at 2011-10-22 15:36:38 +0700
774
+ Processing by HomeController#index as HTML
775
+ posts
776
+ model_names include post
777
+ any
778
+ which_names include any
779
+ find
780
+ methods_names include find
781
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", :any]]
782
+ Completed 404 Not Found in 7ms
783
+
784
+ ActiveRecord::RecordNotFound (Couldn't find Post with id=any):
785
+ app/controllers/home_controller.rb:5:in `index'
786
+
787
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
788
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
789
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (5.0ms)
790
+
791
+
792
+ Started GET "/" for 127.0.0.1 at 2011-10-22 15:36:41 +0700
793
+ Processing by HomeController#index as HTML
794
+ posts
795
+ model_names include post
796
+ all
797
+ which_names include all
798
+ find
799
+ methods_names include find
800
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
801
+ Rendered home/index.html.erb within layouts/application (0.1ms)
802
+ Completed 200 OK in 11ms (Views: 5.6ms | ActiveRecord: 0.7ms)
803
+
804
+
805
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-22 15:36:41 +0700
806
+ Served asset /application.css - 304 Not Modified (0ms)
807
+
808
+
809
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-22 15:36:41 +0700
810
+ Served asset /jquery.js - 304 Not Modified (0ms)
811
+
812
+
813
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-22 15:36:41 +0700
814
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
815
+
816
+
817
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-22 15:36:41 +0700
818
+ Served asset /application.js - 304 Not Modified (0ms)
819
+
820
+
821
+ Started GET "/" for 127.0.0.1 at 2011-10-22 15:37:20 +0700
822
+ Processing by HomeController#index as HTML
823
+ post
824
+ first
825
+ find
826
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" LIMIT 1
827
+ Rendered home/index.html.erb within layouts/application (7.5ms)
828
+ Completed 500 Internal Server Error in 71ms
829
+
830
+ ActionView::Template::Error (You have a nil object when you didn't expect it!
831
+ You might have expected an instance of Array.
832
+ The error occurred while evaluating nil.size):
833
+ 1: <h1>Hello!</h1>
834
+ 2: <%= @posts.size %>
835
+ app/views/home/index.html.erb:2:in `_app_views_home_index_html_erb___4210169171859734336_2162169020'
836
+
837
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
838
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
839
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.1ms)
840
+
841
+
842
+ Started GET "/" for 127.0.0.1 at 2011-10-22 15:38:21 +0700
843
+ Processing by HomeController#index as HTML
844
+ post
845
+ first
846
+ find
847
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" LIMIT 1
848
+ Rendered home/index.html.erb within layouts/application (7.1ms)
849
+ Completed 200 OK in 30ms (Views: 23.6ms | ActiveRecord: 0.7ms)
850
+
851
+
852
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-22 15:38:21 +0700
853
+ Served asset /application.css - 304 Not Modified (0ms)
854
+
855
+
856
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-22 15:38:21 +0700
857
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
858
+
859
+
860
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-22 15:38:21 +0700
861
+ Served asset /application.js - 304 Not Modified (0ms)
862
+
863
+
864
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-22 15:38:21 +0700
865
+ Served asset /jquery.js - 304 Not Modified (8ms)
866
+
867
+
868
+ Started GET "/" for 127.0.0.1 at 2011-10-22 15:38:47 +0700
869
+ Processing by HomeController#index as HTML
870
+ post
871
+ first
872
+ find
873
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" LIMIT 1
874
+ Rendered home/index.html.erb within layouts/application (6.1ms)
875
+ Completed 200 OK in 19ms (Views: 13.1ms | ActiveRecord: 0.8ms)
876
+
877
+
878
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-22 15:38:47 +0700
879
+ Served asset /application.css - 304 Not Modified (0ms)
880
+
881
+
882
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-22 15:38:47 +0700
883
+ Served asset /jquery.js - 304 Not Modified (0ms)
884
+
885
+
886
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-22 15:38:47 +0700
887
+ Served asset /application.js - 304 Not Modified (0ms)
888
+
889
+
890
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-22 15:38:47 +0700
891
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
892
+
893
+
894
+ Started GET "/" for 127.0.0.1 at 2011-10-22 15:38:55 +0700
895
+ Processing by HomeController#index as HTML
896
+ post
897
+ first
898
+ find
899
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" LIMIT 1
900
+ posts
901
+ all
902
+ find
903
+ Rendered home/index.html.erb within layouts/application (5.9ms)
904
+ Completed 200 OK in 18ms (Views: 12.6ms | ActiveRecord: 0.6ms)
905
+
906
+
907
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-22 15:38:55 +0700
908
+ Served asset /application.css - 304 Not Modified (0ms)
909
+
910
+
911
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-22 15:38:55 +0700
912
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
913
+
914
+
915
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-22 15:38:55 +0700
916
+ Served asset /jquery.js - 304 Not Modified (0ms)
917
+
918
+
919
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-22 15:38:55 +0700
920
+ Served asset /application.js - 304 Not Modified (0ms)
921
+
922
+
923
+ Started GET "/" for 127.0.0.1 at 2011-10-22 15:39:06 +0700
924
+ Processing by HomeController#index as HTML
925
+ post
926
+ first
927
+ find
928
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" LIMIT 1
929
+ posts
930
+ all
931
+ delete
932
+ Rendered home/index.html.erb within layouts/application (5.7ms)
933
+ Completed 200 OK in 48ms (Views: 41.3ms | ActiveRecord: 0.8ms)
934
+
935
+
936
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-22 15:39:06 +0700
937
+ Served asset /application.js - 304 Not Modified (0ms)
938
+
939
+
940
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-22 15:39:06 +0700
941
+ Served asset /application.css - 304 Not Modified (0ms)
942
+
943
+
944
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-22 15:39:06 +0700
945
+ Served asset /jquery.js - 304 Not Modified (0ms)
946
+
947
+
948
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-22 15:39:06 +0700
949
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
950
+ DEPRECATION WARNING: class_inheritable_attribute is deprecated, please use class_attribute method instead. Notice their behavior are slightly different, so refer to class_attribute documentation first. (called from irb_binding at (irb):156)
951
+ DEPRECATION WARNING: class_inheritable_attribute is deprecated, please use class_attribute method instead. Notice their behavior are slightly different, so refer to class_attribute documentation first. (called from irb_binding at (irb):157)
952
+ DEPRECATION WARNING: class_inheritable_attribute is deprecated, please use class_attribute method instead. Notice their behavior are slightly different, so refer to class_attribute documentation first. (called from irb_binding at (irb):157)
953
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
954
+ Migrating to CreatePosts (20111022073857)
955
+ Migrating to CreateNotices (20111022090628)
956
+  (0.1ms) select sqlite_version(*)
957
+  (0.5ms) CREATE TABLE "notices" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "body" integer, "created_at" datetime, "updated_at" datetime) 
958
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111022090628')
959
+  (0.4ms) select sqlite_version(*)
960
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
961
+  (0.0ms) PRAGMA index_list("notices")
962
+  (0.0ms) PRAGMA index_list("posts")
963
+
964
+
965
+ Started GET "/" for 127.0.0.1 at 2011-10-22 16:09:08 +0700
966
+ Processing by HomeController#index as HTML
967
+ post
968
+ first
969
+ find
970
+ Completed 500 Internal Server Error in 1ms
971
+
972
+ TypeError (can't convert nil into String):
973
+ app/controllers/home_controller.rb:5:in `index'
974
+
975
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms)
976
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
977
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.8ms)
978
+
979
+
980
+ Started GET "/" for 127.0.0.1 at 2011-10-22 16:10:27 +0700
981
+ Processing by HomeController#index as HTML
982
+ -------- []
983
+ -------- []
984
+ -------- []
985
+ Completed 500 Internal Server Error in 1ms
986
+
987
+ TypeError (can't convert nil into String):
988
+ app/controllers/home_controller.rb:5:in `index'
989
+
990
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
991
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
992
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.2ms)
993
+
994
+
995
+ Started GET "/" for 127.0.0.1 at 2011-10-22 16:12:04 +0700
996
+ Processing by HomeController#index as HTML
997
+ -------- []
998
+ -------- []
999
+ -------- []
1000
+ Completed 500 Internal Server Error in 1ms
1001
+
1002
+ TypeError (can't convert nil into String):
1003
+ app/controllers/home_controller.rb:5:in `index'
1004
+
1005
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
1006
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
1007
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.3ms)
1008
+
1009
+
1010
+ Started GET "/" for 127.0.0.1 at 2011-10-22 16:12:45 +0700
1011
+ Processing by HomeController#index as HTML
1012
+ -------- []
1013
+ -------- []
1014
+ -------- []
1015
+ Completed 500 Internal Server Error in 1ms
1016
+
1017
+ TypeError (can't convert nil into String):
1018
+ app/controllers/home_controller.rb:5:in `index'
1019
+
1020
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms)
1021
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
1022
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (5.0ms)
1023
+
1024
+
1025
+ Started GET "/" for 127.0.0.1 at 2011-10-22 16:12:53 +0700
1026
+ Processing by HomeController#index as HTML
1027
+ -------- ["post"]
1028
+ -------- ["post"]
1029
+ -------- ["post"]
1030
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" LIMIT 1
1031
+ -------- ["post"]
1032
+ -------- ["post"]
1033
+ -------- ["post"]
1034
+ Rendered home/index.html.erb within layouts/application (9.6ms)
1035
+ Completed 200 OK in 90ms (Views: 36.9ms | ActiveRecord: 0.9ms)
1036
+
1037
+
1038
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-22 16:12:53 +0700
1039
+ Served asset /jquery.js - 304 Not Modified (2ms)
1040
+
1041
+
1042
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-22 16:12:53 +0700
1043
+ Served asset /application.css - 304 Not Modified (0ms)
1044
+
1045
+
1046
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-22 16:12:53 +0700
1047
+ Served asset /jquery_ujs.js - 304 Not Modified (12ms)
1048
+
1049
+
1050
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-22 16:12:53 +0700
1051
+ Served asset /application.js - 304 Not Modified (0ms)
1052
+
1053
+
1054
+ Started GET "/" for 127.0.0.1 at 2011-10-22 16:21:51 +0700
1055
+ Processing by HomeController#index as HTML
1056
+ -------- ["post"]
1057
+ -------- ["post"]
1058
+ -------- ["post"]
1059
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" LIMIT 1
1060
+ -------- ["post"]
1061
+ -------- ["post"]
1062
+ -------- ["post"]
1063
+ SQL (0.9ms) DELETE FROM "posts" WHERE "posts"."id" = 'all'
1064
+ Rendered home/index.html.erb within layouts/application (11.7ms)
1065
+ Completed 200 OK in 110ms (Views: 42.5ms | ActiveRecord: 1.9ms)
1066
+
1067
+
1068
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-22 16:21:52 +0700
1069
+ Served asset /application.css - 304 Not Modified (0ms)
1070
+
1071
+
1072
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-22 16:21:52 +0700
1073
+ Served asset /jquery.js - 304 Not Modified (3ms)
1074
+
1075
+
1076
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-22 16:21:52 +0700
1077
+ Served asset /jquery_ujs.js - 304 Not Modified (4ms)
1078
+
1079
+
1080
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-22 16:21:52 +0700
1081
+ Served asset /application.js - 304 Not Modified (0ms)
1082
+
1083
+
1084
+ Started GET "/" for 127.0.0.1 at 2011-10-22 16:22:08 +0700
1085
+ Processing by HomeController#index as HTML
1086
+ -------- ["post"]
1087
+ -------- ["post"]
1088
+ -------- ["post"]
1089
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" LIMIT 1
1090
+ -------- ["post"]
1091
+ -------- ["post"]
1092
+ -------- ["post"]
1093
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1094
+ Rendered home/index.html.erb within layouts/application (33.6ms)
1095
+ Completed 200 OK in 46ms (Views: 39.6ms | ActiveRecord: 0.8ms)
1096
+
1097
+
1098
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-22 16:22:08 +0700
1099
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1100
+
1101
+
1102
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-22 16:22:08 +0700
1103
+ Served asset /jquery.js - 304 Not Modified (0ms)
1104
+
1105
+
1106
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-22 16:22:08 +0700
1107
+ Served asset /application.js - 304 Not Modified (0ms)
1108
+
1109
+
1110
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-22 16:22:08 +0700
1111
+ Served asset /application.css - 304 Not Modified (0ms)
1112
+
1113
+
1114
+ Started GET "/" for 127.0.0.1 at 2011-10-22 16:25:42 +0700
1115
+ Processing by HomeController#index as HTML
1116
+ -------- ["post"]
1117
+ -------- ["post"]
1118
+ -------- ["post"]
1119
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" LIMIT 1
1120
+ -------- ["post"]
1121
+ -------- ["post"]
1122
+ -------- ["post"]
1123
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1124
+ Rendered home/index.html.erb within layouts/application (5.5ms)
1125
+ Completed 200 OK in 18ms (Views: 11.7ms | ActiveRecord: 0.8ms)
1126
+
1127
+
1128
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-22 16:25:42 +0700
1129
+ Served asset /application.css - 304 Not Modified (0ms)
1130
+
1131
+
1132
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-22 16:25:42 +0700
1133
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1134
+
1135
+
1136
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-22 16:25:42 +0700
1137
+ Served asset /jquery.js - 304 Not Modified (0ms)
1138
+
1139
+
1140
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-22 16:25:42 +0700
1141
+ Served asset /application.js - 304 Not Modified (0ms)
1142
+
1143
+
1144
+ Started GET "/" for 127.0.0.1 at 2011-10-22 18:31:05 +0700
1145
+ Processing by HomeController#index as HTML
1146
+ -------- ["post"]
1147
+ -------- ["post"]
1148
+ -------- ["post"]
1149
+ Post Load (0.5ms) SELECT "posts".* FROM "posts" LIMIT 1
1150
+ -------- ["post"]
1151
+ -------- ["post"]
1152
+ -------- ["post"]
1153
+ Post Load (0.4ms) SELECT "posts".* FROM "posts"
1154
+ Rendered home/index.html.erb within layouts/application (23.9ms)
1155
+ Completed 200 OK in 220ms (Views: 132.8ms | ActiveRecord: 5.3ms)
1156
+
1157
+
1158
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-22 18:31:06 +0700
1159
+ Served asset /application.css - 304 Not Modified (0ms)
1160
+
1161
+
1162
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-22 18:31:06 +0700
1163
+ Served asset /jquery_ujs.js - 304 Not Modified (5ms)
1164
+
1165
+
1166
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-22 18:31:06 +0700
1167
+ Served asset /jquery.js - 304 Not Modified (0ms)
1168
+
1169
+
1170
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-22 18:31:06 +0700
1171
+ Served asset /application.js - 304 Not Modified (0ms)
1172
+
1173
+
1174
+ Started GET "/" for 127.0.0.1 at 2011-10-22 18:38:51 +0700
1175
+ Processing by HomeController#index as HTML
1176
+ -------- ["post"]
1177
+ -------- ["post"]
1178
+ -------- ["post"]
1179
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" LIMIT 1
1180
+ -------- ["post"]
1181
+ -------- ["post"]
1182
+ -------- ["post"]
1183
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1184
+ -------- ["post"]
1185
+ !!!!!!!!!+++++++++++!!!!!!!!!! id ---- []
1186
+ Rendered home/index.html.erb within layouts/application (12.3ms)
1187
+ Completed 200 OK in 131ms (Views: 71.9ms | ActiveRecord: 1.2ms)
1188
+
1189
+
1190
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-22 18:38:51 +0700
1191
+ Served asset /application.css - 304 Not Modified (0ms)
1192
+
1193
+
1194
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-22 18:38:51 +0700
1195
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
1196
+
1197
+
1198
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-22 18:38:51 +0700
1199
+ Served asset /application.js - 304 Not Modified (0ms)
1200
+
1201
+
1202
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-22 18:38:51 +0700
1203
+ Served asset /jquery.js - 304 Not Modified (2ms)
1204
+
1205
+
1206
+ Started GET "/" for 127.0.0.1 at 2011-10-22 18:39:08 +0700
1207
+ Processing by HomeController#index as HTML
1208
+ -------- ["post"]
1209
+ -------- ["post"]
1210
+ -------- ["post"]
1211
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" LIMIT 1
1212
+ -------- ["post"]
1213
+ !!!!!!!!!+++++++++++!!!!!!!!!! id ---- [15]
1214
+ -------- ["post"]
1215
+ !!!!!!!!!+++++++++++!!!!!!!!!! with ---- ["!!!!!!!!!+++++++++++!!!!!!!!!! id ---- [15]\n"]
1216
+ -------- ["post"]
1217
+ -------- ["post"]
1218
+ -------- ["post"]
1219
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1220
+ Rendered home/index.html.erb within layouts/application (5.6ms)
1221
+ Completed 200 OK in 19ms (Views: 11.6ms | ActiveRecord: 0.9ms)
1222
+
1223
+
1224
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-22 18:39:08 +0700
1225
+ Served asset /application.css - 304 Not Modified (0ms)
1226
+
1227
+
1228
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-22 18:39:08 +0700
1229
+ Served asset /jquery.js - 304 Not Modified (0ms)
1230
+
1231
+
1232
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-22 18:39:08 +0700
1233
+ Served asset /application.js - 304 Not Modified (0ms)
1234
+
1235
+
1236
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-22 18:39:08 +0700
1237
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1238
+
1239
+
1240
+ Started GET "/" for 127.0.0.1 at 2011-10-22 18:56:09 +0700
1241
+ Processing by HomeController#index as HTML
1242
+ -------- []
1243
+ !!!!!!!!!+++++++++++!!!!!!!!!! post ---- []
1244
+ -------- []
1245
+ -------- []
1246
+ this one you looking for: [["first", ["!!!!!!!!!+++++++++++!!!!!!!!!! post ---- []\n"]]]
1247
+ Completed 500 Internal Server Error in 2ms
1248
+
1249
+ TypeError (can't convert Array into String):
1250
+ app/controllers/home_controller.rb:5:in `index'
1251
+
1252
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (7.9ms)
1253
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
1254
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (17.4ms)
1255
+
1256
+
1257
+ Started GET "/" for 127.0.0.1 at 2011-10-22 19:00:02 +0700
1258
+ Processing by HomeController#index as HTML
1259
+ ------>>>> []
1260
+ -------- []
1261
+ ------>>>> []
1262
+ ------>>>> []
1263
+ ------>>>> []
1264
+ !!!!!!!!!+++++++++++!!!!!!!!!! post ---- []
1265
+ ------>>>> []
1266
+ -------- []
1267
+ ------>>>> []
1268
+ ------>>>> []
1269
+ ------>>>> []
1270
+ -------- []
1271
+ ------>>>> []
1272
+ ------>>>> []
1273
+ this one you looking for: [["first", ["!!!!!!!!!+++++++++++!!!!!!!!!! post ---- []\n"]]]
1274
+ Completed 500 Internal Server Error in 1ms
1275
+
1276
+ TypeError (can't convert Array into String):
1277
+ app/controllers/home_controller.rb:5:in `index'
1278
+
1279
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
1280
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
1281
+ Rendered /Users/gazay/.rvm/gems/ruby-1.9.3-head/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.4ms)
1282
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1283
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1284
+ Migrating to CreateNotices (20111022090628)
1285
+  (0.0ms) select sqlite_version(*)
1286
+  (1.0ms) DROP TABLE "notices"
1287
+  (0.1ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20111022090628'
1288
+  (0.3ms) select sqlite_version(*)
1289
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1290
+  (0.0ms) PRAGMA index_list("posts")
1291
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1292
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1293
+ Migrating to CreatePosts (20111022073857)
1294
+  (0.0ms) select sqlite_version(*)
1295
+  (0.7ms) DROP TABLE "posts"
1296
+  (0.1ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20111022073857'
1297
+  (0.3ms) select sqlite_version(*)
1298
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1299
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1300
+ Migrating to CreatePosts (20111022073857)
1301
+  (0.0ms) select sqlite_version(*)
1302
+  (0.5ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "body" varchar(255), "created_at" datetime, "updated_at" datetime) 
1303
+  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111022073857')
1304
+ Migrating to CreateNotices (20111022090628)
1305
+  (0.4ms) CREATE TABLE "notices" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "body" varchar(255), "created_at" datetime, "updated_at" datetime) 
1306
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111022090628')
1307
+  (0.3ms) select sqlite_version(*)
1308
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1309
+  (0.0ms) PRAGMA index_list("notices")
1310
+  (0.0ms) PRAGMA index_list("posts")
1311
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1312
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1313
+ Migrating to CreateNotices (20111022090628)
1314
+  (0.0ms) select sqlite_version(*)
1315
+  (0.7ms) DROP TABLE "notices"
1316
+  (0.1ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20111022090628'
1317
+  (0.4ms) select sqlite_version(*)
1318
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1319
+  (0.0ms) PRAGMA index_list("posts")
1320
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1321
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1322
+ Migrating to CreatePosts (20111022073857)
1323
+  (0.0ms) select sqlite_version(*)
1324
+  (0.7ms) DROP TABLE "posts"
1325
+  (0.1ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20111022073857'
1326
+  (0.2ms) select sqlite_version(*)
1327
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1328
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1329
+ Migrating to CreatePosts (20111022073857)
1330
+  (0.0ms) select sqlite_version(*)
1331
+  (0.5ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "body" text, "created_at" datetime, "updated_at" datetime) 
1332
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111022073857')
1333
+ Migrating to CreateNotices (20111022090628)
1334
+  (0.5ms) CREATE TABLE "notices" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "body" text, "created_at" datetime, "updated_at" datetime) 
1335
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111022090628')
1336
+  (0.3ms) select sqlite_version(*)
1337
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1338
+  (0.0ms) PRAGMA index_list("notices")
1339
+  (0.0ms) PRAGMA index_list("posts")