meta_description 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (67) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/Rakefile +34 -0
  4. data/app/helpers/meta_description/description_helper.rb +27 -0
  5. data/lib/meta_description.rb +12 -0
  6. data/lib/meta_description/engine.rb +9 -0
  7. data/lib/meta_description/version.rb +3 -0
  8. data/lib/tasks/meta_description_tasks.rake +4 -0
  9. data/test/dummy/README.rdoc +28 -0
  10. data/test/dummy/Rakefile +6 -0
  11. data/test/dummy/app/assets/javascripts/application.js +13 -0
  12. data/test/dummy/app/assets/javascripts/home.js +2 -0
  13. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  14. data/test/dummy/app/assets/stylesheets/home.css +4 -0
  15. data/test/dummy/app/controllers/application_controller.rb +12 -0
  16. data/test/dummy/app/controllers/home_controller.rb +7 -0
  17. data/test/dummy/app/helpers/application_helper.rb +2 -0
  18. data/test/dummy/app/helpers/home_helper.rb +2 -0
  19. data/test/dummy/app/views/home/index.html.erb +1 -0
  20. data/test/dummy/app/views/home/no_description.erb +1 -0
  21. data/test/dummy/app/views/layouts/application.html.erb +18 -0
  22. data/test/dummy/bin/bundle +3 -0
  23. data/test/dummy/bin/rails +4 -0
  24. data/test/dummy/bin/rake +4 -0
  25. data/test/dummy/bin/setup +29 -0
  26. data/test/dummy/config.ru +4 -0
  27. data/test/dummy/config/application.rb +26 -0
  28. data/test/dummy/config/boot.rb +5 -0
  29. data/test/dummy/config/database.yml +25 -0
  30. data/test/dummy/config/environment.rb +5 -0
  31. data/test/dummy/config/environments/development.rb +41 -0
  32. data/test/dummy/config/environments/production.rb +79 -0
  33. data/test/dummy/config/environments/test.rb +42 -0
  34. data/test/dummy/config/initializers/assets.rb +11 -0
  35. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  36. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  37. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  38. data/test/dummy/config/initializers/inflections.rb +16 -0
  39. data/test/dummy/config/initializers/mime_types.rb +4 -0
  40. data/test/dummy/config/initializers/session_store.rb +3 -0
  41. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  42. data/test/dummy/config/locales/en.yml +23 -0
  43. data/test/dummy/config/meta_descriptions.yml +3 -0
  44. data/test/dummy/config/routes.rb +5 -0
  45. data/test/dummy/config/secrets.yml +22 -0
  46. data/test/dummy/db/development.sqlite3 +0 -0
  47. data/test/dummy/log/development.log +1269 -0
  48. data/test/dummy/public/404.html +67 -0
  49. data/test/dummy/public/422.html +67 -0
  50. data/test/dummy/public/500.html +66 -0
  51. data/test/dummy/public/favicon.ico +0 -0
  52. data/test/dummy/test/controllers/home_controller_test.rb +9 -0
  53. data/test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  54. data/test/dummy/tmp/cache/assets/development/sprockets/1c9faaf28d05409b88ad3113374d613c +0 -0
  55. data/test/dummy/tmp/cache/assets/development/sprockets/2822de3b22c28bd5e718c9bf500457b2 +0 -0
  56. data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  57. data/test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  58. data/test/dummy/tmp/cache/assets/development/sprockets/40fc2f3d2a468a00e463f1d313cb1683 +0 -0
  59. data/test/dummy/tmp/cache/assets/development/sprockets/a9f028f7a492b5907ed80268be8f50f4 +0 -0
  60. data/test/dummy/tmp/cache/assets/development/sprockets/b878faf942403e313a5b103e5d80488e +0 -0
  61. data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  62. data/test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  63. data/test/dummy/tmp/cache/assets/development/sprockets/edbef6e0d0a4742346cf479f2c522eb0 +0 -0
  64. data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  65. data/test/meta_description_test.rb +7 -0
  66. data/test/test_helper.rb +19 -0
  67. metadata +196 -0
