gara 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE +21 -0
- data/README.md +44 -0
- data/Rakefile +32 -0
- data/lib/gara.rb +8 -0
- data/lib/gara/delegator.rb +27 -0
- data/lib/gara/html5_emitter.rb +59 -0
- data/lib/gara/template/handler.rb +14 -0
- data/lib/gara/version.rb +3 -0
- data/lib/tasks/gara_tasks.rake +4 -0
- data/test/dummy/Rakefile +6 -0
- data/test/dummy/app/assets/javascripts/application.js +13 -0
- data/test/dummy/app/assets/stylesheets/application.css +15 -0
- data/test/dummy/app/controllers/application_controller.rb +5 -0
- data/test/dummy/app/controllers/hello_controller.rb +4 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/views/hello/show.html.gara +2 -0
- data/test/dummy/app/views/layouts/application.html.gara +14 -0
- data/test/dummy/bin/bundle +3 -0
- data/test/dummy/bin/rails +4 -0
- data/test/dummy/bin/rake +4 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/config/application.rb +26 -0
- data/test/dummy/config/boot.rb +5 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +37 -0
- data/test/dummy/config/environments/production.rb +82 -0
- data/test/dummy/config/environments/test.rb +39 -0
- data/test/dummy/config/initializers/assets.rb +8 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
- data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/dummy/config/initializers/inflections.rb +16 -0
- data/test/dummy/config/initializers/mime_types.rb +4 -0
- data/test/dummy/config/initializers/session_store.rb +3 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +23 -0
- data/test/dummy/config/routes.rb +4 -0
- data/test/dummy/config/secrets.yml +22 -0
- data/test/dummy/log/development.log +1595 -0
- data/test/dummy/log/test.log +1377 -0
- data/test/dummy/public/404.html +67 -0
- data/test/dummy/public/422.html +67 -0
- data/test/dummy/public/500.html +66 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/test/controllers/hello_controller_test.rb +9 -0
- data/test/dummy/test/helpers/hello_helper_test.rb +4 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/219e4ef52e71a2dd3142d36271626492 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/29331726baea36717bf28565c0be1881 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/4584795e7f513db14ffca10dab44759e +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/72a227156d935c44e2aad8718b3952fb +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/cfea650552ed221f83ea2c8fc3198c53 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/e27275f4020fd1fc40de79a1e5db4c96 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/test/gara_test.rb +7 -0
- data/test/handler_test.rb +80 -0
- data/test/test_helper.rb +15 -0
- metadata +211 -0
@@ -0,0 +1,39 @@
|
|
1
|
+
Rails.application.configure do
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb.
|
3
|
+
|
4
|
+
# The test environment is used exclusively to run your application's
|
5
|
+
# test suite. You never need to work with it otherwise. Remember that
|
6
|
+
# your test database is "scratch space" for the test suite and is wiped
|
7
|
+
# and recreated between test runs. Don't rely on the data there!
|
8
|
+
config.cache_classes = true
|
9
|
+
|
10
|
+
# Do not eager load code on boot. This avoids loading your whole application
|
11
|
+
# just for the purpose of running a single test. If you are using a tool that
|
12
|
+
# preloads Rails for running tests, you may have to set it to true.
|
13
|
+
config.eager_load = false
|
14
|
+
|
15
|
+
# Configure static asset server for tests with Cache-Control for performance.
|
16
|
+
config.serve_static_assets = true
|
17
|
+
config.static_cache_control = 'public, max-age=3600'
|
18
|
+
|
19
|
+
# Show full error reports and disable caching.
|
20
|
+
config.consider_all_requests_local = true
|
21
|
+
config.action_controller.perform_caching = false
|
22
|
+
|
23
|
+
# Raise exceptions instead of rendering exception templates.
|
24
|
+
config.action_dispatch.show_exceptions = false
|
25
|
+
|
26
|
+
# Disable request forgery protection in test environment.
|
27
|
+
config.action_controller.allow_forgery_protection = false
|
28
|
+
|
29
|
+
# Tell Action Mailer not to deliver emails to the real world.
|
30
|
+
# The :test delivery method accumulates sent emails in the
|
31
|
+
# ActionMailer::Base.deliveries array.
|
32
|
+
config.action_mailer.delivery_method = :test
|
33
|
+
|
34
|
+
# Print deprecation notices to the stderr.
|
35
|
+
config.active_support.deprecation = :stderr
|
36
|
+
|
37
|
+
# Raises error for missing translations
|
38
|
+
# config.action_view.raise_on_missing_translations = true
|
39
|
+
end
|
@@ -0,0 +1,8 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Version of your assets, change this if you want to expire all your assets.
|
4
|
+
Rails.application.config.assets.version = '1.0'
|
5
|
+
|
6
|
+
# Precompile additional assets.
|
7
|
+
# application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
|
8
|
+
# Rails.application.config.assets.precompile += %w( search.js )
|
@@ -0,0 +1,7 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
|
4
|
+
# Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
|
5
|
+
|
6
|
+
# You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
|
7
|
+
# Rails.backtrace_cleaner.remove_silencers!
|
@@ -0,0 +1,16 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Add new inflection rules using the following format. Inflections
|
4
|
+
# are locale specific, and you may define rules for as many different
|
5
|
+
# locales as you wish. All of these examples are active by default:
|
6
|
+
# ActiveSupport::Inflector.inflections(:en) do |inflect|
|
7
|
+
# inflect.plural /^(ox)$/i, '\1en'
|
8
|
+
# inflect.singular /^(ox)en/i, '\1'
|
9
|
+
# inflect.irregular 'person', 'people'
|
10
|
+
# inflect.uncountable %w( fish sheep )
|
11
|
+
# end
|
12
|
+
|
13
|
+
# These inflection rules are supported but not enabled by default:
|
14
|
+
# ActiveSupport::Inflector.inflections(:en) do |inflect|
|
15
|
+
# inflect.acronym 'RESTful'
|
16
|
+
# end
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# This file contains settings for ActionController::ParamsWrapper which
|
4
|
+
# is enabled by default.
|
5
|
+
|
6
|
+
# Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
|
7
|
+
ActiveSupport.on_load(:action_controller) do
|
8
|
+
wrap_parameters format: [:json] if respond_to?(:wrap_parameters)
|
9
|
+
end
|
10
|
+
|
11
|
+
# To enable root element in JSON for ActiveRecord objects.
|
12
|
+
# ActiveSupport.on_load(:active_record) do
|
13
|
+
# self.include_root_in_json = true
|
14
|
+
# end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# Files in the config/locales directory are used for internationalization
|
2
|
+
# and are automatically loaded by Rails. If you want to use locales other
|
3
|
+
# than English, add the necessary files in this directory.
|
4
|
+
#
|
5
|
+
# To use the locales, use `I18n.t`:
|
6
|
+
#
|
7
|
+
# I18n.t 'hello'
|
8
|
+
#
|
9
|
+
# In views, this is aliased to just `t`:
|
10
|
+
#
|
11
|
+
# <%= t('hello') %>
|
12
|
+
#
|
13
|
+
# To use a different locale, set it with `I18n.locale`:
|
14
|
+
#
|
15
|
+
# I18n.locale = :es
|
16
|
+
#
|
17
|
+
# This would use the information in config/locales/es.yml.
|
18
|
+
#
|
19
|
+
# To learn more, please read the Rails Internationalization guide
|
20
|
+
# available at http://guides.rubyonrails.org/i18n.html.
|
21
|
+
|
22
|
+
en:
|
23
|
+
hello: "Hello world"
|
@@ -0,0 +1,22 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Your secret key is used for verifying the integrity of signed cookies.
|
4
|
+
# If you change this key, all old signed cookies will become invalid!
|
5
|
+
|
6
|
+
# Make sure the secret is at least 30 characters and all random,
|
7
|
+
# no regular words or you'll be exposed to dictionary attacks.
|
8
|
+
# You can use `rake secret` to generate a secure secret key.
|
9
|
+
|
10
|
+
# Make sure the secrets in this file are kept private
|
11
|
+
# if you're sharing your code publicly.
|
12
|
+
|
13
|
+
development:
|
14
|
+
secret_key_base: 45a9f53938adcc822eebd4fe830eb4d1ececa368826390b363e27c5a15e8ccd316513f9744453159f22d5d7588a63fb0cddfcf959d99ebce3194d7bb305cbe20
|
15
|
+
|
16
|
+
test:
|
17
|
+
secret_key_base: ca083d6e2f16c30410c4190f512478a3f19262f29e102927a137d93b5163e20dd785bdb9e0e55652cae3e1d020f82e16ff896d50b0f6b150bea3878400743612
|
18
|
+
|
19
|
+
# Do not keep production secrets in the repository,
|
20
|
+
# instead read values from the environment.
|
21
|
+
production:
|
22
|
+
secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
|
@@ -0,0 +1,1595 @@
|
|
1
|
+
|
2
|
+
|
3
|
+
Started GET "/" for 127.0.0.1 at 2014-08-11 17:00:17 +0800
|
4
|
+
Processing by Rails::WelcomeController#index as HTML
|
5
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/railties-4.1.4/lib/rails/templates/rails/welcome/index.html.erb (2.0ms)
|
6
|
+
Completed 200 OK in 9ms (Views: 9.2ms)
|
7
|
+
|
8
|
+
|
9
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-11 17:04:49 +0800
|
10
|
+
|
11
|
+
ActionController::RoutingError (No route matches [GET] "/hello"):
|
12
|
+
actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
13
|
+
actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
14
|
+
railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app'
|
15
|
+
railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call'
|
16
|
+
activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
17
|
+
activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged'
|
18
|
+
activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged'
|
19
|
+
railties (4.1.4) lib/rails/rack/logger.rb:20:in `call'
|
20
|
+
actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
21
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
22
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
23
|
+
activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
|
24
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
25
|
+
actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call'
|
26
|
+
rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
|
27
|
+
railties (4.1.4) lib/rails/engine.rb:514:in `call'
|
28
|
+
railties (4.1.4) lib/rails/application.rb:144:in `call'
|
29
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
30
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
31
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
32
|
+
/Users/steve/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
|
33
|
+
/Users/steve/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
|
34
|
+
/Users/steve/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
|
35
|
+
|
36
|
+
|
37
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
|
38
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms)
|
39
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (11.9ms)
|
40
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (35.5ms)
|
41
|
+
|
42
|
+
|
43
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-11 17:06:52 +0800
|
44
|
+
Processing by HelloController#show as HTML
|
45
|
+
Rendered hello/show.html.gara within layouts/application (2.1ms)
|
46
|
+
Completed 500 Internal Server Error in 8ms
|
47
|
+
|
48
|
+
ActionView::Template::Error (Document already has a root node):
|
49
|
+
app/views/hello/show.html.gara:2:in `block in _app_views_hello_show_html_gara___1774611583893121192_2200313760'
|
50
|
+
app/views/hello/show.html.gara:1:in `new'
|
51
|
+
app/views/hello/show.html.gara:1:in `_app_views_hello_show_html_gara___1774611583893121192_2200313760'
|
52
|
+
|
53
|
+
|
54
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms)
|
55
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (18.3ms)
|
56
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (36.0ms)
|
57
|
+
|
58
|
+
|
59
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-11 17:15:39 +0800
|
60
|
+
Processing by HelloController#show as HTML
|
61
|
+
Rendered hello/show.html.gara within layouts/application (19958.1ms)
|
62
|
+
Completed 500 Internal Server Error in 19970ms
|
63
|
+
|
64
|
+
ActionView::Template::Error (Document already has a root node):
|
65
|
+
app/views/hello/show.html.gara:3:in `block in _app_views_hello_show_html_gara__1507273460690270892_2198437780'
|
66
|
+
app/views/hello/show.html.gara:1:in `new'
|
67
|
+
app/views/hello/show.html.gara:1:in `_app_views_hello_show_html_gara__1507273460690270892_2198437780'
|
68
|
+
|
69
|
+
|
70
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.4ms)
|
71
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (19.8ms)
|
72
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (37.3ms)
|
73
|
+
|
74
|
+
|
75
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-11 17:16:24 +0800
|
76
|
+
Processing by HelloController#show as HTML
|
77
|
+
Rendered hello/show.html.gara within layouts/application (3.4ms)
|
78
|
+
Completed 500 Internal Server Error in 11ms
|
79
|
+
|
80
|
+
SyntaxError (/Users/steve/Dev/appexpress/gara/test/dummy/app/views/layouts/application.html.gara:1: syntax error, unexpected '{', expecting '}'
|
81
|
+
/Users/steve/Dev/appexpress/gara/test/dummy/app/views/layouts/application.html.gara:15: syntax error, unexpected '}', expecting keyword_end
|
82
|
+
}.to_html
|
83
|
+
^):
|
84
|
+
app/views/layouts/application.html.gara:1: syntax error, unexpected '{', expecting '}'
|
85
|
+
app/views/layouts/application.html.gara:15: syntax error, unexpected '}', expecting keyword_end
|
86
|
+
|
87
|
+
|
88
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.9ms)
|
89
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms)
|
90
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (18.5ms)
|
91
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (42.3ms)
|
92
|
+
|
93
|
+
|
94
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-11 17:16:46 +0800
|
95
|
+
Processing by HelloController#show as HTML
|
96
|
+
Rendered hello/show.html.gara within layouts/application (0.6ms)
|
97
|
+
Completed 500 Internal Server Error in 3ms
|
98
|
+
|
99
|
+
SyntaxError (/Users/steve/Dev/appexpress/gara/test/dummy/app/views/layouts/application.html.gara:1: syntax error, unexpected '{', expecting '}'
|
100
|
+
/Users/steve/Dev/appexpress/gara/test/dummy/app/views/layouts/application.html.gara:15: syntax error, unexpected '}', expecting keyword_end
|
101
|
+
}.to_html
|
102
|
+
^):
|
103
|
+
app/views/layouts/application.html.gara:1: syntax error, unexpected '{', expecting '}'
|
104
|
+
app/views/layouts/application.html.gara:15: syntax error, unexpected '}', expecting keyword_end
|
105
|
+
|
106
|
+
|
107
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.7ms)
|
108
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
|
109
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms)
|
110
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (15.5ms)
|
111
|
+
|
112
|
+
|
113
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-11 17:17:33 +0800
|
114
|
+
Processing by HelloController#show as HTML
|
115
|
+
Rendered hello/show.html.gara within layouts/application (0.7ms)
|
116
|
+
Completed 500 Internal Server Error in 8ms
|
117
|
+
|
118
|
+
SyntaxError (/Users/steve/Dev/appexpress/gara/test/dummy/app/views/layouts/application.html.gara:1: syntax error, unexpected '{', expecting '}'
|
119
|
+
/Users/steve/Dev/appexpress/gara/test/dummy/app/views/layouts/application.html.gara:15: syntax error, unexpected '}', expecting keyword_end
|
120
|
+
}.to_html
|
121
|
+
^):
|
122
|
+
app/views/layouts/application.html.gara:1: syntax error, unexpected '{', expecting '}'
|
123
|
+
app/views/layouts/application.html.gara:15: syntax error, unexpected '}', expecting keyword_end
|
124
|
+
|
125
|
+
|
126
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.1ms)
|
127
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms)
|
128
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (18.3ms)
|
129
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (38.1ms)
|
130
|
+
|
131
|
+
|
132
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-11 17:17:35 +0800
|
133
|
+
Processing by HelloController#show as HTML
|
134
|
+
Rendered hello/show.html.gara within layouts/application (0.4ms)
|
135
|
+
Completed 500 Internal Server Error in 4ms
|
136
|
+
|
137
|
+
SyntaxError (/Users/steve/Dev/appexpress/gara/test/dummy/app/views/layouts/application.html.gara:1: syntax error, unexpected '{', expecting '}'
|
138
|
+
/Users/steve/Dev/appexpress/gara/test/dummy/app/views/layouts/application.html.gara:15: syntax error, unexpected '}', expecting keyword_end
|
139
|
+
}.to_html
|
140
|
+
^):
|
141
|
+
app/views/layouts/application.html.gara:1: syntax error, unexpected '{', expecting '}'
|
142
|
+
app/views/layouts/application.html.gara:15: syntax error, unexpected '}', expecting keyword_end
|
143
|
+
|
144
|
+
|
145
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.7ms)
|
146
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
|
147
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms)
|
148
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (15.4ms)
|
149
|
+
|
150
|
+
|
151
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-11 17:17:49 +0800
|
152
|
+
Processing by HelloController#show as HTML
|
153
|
+
Rendered hello/show.html.gara within layouts/application (0.4ms)
|
154
|
+
Completed 500 Internal Server Error in 14ms
|
155
|
+
|
156
|
+
ActionView::Template::Error (undefined local variable or method `all' for #<#<Class:0x0000010457fe18>:0x000001060f8a78>):
|
157
|
+
app/views/layouts/application.html.gara:6:in `block (3 levels) in _app_views_layouts_application_html_gara___2712625345401203573_2198309920'
|
158
|
+
app/views/layouts/application.html.gara:2:in `block (2 levels) in _app_views_layouts_application_html_gara___2712625345401203573_2198309920'
|
159
|
+
app/views/layouts/application.html.gara:1:in `block in _app_views_layouts_application_html_gara___2712625345401203573_2198309920'
|
160
|
+
app/views/layouts/application.html.gara:1:in `new'
|
161
|
+
app/views/layouts/application.html.gara:1:in `_app_views_layouts_application_html_gara___2712625345401203573_2198309920'
|
162
|
+
|
163
|
+
|
164
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (1.9ms)
|
165
|
+
|
166
|
+
|
167
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-11 17:18:12 +0800
|
168
|
+
Processing by HelloController#show as HTML
|
169
|
+
Rendered hello/show.html.gara within layouts/application (0.8ms)
|
170
|
+
Completed 200 OK in 62ms (Views: 61.6ms)
|
171
|
+
|
172
|
+
|
173
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-11 17:18:14 +0800
|
174
|
+
Processing by HelloController#show as HTML
|
175
|
+
Rendered hello/show.html.gara within layouts/application (0.5ms)
|
176
|
+
Completed 200 OK in 9ms (Views: 9.0ms)
|
177
|
+
|
178
|
+
|
179
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-11 17:20:23 +0800
|
180
|
+
Processing by HelloController#show as HTML
|
181
|
+
Rendered hello/show.html.gara within layouts/application (0.3ms)
|
182
|
+
Completed 200 OK in 6ms (Views: 5.5ms)
|
183
|
+
|
184
|
+
|
185
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-11 17:21:00 +0800
|
186
|
+
Processing by HelloController#show as HTML
|
187
|
+
Rendered hello/show.html.gara within layouts/application (0.2ms)
|
188
|
+
Completed 200 OK in 5ms (Views: 5.1ms)
|
189
|
+
|
190
|
+
|
191
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-11 17:21:36 +0800
|
192
|
+
Processing by HelloController#show as HTML
|
193
|
+
Rendered hello/show.html.gara within layouts/application (4.7ms)
|
194
|
+
Completed 500 Internal Server Error in 7ms
|
195
|
+
|
196
|
+
ActionView::Template::Error (Document already has a root node):
|
197
|
+
app/views/hello/show.html.gara:2:in `block in _app_views_hello_show_html_gara__829846954520784407_2198585520'
|
198
|
+
app/views/hello/show.html.gara:1:in `new'
|
199
|
+
app/views/hello/show.html.gara:1:in `_app_views_hello_show_html_gara__829846954520784407_2198585520'
|
200
|
+
|
201
|
+
|
202
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
|
203
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms)
|
204
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (19.1ms)
|
205
|
+
|
206
|
+
|
207
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-11 17:27:11 +0800
|
208
|
+
Processing by HelloController#show as HTML
|
209
|
+
Rendered hello/show.html.gara within layouts/application (3.5ms)
|
210
|
+
Completed 500 Internal Server Error in 10ms
|
211
|
+
|
212
|
+
ActionView::Template::Error (Document already has a root node):
|
213
|
+
app/views/hello/show.html.gara:2:in `block in _app_views_hello_show_html_gara__2370288219039150586_2173206280'
|
214
|
+
app/views/hello/show.html.gara:1:in `new'
|
215
|
+
app/views/hello/show.html.gara:1:in `_app_views_hello_show_html_gara__2370288219039150586_2173206280'
|
216
|
+
|
217
|
+
|
218
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms)
|
219
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (18.3ms)
|
220
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (34.5ms)
|
221
|
+
|
222
|
+
|
223
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-11 17:27:54 +0800
|
224
|
+
Processing by HelloController#show as HTML
|
225
|
+
Rendered hello/show.html.gara within layouts/application (1.0ms)
|
226
|
+
Completed 200 OK in 36ms (Views: 35.7ms)
|
227
|
+
|
228
|
+
|
229
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-11 17:31:09 +0800
|
230
|
+
Processing by HelloController#show as HTML
|
231
|
+
Rendered hello/show.html.gara within layouts/application (0.8ms)
|
232
|
+
Completed 200 OK in 6ms (Views: 6.3ms)
|
233
|
+
|
234
|
+
|
235
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-11 17:31:16 +0800
|
236
|
+
Processing by HelloController#show as HTML
|
237
|
+
Rendered hello/show.html.gara within layouts/application (12895.1ms)
|
238
|
+
Completed 200 OK in 50068ms (Views: 50067.4ms)
|
239
|
+
|
240
|
+
|
241
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-11 17:32:09 +0800
|
242
|
+
Processing by HelloController#show as HTML
|
243
|
+
Rendered hello/show.html.gara within layouts/application (0.3ms)
|
244
|
+
Completed 200 OK in 6ms (Views: 5.4ms)
|
245
|
+
|
246
|
+
|
247
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-11 17:32:15 +0800
|
248
|
+
Processing by HelloController#show as HTML
|
249
|
+
Rendered hello/show.html.gara within layouts/application (0.3ms)
|
250
|
+
Completed 200 OK in 6ms (Views: 5.9ms)
|
251
|
+
|
252
|
+
|
253
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-11 17:32:17 +0800
|
254
|
+
Processing by HelloController#show as HTML
|
255
|
+
Rendered hello/show.html.gara within layouts/application (0.3ms)
|
256
|
+
Completed 200 OK in 7ms (Views: 6.4ms)
|
257
|
+
|
258
|
+
|
259
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-11 17:32:44 +0800
|
260
|
+
Processing by HelloController#show as HTML
|
261
|
+
Rendered hello/show.html.gara within layouts/application (1948371.7ms)
|
262
|
+
Completed 200 OK in 1949735ms (Views: 1949734.4ms)
|
263
|
+
|
264
|
+
|
265
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 08:13:18 +0800
|
266
|
+
Processing by HelloController#show as HTML
|
267
|
+
Rendered hello/show.html.gara within layouts/application (8153.8ms)
|
268
|
+
Completed 500 Internal Server Error in 10039ms
|
269
|
+
|
270
|
+
SyntaxError (/Users/steve/Dev/appexpress/gara/test/dummy/app/views/layouts/application.html.gara:11: syntax error, unexpected <<
|
271
|
+
<< yield
|
272
|
+
^):
|
273
|
+
app/views/layouts/application.html.gara:11: syntax error, unexpected <<
|
274
|
+
|
275
|
+
|
276
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.4ms)
|
277
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms)
|
278
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (24.0ms)
|
279
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (57.1ms)
|
280
|
+
|
281
|
+
|
282
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 08:14:06 +0800
|
283
|
+
Processing by HelloController#show as HTML
|
284
|
+
Rendered hello/show.html.gara within layouts/application (0.7ms)
|
285
|
+
Completed 200 OK in 50ms (Views: 49.4ms)
|
286
|
+
|
287
|
+
|
288
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 08:27:09 +0800
|
289
|
+
Processing by HelloController#show as HTML
|
290
|
+
Rendered hello/show.html.gara within layouts/application (0.7ms)
|
291
|
+
Completed 500 Internal Server Error in 52ms
|
292
|
+
|
293
|
+
ActionView::Template::Error (undefined method `<<' for #<#<Class:0x000001070b3b20>:0x000001070b31e8>):
|
294
|
+
app/views/layouts/application.html.gara:11:in `block (3 levels) in _app_views_layouts_application_html_gara__3768509527355490860_2206468180'
|
295
|
+
app/views/layouts/application.html.gara:10:in `block (2 levels) in _app_views_layouts_application_html_gara__3768509527355490860_2206468180'
|
296
|
+
app/views/layouts/application.html.gara:1:in `block in _app_views_layouts_application_html_gara__3768509527355490860_2206468180'
|
297
|
+
app/views/layouts/application.html.gara:1:in `new'
|
298
|
+
app/views/layouts/application.html.gara:1:in `_app_views_layouts_application_html_gara__3768509527355490860_2206468180'
|
299
|
+
|
300
|
+
|
301
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (2.0ms)
|
302
|
+
|
303
|
+
|
304
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 08:27:11 +0800
|
305
|
+
Processing by HelloController#show as HTML
|
306
|
+
Rendered hello/show.html.gara within layouts/application (0.4ms)
|
307
|
+
Completed 500 Internal Server Error in 15ms
|
308
|
+
|
309
|
+
ActionView::Template::Error (undefined method `<<' for #<#<Class:0x000001070b3b20>:0x00000104da4558>):
|
310
|
+
app/views/layouts/application.html.gara:11:in `block (3 levels) in _app_views_layouts_application_html_gara__3768509527355490860_2206468180'
|
311
|
+
app/views/layouts/application.html.gara:10:in `block (2 levels) in _app_views_layouts_application_html_gara__3768509527355490860_2206468180'
|
312
|
+
app/views/layouts/application.html.gara:1:in `block in _app_views_layouts_application_html_gara__3768509527355490860_2206468180'
|
313
|
+
app/views/layouts/application.html.gara:1:in `new'
|
314
|
+
app/views/layouts/application.html.gara:1:in `_app_views_layouts_application_html_gara__3768509527355490860_2206468180'
|
315
|
+
|
316
|
+
|
317
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (1.2ms)
|
318
|
+
|
319
|
+
|
320
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 08:27:47 +0800
|
321
|
+
Processing by HelloController#show as HTML
|
322
|
+
Rendered hello/show.html.gara within layouts/application (0.8ms)
|
323
|
+
Completed 200 OK in 43ms (Views: 42.4ms)
|
324
|
+
|
325
|
+
|
326
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 08:28:28 +0800
|
327
|
+
Processing by HelloController#show as HTML
|
328
|
+
Rendered hello/show.html.gara within layouts/application (0.6ms)
|
329
|
+
Completed 200 OK in 37ms (Views: 36.9ms)
|
330
|
+
|
331
|
+
|
332
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 08:28:30 +0800
|
333
|
+
Processing by HelloController#show as HTML
|
334
|
+
Rendered hello/show.html.gara within layouts/application (0.2ms)
|
335
|
+
Completed 200 OK in 5ms (Views: 4.6ms)
|
336
|
+
|
337
|
+
|
338
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 08:28:31 +0800
|
339
|
+
Processing by HelloController#show as HTML
|
340
|
+
Rendered hello/show.html.gara within layouts/application (0.3ms)
|
341
|
+
Completed 200 OK in 5ms (Views: 4.9ms)
|
342
|
+
|
343
|
+
|
344
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 08:28:31 +0800
|
345
|
+
Processing by HelloController#show as HTML
|
346
|
+
Rendered hello/show.html.gara within layouts/application (0.3ms)
|
347
|
+
Completed 200 OK in 7ms (Views: 6.5ms)
|
348
|
+
|
349
|
+
|
350
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 08:29:39 +0800
|
351
|
+
Processing by HelloController#show as HTML
|
352
|
+
Rendered hello/show.html.gara within layouts/application (0.6ms)
|
353
|
+
Completed 500 Internal Server Error in 57ms
|
354
|
+
|
355
|
+
ActionView::Template::Error (undefined method `text' for #<#<Class:0x000001064bb9a8>:0x000001064bb098>):
|
356
|
+
app/views/layouts/application.html.gara:11:in `block (3 levels) in _app_views_layouts_application_html_gara___823840948254076266_2200192880'
|
357
|
+
app/views/layouts/application.html.gara:10:in `block (2 levels) in _app_views_layouts_application_html_gara___823840948254076266_2200192880'
|
358
|
+
app/views/layouts/application.html.gara:1:in `block in _app_views_layouts_application_html_gara___823840948254076266_2200192880'
|
359
|
+
app/views/layouts/application.html.gara:1:in `new'
|
360
|
+
app/views/layouts/application.html.gara:1:in `_app_views_layouts_application_html_gara___823840948254076266_2200192880'
|
361
|
+
|
362
|
+
|
363
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (2.1ms)
|
364
|
+
|
365
|
+
|
366
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 08:29:40 +0800
|
367
|
+
Processing by HelloController#show as HTML
|
368
|
+
Rendered hello/show.html.gara within layouts/application (0.2ms)
|
369
|
+
Completed 500 Internal Server Error in 13ms
|
370
|
+
|
371
|
+
ActionView::Template::Error (undefined method `text' for #<#<Class:0x000001064bb9a8>:0x00000106219650>):
|
372
|
+
app/views/layouts/application.html.gara:11:in `block (3 levels) in _app_views_layouts_application_html_gara___823840948254076266_2200192880'
|
373
|
+
app/views/layouts/application.html.gara:10:in `block (2 levels) in _app_views_layouts_application_html_gara___823840948254076266_2200192880'
|
374
|
+
app/views/layouts/application.html.gara:1:in `block in _app_views_layouts_application_html_gara___823840948254076266_2200192880'
|
375
|
+
app/views/layouts/application.html.gara:1:in `new'
|
376
|
+
app/views/layouts/application.html.gara:1:in `_app_views_layouts_application_html_gara___823840948254076266_2200192880'
|
377
|
+
|
378
|
+
|
379
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (1.0ms)
|
380
|
+
|
381
|
+
|
382
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 08:29:58 +0800
|
383
|
+
Processing by HelloController#show as HTML
|
384
|
+
Rendered hello/show.html.gara within layouts/application (0.6ms)
|
385
|
+
Completed 200 OK in 39ms (Views: 38.4ms)
|
386
|
+
|
387
|
+
|
388
|
+
Started GET "/" for 127.0.0.1 at 2014-08-12 08:30:51 +0800
|
389
|
+
Processing by Rails::WelcomeController#index as HTML
|
390
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/railties-4.1.4/lib/rails/templates/rails/welcome/index.html.erb (1.5ms)
|
391
|
+
Completed 200 OK in 7ms (Views: 6.7ms)
|
392
|
+
|
393
|
+
|
394
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 08:30:56 +0800
|
395
|
+
Processing by HelloController#show as HTML
|
396
|
+
Rendered hello/show.html.gara within layouts/application (0.7ms)
|
397
|
+
Completed 200 OK in 41ms (Views: 41.0ms)
|
398
|
+
|
399
|
+
|
400
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 08:31:04 +0800
|
401
|
+
Processing by HelloController#show as HTML
|
402
|
+
Rendered hello/show.html.gara within layouts/application (0.2ms)
|
403
|
+
Completed 200 OK in 5ms (Views: 5.3ms)
|
404
|
+
|
405
|
+
|
406
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 08:31:16 +0800
|
407
|
+
Processing by HelloController#show as HTML
|
408
|
+
Rendered hello/show.html.gara within layouts/application (0.2ms)
|
409
|
+
Completed 200 OK in 5ms (Views: 5.0ms)
|
410
|
+
|
411
|
+
|
412
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 08:31:17 +0800
|
413
|
+
Processing by HelloController#show as HTML
|
414
|
+
Rendered hello/show.html.gara within layouts/application (0.4ms)
|
415
|
+
Completed 200 OK in 6ms (Views: 5.6ms)
|
416
|
+
|
417
|
+
|
418
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 08:31:17 +0800
|
419
|
+
Processing by HelloController#show as HTML
|
420
|
+
Rendered hello/show.html.gara within layouts/application (0.3ms)
|
421
|
+
Completed 200 OK in 5ms (Views: 5.0ms)
|
422
|
+
|
423
|
+
|
424
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 08:31:26 +0800
|
425
|
+
Processing by HelloController#show as HTML
|
426
|
+
Rendered hello/show.html.gara within layouts/application (0.6ms)
|
427
|
+
Completed 200 OK in 39ms (Views: 38.8ms)
|
428
|
+
|
429
|
+
|
430
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 08:31:26 +0800
|
431
|
+
Processing by HelloController#show as HTML
|
432
|
+
Rendered hello/show.html.gara within layouts/application (0.2ms)
|
433
|
+
Completed 200 OK in 5ms (Views: 4.6ms)
|
434
|
+
|
435
|
+
|
436
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 08:32:16 +0800
|
437
|
+
Processing by HelloController#show as HTML
|
438
|
+
Rendered hello/show.html.gara within layouts/application (0.2ms)
|
439
|
+
Completed 200 OK in 6ms (Views: 5.3ms)
|
440
|
+
|
441
|
+
|
442
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 08:37:51 +0800
|
443
|
+
Processing by HelloController#show as HTML
|
444
|
+
Rendered hello/show.html.gara within layouts/application (0.7ms)
|
445
|
+
Completed 200 OK in 47ms (Views: 46.3ms)
|
446
|
+
|
447
|
+
|
448
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 08:43:43 +0800
|
449
|
+
Processing by HelloController#show as HTML
|
450
|
+
Rendered hello/show.html.gara within layouts/application (212644.2ms)
|
451
|
+
Completed 200 OK in 260738ms (Views: 260738.0ms)
|
452
|
+
|
453
|
+
|
454
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 08:49:13 +0800
|
455
|
+
Processing by HelloController#show as HTML
|
456
|
+
Rendered hello/show.html.gara within layouts/application (3184.6ms)
|
457
|
+
Completed 500 Internal Server Error in 3190ms
|
458
|
+
|
459
|
+
ActionView::Template::Error (undefined method `html' for #<Gara::Delegator:0x0000010627aab8>):
|
460
|
+
app/views/hello/show.html.gara:1:in `new'
|
461
|
+
app/views/hello/show.html.gara:1:in `_app_views_hello_show_html_gara___1030768295007873696_2164964500'
|
462
|
+
|
463
|
+
|
464
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms)
|
465
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (19.1ms)
|
466
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (39.7ms)
|
467
|
+
|
468
|
+
|
469
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 08:50:02 +0800
|
470
|
+
Processing by HelloController#show as HTML
|
471
|
+
Rendered hello/show.html.gara within layouts/application (0.6ms)
|
472
|
+
Completed 500 Internal Server Error in 2ms
|
473
|
+
|
474
|
+
ActionView::Template::Error (undefined method `html' for #<Gara::Delegator:0x000001060e1558>):
|
475
|
+
app/views/hello/show.html.gara:1:in `new'
|
476
|
+
app/views/hello/show.html.gara:1:in `_app_views_hello_show_html_gara___1030768295007873696_2164964500'
|
477
|
+
|
478
|
+
|
479
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
|
480
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms)
|
481
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (11.6ms)
|
482
|
+
|
483
|
+
|
484
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 08:50:06 +0800
|
485
|
+
Processing by HelloController#show as HTML
|
486
|
+
Rendered hello/show.html.gara within layouts/application (0.8ms)
|
487
|
+
Completed 500 Internal Server Error in 2ms
|
488
|
+
|
489
|
+
ActionView::Template::Error (undefined method `html' for #<Gara::Delegator:0x00000104f45e20>):
|
490
|
+
app/views/hello/show.html.gara:1:in `new'
|
491
|
+
app/views/hello/show.html.gara:1:in `_app_views_hello_show_html_gara___1030768295007873696_2164964500'
|
492
|
+
|
493
|
+
|
494
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
|
495
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms)
|
496
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (11.2ms)
|
497
|
+
|
498
|
+
|
499
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 08:50:15 +0800
|
500
|
+
Processing by HelloController#show as HTML
|
501
|
+
Rendered hello/show.html.gara within layouts/application (0.7ms)
|
502
|
+
Completed 200 OK in 44ms (Views: 44.1ms)
|
503
|
+
|
504
|
+
|
505
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 08:52:15 +0800
|
506
|
+
Processing by HelloController#show as HTML
|
507
|
+
Rendered hello/show.html.gara within layouts/application (2.1ms)
|
508
|
+
Completed 500 Internal Server Error in 8ms
|
509
|
+
|
510
|
+
ActionView::Template::Error (Document already has a root node):
|
511
|
+
app/views/hello/show.html.gara:1:in `block in _app_views_hello_show_html_gara__4576382313987624386_2159533600'
|
512
|
+
app/views/hello/show.html.gara:1:in `new'
|
513
|
+
app/views/hello/show.html.gara:1:in `_app_views_hello_show_html_gara__4576382313987624386_2159533600'
|
514
|
+
|
515
|
+
|
516
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
|
517
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (17.7ms)
|
518
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (29.4ms)
|
519
|
+
|
520
|
+
|
521
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 08:52:18 +0800
|
522
|
+
Processing by HelloController#show as HTML
|
523
|
+
Rendered hello/show.html.gara within layouts/application (0.5ms)
|
524
|
+
Completed 500 Internal Server Error in 2ms
|
525
|
+
|
526
|
+
ActionView::Template::Error (Document already has a root node):
|
527
|
+
app/views/hello/show.html.gara:1:in `block in _app_views_hello_show_html_gara__4576382313987624386_2159533600'
|
528
|
+
app/views/hello/show.html.gara:1:in `new'
|
529
|
+
app/views/hello/show.html.gara:1:in `_app_views_hello_show_html_gara__4576382313987624386_2159533600'
|
530
|
+
|
531
|
+
|
532
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
|
533
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
|
534
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (10.4ms)
|
535
|
+
|
536
|
+
|
537
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 08:55:27 +0800
|
538
|
+
Processing by HelloController#show as HTML
|
539
|
+
Rendered hello/show.html.gara within layouts/application (0.7ms)
|
540
|
+
Completed 200 OK in 40ms (Views: 40.2ms)
|
541
|
+
|
542
|
+
|
543
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 09:02:46 +0800
|
544
|
+
Processing by HelloController#show as HTML
|
545
|
+
Rendered hello/show.html.gara within layouts/application (318741.2ms)
|
546
|
+
Completed 200 OK in 320966ms (Views: 320965.5ms)
|
547
|
+
|
548
|
+
|
549
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 09:14:11 +0800
|
550
|
+
Processing by HelloController#show as HTML
|
551
|
+
Rendered hello/show.html.gara within layouts/application (2.7ms)
|
552
|
+
Completed 500 Internal Server Error in 10ms
|
553
|
+
|
554
|
+
ActionView::Template::Error (undefined method `registered_methods' for #<Gara::Html5Emitter:0x000001063d08b8>):
|
555
|
+
app/views/hello/show.html.gara:1:in `new'
|
556
|
+
app/views/hello/show.html.gara:1:in `_app_views_hello_show_html_gara__2964365578659740725_2199835680'
|
557
|
+
|
558
|
+
|
559
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
|
560
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (17.5ms)
|
561
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (30.1ms)
|
562
|
+
|
563
|
+
|
564
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 09:14:42 +0800
|
565
|
+
Processing by HelloController#show as HTML
|
566
|
+
Rendered hello/show.html.gara within layouts/application (7.0ms)
|
567
|
+
Completed 500 Internal Server Error in 15ms
|
568
|
+
|
569
|
+
ActionView::Template::Error (undefined method `h1' for #<#<Class:0x00000101698230>:0x000001016936b8>):
|
570
|
+
app/views/hello/show.html.gara:1:in `block in _app_views_hello_show_html_gara___1965465904355696354_2159221900'
|
571
|
+
app/views/hello/show.html.gara:1:in `new'
|
572
|
+
app/views/hello/show.html.gara:1:in `_app_views_hello_show_html_gara___1965465904355696354_2159221900'
|
573
|
+
|
574
|
+
|
575
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
|
576
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (16.8ms)
|
577
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (29.4ms)
|
578
|
+
|
579
|
+
|
580
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 09:15:05 +0800
|
581
|
+
Processing by HelloController#show as HTML
|
582
|
+
Rendered hello/show.html.gara within layouts/application (6.8ms)
|
583
|
+
Completed 500 Internal Server Error in 12ms
|
584
|
+
|
585
|
+
ActionView::Template::Error (undefined method `h1' for #<#<Class:0x000001061f8158>:0x000001061f35e0>):
|
586
|
+
app/views/hello/show.html.gara:1:in `block in _app_views_hello_show_html_gara___872398944850641880_2198740000'
|
587
|
+
app/views/hello/show.html.gara:1:in `new'
|
588
|
+
app/views/hello/show.html.gara:1:in `_app_views_hello_show_html_gara___872398944850641880_2198740000'
|
589
|
+
|
590
|
+
|
591
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
|
592
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (17.8ms)
|
593
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (28.7ms)
|
594
|
+
|
595
|
+
|
596
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 09:22:58 +0800
|
597
|
+
Processing by HelloController#show as HTML
|
598
|
+
Rendered hello/show.html.gara within layouts/application (1.8ms)
|
599
|
+
Completed 500 Internal Server Error in 8ms
|
600
|
+
|
601
|
+
ActionView::Template::Error (undefined method `context_methods' for Gara::Html5Emitter:Class):
|
602
|
+
app/views/hello/show.html.gara:1:in `new'
|
603
|
+
app/views/hello/show.html.gara:1:in `_app_views_hello_show_html_gara___2705052765867071223_2165259360'
|
604
|
+
|
605
|
+
|
606
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
|
607
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (18.4ms)
|
608
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (30.7ms)
|
609
|
+
|
610
|
+
|
611
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 09:23:09 +0800
|
612
|
+
Processing by HelloController#show as HTML
|
613
|
+
Rendered hello/show.html.gara within layouts/application (0.4ms)
|
614
|
+
Completed 500 Internal Server Error in 3ms
|
615
|
+
|
616
|
+
ActionView::Template::Error (undefined method `context_methods' for Gara::Html5Emitter:Class):
|
617
|
+
app/views/hello/show.html.gara:1:in `new'
|
618
|
+
app/views/hello/show.html.gara:1:in `_app_views_hello_show_html_gara___2705052765867071223_2165259360'
|
619
|
+
|
620
|
+
|
621
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
|
622
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
|
623
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (10.4ms)
|
624
|
+
|
625
|
+
|
626
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 09:23:14 +0800
|
627
|
+
Processing by HelloController#show as HTML
|
628
|
+
Rendered hello/show.html.gara within layouts/application (6.9ms)
|
629
|
+
Completed 500 Internal Server Error in 12ms
|
630
|
+
|
631
|
+
ActionView::Template::Error (undefined method `h1' for #<#<Class:0x000001029282b0>:0x00000102923760>):
|
632
|
+
app/views/hello/show.html.gara:1:in `block in _app_views_hello_show_html_gara___1848137199680989989_2201525440'
|
633
|
+
app/views/hello/show.html.gara:1:in `new'
|
634
|
+
app/views/hello/show.html.gara:1:in `_app_views_hello_show_html_gara___1848137199680989989_2201525440'
|
635
|
+
|
636
|
+
|
637
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
|
638
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (17.5ms)
|
639
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (29.2ms)
|
640
|
+
|
641
|
+
|
642
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 09:29:21 +0800
|
643
|
+
Processing by HelloController#show as HTML
|
644
|
+
Rendered hello/show.html.gara within layouts/application (6.4ms)
|
645
|
+
Completed 500 Internal Server Error in 12ms
|
646
|
+
|
647
|
+
ActionView::Template::Error (undefined method `h1' for #<#<Class:0x00000104c143f0>:0x00000104c0fa80>):
|
648
|
+
app/views/hello/show.html.gara:1:in `block in _app_views_hello_show_html_gara___1133573795758469935_2158866240'
|
649
|
+
app/views/hello/show.html.gara:1:in `new'
|
650
|
+
app/views/hello/show.html.gara:1:in `_app_views_hello_show_html_gara___1133573795758469935_2158866240'
|
651
|
+
|
652
|
+
|
653
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms)
|
654
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (18.4ms)
|
655
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (30.4ms)
|
656
|
+
|
657
|
+
|
658
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 09:34:29 +0800
|
659
|
+
Processing by HelloController#show as HTML
|
660
|
+
Rendered hello/show.html.gara within layouts/application (6.6ms)
|
661
|
+
Completed 500 Internal Server Error in 12ms
|
662
|
+
|
663
|
+
ActionView::Template::Error (undefined method `h1' for #<#<Class:0x00000104a88d60>:0x00000104a883b0>):
|
664
|
+
app/views/hello/show.html.gara:1:in `block in _app_views_hello_show_html_gara__1307631838554365244_2186462960'
|
665
|
+
app/views/hello/show.html.gara:1:in `new'
|
666
|
+
app/views/hello/show.html.gara:1:in `_app_views_hello_show_html_gara__1307631838554365244_2186462960'
|
667
|
+
|
668
|
+
|
669
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms)
|
670
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (18.5ms)
|
671
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (32.2ms)
|
672
|
+
|
673
|
+
|
674
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 09:34:30 +0800
|
675
|
+
Processing by HelloController#show as HTML
|
676
|
+
Rendered hello/show.html.gara within layouts/application (6.0ms)
|
677
|
+
Completed 500 Internal Server Error in 8ms
|
678
|
+
|
679
|
+
ActionView::Template::Error (undefined method `h1' for #<#<Class:0x00000104a88d60>:0x00000101fd6e78>):
|
680
|
+
app/views/hello/show.html.gara:1:in `block in _app_views_hello_show_html_gara__1307631838554365244_2186462960'
|
681
|
+
app/views/hello/show.html.gara:1:in `new'
|
682
|
+
app/views/hello/show.html.gara:1:in `_app_views_hello_show_html_gara__1307631838554365244_2186462960'
|
683
|
+
|
684
|
+
|
685
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
|
686
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms)
|
687
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (10.7ms)
|
688
|
+
|
689
|
+
|
690
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 09:34:31 +0800
|
691
|
+
Processing by HelloController#show as HTML
|
692
|
+
Rendered hello/show.html.gara within layouts/application (5.7ms)
|
693
|
+
Completed 500 Internal Server Error in 8ms
|
694
|
+
|
695
|
+
ActionView::Template::Error (undefined method `h1' for #<#<Class:0x00000104a88d60>:0x000001036c62a0>):
|
696
|
+
app/views/hello/show.html.gara:1:in `block in _app_views_hello_show_html_gara__1307631838554365244_2186462960'
|
697
|
+
app/views/hello/show.html.gara:1:in `new'
|
698
|
+
app/views/hello/show.html.gara:1:in `_app_views_hello_show_html_gara__1307631838554365244_2186462960'
|
699
|
+
|
700
|
+
|
701
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
|
702
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms)
|
703
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (11.7ms)
|
704
|
+
|
705
|
+
|
706
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 09:34:32 +0800
|
707
|
+
Processing by HelloController#show as HTML
|
708
|
+
Rendered hello/show.html.gara within layouts/application (4.9ms)
|
709
|
+
Completed 500 Internal Server Error in 7ms
|
710
|
+
|
711
|
+
ActionView::Template::Error (undefined method `h1' for #<#<Class:0x00000104a88d60>:0x00000101e98408>):
|
712
|
+
app/views/hello/show.html.gara:1:in `block in _app_views_hello_show_html_gara__1307631838554365244_2186462960'
|
713
|
+
app/views/hello/show.html.gara:1:in `new'
|
714
|
+
app/views/hello/show.html.gara:1:in `_app_views_hello_show_html_gara__1307631838554365244_2186462960'
|
715
|
+
|
716
|
+
|
717
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
|
718
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms)
|
719
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (11.1ms)
|
720
|
+
|
721
|
+
|
722
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 09:34:32 +0800
|
723
|
+
Processing by HelloController#show as HTML
|
724
|
+
Rendered hello/show.html.gara within layouts/application (5.1ms)
|
725
|
+
Completed 500 Internal Server Error in 7ms
|
726
|
+
|
727
|
+
ActionView::Template::Error (undefined method `h1' for #<#<Class:0x00000104a88d60>:0x00000106174128>):
|
728
|
+
app/views/hello/show.html.gara:1:in `block in _app_views_hello_show_html_gara__1307631838554365244_2186462960'
|
729
|
+
app/views/hello/show.html.gara:1:in `new'
|
730
|
+
app/views/hello/show.html.gara:1:in `_app_views_hello_show_html_gara__1307631838554365244_2186462960'
|
731
|
+
|
732
|
+
|
733
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms)
|
734
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms)
|
735
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (15.8ms)
|
736
|
+
|
737
|
+
|
738
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 09:34:32 +0800
|
739
|
+
Processing by HelloController#show as HTML
|
740
|
+
Rendered hello/show.html.gara within layouts/application (5.5ms)
|
741
|
+
Completed 500 Internal Server Error in 8ms
|
742
|
+
|
743
|
+
ActionView::Template::Error (undefined method `h1' for #<#<Class:0x00000104a88d60>:0x00000104bb9bf8>):
|
744
|
+
app/views/hello/show.html.gara:1:in `block in _app_views_hello_show_html_gara__1307631838554365244_2186462960'
|
745
|
+
app/views/hello/show.html.gara:1:in `new'
|
746
|
+
app/views/hello/show.html.gara:1:in `_app_views_hello_show_html_gara__1307631838554365244_2186462960'
|
747
|
+
|
748
|
+
|
749
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
|
750
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms)
|
751
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.9ms)
|
752
|
+
|
753
|
+
|
754
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 09:34:32 +0800
|
755
|
+
Processing by HelloController#show as HTML
|
756
|
+
Rendered hello/show.html.gara within layouts/application (6.9ms)
|
757
|
+
Completed 500 Internal Server Error in 10ms
|
758
|
+
|
759
|
+
ActionView::Template::Error (undefined method `h1' for #<#<Class:0x00000104a88d60>:0x000001062f44a8>):
|
760
|
+
app/views/hello/show.html.gara:1:in `block in _app_views_hello_show_html_gara__1307631838554365244_2186462960'
|
761
|
+
app/views/hello/show.html.gara:1:in `new'
|
762
|
+
app/views/hello/show.html.gara:1:in `_app_views_hello_show_html_gara__1307631838554365244_2186462960'
|
763
|
+
|
764
|
+
|
765
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms)
|
766
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms)
|
767
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (15.4ms)
|
768
|
+
|
769
|
+
|
770
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 09:35:08 +0800
|
771
|
+
Processing by HelloController#show as HTML
|
772
|
+
Rendered hello/show.html.gara within layouts/application (27830.1ms)
|
773
|
+
Completed 500 Internal Server Error in 27836ms
|
774
|
+
|
775
|
+
ActionView::Template::Error (undefined method `h1' for #<#<Class:0x0000010603b478>:0x0000010603aaa0>):
|
776
|
+
app/views/hello/show.html.gara:2:in `block in _app_views_hello_show_html_gara___1581619709401038443_2197834980'
|
777
|
+
app/views/hello/show.html.gara:1:in `new'
|
778
|
+
app/views/hello/show.html.gara:1:in `_app_views_hello_show_html_gara___1581619709401038443_2197834980'
|
779
|
+
|
780
|
+
|
781
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms)
|
782
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (18.3ms)
|
783
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (35.0ms)
|
784
|
+
|
785
|
+
|
786
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 09:36:13 +0800
|
787
|
+
Processing by HelloController#show as HTML
|
788
|
+
Rendered hello/show.html.gara within layouts/application (29681.6ms)
|
789
|
+
Completed in 29687ms
|
790
|
+
|
791
|
+
|
792
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 09:36:50 +0800
|
793
|
+
Processing by HelloController#show as HTML
|
794
|
+
Rendered hello/show.html.gara within layouts/application (78897.2ms)
|
795
|
+
Completed 500 Internal Server Error in 78903ms
|
796
|
+
|
797
|
+
ActionView::Template::Error (undefined method `h1' for #<#<Class:0x00000103363608>:0x00000103362c30>):
|
798
|
+
app/views/hello/show.html.gara:1:in `block in _app_views_hello_show_html_gara___292227963778769832_2174324120'
|
799
|
+
app/views/hello/show.html.gara:1:in `new'
|
800
|
+
app/views/hello/show.html.gara:1:in `_app_views_hello_show_html_gara___292227963778769832_2174324120'
|
801
|
+
|
802
|
+
|
803
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms)
|
804
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (19.4ms)
|
805
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (34.1ms)
|
806
|
+
|
807
|
+
|
808
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 13:10:29 +0800
|
809
|
+
Processing by HelloController#show as HTML
|
810
|
+
Rendered hello/show.html.gara within layouts/application (30618.9ms)
|
811
|
+
Completed 500 Internal Server Error in 30634ms
|
812
|
+
|
813
|
+
ActionView::Template::Error (undefined method `h1' for #<#<Class:0x00000103656dd8>:0x000001036564c8>):
|
814
|
+
app/views/hello/show.html.gara:1:in `block in _app_views_hello_show_html_gara__4472155946747856606_2175874820'
|
815
|
+
app/views/hello/show.html.gara:1:in `new'
|
816
|
+
app/views/hello/show.html.gara:1:in `_app_views_hello_show_html_gara__4472155946747856606_2175874820'
|
817
|
+
|
818
|
+
|
819
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms)
|
820
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (22.4ms)
|
821
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (37.7ms)
|
822
|
+
|
823
|
+
|
824
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 14:23:43 +0800
|
825
|
+
|
826
|
+
ActionController::RoutingError (No route matches [GET] "/hello"):
|
827
|
+
actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
828
|
+
actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
829
|
+
railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app'
|
830
|
+
railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call'
|
831
|
+
activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
832
|
+
activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged'
|
833
|
+
activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged'
|
834
|
+
railties (4.1.4) lib/rails/rack/logger.rb:20:in `call'
|
835
|
+
actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
836
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
837
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
838
|
+
activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
|
839
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
840
|
+
actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call'
|
841
|
+
rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
|
842
|
+
railties (4.1.4) lib/rails/engine.rb:514:in `call'
|
843
|
+
railties (4.1.4) lib/rails/application.rb:144:in `call'
|
844
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
845
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
846
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
847
|
+
/Users/steve/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
|
848
|
+
/Users/steve/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
|
849
|
+
/Users/steve/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
|
850
|
+
|
851
|
+
|
852
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms)
|
853
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (30.0ms)
|
854
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (48.2ms)
|
855
|
+
|
856
|
+
|
857
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 14:25:42 +0800
|
858
|
+
Processing by HelloController#show as HTML
|
859
|
+
Rendered hello/show.html.gara within layouts/application (5.1ms)
|
860
|
+
Completed 500 Internal Server Error in 78ms
|
861
|
+
|
862
|
+
ActionView::Template::Error (undefined method `<<' for #<#<Class:0x0000010672d678>:0x0000010672cd90>):
|
863
|
+
app/views/layouts/application.html.gara:11:in `block (3 levels) in _app_views_layouts_application_html_gara___4256219385321143529_2201466060'
|
864
|
+
app/views/layouts/application.html.gara:10:in `block (2 levels) in _app_views_layouts_application_html_gara___4256219385321143529_2201466060'
|
865
|
+
app/views/layouts/application.html.gara:1:in `block in _app_views_layouts_application_html_gara___4256219385321143529_2201466060'
|
866
|
+
app/views/layouts/application.html.gara:1:in `new'
|
867
|
+
app/views/layouts/application.html.gara:1:in `_app_views_layouts_application_html_gara___4256219385321143529_2201466060'
|
868
|
+
|
869
|
+
|
870
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (3.2ms)
|
871
|
+
|
872
|
+
|
873
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 14:26:06 +0800
|
874
|
+
Processing by HelloController#show as HTML
|
875
|
+
Rendered hello/show.html.gara within layouts/application (0.6ms)
|
876
|
+
Completed 200 OK in 40ms (Views: 39.7ms)
|
877
|
+
|
878
|
+
|
879
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 14:26:29 +0800
|
880
|
+
Processing by HelloController#show as HTML
|
881
|
+
Rendered hello/show.html.gara within layouts/application (0.7ms)
|
882
|
+
Completed 200 OK in 39ms (Views: 38.8ms)
|
883
|
+
|
884
|
+
|
885
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 14:26:45 +0800
|
886
|
+
Processing by HelloController#show as HTML
|
887
|
+
Rendered hello/show.html.gara within layouts/application (2.4ms)
|
888
|
+
Completed 500 Internal Server Error in 4ms
|
889
|
+
|
890
|
+
ActionView::Template::Error (Document already has a root node):
|
891
|
+
app/views/hello/show.html.gara:2:in `block in _app_views_hello_show_html_gara___3514207263800172926_2163593060'
|
892
|
+
app/views/hello/show.html.gara:1:in `new'
|
893
|
+
app/views/hello/show.html.gara:1:in `_app_views_hello_show_html_gara___3514207263800172926_2163593060'
|
894
|
+
|
895
|
+
|
896
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms)
|
897
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.7ms)
|
898
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (16.8ms)
|
899
|
+
|
900
|
+
|
901
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 14:26:47 +0800
|
902
|
+
Processing by HelloController#show as HTML
|
903
|
+
Rendered hello/show.html.gara within layouts/application (0.4ms)
|
904
|
+
Completed 500 Internal Server Error in 2ms
|
905
|
+
|
906
|
+
ActionView::Template::Error (Document already has a root node):
|
907
|
+
app/views/hello/show.html.gara:2:in `block in _app_views_hello_show_html_gara___3514207263800172926_2163593060'
|
908
|
+
app/views/hello/show.html.gara:1:in `new'
|
909
|
+
app/views/hello/show.html.gara:1:in `_app_views_hello_show_html_gara___3514207263800172926_2163593060'
|
910
|
+
|
911
|
+
|
912
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
|
913
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
|
914
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (10.8ms)
|
915
|
+
|
916
|
+
|
917
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 14:41:13 +0800
|
918
|
+
Processing by HelloController#show as HTML
|
919
|
+
Rendered hello/show.html.gara within layouts/application (34868.2ms)
|
920
|
+
Completed 500 Internal Server Error in 34874ms
|
921
|
+
|
922
|
+
ActionView::Template::Error (undefined method `h1' for #<#<Class:0x00000104f758c8>:0x00000104f74fe0>):
|
923
|
+
app/views/hello/show.html.gara:1:in `block in _app_views_hello_show_html_gara__723666595498510597_2189005620'
|
924
|
+
app/views/hello/show.html.gara:1:in `new'
|
925
|
+
app/views/hello/show.html.gara:1:in `_app_views_hello_show_html_gara__723666595498510597_2189005620'
|
926
|
+
|
927
|
+
|
928
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms)
|
929
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (21.1ms)
|
930
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (36.8ms)
|
931
|
+
|
932
|
+
|
933
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 14:42:33 +0800
|
934
|
+
Processing by HelloController#show as HTML
|
935
|
+
Rendered hello/show.html.gara within layouts/application (6.2ms)
|
936
|
+
Completed 500 Internal Server Error in 11ms
|
937
|
+
|
938
|
+
ActionView::Template::Error (undefined method `h1' for #<#<Class:0x000001063574b8>:0x00000106356bd0>):
|
939
|
+
app/views/hello/show.html.gara:1:in `block in _app_views_hello_show_html_gara___3491418117328593984_2199480400'
|
940
|
+
app/views/hello/show.html.gara:1:in `new'
|
941
|
+
app/views/hello/show.html.gara:1:in `_app_views_hello_show_html_gara___3491418117328593984_2199480400'
|
942
|
+
|
943
|
+
|
944
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms)
|
945
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (17.1ms)
|
946
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (29.3ms)
|
947
|
+
|
948
|
+
|
949
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 14:42:35 +0800
|
950
|
+
Processing by HelloController#show as HTML
|
951
|
+
Rendered hello/show.html.gara within layouts/application (5.3ms)
|
952
|
+
Completed 500 Internal Server Error in 8ms
|
953
|
+
|
954
|
+
ActionView::Template::Error (undefined method `h1' for #<#<Class:0x000001063574b8>:0x00000106169458>):
|
955
|
+
app/views/hello/show.html.gara:1:in `block in _app_views_hello_show_html_gara___3491418117328593984_2199480400'
|
956
|
+
app/views/hello/show.html.gara:1:in `new'
|
957
|
+
app/views/hello/show.html.gara:1:in `_app_views_hello_show_html_gara___3491418117328593984_2199480400'
|
958
|
+
|
959
|
+
|
960
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
|
961
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms)
|
962
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (12.5ms)
|
963
|
+
|
964
|
+
|
965
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 14:42:36 +0800
|
966
|
+
Processing by HelloController#show as HTML
|
967
|
+
Rendered hello/show.html.gara within layouts/application (6.0ms)
|
968
|
+
Completed 500 Internal Server Error in 8ms
|
969
|
+
|
970
|
+
ActionView::Template::Error (undefined method `h1' for #<#<Class:0x000001063574b8>:0x00000103fecc58>):
|
971
|
+
app/views/hello/show.html.gara:1:in `block in _app_views_hello_show_html_gara___3491418117328593984_2199480400'
|
972
|
+
app/views/hello/show.html.gara:1:in `new'
|
973
|
+
app/views/hello/show.html.gara:1:in `_app_views_hello_show_html_gara___3491418117328593984_2199480400'
|
974
|
+
|
975
|
+
|
976
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms)
|
977
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms)
|
978
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (21.3ms)
|
979
|
+
|
980
|
+
|
981
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 14:42:41 +0800
|
982
|
+
Processing by HelloController#show as HTML
|
983
|
+
Rendered hello/show.html.gara within layouts/application (2.4ms)
|
984
|
+
Completed 500 Internal Server Error in 8ms
|
985
|
+
|
986
|
+
ActionView::Template::Error (Document already has a root node):
|
987
|
+
app/views/hello/show.html.gara:2:in `block in _app_views_hello_show_html_gara__347002861084973528_2200053460'
|
988
|
+
app/views/hello/show.html.gara:1:in `new'
|
989
|
+
app/views/hello/show.html.gara:1:in `_app_views_hello_show_html_gara__347002861084973528_2200053460'
|
990
|
+
|
991
|
+
|
992
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms)
|
993
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (17.6ms)
|
994
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (30.9ms)
|
995
|
+
|
996
|
+
|
997
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 14:42:48 +0800
|
998
|
+
Processing by HelloController#show as HTML
|
999
|
+
Rendered hello/show.html.gara within layouts/application (0.6ms)
|
1000
|
+
Completed 500 Internal Server Error in 3ms
|
1001
|
+
|
1002
|
+
ActionView::Template::Error (Document already has a root node):
|
1003
|
+
app/views/hello/show.html.gara:1:in `block in _app_views_hello_show_html_gara__347002861084973528_2199394760'
|
1004
|
+
app/views/hello/show.html.gara:1:in `new'
|
1005
|
+
app/views/hello/show.html.gara:1:in `_app_views_hello_show_html_gara__347002861084973528_2199394760'
|
1006
|
+
|
1007
|
+
|
1008
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
|
1009
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
|
1010
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (10.9ms)
|
1011
|
+
|
1012
|
+
|
1013
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 14:42:49 +0800
|
1014
|
+
Processing by HelloController#show as HTML
|
1015
|
+
Rendered hello/show.html.gara within layouts/application (0.4ms)
|
1016
|
+
Completed 500 Internal Server Error in 2ms
|
1017
|
+
|
1018
|
+
ActionView::Template::Error (Document already has a root node):
|
1019
|
+
app/views/hello/show.html.gara:1:in `block in _app_views_hello_show_html_gara__347002861084973528_2199394760'
|
1020
|
+
app/views/hello/show.html.gara:1:in `new'
|
1021
|
+
app/views/hello/show.html.gara:1:in `_app_views_hello_show_html_gara__347002861084973528_2199394760'
|
1022
|
+
|
1023
|
+
|
1024
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
|
1025
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
|
1026
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (10.6ms)
|
1027
|
+
|
1028
|
+
|
1029
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 14:42:49 +0800
|
1030
|
+
Processing by HelloController#show as HTML
|
1031
|
+
Rendered hello/show.html.gara within layouts/application (0.4ms)
|
1032
|
+
Completed 500 Internal Server Error in 3ms
|
1033
|
+
|
1034
|
+
ActionView::Template::Error (Document already has a root node):
|
1035
|
+
app/views/hello/show.html.gara:1:in `block in _app_views_hello_show_html_gara__347002861084973528_2199394760'
|
1036
|
+
app/views/hello/show.html.gara:1:in `new'
|
1037
|
+
app/views/hello/show.html.gara:1:in `_app_views_hello_show_html_gara__347002861084973528_2199394760'
|
1038
|
+
|
1039
|
+
|
1040
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
|
1041
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms)
|
1042
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (11.1ms)
|
1043
|
+
|
1044
|
+
|
1045
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 14:42:57 +0800
|
1046
|
+
Processing by HelloController#show as HTML
|
1047
|
+
Rendered hello/show.html.gara within layouts/application (1.8ms)
|
1048
|
+
Completed 500 Internal Server Error in 7ms
|
1049
|
+
|
1050
|
+
ActionView::Template::Error (undefined method `to_html' for nil:NilClass):
|
1051
|
+
app/views/hello/show.html.gara:3:in `_app_views_hello_show_html_gara__926454262295772305_2200463780'
|
1052
|
+
|
1053
|
+
|
1054
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms)
|
1055
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (19.8ms)
|
1056
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (32.3ms)
|
1057
|
+
|
1058
|
+
|
1059
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 14:43:21 +0800
|
1060
|
+
Processing by HelloController#show as HTML
|
1061
|
+
Rendered hello/show.html.gara within layouts/application (2.2ms)
|
1062
|
+
Completed 500 Internal Server Error in 8ms
|
1063
|
+
|
1064
|
+
ActionView::Template::Error (undefined method `to_html' for nil:NilClass):
|
1065
|
+
app/views/hello/show.html.gara:3:in `_app_views_hello_show_html_gara__2144545965262429786_2179319060'
|
1066
|
+
|
1067
|
+
|
1068
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms)
|
1069
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (17.6ms)
|
1070
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (30.3ms)
|
1071
|
+
|
1072
|
+
|
1073
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 14:43:22 +0800
|
1074
|
+
Processing by HelloController#show as HTML
|
1075
|
+
Rendered hello/show.html.gara within layouts/application (0.3ms)
|
1076
|
+
Completed 500 Internal Server Error in 2ms
|
1077
|
+
|
1078
|
+
ActionView::Template::Error (Document already has a root node):
|
1079
|
+
app/views/hello/show.html.gara:1:in `block in _app_views_hello_show_html_gara__2144545965262429786_2179319060'
|
1080
|
+
app/views/hello/show.html.gara:1:in `new'
|
1081
|
+
app/views/hello/show.html.gara:1:in `_app_views_hello_show_html_gara__2144545965262429786_2179319060'
|
1082
|
+
|
1083
|
+
|
1084
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms)
|
1085
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms)
|
1086
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.9ms)
|
1087
|
+
|
1088
|
+
|
1089
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 14:43:23 +0800
|
1090
|
+
Processing by HelloController#show as HTML
|
1091
|
+
Rendered hello/show.html.gara within layouts/application (0.2ms)
|
1092
|
+
Completed 500 Internal Server Error in 2ms
|
1093
|
+
|
1094
|
+
ActionView::Template::Error (Document already has a root node):
|
1095
|
+
app/views/hello/show.html.gara:1:in `block in _app_views_hello_show_html_gara__2144545965262429786_2179319060'
|
1096
|
+
app/views/hello/show.html.gara:1:in `new'
|
1097
|
+
app/views/hello/show.html.gara:1:in `_app_views_hello_show_html_gara__2144545965262429786_2179319060'
|
1098
|
+
|
1099
|
+
|
1100
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
|
1101
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms)
|
1102
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (11.8ms)
|
1103
|
+
|
1104
|
+
|
1105
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 14:43:30 +0800
|
1106
|
+
Processing by HelloController#show as HTML
|
1107
|
+
Rendered hello/show.html.gara within layouts/application (2.1ms)
|
1108
|
+
Completed 500 Internal Server Error in 7ms
|
1109
|
+
|
1110
|
+
ActionView::Template::Error (undefined method `to_html' for nil:NilClass):
|
1111
|
+
app/views/hello/show.html.gara:3:in `_app_views_hello_show_html_gara___3204346969760041847_2187708160'
|
1112
|
+
|
1113
|
+
|
1114
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
|
1115
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (18.8ms)
|
1116
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (30.9ms)
|
1117
|
+
|
1118
|
+
|
1119
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 14:43:37 +0800
|
1120
|
+
Processing by HelloController#show as HTML
|
1121
|
+
Rendered hello/show.html.gara within layouts/application (1.9ms)
|
1122
|
+
Completed 500 Internal Server Error in 7ms
|
1123
|
+
|
1124
|
+
ActionView::Template::Error (undefined method `to_html' for nil:NilClass):
|
1125
|
+
app/views/hello/show.html.gara:3:in `_app_views_hello_show_html_gara__205169198905196202_2198668440'
|
1126
|
+
|
1127
|
+
|
1128
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
|
1129
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (17.6ms)
|
1130
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (33.1ms)
|
1131
|
+
|
1132
|
+
|
1133
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 14:43:43 +0800
|
1134
|
+
Processing by HelloController#show as HTML
|
1135
|
+
Rendered hello/show.html.gara within layouts/application (2.1ms)
|
1136
|
+
Completed 500 Internal Server Error in 8ms
|
1137
|
+
|
1138
|
+
ActionView::Template::Error (undefined method `to_html' for nil:NilClass):
|
1139
|
+
app/views/hello/show.html.gara:3:in `_app_views_hello_show_html_gara__3889706426633135123_2190386900'
|
1140
|
+
|
1141
|
+
|
1142
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms)
|
1143
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (18.4ms)
|
1144
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (34.0ms)
|
1145
|
+
|
1146
|
+
|
1147
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 14:43:46 +0800
|
1148
|
+
Processing by HelloController#show as HTML
|
1149
|
+
Rendered hello/show.html.gara within layouts/application (0.5ms)
|
1150
|
+
Completed 500 Internal Server Error in 3ms
|
1151
|
+
|
1152
|
+
ActionView::Template::Error (Document already has a root node):
|
1153
|
+
app/views/hello/show.html.gara:1:in `block in _app_views_hello_show_html_gara__3889706426633135123_2190386900'
|
1154
|
+
app/views/hello/show.html.gara:1:in `new'
|
1155
|
+
app/views/hello/show.html.gara:1:in `_app_views_hello_show_html_gara__3889706426633135123_2190386900'
|
1156
|
+
|
1157
|
+
|
1158
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms)
|
1159
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms)
|
1160
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.3ms)
|
1161
|
+
|
1162
|
+
|
1163
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 14:44:54 +0800
|
1164
|
+
Processing by HelloController#show as HTML
|
1165
|
+
Rendered hello/show.html.gara within layouts/application (2.0ms)
|
1166
|
+
Completed 500 Internal Server Error in 10ms
|
1167
|
+
|
1168
|
+
ActionView::Template::Error (undefined method `to_html' for nil:NilClass):
|
1169
|
+
app/views/hello/show.html.gara:3:in `_app_views_hello_show_html_gara__2095109495037565039_2199489080'
|
1170
|
+
|
1171
|
+
|
1172
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms)
|
1173
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (18.3ms)
|
1174
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (31.6ms)
|
1175
|
+
|
1176
|
+
|
1177
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 14:44:55 +0800
|
1178
|
+
Processing by HelloController#show as HTML
|
1179
|
+
Rendered hello/show.html.gara within layouts/application (0.4ms)
|
1180
|
+
Completed 500 Internal Server Error in 3ms
|
1181
|
+
|
1182
|
+
ActionView::Template::Error (undefined method `to_html' for nil:NilClass):
|
1183
|
+
app/views/hello/show.html.gara:3:in `_app_views_hello_show_html_gara__2095109495037565039_2199489080'
|
1184
|
+
|
1185
|
+
|
1186
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
|
1187
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms)
|
1188
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (10.6ms)
|
1189
|
+
|
1190
|
+
|
1191
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 14:44:55 +0800
|
1192
|
+
Processing by HelloController#show as HTML
|
1193
|
+
Rendered hello/show.html.gara within layouts/application (0.4ms)
|
1194
|
+
Completed 500 Internal Server Error in 3ms
|
1195
|
+
|
1196
|
+
ActionView::Template::Error (undefined method `to_html' for nil:NilClass):
|
1197
|
+
app/views/hello/show.html.gara:3:in `_app_views_hello_show_html_gara__2095109495037565039_2199489080'
|
1198
|
+
|
1199
|
+
|
1200
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
|
1201
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
|
1202
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (10.4ms)
|
1203
|
+
|
1204
|
+
|
1205
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 14:44:56 +0800
|
1206
|
+
Processing by HelloController#show as HTML
|
1207
|
+
Rendered hello/show.html.gara within layouts/application (0.3ms)
|
1208
|
+
Completed 500 Internal Server Error in 2ms
|
1209
|
+
|
1210
|
+
ActionView::Template::Error (undefined method `to_html' for nil:NilClass):
|
1211
|
+
app/views/hello/show.html.gara:3:in `_app_views_hello_show_html_gara__2095109495037565039_2199489080'
|
1212
|
+
|
1213
|
+
|
1214
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
|
1215
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms)
|
1216
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (11.0ms)
|
1217
|
+
|
1218
|
+
|
1219
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 14:44:56 +0800
|
1220
|
+
Processing by HelloController#show as HTML
|
1221
|
+
Rendered hello/show.html.gara within layouts/application (0.4ms)
|
1222
|
+
Completed 500 Internal Server Error in 2ms
|
1223
|
+
|
1224
|
+
ActionView::Template::Error (undefined method `to_html' for nil:NilClass):
|
1225
|
+
app/views/hello/show.html.gara:3:in `_app_views_hello_show_html_gara__2095109495037565039_2199489080'
|
1226
|
+
|
1227
|
+
|
1228
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
|
1229
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
|
1230
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (10.5ms)
|
1231
|
+
|
1232
|
+
|
1233
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 14:44:56 +0800
|
1234
|
+
Processing by HelloController#show as HTML
|
1235
|
+
Rendered hello/show.html.gara within layouts/application (0.4ms)
|
1236
|
+
Completed 500 Internal Server Error in 2ms
|
1237
|
+
|
1238
|
+
ActionView::Template::Error (undefined method `to_html' for nil:NilClass):
|
1239
|
+
app/views/hello/show.html.gara:3:in `_app_views_hello_show_html_gara__2095109495037565039_2199489080'
|
1240
|
+
|
1241
|
+
|
1242
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
|
1243
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms)
|
1244
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (11.2ms)
|
1245
|
+
|
1246
|
+
|
1247
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 14:44:56 +0800
|
1248
|
+
Processing by HelloController#show as HTML
|
1249
|
+
Rendered hello/show.html.gara within layouts/application (0.4ms)
|
1250
|
+
Completed 500 Internal Server Error in 2ms
|
1251
|
+
|
1252
|
+
ActionView::Template::Error (undefined method `to_html' for nil:NilClass):
|
1253
|
+
app/views/hello/show.html.gara:3:in `_app_views_hello_show_html_gara__2095109495037565039_2199489080'
|
1254
|
+
|
1255
|
+
|
1256
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms)
|
1257
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms)
|
1258
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (16.4ms)
|
1259
|
+
|
1260
|
+
|
1261
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 14:45:28 +0800
|
1262
|
+
Processing by HelloController#show as HTML
|
1263
|
+
Rendered hello/show.html.gara within layouts/application (1.9ms)
|
1264
|
+
Completed 500 Internal Server Error in 7ms
|
1265
|
+
|
1266
|
+
ActionView::Template::Error (undefined method `to_html' for Gara::Html5Emitter:Class):
|
1267
|
+
app/views/hello/show.html.gara:3:in `_app_views_hello_show_html_gara___3059195742475600043_2198243540'
|
1268
|
+
|
1269
|
+
|
1270
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
|
1271
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (20.3ms)
|
1272
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (33.4ms)
|
1273
|
+
|
1274
|
+
|
1275
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 14:45:29 +0800
|
1276
|
+
Processing by HelloController#show as HTML
|
1277
|
+
Rendered hello/show.html.gara within layouts/application (0.4ms)
|
1278
|
+
Completed 500 Internal Server Error in 2ms
|
1279
|
+
|
1280
|
+
ActionView::Template::Error (undefined method `to_html' for Gara::Html5Emitter:Class):
|
1281
|
+
app/views/hello/show.html.gara:3:in `_app_views_hello_show_html_gara___3059195742475600043_2198243540'
|
1282
|
+
|
1283
|
+
|
1284
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
|
1285
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
|
1286
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (10.7ms)
|
1287
|
+
|
1288
|
+
|
1289
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 14:45:30 +0800
|
1290
|
+
Processing by HelloController#show as HTML
|
1291
|
+
Rendered hello/show.html.gara within layouts/application (0.4ms)
|
1292
|
+
Completed 500 Internal Server Error in 3ms
|
1293
|
+
|
1294
|
+
ActionView::Template::Error (undefined method `to_html' for Gara::Html5Emitter:Class):
|
1295
|
+
app/views/hello/show.html.gara:3:in `_app_views_hello_show_html_gara___3059195742475600043_2198243540'
|
1296
|
+
|
1297
|
+
|
1298
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
|
1299
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms)
|
1300
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (11.6ms)
|
1301
|
+
|
1302
|
+
|
1303
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 14:45:50 +0800
|
1304
|
+
Processing by HelloController#show as HTML
|
1305
|
+
Rendered hello/show.html.gara within layouts/application (0.7ms)
|
1306
|
+
Completed 200 OK in 34ms (Views: 33.8ms)
|
1307
|
+
|
1308
|
+
|
1309
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 14:45:59 +0800
|
1310
|
+
Processing by HelloController#show as HTML
|
1311
|
+
Rendered hello/show.html.gara within layouts/application (2.0ms)
|
1312
|
+
Completed 500 Internal Server Error in 4ms
|
1313
|
+
|
1314
|
+
ActionView::Template::Error (Document already has a root node):
|
1315
|
+
app/views/hello/show.html.gara:2:in `block in _app_views_hello_show_html_gara___1590494621225318906_2172089160'
|
1316
|
+
app/views/hello/show.html.gara:1:in `new'
|
1317
|
+
app/views/hello/show.html.gara:1:in `_app_views_hello_show_html_gara___1590494621225318906_2172089160'
|
1318
|
+
|
1319
|
+
|
1320
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
|
1321
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms)
|
1322
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (11.7ms)
|
1323
|
+
|
1324
|
+
|
1325
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 14:46:31 +0800
|
1326
|
+
Processing by HelloController#show as HTML
|
1327
|
+
Rendered hello/show.html.gara within layouts/application (335611.2ms)
|
1328
|
+
Completed 500 Internal Server Error in 335617ms
|
1329
|
+
|
1330
|
+
ActionView::Template::Error (Document already has a root node):
|
1331
|
+
app/views/hello/show.html.gara:2:in `block in _app_views_hello_show_html_gara___2556742522316587810_2206533420'
|
1332
|
+
app/views/hello/show.html.gara:1:in `new'
|
1333
|
+
app/views/hello/show.html.gara:1:in `_app_views_hello_show_html_gara___2556742522316587810_2206533420'
|
1334
|
+
|
1335
|
+
|
1336
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms)
|
1337
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (21.9ms)
|
1338
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (40.2ms)
|
1339
|
+
|
1340
|
+
|
1341
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 14:52:13 +0800
|
1342
|
+
Processing by HelloController#show as HTML
|
1343
|
+
Rendered hello/show.html.gara within layouts/application (0.7ms)
|
1344
|
+
Completed 200 OK in 40ms (Views: 39.8ms)
|
1345
|
+
|
1346
|
+
|
1347
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 15:17:38 +0800
|
1348
|
+
Processing by HelloController#show as HTML
|
1349
|
+
Rendered hello/show.html.gara within layouts/application (4.2ms)
|
1350
|
+
Completed 200 OK in 71ms (Views: 70.9ms)
|
1351
|
+
|
1352
|
+
|
1353
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 15:17:48 +0800
|
1354
|
+
Processing by HelloController#show as HTML
|
1355
|
+
Rendered hello/show.html.gara within layouts/application (3.3ms)
|
1356
|
+
Completed 500 Internal Server Error in 5ms
|
1357
|
+
|
1358
|
+
ActionView::Template::Error (Document already has a root node):
|
1359
|
+
app/views/hello/show.html.gara:2:in `block in _app_views_hello_show_html_gara___4177074198144821055_2171334680'
|
1360
|
+
app/views/hello/show.html.gara:1:in `new'
|
1361
|
+
app/views/hello/show.html.gara:1:in `_app_views_hello_show_html_gara___4177074198144821055_2171334680'
|
1362
|
+
|
1363
|
+
|
1364
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms)
|
1365
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms)
|
1366
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (17.4ms)
|
1367
|
+
|
1368
|
+
|
1369
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 15:17:53 +0800
|
1370
|
+
Processing by HelloController#show as HTML
|
1371
|
+
Rendered hello/show.html.gara within layouts/application (0.4ms)
|
1372
|
+
Completed 500 Internal Server Error in 2ms
|
1373
|
+
|
1374
|
+
ActionView::Template::Error (Document already has a root node):
|
1375
|
+
app/views/hello/show.html.gara:2:in `block in _app_views_hello_show_html_gara___4177074198144821055_2171334680'
|
1376
|
+
app/views/hello/show.html.gara:1:in `new'
|
1377
|
+
app/views/hello/show.html.gara:1:in `_app_views_hello_show_html_gara___4177074198144821055_2171334680'
|
1378
|
+
|
1379
|
+
|
1380
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
|
1381
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms)
|
1382
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (12.6ms)
|
1383
|
+
|
1384
|
+
|
1385
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 15:27:54 +0800
|
1386
|
+
Processing by HelloController#show as HTML
|
1387
|
+
Rendered hello/show.html.gara within layouts/application (1.5ms)
|
1388
|
+
Completed 200 OK in 59ms (Views: 58.7ms)
|
1389
|
+
|
1390
|
+
|
1391
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 15:28:50 +0800
|
1392
|
+
Processing by HelloController#show as HTML
|
1393
|
+
Rendered hello/show.html.gara within layouts/application (0.3ms)
|
1394
|
+
Completed 200 OK in 4ms (Views: 4.2ms)
|
1395
|
+
|
1396
|
+
|
1397
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 15:28:54 +0800
|
1398
|
+
Processing by HelloController#show as HTML
|
1399
|
+
Rendered hello/show.html.gara within layouts/application (2.6ms)
|
1400
|
+
Completed 200 OK in 40ms (Views: 40.0ms)
|
1401
|
+
|
1402
|
+
|
1403
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 15:29:49 +0800
|
1404
|
+
Processing by HelloController#show as HTML
|
1405
|
+
Rendered hello/show.html.gara within layouts/application (6592.1ms)
|
1406
|
+
Completed 200 OK in 24061ms (Views: 24061.0ms)
|
1407
|
+
|
1408
|
+
|
1409
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 15:37:17 +0800
|
1410
|
+
Processing by HelloController#show as HTML
|
1411
|
+
Rendered hello/show.html.gara within layouts/application (110968.5ms)
|
1412
|
+
Completed 200 OK in 112353ms (Views: 112352.4ms)
|
1413
|
+
|
1414
|
+
|
1415
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 15:39:42 +0800
|
1416
|
+
Processing by HelloController#show as HTML
|
1417
|
+
Rendered hello/show.html.gara within layouts/application (114979.0ms)
|
1418
|
+
Completed 200 OK in 139765ms (Views: 139764.8ms)
|
1419
|
+
|
1420
|
+
|
1421
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 15:45:21 +0800
|
1422
|
+
Processing by HelloController#show as HTML
|
1423
|
+
Rendered hello/show.html.gara within layouts/application (1.1ms)
|
1424
|
+
Completed 200 OK in 34ms (Views: 33.7ms)
|
1425
|
+
|
1426
|
+
|
1427
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 15:45:51 +0800
|
1428
|
+
Processing by HelloController#show as HTML
|
1429
|
+
Rendered hello/show.html.gara within layouts/application (1.0ms)
|
1430
|
+
Completed 200 OK in 33ms (Views: 32.5ms)
|
1431
|
+
|
1432
|
+
|
1433
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 15:46:26 +0800
|
1434
|
+
Processing by HelloController#show as HTML
|
1435
|
+
Rendered hello/show.html.gara within layouts/application (1.0ms)
|
1436
|
+
Completed 200 OK in 37ms (Views: 36.2ms)
|
1437
|
+
|
1438
|
+
|
1439
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 15:47:26 +0800
|
1440
|
+
Processing by HelloController#show as HTML
|
1441
|
+
Rendered hello/show.html.gara within layouts/application (1.1ms)
|
1442
|
+
Completed 200 OK in 42ms (Views: 41.9ms)
|
1443
|
+
|
1444
|
+
|
1445
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 15:47:42 +0800
|
1446
|
+
Processing by HelloController#show as HTML
|
1447
|
+
Rendered hello/show.html.gara within layouts/application (0.4ms)
|
1448
|
+
Completed 200 OK in 5ms (Views: 4.8ms)
|
1449
|
+
|
1450
|
+
|
1451
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 15:47:47 +0800
|
1452
|
+
Processing by HelloController#show as HTML
|
1453
|
+
Rendered hello/show.html.gara within layouts/application (17672.5ms)
|
1454
|
+
Completed 200 OK in 232959ms (Views: 232958.5ms)
|
1455
|
+
|
1456
|
+
|
1457
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 15:54:01 +0800
|
1458
|
+
Processing by HelloController#show as HTML
|
1459
|
+
Rendered hello/show.html.gara within layouts/application (1.0ms)
|
1460
|
+
Completed 200 OK in 39ms (Views: 38.4ms)
|
1461
|
+
|
1462
|
+
|
1463
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 15:54:40 +0800
|
1464
|
+
Processing by HelloController#show as HTML
|
1465
|
+
Rendered hello/show.html.gara within layouts/application (11852.8ms)
|
1466
|
+
Completed 200 OK in 54587ms (Views: 54586.8ms)
|
1467
|
+
|
1468
|
+
|
1469
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 15:55:38 +0800
|
1470
|
+
Processing by HelloController#show as HTML
|
1471
|
+
Rendered hello/show.html.gara within layouts/application (24225.6ms)
|
1472
|
+
Completed in 24227ms
|
1473
|
+
|
1474
|
+
|
1475
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 15:56:06 +0800
|
1476
|
+
Processing by HelloController#show as HTML
|
1477
|
+
Rendered hello/show.html.gara within layouts/application (1.0ms)
|
1478
|
+
Completed 200 OK in 33ms (Views: 32.9ms)
|
1479
|
+
|
1480
|
+
|
1481
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 15:56:11 +0800
|
1482
|
+
Processing by HelloController#show as HTML
|
1483
|
+
Rendered hello/show.html.gara within layouts/application (0.4ms)
|
1484
|
+
Completed 200 OK in 4ms (Views: 4.2ms)
|
1485
|
+
|
1486
|
+
|
1487
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 15:56:36 +0800
|
1488
|
+
Processing by HelloController#show as HTML
|
1489
|
+
Rendered hello/show.html.gara within layouts/application (3.5ms)
|
1490
|
+
Completed 500 Internal Server Error in 9ms
|
1491
|
+
|
1492
|
+
ActionView::Template::Error (wrong number of arguments (0 for 1+)):
|
1493
|
+
app/views/hello/show.html.gara:1:in `new'
|
1494
|
+
app/views/hello/show.html.gara:1:in `_app_views_hello_show_html_gara___2756763130167099260_2162108080'
|
1495
|
+
|
1496
|
+
|
1497
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms)
|
1498
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (18.8ms)
|
1499
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (35.4ms)
|
1500
|
+
|
1501
|
+
|
1502
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 15:57:16 +0800
|
1503
|
+
Processing by HelloController#show as HTML
|
1504
|
+
Rendered hello/show.html.gara within layouts/application (1.7ms)
|
1505
|
+
Completed 500 Internal Server Error in 8ms
|
1506
|
+
|
1507
|
+
ActionView::Template::Error (wrong argument type nil (expected Data)):
|
1508
|
+
app/views/hello/show.html.gara:1:in `new'
|
1509
|
+
app/views/hello/show.html.gara:1:in `_app_views_hello_show_html_gara__3127698338617879928_2164844620'
|
1510
|
+
|
1511
|
+
|
1512
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms)
|
1513
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (20.1ms)
|
1514
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (35.7ms)
|
1515
|
+
|
1516
|
+
|
1517
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 15:57:25 +0800
|
1518
|
+
Processing by HelloController#show as HTML
|
1519
|
+
Rendered hello/show.html.gara within layouts/application (0.2ms)
|
1520
|
+
Completed 500 Internal Server Error in 2ms
|
1521
|
+
|
1522
|
+
ActionView::Template::Error (wrong argument type nil (expected Data)):
|
1523
|
+
app/views/hello/show.html.gara:1:in `new'
|
1524
|
+
app/views/hello/show.html.gara:1:in `_app_views_hello_show_html_gara__3127698338617879928_2164844620'
|
1525
|
+
|
1526
|
+
|
1527
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms)
|
1528
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms)
|
1529
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.8ms)
|
1530
|
+
|
1531
|
+
|
1532
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 15:57:30 +0800
|
1533
|
+
Processing by HelloController#show as HTML
|
1534
|
+
Rendered hello/show.html.gara within layouts/application (1.0ms)
|
1535
|
+
Completed 200 OK in 34ms (Views: 34.1ms)
|
1536
|
+
|
1537
|
+
|
1538
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 15:58:12 +0800
|
1539
|
+
Processing by HelloController#show as HTML
|
1540
|
+
Rendered hello/show.html.gara within layouts/application (1.0ms)
|
1541
|
+
Completed 200 OK in 32ms (Views: 32.0ms)
|
1542
|
+
|
1543
|
+
|
1544
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 15:59:30 +0800
|
1545
|
+
Processing by HelloController#show as HTML
|
1546
|
+
Rendered hello/show.html.gara within layouts/application (1.0ms)
|
1547
|
+
Completed 200 OK in 32ms (Views: 31.6ms)
|
1548
|
+
|
1549
|
+
|
1550
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 16:00:12 +0800
|
1551
|
+
Processing by HelloController#show as HTML
|
1552
|
+
Rendered hello/show.html.gara within layouts/application (1.1ms)
|
1553
|
+
Completed 200 OK in 36ms (Views: 35.9ms)
|
1554
|
+
|
1555
|
+
|
1556
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 16:00:22 +0800
|
1557
|
+
Processing by HelloController#show as HTML
|
1558
|
+
Rendered hello/show.html.gara within layouts/application (2551.7ms)
|
1559
|
+
Completed 200 OK in 143362ms (Views: 143361.3ms)
|
1560
|
+
|
1561
|
+
|
1562
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 16:02:54 +0800
|
1563
|
+
Processing by HelloController#show as HTML
|
1564
|
+
Rendered hello/show.html.gara within layouts/application (1.1ms)
|
1565
|
+
Completed 200 OK in 36ms (Views: 36.1ms)
|
1566
|
+
|
1567
|
+
|
1568
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 16:06:32 +0800
|
1569
|
+
Processing by HelloController#show as HTML
|
1570
|
+
Rendered hello/show.html.gara within layouts/application (1.1ms)
|
1571
|
+
Completed 500 Internal Server Error in 49ms
|
1572
|
+
|
1573
|
+
ActionView::Template::Error (undefined method `doc' for #<Nokogiri::HTML::DocumentFragment:0x00000104ea6000>):
|
1574
|
+
app/views/layouts/application.html.gara:15:in `_app_views_layouts_application_html_gara___1912781307545373074_2188751760'
|
1575
|
+
|
1576
|
+
|
1577
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (2.5ms)
|
1578
|
+
|
1579
|
+
|
1580
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 16:06:56 +0800
|
1581
|
+
Processing by HelloController#show as HTML
|
1582
|
+
Rendered hello/show.html.gara within layouts/application (1.1ms)
|
1583
|
+
Completed 500 Internal Server Error in 37ms
|
1584
|
+
|
1585
|
+
ActionView::Template::Error (undefined method `doc' for #<Nokogiri::XML::Element:0x00000106535a78>):
|
1586
|
+
app/views/layouts/application.html.gara:15:in `_app_views_layouts_application_html_gara__4486497939074437754_2200581140'
|
1587
|
+
|
1588
|
+
|
1589
|
+
Rendered /Users/steve/.rvm/gems/ruby-2.1.0@express_admin/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (1.8ms)
|
1590
|
+
|
1591
|
+
|
1592
|
+
Started GET "/hello" for 127.0.0.1 at 2014-08-12 16:15:09 +0800
|
1593
|
+
Processing by HelloController#show as HTML
|
1594
|
+
Rendered hello/show.html.gara within layouts/application (1.0ms)
|
1595
|
+
Completed 200 OK in 40ms (Views: 39.6ms)
|