@@ -0,0 +1,42 @@
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 file server for tests with Cache-Control for performance.
16
+ config.serve_static_files = 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
+ # Randomize the order test cases are executed.
35
+ config.active_support.test_order = :random
36
+
37
+ # Print deprecation notices to the stderr.
38
+ config.active_support.deprecation = :stderr
39
+
40
+ # Raises error for missing translations
41
+ # config.action_view.raise_on_missing_translations = true
42
+ end
@@ -0,0 +1,11 @@
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
+ # Add additional assets to the asset load path
7
+ # Rails.application.config.assets.paths << Emoji.images_path
8
+
9
+ # Precompile additional assets.
10
+ # application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
11
+ # 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,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Rails.application.config.action_dispatch.cookies_serializer = :json
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Configure sensitive parameters which will be filtered from the log file.
4
+ Rails.application.config.filter_parameters += [:password]
@@ -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,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Rails.application.config.session_store :cookie_store, key: '_dummy_session'
@@ -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,3 @@
1
+ default: 'this is the default meta description'
2
+ home:
3
+ index: 'this is the meta description for the home#index page'
@@ -0,0 +1,5 @@
1
+ Rails.application.routes.draw do
2
+ get '/nodesc' => 'home#no_description'
3
+
4
+ root to: "home#index"
5
+ end
@@ -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: 4c30bb6f227d1fd0c815c2e5f1eccb274ab56912a38ed09c98bf5909dbfdc756c69e83c474c22c836528effc833da71142c08d7a91cb5cd6c82f62ac8f6dd2c2
15
+
16
+ test:
17
+ secret_key_base: 23d44db960d10bf046532c663c45c653e96312baa04907d2196e19797038549681b69e95938e8e918c6558b48071efaa2aab892ee229b369c8adb5a5b397dc83
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"] %>
File without changes
@@ -0,0 +1,1269 @@
1
+
2
+
3
+ Started GET "/" for ::1 at 2015-04-03 16:01:11 -0700
4
+ Processing by HomeController#index as HTML
5
+ Rendered home/index.html.erb within layouts/application (0.8ms)
6
+ Completed 200 OK in 36ms (Views: 35.5ms | ActiveRecord: 0.0ms)
7
+
8
+
9
+ Started GET "/assets/home-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-04-03 16:01:11 -0700
10
+
11
+
12
+ Started GET "/assets/application-4bd47aa5304440469cdae59cbeafed2c.css?body=1" for ::1 at 2015-04-03 16:01:11 -0700
13
+
14
+
15
+ Started GET "/assets/home-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-04-03 16:01:11 -0700
16
+
17
+
18
+ Started GET "/assets/application-5443590960d4ffbddd98865912808a33.js?body=1" for ::1 at 2015-04-03 16:01:11 -0700
19
+
20
+
21
+ Started GET "/" for ::1 at 2015-04-03 16:02:36 -0700
22
+ Processing by HomeController#index as HTML
23
+ Rendered home/index.html.erb within layouts/application (0.8ms)
24
+ Completed 200 OK in 27ms (Views: 26.5ms | ActiveRecord: 0.0ms)
25
+
26
+
27
+ Started GET "/assets/home-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-04-03 16:02:36 -0700
28
+
29
+
30
+ Started GET "/assets/application-4bd47aa5304440469cdae59cbeafed2c.css?body=1" for ::1 at 2015-04-03 16:02:36 -0700
31
+
32
+
33
+ Started GET "/assets/home-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-04-03 16:02:36 -0700
34
+
35
+
36
+ Started GET "/assets/application-5443590960d4ffbddd98865912808a33.js?body=1" for ::1 at 2015-04-03 16:02:36 -0700
37
+
38
+
39
+ Started GET "/" for ::1 at 2015-04-03 16:21:14 -0700
40
+ Processing by HomeController#index as HTML
41
+ Rendered home/index.html.erb within layouts/application (0.1ms)
42
+ Completed 200 OK in 12ms (Views: 12.2ms | ActiveRecord: 0.0ms)
43
+
44
+
45
+ Started GET "/assets/home-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-04-03 16:21:14 -0700
46
+
47
+
48
+ Started GET "/assets/application-4bd47aa5304440469cdae59cbeafed2c.css?body=1" for ::1 at 2015-04-03 16:21:14 -0700
49
+
50
+
51
+ Started GET "/assets/home-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-04-03 16:21:14 -0700
52
+
53
+
54
+ Started GET "/assets/application-5443590960d4ffbddd98865912808a33.js?body=1" for ::1 at 2015-04-03 16:21:14 -0700
55
+
56
+
57
+ Started GET "/" for ::1 at 2015-04-03 16:21:22 -0700
58
+ Processing by HomeController#index as HTML
59
+ Rendered home/index.html.erb within layouts/application (0.0ms)
60
+ Completed 200 OK in 9ms (Views: 9.2ms | ActiveRecord: 0.0ms)
61
+
62
+
63
+ Started GET "/assets/home-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-04-03 16:21:22 -0700
64
+
65
+
66
+ Started GET "/assets/home-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-04-03 16:21:22 -0700
67
+
68
+
69
+ Started GET "/assets/application-4bd47aa5304440469cdae59cbeafed2c.css?body=1" for ::1 at 2015-04-03 16:21:22 -0700
70
+
71
+
72
+ Started GET "/assets/application-5443590960d4ffbddd98865912808a33.js?body=1" for ::1 at 2015-04-03 16:21:22 -0700
73
+
74
+
75
+ Started GET "/" for ::1 at 2015-04-03 16:21:41 -0700
76
+ Processing by HomeController#index as HTML
77
+ Rendered home/index.html.erb within layouts/application (1.4ms)
78
+ Completed 200 OK in 36ms (Views: 35.4ms | ActiveRecord: 0.0ms)
79
+
80
+
81
+ Started GET "/assets/home-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-04-03 16:21:41 -0700
82
+
83
+
84
+ Started GET "/assets/application-5443590960d4ffbddd98865912808a33.js?body=1" for ::1 at 2015-04-03 16:21:41 -0700
85
+
86
+
87
+ Started GET "/assets/home-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-04-03 16:21:41 -0700
88
+
89
+
90
+ Started GET "/assets/application-4bd47aa5304440469cdae59cbeafed2c.css?body=1" for ::1 at 2015-04-03 16:21:41 -0700
91
+
92
+
93
+ Started GET "/" for ::1 at 2015-04-03 16:21:46 -0700
94
+ Processing by HomeController#index as HTML
95
+ Rendered home/index.html.erb within layouts/application (0.0ms)
96
+ Completed 200 OK in 9ms (Views: 9.1ms | ActiveRecord: 0.0ms)
97
+
98
+
99
+ Started GET "/assets/home-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-04-03 16:21:46 -0700
100
+
101
+
102
+ Started GET "/assets/application-5443590960d4ffbddd98865912808a33.js?body=1" for ::1 at 2015-04-03 16:21:46 -0700
103
+
104
+
105
+ Started GET "/assets/application-4bd47aa5304440469cdae59cbeafed2c.css?body=1" for ::1 at 2015-04-03 16:21:46 -0700
106
+
107
+
108
+ Started GET "/assets/home-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-04-03 16:21:46 -0700
109
+
110
+
111
+ Started GET "/" for ::1 at 2015-04-03 16:22:59 -0700
112
+ Processing by HomeController#index as HTML
113
+ Rendered home/index.html.erb within layouts/application (0.6ms)
114
+ Completed 500 Internal Server Error in 36ms (ActiveRecord: 0.0ms)
115
+
116
+ ActionView::Template::Error (undefined local variable or method `metadescription' for #<#<Class:0x00000106177c88>:0x00000106177300>):
117
+ 9: <body>
118
+ 10:
119
+ 11: <%= yield %>
120
+ 12: <%= metadescription %>
121
+ 13: </body>
122
+ 14: </html>
123
+ app/views/layouts/application.html.erb:12:in `_app_views_layouts_application_html_erb___3383126368592326805_2198679220'
124
+
125
+
126
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.4ms)
127
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms)
128
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
129
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (20.8ms)
130
+
131
+
132
+ Started GET "/" for ::1 at 2015-04-03 16:24:00 -0700
133
+ Processing by HomeController#index as HTML
134
+ Rendered home/index.html.erb within layouts/application (0.0ms)
135
+ Completed 500 Internal Server Error in 18ms (ActiveRecord: 0.0ms)
136
+
137
+ ActionView::Template::Error (undefined local variable or method `metadescription' for #<#<Class:0x0000010177b3c8>:0x0000010177aa90>):
138
+ 7: <%= csrf_meta_tags %>
139
+ 8: </head>
140
+ 9: <body>
141
+ 10: <%= metadescription %>
142
+ 11:
143
+ 12: <%= yield %>
144
+ 13:
145
+ app/views/layouts/application.html.erb:10:in `_app_views_layouts_application_html_erb___3383126368592326805_2236692480'
146
+
147
+
148
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.1ms)
149
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms)
150
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms)
151
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.6ms)
152
+
153
+
154
+ Started GET "/" for ::1 at 2015-04-03 16:24:11 -0700
155
+ Processing by HomeController#index as HTML
156
+ Rendered home/index.html.erb within layouts/application (0.0ms)
157
+ Completed 500 Internal Server Error in 16ms (ActiveRecord: 0.0ms)
158
+
159
+ ActionView::Template::Error (undefined local variable or method `metadescription' for #<#<Class:0x000001062ecc58>:0x000001062f7d10>):
160
+ 7: <%= csrf_meta_tags %>
161
+ 8: </head>
162
+ 9: <body>
163
+ 10: <%= metadescription %>
164
+ 11:
165
+ 12: <%= yield %>
166
+ 13:
167
+ app/views/layouts/application.html.erb:10:in `_app_views_layouts_application_html_erb___3383126368592326805_2199364560'
168
+
169
+
170
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.2ms)
171
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms)
172
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
173
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (16.3ms)
174
+
175
+
176
+ Started GET "/" for ::1 at 2015-04-03 16:25:58 -0700
177
+ Processing by HomeController#index as HTML
178
+ Rendered home/index.html.erb within layouts/application (0.8ms)
179
+ Completed 500 Internal Server Error in 36ms (ActiveRecord: 0.0ms)
180
+
181
+ ActionView::Template::Error (undefined local variable or method `metadescription' for #<#<Class:0x000001071214b8>:0x00000107120770>):
182
+ 7: <%= csrf_meta_tags %>
183
+ 8: </head>
184
+ 9: <body>
185
+ 10: <%= metadescription %>
186
+ 11:
187
+ 12: <%= yield %>
188
+ 13:
189
+ app/views/layouts/application.html.erb:10:in `_app_views_layouts_application_html_erb__1162591381135080884_2207013240'
190
+
191
+
192
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.1ms)
193
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms)
194
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
195
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.3ms)
196
+
197
+
198
+ Started GET "/" for ::1 at 2015-04-03 16:31:08 -0700
199
+ Processing by HomeController#index as HTML
200
+ Rendered home/index.html.erb within layouts/application (1.2ms)
201
+ Completed 500 Internal Server Error in 46ms (ActiveRecord: 0.0ms)
202
+
203
+ ActionView::Template::Error (undefined local variable or method `metadescription' for #<#<Class:0x000001016bdc10>:0x000001016bc018>):
204
+ 7: <%= csrf_meta_tags %>
205
+ 8: </head>
206
+ 9: <body>
207
+ 10: <%= metadescription %>
208
+ 11:
209
+ 12: <%= yield %>
210
+ 13:
211
+ app/views/layouts/application.html.erb:10:in `_app_views_layouts_application_html_erb___1965312939358812953_2170440080'
212
+
213
+
214
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.1ms)
215
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms)
216
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
217
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (17.4ms)
218
+
219
+
220
+ Started GET "/" for ::1 at 2015-04-03 16:31:20 -0700
221
+ Processing by HomeController#index as HTML
222
+ Rendered home/index.html.erb within layouts/application (0.0ms)
223
+ Completed 200 OK in 11ms (Views: 10.8ms | ActiveRecord: 0.0ms)
224
+
225
+
226
+ Started GET "/assets/home-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-04-03 16:31:20 -0700
227
+
228
+
229
+ Started GET "/assets/home-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-04-03 16:31:20 -0700
230
+
231
+
232
+ Started GET "/assets/application-4bd47aa5304440469cdae59cbeafed2c.css?body=1" for 127.0.0.1 at 2015-04-03 16:31:20 -0700
233
+
234
+
235
+ Started GET "/assets/application-5443590960d4ffbddd98865912808a33.js?body=1" for 127.0.0.1 at 2015-04-03 16:31:20 -0700
236
+
237
+
238
+ Started GET "/" for ::1 at 2015-04-03 16:33:11 -0700
239
+ Processing by HomeController#index as HTML
240
+ Rendered home/index.html.erb within layouts/application (0.7ms)
241
+ Completed 500 Internal Server Error in 32ms (ActiveRecord: 0.0ms)
242
+
243
+ ActionView::Template::Error (undefined local variable or method `metadescription' for #<#<Class:0x00000106021000>:0x00000106020290>):
244
+ 7: <%= csrf_meta_tags %>
245
+ 8: </head>
246
+ 9: <body>
247
+ 10: <%= metadescription %>
248
+ 11:
249
+ 12: <%= yield %>
250
+ 13:
251
+ app/views/layouts/application.html.erb:10:in `_app_views_layouts_application_html_erb___4410321840827067401_2198099640'
252
+
253
+
254
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.3ms)
255
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms)
256
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms)
257
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (15.0ms)
258
+
259
+
260
+ Started GET "/" for 127.0.0.1 at 2015-04-03 16:36:44 -0700
261
+ Processing by HomeController#index as HTML
262
+ Rendered home/index.html.erb within layouts/application (0.7ms)
263
+ Completed 200 OK in 28ms (Views: 27.6ms | ActiveRecord: 0.0ms)
264
+
265
+
266
+ Started GET "/assets/application-4bd47aa5304440469cdae59cbeafed2c.css?body=1" for 127.0.0.1 at 2015-04-03 16:36:44 -0700
267
+
268
+
269
+ Started GET "/assets/home-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-04-03 16:36:44 -0700
270
+
271
+
272
+ Started GET "/assets/home-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-04-03 16:36:44 -0700
273
+
274
+
275
+ Started GET "/assets/application-5443590960d4ffbddd98865912808a33.js?body=1" for ::1 at 2015-04-03 16:36:44 -0700
276
+
277
+
278
+ Started GET "/" for ::1 at 2015-04-03 16:37:40 -0700
279
+ Processing by HomeController#index as HTML
280
+ Rendered home/index.html.erb within layouts/application (0.0ms)
281
+ Completed 200 OK in 10ms (Views: 10.1ms | ActiveRecord: 0.0ms)
282
+
283
+
284
+ Started GET "/assets/home-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-04-03 16:37:40 -0700
285
+
286
+
287
+ Started GET "/assets/application-4bd47aa5304440469cdae59cbeafed2c.css?body=1" for ::1 at 2015-04-03 16:37:40 -0700
288
+
289
+
290
+ Started GET "/assets/application-5443590960d4ffbddd98865912808a33.js?body=1" for ::1 at 2015-04-03 16:37:40 -0700
291
+
292
+
293
+ Started GET "/assets/home-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-04-03 16:37:40 -0700
294
+
295
+
296
+ Started GET "/" for ::1 at 2015-04-03 16:37:48 -0700
297
+ Processing by HomeController#index as HTML
298
+ Rendered home/index.html.erb within layouts/application (0.7ms)
299
+ Completed 200 OK in 28ms (Views: 27.8ms | ActiveRecord: 0.0ms)
300
+
301
+
302
+ Started GET "/assets/home-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-04-03 16:37:48 -0700
303
+
304
+
305
+ Started GET "/assets/application-4bd47aa5304440469cdae59cbeafed2c.css?body=1" for ::1 at 2015-04-03 16:37:48 -0700
306
+
307
+
308
+ Started GET "/assets/home-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-04-03 16:37:48 -0700
309
+
310
+
311
+ Started GET "/assets/application-5443590960d4ffbddd98865912808a33.js?body=1" for ::1 at 2015-04-03 16:37:48 -0700
312
+
313
+
314
+ Started GET "/" for ::1 at 2015-04-03 16:38:08 -0700
315
+ Processing by HomeController#index as HTML
316
+ Rendered home/index.html.erb within layouts/application (0.8ms)
317
+ Completed 200 OK in 31ms (Views: 30.4ms | ActiveRecord: 0.0ms)
318
+
319
+
320
+ Started GET "/assets/home-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-04-03 16:38:08 -0700
321
+
322
+
323
+ Started GET "/assets/application-4bd47aa5304440469cdae59cbeafed2c.css?body=1" for ::1 at 2015-04-03 16:38:08 -0700
324
+
325
+
326
+ Started GET "/assets/home-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-04-03 16:38:08 -0700
327
+
328
+
329
+ Started GET "/assets/application-5443590960d4ffbddd98865912808a33.js?body=1" for ::1 at 2015-04-03 16:38:08 -0700
330
+
331
+
332
+ Started GET "/" for ::1 at 2015-04-03 16:38:45 -0700
333
+ Processing by HomeController#index as HTML
334
+ Rendered home/index.html.erb within layouts/application (0.8ms)
335
+ Completed 200 OK in 30ms (Views: 29.4ms | ActiveRecord: 0.0ms)
336
+
337
+
338
+ Started GET "/assets/application-4bd47aa5304440469cdae59cbeafed2c.css?body=1" for ::1 at 2015-04-03 16:38:45 -0700
339
+
340
+
341
+ Started GET "/assets/home-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-04-03 16:38:45 -0700
342
+
343
+
344
+ Started GET "/assets/application-5443590960d4ffbddd98865912808a33.js?body=1" for ::1 at 2015-04-03 16:38:45 -0700
345
+
346
+
347
+ Started GET "/assets/home-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-04-03 16:38:45 -0700
348
+
349
+
350
+ Started GET "/" for ::1 at 2015-04-03 16:39:32 -0700
351
+ Processing by HomeController#index as HTML
352
+ Rendered home/index.html.erb within layouts/application (0.7ms)
353
+ Completed 500 Internal Server Error in 30ms (ActiveRecord: 0.0ms)
354
+
355
+ ActionView::Template::Error (No such file or directory @ rb_sysopen - meta_descriptions.yml):
356
+ 7: <%= csrf_meta_tags %>
357
+ 8: </head>
358
+ 9: <body>
359
+ 10: <%= metadescription %>
360
+ 11:
361
+ 12: <%= yield %>
362
+ 13:
363
+ app/views/layouts/application.html.erb:10:in `_app_views_layouts_application_html_erb___3700285733182435932_2163399500'
364
+
365
+
366
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.4ms)
367
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms)
368
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
369
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (16.7ms)
370
+
371
+
372
+ Started GET "/" for ::1 at 2015-04-03 16:39:53 -0700
373
+ Processing by HomeController#index as HTML
374
+ Rendered home/index.html.erb within layouts/application (0.8ms)
375
+ Completed 200 OK in 29ms (Views: 28.6ms | ActiveRecord: 0.0ms)
376
+
377
+
378
+ Started GET "/assets/application-4bd47aa5304440469cdae59cbeafed2c.css?body=1" for ::1 at 2015-04-03 16:39:53 -0700
379
+
380
+
381
+ Started GET "/assets/home-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-04-03 16:39:53 -0700
382
+
383
+
384
+ Started GET "/assets/home-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-04-03 16:39:53 -0700
385
+
386
+
387
+ Started GET "/assets/application-5443590960d4ffbddd98865912808a33.js?body=1" for ::1 at 2015-04-03 16:39:53 -0700
388
+
389
+
390
+ Started GET "/" for ::1 at 2015-04-03 16:40:46 -0700
391
+ Processing by HomeController#index as HTML
392
+ Rendered home/index.html.erb within layouts/application (0.6ms)
393
+ Completed 200 OK in 26ms (Views: 26.0ms | ActiveRecord: 0.0ms)
394
+
395
+
396
+ Started GET "/assets/home-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-04-03 16:40:46 -0700
397
+
398
+
399
+ Started GET "/assets/home-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-04-03 16:40:46 -0700
400
+
401
+
402
+ Started GET "/assets/application-5443590960d4ffbddd98865912808a33.js?body=1" for ::1 at 2015-04-03 16:40:46 -0700
403
+
404
+
405
+ Started GET "/assets/application-4bd47aa5304440469cdae59cbeafed2c.css?body=1" for ::1 at 2015-04-03 16:40:46 -0700
406
+
407
+
408
+ Started GET "/" for ::1 at 2015-04-03 16:43:44 -0700
409
+ Processing by HomeController#index as HTML
410
+ Rendered home/index.html.erb within layouts/application (1.1ms)
411
+ Completed 500 Internal Server Error in 45ms (ActiveRecord: 0.0ms)
412
+
413
+ ActionView::Template::Error (undefined local variable or method `e' for #<#<Class:0x0000010178a2d8>:0x0000010177fb58>):
414
+ 7: <%= csrf_meta_tags %>
415
+ 8: </head>
416
+ 9: <body>
417
+ 10: <%= metadescription %>
418
+ 11:
419
+ 12: <%= yield %>
420
+ 13:
421
+ app/views/layouts/application.html.erb:10:in `_app_views_layouts_application_html_erb___3062798937410034668_2176129480'
422
+
423
+
424
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.5ms)
425
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms)
426
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms)
427
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (19.9ms)
428
+
429
+
430
+ Started GET "/" for ::1 at 2015-04-03 16:43:55 -0700
431
+ Processing by HomeController#index as HTML
432
+ Rendered home/index.html.erb within layouts/application (0.7ms)
433
+ Completed 200 OK in 27ms (Views: 26.7ms | ActiveRecord: 0.0ms)
434
+
435
+
436
+ Started GET "/assets/home-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-04-03 16:43:55 -0700
437
+
438
+
439
+ Started GET "/assets/home-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-04-03 16:43:55 -0700
440
+
441
+
442
+ Started GET "/assets/application-4bd47aa5304440469cdae59cbeafed2c.css?body=1" for ::1 at 2015-04-03 16:43:55 -0700
443
+
444
+
445
+ Started GET "/assets/application-5443590960d4ffbddd98865912808a33.js?body=1" for ::1 at 2015-04-03 16:43:55 -0700
446
+
447
+
448
+ Started GET "/" for ::1 at 2015-04-03 16:44:09 -0700
449
+ Processing by HomeController#index as HTML
450
+ Rendered home/index.html.erb within layouts/application (0.6ms)
451
+ Completed 500 Internal Server Error in 29ms (ActiveRecord: 0.0ms)
452
+
453
+ ActionView::Template::Error (undefined method `home' for #<Hash:0x00000103358348>):
454
+ 7: <%= csrf_meta_tags %>
455
+ 8: </head>
456
+ 9: <body>
457
+ 10: <%= metadescription %>
458
+ 11:
459
+ 12: <%= yield %>
460
+ 13:
461
+ app/views/layouts/application.html.erb:10:in `_app_views_layouts_application_html_erb__2406359516663184456_2161798640'
462
+
463
+
464
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.1ms)
465
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
466
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
467
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.1ms)
468
+
469
+
470
+ Started GET "/" for ::1 at 2015-04-03 16:44:32 -0700
471
+ Processing by HomeController#index as HTML
472
+ Rendered home/index.html.erb within layouts/application (0.7ms)
473
+ Completed 200 OK in 29ms (Views: 28.4ms | ActiveRecord: 0.0ms)
474
+
475
+
476
+ Started GET "/assets/home-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-04-03 16:44:32 -0700
477
+
478
+
479
+ Started GET "/assets/application-4bd47aa5304440469cdae59cbeafed2c.css?body=1" for ::1 at 2015-04-03 16:44:32 -0700
480
+
481
+
482
+ Started GET "/assets/home-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-04-03 16:44:32 -0700
483
+
484
+
485
+ Started GET "/assets/application-5443590960d4ffbddd98865912808a33.js?body=1" for ::1 at 2015-04-03 16:44:32 -0700
486
+
487
+
488
+ Started GET "/" for ::1 at 2015-04-03 16:48:37 -0700
489
+
490
+ ArgumentError (You should not use the `match` method in your router without specifying an HTTP method.
491
+ If you want to expose your action to both GET and POST, add `via: [:get, :post]` option.
492
+ If you want to expose your action to GET, use `get` in the router:
493
+ Instead of: match "controller#action"
494
+ Do: get "controller#action"):
495
+ config/routes.rb:2:in `block in <top (required)>'
496
+ config/routes.rb:1:in `<top (required)>'
497
+
498
+
499
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.7ms)
500
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms)
501
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
502
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (15.8ms)
503
+
504
+
505
+ Started GET "/" for ::1 at 2015-04-03 16:49:05 -0700
506
+ Processing by HomeController#index as HTML
507
+ Rendered home/index.html.erb within layouts/application (0.8ms)
508
+ Completed 200 OK in 30ms (Views: 29.6ms | ActiveRecord: 0.0ms)
509
+
510
+
511
+ Started GET "/assets/home-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-04-03 16:49:05 -0700
512
+
513
+
514
+ Started GET "/assets/application-4bd47aa5304440469cdae59cbeafed2c.css?body=1" for ::1 at 2015-04-03 16:49:05 -0700
515
+
516
+
517
+ Started GET "/assets/home-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-04-03 16:49:05 -0700
518
+
519
+
520
+ Started GET "/assets/application-5443590960d4ffbddd98865912808a33.js?body=1" for ::1 at 2015-04-03 16:49:05 -0700
521
+
522
+
523
+ Started GET "/no_description" for ::1 at 2015-04-03 16:49:35 -0700
524
+
525
+ ActionController::RoutingError (No route matches [GET] "/no_description"):
526
+ actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
527
+ actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
528
+ railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
529
+ railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
530
+ activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
531
+ activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
532
+ activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
533
+ railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
534
+ actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
535
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
536
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
537
+ activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
538
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
539
+ actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
540
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
541
+ railties (4.2.1) lib/rails/engine.rb:518:in `call'
542
+ railties (4.2.1) lib/rails/application.rb:164:in `call'
543
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
544
+ rack (1.6.0) lib/rack/content_length.rb:15:in `call'
545
+ rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
546
+ /Users/ylhert/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
547
+ /Users/ylhert/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
548
+ /Users/ylhert/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
549
+
550
+
551
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.8ms)
552
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
553
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (6.9ms)
554
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
555
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (23.1ms)
556
+
557
+
558
+ Started GET "/nodesc" for ::1 at 2015-04-03 16:49:42 -0700
559
+ Processing by HomeController#no_description as HTML
560
+ Rendered home/no_description.erb within layouts/application (0.3ms)
561
+ Completed 200 OK in 9ms (Views: 9.1ms | ActiveRecord: 0.0ms)
562
+
563
+
564
+ Started GET "/assets/home-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-04-03 16:49:42 -0700
565
+
566
+
567
+ Started GET "/assets/application-4bd47aa5304440469cdae59cbeafed2c.css?body=1" for ::1 at 2015-04-03 16:49:42 -0700
568
+
569
+
570
+ Started GET "/assets/application-5443590960d4ffbddd98865912808a33.js?body=1" for ::1 at 2015-04-03 16:49:42 -0700
571
+
572
+
573
+ Started GET "/assets/home-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-04-03 16:49:42 -0700
574
+
575
+
576
+ Started GET "/nodesc" for ::1 at 2015-04-03 16:50:20 -0700
577
+ Processing by HomeController#no_description as HTML
578
+ Rendered home/no_description.erb within layouts/application (0.3ms)
579
+ Completed 200 OK in 10ms (Views: 10.0ms | ActiveRecord: 0.0ms)
580
+
581
+
582
+ Started GET "/assets/home-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-04-03 16:50:20 -0700
583
+
584
+
585
+ Started GET "/assets/home-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-04-03 16:50:20 -0700
586
+
587
+
588
+ Started GET "/assets/application-4bd47aa5304440469cdae59cbeafed2c.css?body=1" for ::1 at 2015-04-03 16:50:20 -0700
589
+
590
+
591
+ Started GET "/assets/application-5443590960d4ffbddd98865912808a33.js?body=1" for ::1 at 2015-04-03 16:50:20 -0700
592
+
593
+
594
+ Started GET "/nodesc" for ::1 at 2015-04-03 16:51:34 -0700
595
+ Processing by HomeController#no_description as HTML
596
+ Rendered home/no_description.erb within layouts/application (0.0ms)
597
+ Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.0ms)
598
+
599
+ ActionView::Template::Error (uninitialized class variable @@metadescription in MetaDescription::DescriptionHelper):
600
+ 7: <%= csrf_meta_tags %>
601
+ 8: </head>
602
+ 9: <body>
603
+ 10: <%= metadescription %>
604
+ 11:
605
+ 12: <%= yield %>
606
+ 13:
607
+ app/views/layouts/application.html.erb:10:in `_app_views_layouts_application_html_erb__3109163022572021142_2199370900'
608
+
609
+
610
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.9ms)
611
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (25.0ms)
612
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
613
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (36.4ms)
614
+
615
+
616
+ Started GET "/nodesc" for ::1 at 2015-04-03 16:51:45 -0700
617
+ Processing by HomeController#no_description as HTML
618
+ Rendered home/no_description.erb within layouts/application (0.1ms)
619
+ Completed 200 OK in 12ms (Views: 11.8ms | ActiveRecord: 0.0ms)
620
+
621
+
622
+ Started GET "/assets/home-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-04-03 16:51:46 -0700
623
+
624
+
625
+ Started GET "/assets/application-5443590960d4ffbddd98865912808a33.js?body=1" for ::1 at 2015-04-03 16:51:46 -0700
626
+
627
+
628
+ Started GET "/assets/home-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-04-03 16:51:46 -0700
629
+
630
+
631
+ Started GET "/assets/application-4bd47aa5304440469cdae59cbeafed2c.css?body=1" for ::1 at 2015-04-03 16:51:46 -0700
632
+
633
+
634
+ Started GET "/nodesc" for ::1 at 2015-04-03 16:52:27 -0700
635
+ Processing by HomeController#no_description as HTML
636
+ Rendered home/no_description.erb within layouts/application (0.7ms)
637
+ Completed 500 Internal Server Error in 33ms (ActiveRecord: 0.0ms)
638
+
639
+ ActionView::Template::Error (undefined local variable or method `action_description' for #<#<Class:0x00000101af0558>:0x00000101af76f0>):
640
+ 7: <%= csrf_meta_tags %>
641
+ 8: </head>
642
+ 9: <body>
643
+ 10: <%= metadescription %>
644
+ 11:
645
+ 12: <%= yield %>
646
+ 13:
647
+ app/views/layouts/application.html.erb:10:in `_app_views_layouts_application_html_erb___210347681918480060_2202157780'
648
+
649
+
650
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.3ms)
651
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms)
652
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
653
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (14.0ms)
654
+
655
+
656
+ Started GET "/nodesc" for ::1 at 2015-04-03 16:52:57 -0700
657
+ Processing by HomeController#no_description as HTML
658
+ Rendered home/no_description.erb within layouts/application (0.7ms)
659
+ Completed 200 OK in 28ms (Views: 28.1ms | ActiveRecord: 0.0ms)
660
+
661
+
662
+ Started GET "/assets/home-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-04-03 16:52:57 -0700
663
+
664
+
665
+ Started GET "/assets/home-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-04-03 16:52:57 -0700
666
+
667
+
668
+ Started GET "/assets/application-4bd47aa5304440469cdae59cbeafed2c.css?body=1" for ::1 at 2015-04-03 16:52:57 -0700
669
+
670
+
671
+ Started GET "/assets/application-5443590960d4ffbddd98865912808a33.js?body=1" for ::1 at 2015-04-03 16:52:57 -0700
672
+
673
+
674
+ Started GET "/nodesc" for ::1 at 2015-04-03 16:53:05 -0700
675
+ Processing by HomeController#no_description as HTML
676
+ Rendered home/no_description.erb within layouts/application (0.0ms)
677
+ Completed 200 OK in 10ms (Views: 9.4ms | ActiveRecord: 0.0ms)
678
+
679
+
680
+ Started GET "/assets/home-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-04-03 16:53:05 -0700
681
+
682
+
683
+ Started GET "/assets/home-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-04-03 16:53:05 -0700
684
+
685
+
686
+ Started GET "/assets/application-4bd47aa5304440469cdae59cbeafed2c.css?body=1" for ::1 at 2015-04-03 16:53:05 -0700
687
+
688
+
689
+ Started GET "/assets/application-5443590960d4ffbddd98865912808a33.js?body=1" for ::1 at 2015-04-03 16:53:05 -0700
690
+
691
+
692
+ Started GET "/nodesc" for ::1 at 2015-04-03 16:57:07 -0700
693
+ Processing by HomeController#no_description as HTML
694
+ Rendered home/no_description.erb within layouts/application (0.8ms)
695
+ Completed 200 OK in 27ms (Views: 26.5ms | ActiveRecord: 0.0ms)
696
+
697
+
698
+ Started GET "/assets/home-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-04-03 16:57:07 -0700
699
+
700
+
701
+ Started GET "/assets/application-4bd47aa5304440469cdae59cbeafed2c.css?body=1" for ::1 at 2015-04-03 16:57:07 -0700
702
+
703
+
704
+ Started GET "/assets/application-5443590960d4ffbddd98865912808a33.js?body=1" for ::1 at 2015-04-03 16:57:07 -0700
705
+
706
+
707
+ Started GET "/assets/home-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-04-03 16:57:08 -0700
708
+
709
+
710
+ Started GET "/nodesc" for ::1 at 2015-04-03 16:57:32 -0700
711
+ Processing by HomeController#no_description as HTML
712
+ Rendered home/no_description.erb within layouts/application (0.7ms)
713
+ Completed 200 OK in 29ms (Views: 28.9ms | ActiveRecord: 0.0ms)
714
+
715
+
716
+ Started GET "/assets/home-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-04-03 16:57:32 -0700
717
+
718
+
719
+ Started GET "/assets/application-4bd47aa5304440469cdae59cbeafed2c.css?body=1" for ::1 at 2015-04-03 16:57:32 -0700
720
+
721
+
722
+ Started GET "/assets/application-5443590960d4ffbddd98865912808a33.js?body=1" for ::1 at 2015-04-03 16:57:32 -0700
723
+
724
+
725
+ Started GET "/assets/home-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-04-03 16:57:32 -0700
726
+
727
+
728
+ Started GET "/nodesc" for ::1 at 2015-04-03 16:57:56 -0700
729
+ Processing by HomeController#no_description as HTML
730
+ Rendered home/no_description.erb within layouts/application (0.7ms)
731
+ Completed 200 OK in 26ms (Views: 25.6ms | ActiveRecord: 0.0ms)
732
+
733
+
734
+ Started GET "/assets/home-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-04-03 16:57:56 -0700
735
+
736
+
737
+ Started GET "/assets/application-5443590960d4ffbddd98865912808a33.js?body=1" for ::1 at 2015-04-03 16:57:56 -0700
738
+
739
+
740
+ Started GET "/assets/application-4bd47aa5304440469cdae59cbeafed2c.css?body=1" for ::1 at 2015-04-03 16:57:56 -0700
741
+
742
+
743
+ Started GET "/assets/home-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-04-03 16:57:56 -0700
744
+
745
+
746
+ Started GET "/nodesc" for ::1 at 2015-04-03 16:58:15 -0700
747
+ Processing by HomeController#no_description as HTML
748
+ Rendered home/no_description.erb within layouts/application (0.7ms)
749
+ Completed 200 OK in 28ms (Views: 27.7ms | ActiveRecord: 0.0ms)
750
+
751
+
752
+ Started GET "/assets/home-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-04-03 16:58:16 -0700
753
+
754
+
755
+ Started GET "/assets/home-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-04-03 16:58:16 -0700
756
+
757
+
758
+ Started GET "/assets/application-4bd47aa5304440469cdae59cbeafed2c.css?body=1" for ::1 at 2015-04-03 16:58:16 -0700
759
+
760
+
761
+ Started GET "/assets/application-5443590960d4ffbddd98865912808a33.js?body=1" for ::1 at 2015-04-03 16:58:16 -0700
762
+
763
+
764
+ Started GET "/nodesc" for ::1 at 2015-04-03 16:58:57 -0700
765
+ Processing by HomeController#no_description as HTML
766
+ Rendered home/no_description.erb within layouts/application (0.7ms)
767
+ Completed 200 OK in 26ms (Views: 25.7ms | ActiveRecord: 0.0ms)
768
+
769
+
770
+ Started GET "/assets/home-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-04-03 16:58:57 -0700
771
+
772
+
773
+ Started GET "/assets/application-4bd47aa5304440469cdae59cbeafed2c.css?body=1" for ::1 at 2015-04-03 16:58:57 -0700
774
+
775
+
776
+ Started GET "/assets/home-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-04-03 16:58:57 -0700
777
+
778
+
779
+ Started GET "/assets/application-5443590960d4ffbddd98865912808a33.js?body=1" for ::1 at 2015-04-03 16:58:57 -0700
780
+
781
+
782
+ Started GET "/nodesc" for ::1 at 2015-04-03 16:59:11 -0700
783
+ Processing by HomeController#no_description as HTML
784
+ Rendered home/no_description.erb within layouts/application (0.3ms)
785
+ Completed 200 OK in 10ms (Views: 9.5ms | ActiveRecord: 0.0ms)
786
+
787
+
788
+ Started GET "/assets/home-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-04-03 16:59:11 -0700
789
+
790
+
791
+ Started GET "/assets/application-4bd47aa5304440469cdae59cbeafed2c.css?body=1" for ::1 at 2015-04-03 16:59:11 -0700
792
+
793
+
794
+ Started GET "/assets/application-5443590960d4ffbddd98865912808a33.js?body=1" for ::1 at 2015-04-03 16:59:11 -0700
795
+
796
+
797
+ Started GET "/assets/home-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-04-03 16:59:11 -0700
798
+
799
+
800
+ Started GET "/" for ::1 at 2015-04-03 16:59:16 -0700
801
+ Processing by HomeController#index as HTML
802
+ Rendered home/index.html.erb within layouts/application (0.3ms)
803
+ Completed 200 OK in 10ms (Views: 9.7ms | ActiveRecord: 0.0ms)
804
+
805
+
806
+ Started GET "/assets/home-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-04-03 16:59:16 -0700
807
+
808
+
809
+ Started GET "/assets/application-4bd47aa5304440469cdae59cbeafed2c.css?body=1" for ::1 at 2015-04-03 16:59:16 -0700
810
+
811
+
812
+ Started GET "/assets/home-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-04-03 16:59:16 -0700
813
+
814
+
815
+ Started GET "/assets/application-5443590960d4ffbddd98865912808a33.js?body=1" for ::1 at 2015-04-03 16:59:16 -0700
816
+
817
+
818
+ Started GET "/nodesc" for ::1 at 2015-04-03 16:59:22 -0700
819
+ Processing by HomeController#no_description as HTML
820
+ Rendered home/no_description.erb within layouts/application (0.1ms)
821
+ Completed 200 OK in 10ms (Views: 9.6ms | ActiveRecord: 0.0ms)
822
+
823
+
824
+ Started GET "/assets/home-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-04-03 16:59:22 -0700
825
+
826
+
827
+ Started GET "/assets/application-4bd47aa5304440469cdae59cbeafed2c.css?body=1" for ::1 at 2015-04-03 16:59:22 -0700
828
+
829
+
830
+ Started GET "/assets/application-5443590960d4ffbddd98865912808a33.js?body=1" for ::1 at 2015-04-03 16:59:22 -0700
831
+
832
+
833
+ Started GET "/assets/home-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-04-03 16:59:22 -0700
834
+
835
+
836
+ Started GET "/" for ::1 at 2015-04-03 16:59:24 -0700
837
+ Processing by HomeController#index as HTML
838
+ Rendered home/index.html.erb within layouts/application (0.0ms)
839
+ Completed 200 OK in 9ms (Views: 9.0ms | ActiveRecord: 0.0ms)
840
+
841
+
842
+ Started GET "/assets/home-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-04-03 16:59:24 -0700
843
+
844
+
845
+ Started GET "/assets/application-4bd47aa5304440469cdae59cbeafed2c.css?body=1" for ::1 at 2015-04-03 16:59:24 -0700
846
+
847
+
848
+ Started GET "/assets/home-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-04-03 16:59:24 -0700
849
+
850
+
851
+ Started GET "/assets/application-5443590960d4ffbddd98865912808a33.js?body=1" for ::1 at 2015-04-03 16:59:24 -0700
852
+
853
+
854
+ Started GET "/" for ::1 at 2015-04-03 16:59:53 -0700
855
+ Processing by HomeController#index as HTML
856
+ Rendered home/index.html.erb within layouts/application (0.3ms)
857
+ Completed 200 OK in 9ms (Views: 9.1ms | ActiveRecord: 0.0ms)
858
+
859
+
860
+ Started GET "/assets/home-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-04-03 16:59:53 -0700
861
+
862
+
863
+ Started GET "/assets/application-4bd47aa5304440469cdae59cbeafed2c.css?body=1" for ::1 at 2015-04-03 16:59:53 -0700
864
+
865
+
866
+ Started GET "/assets/application-5443590960d4ffbddd98865912808a33.js?body=1" for ::1 at 2015-04-03 16:59:53 -0700
867
+
868
+
869
+ Started GET "/assets/home-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-04-03 16:59:53 -0700
870
+
871
+
872
+ Started GET "/nodesc" for ::1 at 2015-04-03 17:00:01 -0700
873
+ Processing by HomeController#no_description as HTML
874
+ Rendered home/no_description.erb within layouts/application (0.0ms)
875
+ Completed 200 OK in 10ms (Views: 10.0ms | ActiveRecord: 0.0ms)
876
+
877
+
878
+ Started GET "/assets/home-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-04-03 17:00:01 -0700
879
+
880
+
881
+ Started GET "/assets/application-5443590960d4ffbddd98865912808a33.js?body=1" for ::1 at 2015-04-03 17:00:01 -0700
882
+
883
+
884
+ Started GET "/assets/application-4bd47aa5304440469cdae59cbeafed2c.css?body=1" for ::1 at 2015-04-03 17:00:01 -0700
885
+
886
+
887
+ Started GET "/assets/home-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-04-03 17:00:01 -0700
888
+
889
+
890
+ Started GET "/" for ::1 at 2015-04-03 17:00:25 -0700
891
+ Processing by HomeController#index as HTML
892
+ Rendered home/index.html.erb within layouts/application (0.6ms)
893
+ Completed 200 OK in 27ms (Views: 26.9ms | ActiveRecord: 0.0ms)
894
+
895
+
896
+ Started GET "/assets/home-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-04-03 17:00:25 -0700
897
+
898
+
899
+ Started GET "/assets/application-4bd47aa5304440469cdae59cbeafed2c.css?body=1" for ::1 at 2015-04-03 17:00:25 -0700
900
+
901
+
902
+ Started GET "/assets/application-5443590960d4ffbddd98865912808a33.js?body=1" for ::1 at 2015-04-03 17:00:25 -0700
903
+
904
+
905
+ Started GET "/assets/home-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-04-03 17:00:25 -0700
906
+
907
+
908
+ Started GET "/nodesc" for ::1 at 2015-04-03 17:00:31 -0700
909
+ Processing by HomeController#no_description as HTML
910
+ Rendered home/no_description.erb within layouts/application (0.3ms)
911
+ Completed 200 OK in 10ms (Views: 9.6ms | ActiveRecord: 0.0ms)
912
+
913
+
914
+ Started GET "/assets/home-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-04-03 17:00:31 -0700
915
+
916
+
917
+ Started GET "/assets/application-4bd47aa5304440469cdae59cbeafed2c.css?body=1" for ::1 at 2015-04-03 17:00:31 -0700
918
+
919
+
920
+ Started GET "/assets/application-5443590960d4ffbddd98865912808a33.js?body=1" for ::1 at 2015-04-03 17:00:31 -0700
921
+
922
+
923
+ Started GET "/assets/home-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-04-03 17:00:31 -0700
924
+
925
+
926
+ Started GET "/nodesc" for ::1 at 2015-04-03 17:01:22 -0700
927
+ Processing by HomeController#no_description as HTML
928
+ Rendered home/no_description.erb within layouts/application (0.7ms)
929
+ Completed 200 OK in 26ms (Views: 25.7ms | ActiveRecord: 0.0ms)
930
+
931
+
932
+ Started GET "/assets/home-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-04-03 17:01:22 -0700
933
+
934
+
935
+ Started GET "/assets/application-5443590960d4ffbddd98865912808a33.js?body=1" for ::1 at 2015-04-03 17:01:22 -0700
936
+
937
+
938
+ Started GET "/assets/application-4bd47aa5304440469cdae59cbeafed2c.css?body=1" for ::1 at 2015-04-03 17:01:22 -0700
939
+
940
+
941
+ Started GET "/assets/home-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-04-03 17:01:22 -0700
942
+
943
+
944
+ Started GET "/nodesc" for ::1 at 2015-04-03 17:01:44 -0700
945
+ Processing by HomeController#no_description as HTML
946
+ Rendered home/no_description.erb within layouts/application (0.7ms)
947
+ Completed 200 OK in 29ms (Views: 29.1ms | ActiveRecord: 0.0ms)
948
+
949
+
950
+ Started GET "/assets/home-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-04-03 17:01:44 -0700
951
+
952
+
953
+ Started GET "/assets/application-5443590960d4ffbddd98865912808a33.js?body=1" for ::1 at 2015-04-03 17:01:44 -0700
954
+
955
+
956
+ Started GET "/assets/application-4bd47aa5304440469cdae59cbeafed2c.css?body=1" for ::1 at 2015-04-03 17:01:44 -0700
957
+
958
+
959
+ Started GET "/assets/home-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-04-03 17:01:44 -0700
960
+
961
+
962
+ Started GET "/" for ::1 at 2015-04-03 17:01:47 -0700
963
+ Processing by HomeController#index as HTML
964
+ Rendered home/index.html.erb within layouts/application (0.3ms)
965
+ Completed 200 OK in 10ms (Views: 10.3ms | ActiveRecord: 0.0ms)
966
+
967
+
968
+ Started GET "/assets/home-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-04-03 17:01:47 -0700
969
+
970
+
971
+ Started GET "/assets/home-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-04-03 17:01:47 -0700
972
+
973
+
974
+ Started GET "/assets/application-4bd47aa5304440469cdae59cbeafed2c.css?body=1" for ::1 at 2015-04-03 17:01:47 -0700
975
+
976
+
977
+ Started GET "/assets/application-5443590960d4ffbddd98865912808a33.js?body=1" for ::1 at 2015-04-03 17:01:47 -0700
978
+
979
+
980
+ Started GET "/nodesc" for ::1 at 2015-04-03 17:01:48 -0700
981
+ Processing by HomeController#no_description as HTML
982
+ Rendered home/no_description.erb within layouts/application (0.0ms)
983
+ Completed 200 OK in 12ms (Views: 11.9ms | ActiveRecord: 0.0ms)
984
+
985
+
986
+ Started GET "/assets/home-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-04-03 17:01:48 -0700
987
+
988
+
989
+ Started GET "/assets/application-4bd47aa5304440469cdae59cbeafed2c.css?body=1" for ::1 at 2015-04-03 17:01:48 -0700
990
+
991
+
992
+ Started GET "/assets/application-5443590960d4ffbddd98865912808a33.js?body=1" for ::1 at 2015-04-03 17:01:48 -0700
993
+
994
+
995
+ Started GET "/assets/home-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-04-03 17:01:48 -0700
996
+
997
+
998
+ Started GET "/nodesc" for ::1 at 2015-04-03 17:02:32 -0700
999
+ Processing by HomeController#no_description as HTML
1000
+ Rendered home/no_description.erb within layouts/application (0.8ms)
1001
+ Completed 500 Internal Server Error in 32ms (ActiveRecord: 0.0ms)
1002
+
1003
+ ActionView::Template::Error (undefined local variable or method `set_meta_descriptions' for #<#<Class:0x0000010593af48>:0x00000105939be8>):
1004
+ 7: <%= csrf_meta_tags %>
1005
+ 8: </head>
1006
+ 9: <body>
1007
+ 10: <%= metadescription %>
1008
+ 11:
1009
+ 12: <%= yield %>
1010
+ 13:
1011
+ app/views/layouts/application.html.erb:10:in `_app_views_layouts_application_html_erb__1544853508619752617_2156869340'
1012
+
1013
+
1014
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.1ms)
1015
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms)
1016
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
1017
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (18.0ms)
1018
+
1019
+
1020
+ Started GET "/nodesc" for ::1 at 2015-04-03 17:02:44 -0700
1021
+ Processing by HomeController#no_description as HTML
1022
+ Rendered home/no_description.erb within layouts/application (0.7ms)
1023
+ Completed 500 Internal Server Error in 31ms (ActiveRecord: 0.0ms)
1024
+
1025
+ ActionView::Template::Error (undefined method `set_meta_descriptions' for MetaDescription:Module):
1026
+ 7: <%= csrf_meta_tags %>
1027
+ 8: </head>
1028
+ 9: <body>
1029
+ 10: <%= metadescription %>
1030
+ 11:
1031
+ 12: <%= yield %>
1032
+ 13:
1033
+ app/views/layouts/application.html.erb:10:in `_app_views_layouts_application_html_erb___4482853373848610970_2189855080'
1034
+
1035
+
1036
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.2ms)
1037
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
1038
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms)
1039
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.3ms)
1040
+
1041
+
1042
+ Started GET "/nodesc" for ::1 at 2015-04-03 17:03:36 -0700
1043
+ Processing by HomeController#no_description as HTML
1044
+ Rendered home/no_description.erb within layouts/application (0.9ms)
1045
+ Completed 500 Internal Server Error in 30ms (ActiveRecord: 0.0ms)
1046
+
1047
+ ActionView::Template::Error (uninitialized class variable @@meta_descriptions in MetaDescription::DescriptionHelper):
1048
+ 7: <%= csrf_meta_tags %>
1049
+ 8: </head>
1050
+ 9: <body>
1051
+ 10: <%= metadescription %>
1052
+ 11:
1053
+ 12: <%= yield %>
1054
+ 13:
1055
+ app/views/layouts/application.html.erb:10:in `_app_views_layouts_application_html_erb__3594451690019654354_2180896500'
1056
+
1057
+
1058
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.2ms)
1059
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms)
1060
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms)
1061
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (15.7ms)
1062
+
1063
+
1064
+ Started GET "/nodesc" for ::1 at 2015-04-03 17:04:20 -0700
1065
+ Processing by HomeController#no_description as HTML
1066
+ Rendered home/no_description.erb within layouts/application (0.7ms)
1067
+ Completed 500 Internal Server Error in 30ms (ActiveRecord: 0.0ms)
1068
+
1069
+ ActionView::Template::Error (undefined method `[]' for nil:NilClass):
1070
+ 7: <%= csrf_meta_tags %>
1071
+ 8: </head>
1072
+ 9: <body>
1073
+ 10: <%= metadescription %>
1074
+ 11:
1075
+ 12: <%= yield %>
1076
+ 13:
1077
+ app/views/layouts/application.html.erb:10:in `_app_views_layouts_application_html_erb__1922926884096137651_2161562700'
1078
+
1079
+
1080
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.4ms)
1081
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms)
1082
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
1083
+ Rendered /Users/ylhert/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (15.8ms)
1084
+
1085
+
1086
+ Started GET "/nodesc" for ::1 at 2015-04-03 17:04:40 -0700
1087
+ Processing by HomeController#no_description as HTML
1088
+ Rendered home/no_description.erb within layouts/application (0.7ms)
1089
+ Completed 200 OK in 30ms (Views: 29.7ms | ActiveRecord: 0.0ms)
1090
+
1091
+
1092
+ Started GET "/assets/home-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-04-03 17:04:40 -0700
1093
+
1094
+
1095
+ Started GET "/assets/application-4bd47aa5304440469cdae59cbeafed2c.css?body=1" for ::1 at 2015-04-03 17:04:40 -0700
1096
+
1097
+
1098
+ Started GET "/assets/home-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-04-03 17:04:40 -0700
1099
+
1100
+
1101
+ Started GET "/assets/application-5443590960d4ffbddd98865912808a33.js?body=1" for ::1 at 2015-04-03 17:04:40 -0700
1102
+
1103
+
1104
+ Started GET "/nodesc" for 127.0.0.1 at 2015-04-03 17:05:16 -0700
1105
+ Processing by HomeController#no_description as HTML
1106
+ Rendered home/no_description.erb within layouts/application (0.7ms)
1107
+ Completed 200 OK in 27ms (Views: 26.6ms | ActiveRecord: 0.0ms)
1108
+
1109
+
1110
+ Started GET "/assets/home-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-04-03 17:05:16 -0700
1111
+
1112
+
1113
+ Started GET "/assets/application-4bd47aa5304440469cdae59cbeafed2c.css?body=1" for 127.0.0.1 at 2015-04-03 17:05:16 -0700
1114
+
1115
+
1116
+ Started GET "/assets/home-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-04-03 17:05:16 -0700
1117
+
1118
+
1119
+ Started GET "/assets/application-5443590960d4ffbddd98865912808a33.js?body=1" for 127.0.0.1 at 2015-04-03 17:05:16 -0700
1120
+
1121
+
1122
+ Started GET "/nodesc" for 127.0.0.1 at 2015-04-03 17:05:17 -0700
1123
+ Processing by HomeController#no_description as HTML
1124
+ Rendered home/no_description.erb within layouts/application (0.0ms)
1125
+ Completed 200 OK in 10ms (Views: 10.3ms | ActiveRecord: 0.0ms)
1126
+
1127
+
1128
+ Started GET "/assets/home-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-04-03 17:05:17 -0700
1129
+
1130
+
1131
+ Started GET "/assets/home-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-04-03 17:05:17 -0700
1132
+
1133
+
1134
+ Started GET "/assets/application-4bd47aa5304440469cdae59cbeafed2c.css?body=1" for 127.0.0.1 at 2015-04-03 17:05:17 -0700
1135
+
1136
+
1137
+ Started GET "/assets/application-5443590960d4ffbddd98865912808a33.js?body=1" for 127.0.0.1 at 2015-04-03 17:05:17 -0700
1138
+
1139
+
1140
+ Started GET "/nodesc" for 127.0.0.1 at 2015-04-03 17:05:18 -0700
1141
+ Processing by HomeController#no_description as HTML
1142
+ Rendered home/no_description.erb within layouts/application (0.0ms)
1143
+ Completed 200 OK in 11ms (Views: 10.9ms | ActiveRecord: 0.0ms)
1144
+
1145
+
1146
+ Started GET "/assets/application-5443590960d4ffbddd98865912808a33.js?body=1" for 127.0.0.1 at 2015-04-03 17:05:18 -0700
1147
+
1148
+
1149
+ Started GET "/assets/home-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-04-03 17:05:18 -0700
1150
+
1151
+
1152
+ Started GET "/assets/application-4bd47aa5304440469cdae59cbeafed2c.css?body=1" for 127.0.0.1 at 2015-04-03 17:05:18 -0700
1153
+
1154
+
1155
+ Started GET "/assets/home-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-04-03 17:05:18 -0700
1156
+
1157
+
1158
+ Started GET "/nodesc" for 127.0.0.1 at 2015-04-03 17:05:18 -0700
1159
+ Processing by HomeController#no_description as HTML
1160
+ Rendered home/no_description.erb within layouts/application (0.0ms)
1161
+ Completed 200 OK in 11ms (Views: 10.8ms | ActiveRecord: 0.0ms)
1162
+
1163
+
1164
+ Started GET "/assets/home-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-04-03 17:05:18 -0700
1165
+
1166
+
1167
+ Started GET "/assets/application-4bd47aa5304440469cdae59cbeafed2c.css?body=1" for 127.0.0.1 at 2015-04-03 17:05:18 -0700
1168
+
1169
+
1170
+ Started GET "/assets/application-5443590960d4ffbddd98865912808a33.js?body=1" for 127.0.0.1 at 2015-04-03 17:05:18 -0700
1171
+
1172
+
1173
+ Started GET "/assets/home-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-04-03 17:05:18 -0700
1174
+
1175
+
1176
+ Started GET "/nodesc" for 127.0.0.1 at 2015-04-03 17:05:38 -0700
1177
+ Processing by HomeController#no_description as HTML
1178
+ Rendered home/no_description.erb within layouts/application (0.0ms)
1179
+ Completed 200 OK in 11ms (Views: 11.0ms | ActiveRecord: 0.0ms)
1180
+
1181
+
1182
+ Started GET "/assets/home-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-04-03 17:05:38 -0700
1183
+
1184
+
1185
+ Started GET "/assets/application-4bd47aa5304440469cdae59cbeafed2c.css?body=1" for 127.0.0.1 at 2015-04-03 17:05:38 -0700
1186
+
1187
+
1188
+ Started GET "/assets/home-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-04-03 17:05:38 -0700
1189
+
1190
+
1191
+ Started GET "/assets/application-5443590960d4ffbddd98865912808a33.js?body=1" for 127.0.0.1 at 2015-04-03 17:05:38 -0700
1192
+
1193
+
1194
+ Started GET "/nodesc" for 127.0.0.1 at 2015-04-03 17:05:54 -0700
1195
+ Processing by HomeController#no_description as HTML
1196
+ Rendered home/no_description.erb within layouts/application (0.7ms)
1197
+ Completed 200 OK in 26ms (Views: 25.8ms | ActiveRecord: 0.0ms)
1198
+
1199
+
1200
+ Started GET "/assets/home-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-04-03 17:05:54 -0700
1201
+
1202
+
1203
+ Started GET "/assets/home-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-04-03 17:05:54 -0700
1204
+
1205
+
1206
+ Started GET "/assets/application-4bd47aa5304440469cdae59cbeafed2c.css?body=1" for 127.0.0.1 at 2015-04-03 17:05:54 -0700
1207
+
1208
+
1209
+ Started GET "/assets/application-5443590960d4ffbddd98865912808a33.js?body=1" for 127.0.0.1 at 2015-04-03 17:05:54 -0700
1210
+
1211
+
1212
+ Started GET "/nodesc" for 127.0.0.1 at 2015-04-03 17:08:13 -0700
1213
+ Processing by HomeController#no_description as HTML
1214
+ Rendered home/no_description.erb within layouts/application (0.8ms)
1215
+ Completed 200 OK in 26ms (Views: 25.7ms | ActiveRecord: 0.0ms)
1216
+
1217
+
1218
+ Started GET "/assets/home-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-04-03 17:08:13 -0700
1219
+
1220
+
1221
+ Started GET "/assets/home-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-04-03 17:08:13 -0700
1222
+
1223
+
1224
+ Started GET "/assets/application-5443590960d4ffbddd98865912808a33.js?body=1" for 127.0.0.1 at 2015-04-03 17:08:13 -0700
1225
+
1226
+
1227
+ Started GET "/assets/application-4bd47aa5304440469cdae59cbeafed2c.css?body=1" for 127.0.0.1 at 2015-04-03 17:08:13 -0700
1228
+
1229
+
1230
+ Started GET "/nodesc" for 127.0.0.1 at 2015-04-03 17:10:43 -0700
1231
+ Processing by HomeController#no_description as HTML
1232
+ Rendered home/no_description.erb within layouts/application (1.3ms)
1233
+ Completed 200 OK in 32ms (Views: 31.4ms | ActiveRecord: 0.0ms)
1234
+
1235
+
1236
+ Started GET "/assets/home-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-04-03 17:10:43 -0700
1237
+
1238
+
1239
+ Started GET "/assets/home-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-04-03 17:10:43 -0700
1240
+
1241
+
1242
+ Started GET "/assets/application-4bd47aa5304440469cdae59cbeafed2c.css?body=1" for 127.0.0.1 at 2015-04-03 17:10:43 -0700
1243
+
1244
+
1245
+ Started GET "/assets/application-5443590960d4ffbddd98865912808a33.js?body=1" for 127.0.0.1 at 2015-04-03 17:10:43 -0700
1246
+
1247
+
1248
+ Started GET "/nodesc" for 127.0.0.1 at 2015-04-03 17:11:45 -0700
1249
+ Processing by HomeController#no_description as HTML
1250
+ Rendered home/no_description.erb within layouts/application (0.7ms)
1251
+ Completed 200 OK in 26ms (Views: 25.6ms | ActiveRecord: 0.0ms)
1252
+
1253
+
1254
+ Started GET "/nodesc" for 127.0.0.1 at 2015-04-03 17:13:35 -0700
1255
+ Processing by HomeController#no_description as HTML
1256
+ Rendered home/no_description.erb within layouts/application (0.7ms)
1257
+ Completed 200 OK in 29ms (Views: 28.3ms | ActiveRecord: 0.0ms)
1258
+
1259
+
1260
+ Started GET "/assets/home-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-04-03 17:13:35 -0700
1261
+
1262
+
1263
+ Started GET "/assets/home-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-04-03 17:13:35 -0700
1264
+
1265
+
1266
+ Started GET "/assets/application-4bd47aa5304440469cdae59cbeafed2c.css?body=1" for 127.0.0.1 at 2015-04-03 17:13:35 -0700
1267
+
1268
+
1269
+ Started GET "/assets/application-5443590960d4ffbddd98865912808a33.js?body=1" for 127.0.0.1 at 2015-04-03 17:13:35 -0700