glow 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 (55) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.md +70 -0
  3. data/Rakefile +23 -0
  4. data/lib/generators/glow/install/install_generator.rb +19 -0
  5. data/lib/glow.rb +8 -0
  6. data/lib/glow/engine.rb +10 -0
  7. data/lib/glow/filter.rb +19 -0
  8. data/lib/glow/railtie.rb +10 -0
  9. data/lib/glow/version.rb +3 -0
  10. data/lib/tasks/glow_tasks.rake +4 -0
  11. data/test/dummy/Gemfile +9 -0
  12. data/test/dummy/Gemfile.lock +124 -0
  13. data/test/dummy/Rakefile +7 -0
  14. data/test/dummy/app/assets/javascripts/application.js +9 -0
  15. data/test/dummy/app/assets/stylesheets/application.css +7 -0
  16. data/test/dummy/app/controllers/application_controller.rb +3 -0
  17. data/test/dummy/app/controllers/flash_controller.rb +18 -0
  18. data/test/dummy/app/helpers/application_helper.rb +2 -0
  19. data/test/dummy/app/views/flash/ajax.js.erb +1 -0
  20. data/test/dummy/app/views/flash/show.html.erb +13 -0
  21. data/test/dummy/app/views/layouts/application.html.erb +18 -0
  22. data/test/dummy/config.ru +4 -0
  23. data/test/dummy/config/application.rb +43 -0
  24. data/test/dummy/config/boot.rb +8 -0
  25. data/test/dummy/config/database.yml +25 -0
  26. data/test/dummy/config/environment.rb +5 -0
  27. data/test/dummy/config/environments/development.rb +24 -0
  28. data/test/dummy/config/environments/production.rb +51 -0
  29. data/test/dummy/config/environments/test.rb +38 -0
  30. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  31. data/test/dummy/config/initializers/inflections.rb +10 -0
  32. data/test/dummy/config/initializers/mime_types.rb +5 -0
  33. data/test/dummy/config/initializers/secret_token.rb +7 -0
  34. data/test/dummy/config/initializers/session_store.rb +8 -0
  35. data/test/dummy/config/initializers/wrap_parameters.rb +9 -0
  36. data/test/dummy/config/locales/en.yml +5 -0
  37. data/test/dummy/config/routes.rb +6 -0
  38. data/test/dummy/db/development.sqlite3 +0 -0
  39. data/test/dummy/db/test.sqlite3 +0 -0
  40. data/test/dummy/log/development.log +1629 -0
  41. data/test/dummy/log/test.log +1035 -0
  42. data/test/dummy/public/404.html +26 -0
  43. data/test/dummy/public/422.html +26 -0
  44. data/test/dummy/public/500.html +26 -0
  45. data/test/dummy/public/favicon.ico +0 -0
  46. data/test/dummy/public/javascripts/glow.js +28 -0
  47. data/test/dummy/public/javascripts/jquery.js +8981 -0
  48. data/test/dummy/public/javascripts/jquery.min.js +18 -0
  49. data/test/dummy/public/javascripts/jquery_ujs.js +331 -0
  50. data/test/dummy/script/rails +6 -0
  51. data/test/dummy/spec/controllers/flash_controller_spec.rb +33 -0
  52. data/test/dummy/spec/integration/flash_spec.rb +17 -0
  53. data/test/dummy/spec/spec_helper.rb +31 -0
  54. data/test/dummy/tmp/pids/server.pid +1 -0
  55. metadata +180 -0
@@ -0,0 +1,8 @@
1
+ require 'rubygems'
2
+ gemfile = File.expand_path('../../Gemfile', __FILE__)
3
+
4
+ if File.exist?(gemfile)
5
+ ENV['BUNDLE_GEMFILE'] = gemfile
6
+ require 'bundler'
7
+ Bundler.setup
8
+ end
@@ -0,0 +1,25 @@
1
+ # SQLite version 3.x
2
+ # gem install sqlite3
3
+ #
4
+ # Ensure the SQLite 3 gem is defined in your Gemfile
5
+ # gem 'sqlite3'
6
+ development:
7
+ adapter: sqlite3
8
+ database: db/development.sqlite3
9
+ pool: 5
10
+ timeout: 5000
11
+
12
+ # Warning: The database defined as "test" will be erased and
13
+ # re-generated from your development database when you run "rake".
14
+ # Do not set this db to the same as development or production.
15
+ test:
16
+ adapter: sqlite3
17
+ database: db/test.sqlite3
18
+ pool: 5
19
+ timeout: 5000
20
+
21
+ production:
22
+ adapter: sqlite3
23
+ database: db/production.sqlite3
24
+ pool: 5
25
+ timeout: 5000
@@ -0,0 +1,5 @@
1
+ # Load the rails application
2
+ require File.expand_path('../application', __FILE__)
3
+
4
+ # Initialize the rails application
5
+ Dummy::Application.initialize!
@@ -0,0 +1,24 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # In the development environment your application's code is reloaded on
5
+ # every request. This slows down response time but is perfect for development
6
+ # since you don't have to restart the web server when you make code changes.
7
+ config.cache_classes = false
8
+
9
+ # Log error messages when you accidentally call methods on nil.
10
+ config.whiny_nils = true
11
+
12
+ # Show full error reports and disable caching
13
+ config.consider_all_requests_local = true
14
+ config.action_controller.perform_caching = false
15
+
16
+ # Print deprecation notices to the Rails logger
17
+ config.active_support.deprecation = :log
18
+
19
+ # Only use best-standards-support built into browsers
20
+ config.action_dispatch.best_standards_support = :builtin
21
+
22
+ # Do not compress assets
23
+ # config.assets.compress = false
24
+ end
@@ -0,0 +1,51 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # Code is not reloaded between requests
5
+ config.cache_classes = true
6
+
7
+ # Full error reports are disabled and caching is turned on
8
+ config.consider_all_requests_local = false
9
+ config.action_controller.perform_caching = true
10
+
11
+ # Disable Rails's static asset server (Apache or nginx will already do this)
12
+ config.serve_static_assets = false
13
+
14
+ # Compress JavaScripts and CSS
15
+ config.assets.compress = true
16
+
17
+ # Specifies the header that your server uses for sending files
18
+ # config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
19
+ # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
20
+
21
+ # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
22
+ # config.force_ssl = true
23
+
24
+ # See everything in the log (default is :info)
25
+ # config.log_level = :debug
26
+
27
+ # Use a different logger for distributed setups
28
+ # config.logger = SyslogLogger.new
29
+
30
+ # Use a different cache store in production
31
+ # config.cache_store = :mem_cache_store
32
+
33
+ # Enable serving of images, stylesheets, and JavaScripts from an asset server
34
+ # config.action_controller.asset_host = "http://assets.example.com"
35
+
36
+ # Precompile additional assets (application.js, application.css, and all non-JS/CSS are already added)
37
+ # config.assets.precompile += %w( search.js )
38
+
39
+ # Disable delivery errors, bad email addresses will be ignored
40
+ # config.action_mailer.raise_delivery_errors = false
41
+
42
+ # Enable threaded mode
43
+ # config.threadsafe!
44
+
45
+ # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
46
+ # the I18n.default_locale when a translation can not be found)
47
+ config.i18n.fallbacks = true
48
+
49
+ # Send deprecation notices to registered listeners
50
+ config.active_support.deprecation = :notify
51
+ end
@@ -0,0 +1,38 @@
1
+ Dummy::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
+ # Configure static asset server for tests with Cache-Control for performance
11
+ config.serve_static_assets = true
12
+ config.static_cache_control = "public, max-age=3600"
13
+
14
+ # Log error messages when you accidentally call methods on nil
15
+ config.whiny_nils = true
16
+
17
+ # Show full error reports and disable caching
18
+ config.consider_all_requests_local = true
19
+ config.action_controller.perform_caching = false
20
+
21
+ # Raise exceptions instead of rendering exception templates
22
+ config.action_dispatch.show_exceptions = false
23
+
24
+ # Disable request forgery protection in test environment
25
+ config.action_controller.allow_forgery_protection = false
26
+
27
+ # Tell Action Mailer not to deliver emails to the real world.
28
+ # The :test delivery method accumulates sent emails in the
29
+ # ActionMailer::Base.deliveries array.
30
+
31
+ # Use SQL instead of Active Record's schema dumper when creating the test database.
32
+ # This is necessary if your schema can't be completely dumped by the schema dumper,
33
+ # like if you have constraints or database-specific column types
34
+ # config.active_record.schema_format = :sql
35
+
36
+ # Print deprecation notices to the stderr
37
+ config.active_support.deprecation = :stderr
38
+ end
@@ -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,10 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format
4
+ # (all these examples are active by default):
5
+ # ActiveSupport::Inflector.inflections do |inflect|
6
+ # inflect.plural /^(ox)$/i, '\1en'
7
+ # inflect.singular /^(ox)en/i, '\1'
8
+ # inflect.irregular 'person', 'people'
9
+ # inflect.uncountable %w( fish sheep )
10
+ # end
@@ -0,0 +1,5 @@
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
5
+ # Mime::Type.register_alias "text/html", :iphone
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+ # Make sure the secret is at least 30 characters and all random,
6
+ # no regular words or you'll be exposed to dictionary attacks.
7
+ Dummy::Application.config.secret_token = '1c522dfa82933ac69d1c28e0a517688053de8e0c29b2004751bef88638e4e64482d17cb51e1b193df17b53f327151a9de9d283e3e5a1f7c15cb9a586f5b44b08'
@@ -0,0 +1,8 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Dummy::Application.config.session_store :cookie_store, key: '_dummy_session'
4
+
5
+ # Use the database for sessions instead of the cookie-based default,
6
+ # which shouldn't be used to store highly confidential information
7
+ # (create the session table with "rails generate session_migration")
8
+ # Dummy::Application.config.session_store :active_record_store
@@ -0,0 +1,9 @@
1
+ # Be sure to restart your server when you modify this file.
2
+ #
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ # wrap_parameters format: [:json]
9
+ end
@@ -0,0 +1,5 @@
1
+ # Sample localization file for English. Add more files in this directory for other locales.
2
+ # See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
3
+
4
+ en:
5
+ hello: "Hello world"
@@ -0,0 +1,6 @@
1
+ Dummy::Application.routes.draw do
2
+ match '/flash/:type' => 'flash#redirect', via: [:get, :post]
3
+ match '/flash' => 'flash#show'
4
+ match '/flashajax/:type' => 'flash#ajax', via: [:get, :post]
5
+ root to: 'flash#show'
6
+ end
File without changes
File without changes
@@ -0,0 +1,1629 @@
1
+
2
+
3
+ Started GET "/" for 127.0.0.1 at 2011-08-29 11:33:30 +0200
4
+ Processing by FlashController#show as HTML
5
+ Rendered flash/show.html.erb within layouts/application (1.9ms)
6
+ Completed 200 OK in 12ms (Views: 10.7ms | ActiveRecord: 0.0ms)
7
+
8
+
9
+ Started GET "/" for 127.0.0.1 at 2011-08-29 11:41:47 +0200
10
+ Processing by FlashController#show as HTML
11
+ Rendered flash/show.html.erb within layouts/application (4.2ms)
12
+ Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.0ms)
13
+
14
+
15
+ Started GET "/flash?message=utf8%3A+%E2%9C%93+&type=notice" for 127.0.0.1 at 2011-08-29 11:41:49 +0200
16
+ Processing by FlashController#show as HTML
17
+ Parameters: {"message"=>"utf8: ✓ ", "type"=>"notice"}
18
+ Rendered flash/show.html.erb within layouts/application (6.9ms)
19
+ Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.0ms)
20
+
21
+
22
+ Started GET "/flash?message=utf8%3A+%E2%9C%93+&type=notice" for 127.0.0.1 at 2011-08-29 11:42:03 +0200
23
+ Processing by FlashController#show as HTML
24
+ Parameters: {"message"=>"utf8: ✓ ", "type"=>"notice"}
25
+ Rendered flash/show.html.erb within layouts/application (3.7ms)
26
+ Completed 200 OK in 19ms (Views: 18.0ms | ActiveRecord: 0.0ms)
27
+
28
+
29
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 11:42:06 +0200
30
+ Processing by FlashController#show as HTML
31
+ Rendered flash/show.html.erb within layouts/application (3.6ms)
32
+ Completed 200 OK in 17ms (Views: 15.1ms | ActiveRecord: 0.0ms)
33
+
34
+
35
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 11:42:30 +0200
36
+ Processing by FlashController#show as HTML
37
+ Rendered flash/show.html.erb within layouts/application (6.8ms)
38
+ Completed 200 OK in 20ms (Views: 19.3ms | ActiveRecord: 0.0ms)
39
+
40
+
41
+ Started GET "/flash/notice?message=utf8%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 11:42:32 +0200
42
+
43
+ ActionController::RoutingError (No route matches "/flash/notice"):
44
+
45
+
46
+ Rendered /Users/daniel/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.0.10/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.5ms)
47
+
48
+
49
+ Started GET "/flash/notice?message=utf8%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 11:43:11 +0200
50
+ Processing by FlashController#create as HTML
51
+ Parameters: {"message"=>"utf8: ✓ ", "type"=>"notice"}
52
+ Redirected to http://localhost:3000/flash
53
+ Completed 302 Found in 2ms
54
+
55
+
56
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 11:43:11 +0200
57
+ Processing by FlashController#show as HTML
58
+ Rendered flash/show.html.erb within layouts/application (4.2ms)
59
+ Completed 200 OK in 12ms (Views: 11.6ms | ActiveRecord: 0.0ms)
60
+
61
+
62
+ Started GET "/flash/notice?message=utf8%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 11:43:14 +0200
63
+ Processing by FlashController#create as HTML
64
+ Parameters: {"message"=>"utf8: ✓ ", "type"=>"notice"}
65
+ Redirected to http://localhost:3000/flash
66
+ Completed 302 Found in 3ms
67
+
68
+
69
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 11:43:14 +0200
70
+ Processing by FlashController#show as HTML
71
+ Rendered flash/show.html.erb within layouts/application (3.6ms)
72
+ Completed 200 OK in 13ms (Views: 11.6ms | ActiveRecord: 0.0ms)
73
+
74
+
75
+ Started GET "/flash/notice?message=utf8%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 11:43:16 +0200
76
+ Processing by FlashController#create as HTML
77
+ Parameters: {"message"=>"utf8: ✓ ", "type"=>"notice"}
78
+ Redirected to http://localhost:3000/flash
79
+ Completed 302 Found in 2ms
80
+
81
+
82
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 11:43:16 +0200
83
+ Processing by FlashController#show as HTML
84
+ Rendered flash/show.html.erb within layouts/application (3.7ms)
85
+ Completed 200 OK in 12ms (Views: 11.2ms | ActiveRecord: 0.0ms)
86
+
87
+
88
+ Started GET "/flash/notice?message=ajax%3A+%E2%9C%93+&remote=true" for 127.0.0.1 at 2011-08-29 11:43:17 +0200
89
+ Processing by FlashController#create as HTML
90
+ Parameters: {"message"=>"ajax: ✓ ", "remote"=>"true", "type"=>"notice"}
91
+ Redirected to http://localhost:3000/flash
92
+ Completed 302 Found in 2ms
93
+
94
+
95
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 11:43:17 +0200
96
+ Processing by FlashController#show as HTML
97
+ Rendered flash/show.html.erb within layouts/application (3.6ms)
98
+ Completed 200 OK in 12ms (Views: 11.1ms | ActiveRecord: 0.0ms)
99
+
100
+
101
+ Started GET "/flash/notice?message=utf8%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 11:43:18 +0200
102
+ Processing by FlashController#create as HTML
103
+ Parameters: {"message"=>"utf8: ✓ ", "type"=>"notice"}
104
+ Redirected to http://localhost:3000/flash
105
+ Completed 302 Found in 2ms
106
+
107
+
108
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 11:43:19 +0200
109
+ Processing by FlashController#show as HTML
110
+ Rendered flash/show.html.erb within layouts/application (3.4ms)
111
+ Completed 200 OK in 11ms (Views: 10.7ms | ActiveRecord: 0.0ms)
112
+
113
+
114
+ Started GET "/flash/notice?message=utf8%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 11:43:19 +0200
115
+ Processing by FlashController#create as HTML
116
+ Parameters: {"message"=>"utf8: ✓ ", "type"=>"notice"}
117
+ Redirected to http://localhost:3000/flash
118
+ Completed 302 Found in 2ms
119
+
120
+
121
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 11:43:19 +0200
122
+ Processing by FlashController#show as HTML
123
+ Rendered flash/show.html.erb within layouts/application (5.0ms)
124
+ Completed 200 OK in 14ms (Views: 12.7ms | ActiveRecord: 0.0ms)
125
+
126
+
127
+ Started GET "/flash/notice?message=utf8%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 11:43:20 +0200
128
+ Processing by FlashController#create as HTML
129
+ Parameters: {"message"=>"utf8: ✓ ", "type"=>"notice"}
130
+ Redirected to http://localhost:3000/flash
131
+ Completed 302 Found in 2ms
132
+
133
+
134
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 11:43:20 +0200
135
+ Processing by FlashController#show as HTML
136
+ Rendered flash/show.html.erb within layouts/application (3.8ms)
137
+ Completed 200 OK in 12ms (Views: 11.3ms | ActiveRecord: 0.0ms)
138
+
139
+
140
+ Started GET "/flash/notice?message=utf8%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 11:43:21 +0200
141
+ Processing by FlashController#create as HTML
142
+ Parameters: {"message"=>"utf8: ✓ ", "type"=>"notice"}
143
+ Redirected to http://localhost:3000/flash
144
+ Completed 302 Found in 2ms
145
+
146
+
147
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 11:43:21 +0200
148
+ Processing by FlashController#show as HTML
149
+ Rendered flash/show.html.erb within layouts/application (3.5ms)
150
+ Completed 200 OK in 12ms (Views: 11.1ms | ActiveRecord: 0.0ms)
151
+
152
+
153
+ Started GET "/flash/notice?message=ajax%3A+%E2%9C%93+&remote=true" for 127.0.0.1 at 2011-08-29 11:43:22 +0200
154
+ Processing by FlashController#create as HTML
155
+ Parameters: {"message"=>"ajax: ✓ ", "remote"=>"true", "type"=>"notice"}
156
+ Redirected to http://localhost:3000/flash
157
+ Completed 302 Found in 2ms
158
+
159
+
160
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 11:43:22 +0200
161
+ Processing by FlashController#show as HTML
162
+ Rendered flash/show.html.erb within layouts/application (4.0ms)
163
+ Completed 200 OK in 61ms (Views: 60.3ms | ActiveRecord: 0.0ms)
164
+
165
+
166
+ Started GET "/flash/notice?message=utf8%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 11:43:23 +0200
167
+ Processing by FlashController#create as HTML
168
+ Parameters: {"message"=>"utf8: ✓ ", "type"=>"notice"}
169
+ Redirected to http://localhost:3000/flash
170
+ Completed 302 Found in 3ms
171
+
172
+
173
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 11:43:23 +0200
174
+ Processing by FlashController#show as HTML
175
+ Rendered flash/show.html.erb within layouts/application (3.5ms)
176
+ Completed 200 OK in 12ms (Views: 10.9ms | ActiveRecord: 0.0ms)
177
+
178
+
179
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 11:45:12 +0200
180
+ Processing by FlashController#show as HTML
181
+ Rendered flash/show.html.erb within layouts/application (3.6ms)
182
+ Completed 200 OK in 12ms (Views: 11.4ms | ActiveRecord: 0.0ms)
183
+
184
+
185
+ Started GET "/flash/notice?message=utf8%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 11:45:14 +0200
186
+ Processing by FlashController#create as HTML
187
+ Parameters: {"message"=>"utf8: ✓ ", "type"=>"notice"}
188
+ Redirected to http://localhost:3000/flash
189
+ Completed 302 Found in 2ms
190
+
191
+
192
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 11:45:14 +0200
193
+ Processing by FlashController#show as HTML
194
+ Rendered flash/show.html.erb within layouts/application (4.5ms)
195
+ Completed 200 OK in 13ms (Views: 12.0ms | ActiveRecord: 0.0ms)
196
+
197
+
198
+ Started GET "/flash/notice?message=ajax%3A+%E2%9C%93+&remote=true" for 127.0.0.1 at 2011-08-29 11:45:16 +0200
199
+ Processing by FlashController#create as HTML
200
+ Parameters: {"message"=>"ajax: ✓ ", "remote"=>"true", "type"=>"notice"}
201
+ Redirected to http://localhost:3000/flash
202
+ Completed 302 Found in 2ms
203
+
204
+
205
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 11:45:16 +0200
206
+ Processing by FlashController#show as HTML
207
+ Rendered flash/show.html.erb within layouts/application (4.7ms)
208
+ Completed 200 OK in 14ms (Views: 12.8ms | ActiveRecord: 0.0ms)
209
+
210
+
211
+ Started GET "/flash/notice?message=ajax%3A+%E2%9C%93+&remote=true" for 127.0.0.1 at 2011-08-29 11:45:18 +0200
212
+ Processing by FlashController#create as HTML
213
+ Parameters: {"message"=>"ajax: ✓ ", "remote"=>"true", "type"=>"notice"}
214
+ Redirected to http://localhost:3000/flash
215
+ Completed 302 Found in 2ms
216
+
217
+
218
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 11:45:18 +0200
219
+ Processing by FlashController#show as HTML
220
+ Rendered flash/show.html.erb within layouts/application (3.7ms)
221
+ Completed 200 OK in 12ms (Views: 11.2ms | ActiveRecord: 0.0ms)
222
+
223
+
224
+ Started GET "/flash/notice?message=utf8%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 11:45:19 +0200
225
+ Processing by FlashController#create as HTML
226
+ Parameters: {"message"=>"utf8: ✓ ", "type"=>"notice"}
227
+ Redirected to http://localhost:3000/flash
228
+ Completed 302 Found in 2ms
229
+
230
+
231
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 11:45:19 +0200
232
+ Processing by FlashController#show as HTML
233
+ Rendered flash/show.html.erb within layouts/application (3.7ms)
234
+ Completed 200 OK in 12ms (Views: 11.1ms | ActiveRecord: 0.0ms)
235
+
236
+
237
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 11:45:55 +0200
238
+ Processing by FlashController#show as HTML
239
+ Rendered flash/show.html.erb within layouts/application (5.6ms)
240
+ Completed 200 OK in 14ms (Views: 13.6ms | ActiveRecord: 0.0ms)
241
+
242
+
243
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 11:46:18 +0200
244
+ Processing by FlashController#show as HTML
245
+ Rendered flash/show.html.erb within layouts/application (4.5ms)
246
+ Completed 200 OK in 13ms (Views: 12.6ms | ActiveRecord: 0.0ms)
247
+
248
+
249
+ Started GET "/" for 127.0.0.1 at 2011-08-29 11:46:22 +0200
250
+ Processing by FlashController#show as HTML
251
+ Rendered flash/show.html.erb within layouts/application (4.2ms)
252
+ Completed 200 OK in 13ms (Views: 12.0ms | ActiveRecord: 0.0ms)
253
+
254
+
255
+ Started GET "/flash/notice?message=ajax%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 11:46:24 +0200
256
+ Processing by FlashController#create as HTML
257
+ Parameters: {"message"=>"ajax: ✓ ", "type"=>"notice"}
258
+ Redirected to http://localhost:3000/flash
259
+ Completed 302 Found in 2ms
260
+
261
+
262
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 11:46:24 +0200
263
+ Processing by FlashController#show as HTML
264
+ Rendered flash/show.html.erb within layouts/application (4.5ms)
265
+ Completed 200 OK in 14ms (Views: 12.8ms | ActiveRecord: 0.0ms)
266
+
267
+
268
+ Started GET "/flash/notice?message=utf8%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 11:46:27 +0200
269
+ Processing by FlashController#create as HTML
270
+ Parameters: {"message"=>"utf8: ✓ ", "type"=>"notice"}
271
+ Redirected to http://localhost:3000/flash
272
+ Completed 302 Found in 2ms
273
+
274
+
275
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 11:46:27 +0200
276
+ Processing by FlashController#show as HTML
277
+ Rendered flash/show.html.erb within layouts/application (4.0ms)
278
+ Completed 200 OK in 12ms (Views: 11.6ms | ActiveRecord: 0.0ms)
279
+
280
+
281
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 11:47:13 +0200
282
+ Processing by FlashController#show as HTML
283
+ Rendered flash/show.html.erb within layouts/application (41.2ms)
284
+ Completed 500 Internal Server Error in 50ms
285
+
286
+ ActionView::Template::Error (No expansion found for :defauls):
287
+ 5: <%=
288
+ 6: #stylesheet_link_tag "application"
289
+ 7: %>
290
+ 8: <%= javascript_include_tag :defauls %>
291
+ 9: %>
292
+ 10: <%=
293
+ 11: #csrf_meta_tags
294
+ app/views/layouts/application.html.erb:8:in `_app_views_layouts_application_html_erb__4597340688674935106_70101826438860_946753982368924739'
295
+
296
+ Rendered /Users/daniel/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.0.10/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.9ms)
297
+ Rendered /Users/daniel/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.0.10/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (6.8ms)
298
+ Rendered /Users/daniel/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.0.10/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (20.3ms)
299
+
300
+
301
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 11:47:32 +0200
302
+ Processing by FlashController#show as HTML
303
+ Rendered flash/show.html.erb within layouts/application (5.4ms)
304
+ Completed 200 OK in 16ms (Views: 14.8ms | ActiveRecord: 0.0ms)
305
+
306
+
307
+ Started GET "/javascripts/prototype.js" for 127.0.0.1 at 2011-08-29 11:47:41 +0200
308
+
309
+ ActionController::RoutingError (No route matches "/javascripts/prototype.js"):
310
+
311
+
312
+ Rendered /Users/daniel/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.0.10/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (76.3ms)
313
+
314
+
315
+ Started GET "/javascripts/rails.js" for 127.0.0.1 at 2011-08-29 11:47:41 +0200
316
+
317
+ ActionController::RoutingError (No route matches "/javascripts/rails.js"):
318
+
319
+
320
+ Rendered /Users/daniel/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.0.10/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.7ms)
321
+
322
+
323
+ Started GET "/javascripts/effects.js" for 127.0.0.1 at 2011-08-29 11:47:41 +0200
324
+
325
+ ActionController::RoutingError (No route matches "/javascripts/effects.js"):
326
+
327
+
328
+ Rendered /Users/daniel/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.0.10/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (3.2ms)
329
+
330
+
331
+ Started GET "/javascripts/controls.js" for 127.0.0.1 at 2011-08-29 11:47:41 +0200
332
+
333
+ ActionController::RoutingError (No route matches "/javascripts/controls.js"):
334
+
335
+
336
+ Rendered /Users/daniel/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.0.10/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.4ms)
337
+
338
+
339
+ Started GET "/javascripts/dragdrop.js" for 127.0.0.1 at 2011-08-29 11:47:41 +0200
340
+
341
+ ActionController::RoutingError (No route matches "/javascripts/dragdrop.js"):
342
+
343
+
344
+ Rendered /Users/daniel/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.0.10/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.4ms)
345
+
346
+
347
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 11:47:53 +0200
348
+ Processing by FlashController#show as HTML
349
+ Rendered flash/show.html.erb within layouts/application (10.7ms)
350
+ Completed 200 OK in 47ms (Views: 45.9ms | ActiveRecord: 0.0ms)
351
+
352
+
353
+ Started GET "/javascripts/prototype.js" for 127.0.0.1 at 2011-08-29 11:48:03 +0200
354
+
355
+ ActionController::RoutingError (No route matches "/javascripts/prototype.js"):
356
+
357
+
358
+ Rendered /Users/daniel/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.0.10/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.2ms)
359
+
360
+
361
+ Started GET "/javascripts/effects.js" for 127.0.0.1 at 2011-08-29 11:48:03 +0200
362
+
363
+ ActionController::RoutingError (No route matches "/javascripts/effects.js"):
364
+
365
+
366
+ Rendered /Users/daniel/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.0.10/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (3.0ms)
367
+
368
+
369
+ Started GET "/javascripts/controls.js" for 127.0.0.1 at 2011-08-29 11:48:03 +0200
370
+
371
+ ActionController::RoutingError (No route matches "/javascripts/controls.js"):
372
+
373
+
374
+ Rendered /Users/daniel/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.0.10/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.8ms)
375
+
376
+
377
+ Started GET "/javascripts/dragdrop.js" for 127.0.0.1 at 2011-08-29 11:48:03 +0200
378
+
379
+ ActionController::RoutingError (No route matches "/javascripts/dragdrop.js"):
380
+
381
+
382
+ Rendered /Users/daniel/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.0.10/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.2ms)
383
+
384
+
385
+ Started GET "/javascripts/rails.js" for 127.0.0.1 at 2011-08-29 11:48:03 +0200
386
+
387
+ ActionController::RoutingError (No route matches "/javascripts/rails.js"):
388
+
389
+
390
+ Rendered /Users/daniel/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.0.10/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.4ms)
391
+
392
+
393
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 11:48:09 +0200
394
+ Processing by FlashController#show as HTML
395
+ Rendered flash/show.html.erb within layouts/application (9.4ms)
396
+ Completed 200 OK in 27ms (Views: 26.7ms | ActiveRecord: 0.0ms)
397
+
398
+
399
+ Started GET "/javascripts/dragdrop.js" for 127.0.0.1 at 2011-08-29 11:48:18 +0200
400
+
401
+ ActionController::RoutingError (No route matches "/javascripts/dragdrop.js"):
402
+
403
+
404
+ Rendered /Users/daniel/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.0.10/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.2ms)
405
+
406
+
407
+ Started GET "/javascripts/rails.js" for 127.0.0.1 at 2011-08-29 11:48:18 +0200
408
+
409
+ ActionController::RoutingError (No route matches "/javascripts/rails.js"):
410
+
411
+
412
+ Rendered /Users/daniel/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.0.10/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.2ms)
413
+
414
+
415
+ Started GET "/javascripts/controls.js" for 127.0.0.1 at 2011-08-29 11:48:18 +0200
416
+
417
+ ActionController::RoutingError (No route matches "/javascripts/controls.js"):
418
+
419
+
420
+ Rendered /Users/daniel/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.0.10/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.1ms)
421
+
422
+
423
+ Started GET "/javascripts/effects.js" for 127.0.0.1 at 2011-08-29 11:48:18 +0200
424
+
425
+ ActionController::RoutingError (No route matches "/javascripts/effects.js"):
426
+
427
+
428
+ Rendered /Users/daniel/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.0.10/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.6ms)
429
+
430
+
431
+ Started GET "/javascripts/prototype.js" for 127.0.0.1 at 2011-08-29 11:48:18 +0200
432
+
433
+ ActionController::RoutingError (No route matches "/javascripts/prototype.js"):
434
+
435
+
436
+ Rendered /Users/daniel/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.0.10/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.5ms)
437
+
438
+
439
+ Started GET "/flash/notice?message=ajax%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 11:48:21 +0200
440
+ Processing by FlashController#create as HTML
441
+ Parameters: {"message"=>"ajax: ✓ ", "type"=>"notice"}
442
+ Redirected to http://localhost:3000/flash
443
+ Completed 302 Found in 2ms
444
+
445
+
446
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 11:48:21 +0200
447
+ Processing by FlashController#show as HTML
448
+ Rendered flash/show.html.erb within layouts/application (5.6ms)
449
+ Completed 200 OK in 14ms (Views: 13.0ms | ActiveRecord: 0.0ms)
450
+
451
+
452
+ Started GET "/javascripts/prototype.js" for 127.0.0.1 at 2011-08-29 11:48:30 +0200
453
+
454
+ ActionController::RoutingError (No route matches "/javascripts/prototype.js"):
455
+
456
+
457
+ Rendered /Users/daniel/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.0.10/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.2ms)
458
+
459
+
460
+ Started GET "/javascripts/controls.js" for 127.0.0.1 at 2011-08-29 11:48:30 +0200
461
+
462
+ ActionController::RoutingError (No route matches "/javascripts/controls.js"):
463
+
464
+
465
+ Rendered /Users/daniel/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.0.10/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.6ms)
466
+
467
+
468
+ Started GET "/javascripts/rails.js" for 127.0.0.1 at 2011-08-29 11:48:30 +0200
469
+
470
+ ActionController::RoutingError (No route matches "/javascripts/rails.js"):
471
+
472
+
473
+ Rendered /Users/daniel/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.0.10/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.3ms)
474
+
475
+
476
+ Started GET "/javascripts/effects.js" for 127.0.0.1 at 2011-08-29 11:48:30 +0200
477
+
478
+ ActionController::RoutingError (No route matches "/javascripts/effects.js"):
479
+
480
+
481
+ Rendered /Users/daniel/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.0.10/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (3.0ms)
482
+
483
+
484
+ Started GET "/javascripts/dragdrop.js" for 127.0.0.1 at 2011-08-29 11:48:30 +0200
485
+
486
+ ActionController::RoutingError (No route matches "/javascripts/dragdrop.js"):
487
+
488
+
489
+ Rendered /Users/daniel/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.0.10/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.5ms)
490
+
491
+
492
+ Started GET "/flash/notice?message=ajax%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 11:48:36 +0200
493
+ Processing by FlashController#create as HTML
494
+ Parameters: {"message"=>"ajax: ✓ ", "type"=>"notice"}
495
+ Redirected to http://localhost:3000/flash
496
+ Completed 302 Found in 73ms
497
+
498
+
499
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 11:48:36 +0200
500
+ Processing by FlashController#show as HTML
501
+ Rendered flash/show.html.erb within layouts/application (5.6ms)
502
+ Completed 200 OK in 14ms (Views: 13.2ms | ActiveRecord: 0.0ms)
503
+
504
+
505
+ Started GET "/javascripts/effects.js" for 127.0.0.1 at 2011-08-29 11:48:45 +0200
506
+
507
+ ActionController::RoutingError (No route matches "/javascripts/effects.js"):
508
+
509
+
510
+ Rendered /Users/daniel/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.0.10/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.8ms)
511
+
512
+
513
+ Started GET "/javascripts/dragdrop.js" for 127.0.0.1 at 2011-08-29 11:48:45 +0200
514
+
515
+ ActionController::RoutingError (No route matches "/javascripts/dragdrop.js"):
516
+
517
+
518
+ Rendered /Users/daniel/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.0.10/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (3.3ms)
519
+
520
+
521
+ Started GET "/javascripts/controls.js" for 127.0.0.1 at 2011-08-29 11:48:46 +0200
522
+
523
+ ActionController::RoutingError (No route matches "/javascripts/controls.js"):
524
+
525
+
526
+ Rendered /Users/daniel/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.0.10/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.5ms)
527
+
528
+
529
+ Started GET "/javascripts/prototype.js" for 127.0.0.1 at 2011-08-29 11:48:46 +0200
530
+
531
+ ActionController::RoutingError (No route matches "/javascripts/prototype.js"):
532
+
533
+
534
+ Rendered /Users/daniel/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.0.10/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.7ms)
535
+
536
+
537
+ Started GET "/javascripts/rails.js" for 127.0.0.1 at 2011-08-29 11:48:46 +0200
538
+
539
+ ActionController::RoutingError (No route matches "/javascripts/rails.js"):
540
+
541
+
542
+ Rendered /Users/daniel/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.0.10/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.3ms)
543
+
544
+
545
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 12:12:14 +0200
546
+ Processing by FlashController#show as HTML
547
+ Rendered flash/show.html.erb within layouts/application (6.2ms)
548
+ Completed 200 OK in 16ms (Views: 14.7ms | ActiveRecord: 0.0ms)
549
+
550
+
551
+ Started GET "/javascripts/prototype.js" for 127.0.0.1 at 2011-08-29 12:12:25 +0200
552
+
553
+ ActionController::RoutingError (No route matches "/javascripts/prototype.js"):
554
+
555
+
556
+ Rendered /Users/daniel/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.0.10/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.3ms)
557
+
558
+
559
+ Started GET "/javascripts/effects.js" for 127.0.0.1 at 2011-08-29 12:12:25 +0200
560
+
561
+ ActionController::RoutingError (No route matches "/javascripts/effects.js"):
562
+
563
+
564
+ Rendered /Users/daniel/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.0.10/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.6ms)
565
+
566
+
567
+ Started GET "/javascripts/controls.js" for 127.0.0.1 at 2011-08-29 12:12:25 +0200
568
+
569
+ ActionController::RoutingError (No route matches "/javascripts/controls.js"):
570
+
571
+
572
+ Rendered /Users/daniel/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.0.10/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.2ms)
573
+
574
+
575
+ Started GET "/javascripts/dragdrop.js" for 127.0.0.1 at 2011-08-29 12:12:25 +0200
576
+
577
+ ActionController::RoutingError (No route matches "/javascripts/dragdrop.js"):
578
+
579
+
580
+ Rendered /Users/daniel/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.0.10/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.2ms)
581
+
582
+
583
+ Started GET "/javascripts/rails.js" for 127.0.0.1 at 2011-08-29 12:12:25 +0200
584
+
585
+ ActionController::RoutingError (No route matches "/javascripts/rails.js"):
586
+
587
+
588
+ Rendered /Users/daniel/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.0.10/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.3ms)
589
+
590
+
591
+ Started GET "/" for 127.0.0.1 at 2011-08-29 12:13:09 +0200
592
+
593
+ LoadError (no such file to load -- sqlite3):
594
+
595
+
596
+ Rendered /Users/daniel/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.0.10/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.6ms)
597
+ Rendered /Users/daniel/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.0.10/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (13.6ms)
598
+ Rendered /Users/daniel/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.0.10/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (26.0ms)
599
+
600
+
601
+ Started GET "/" for 127.0.0.1 at 2011-08-29 12:16:52 +0200
602
+ Processing by FlashController#show as HTML
603
+ Rendered flash/show.html.erb within layouts/application (6.6ms)
604
+ Completed 200 OK in 20ms (Views: 19.0ms)
605
+
606
+
607
+ Started GET "/flash/notice?message=ajax%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 12:17:16 +0200
608
+ Processing by FlashController#create as JS
609
+ Parameters: {"message"=>"ajax: ✓ ", "type"=>"notice"}
610
+ Rendered flash/create.js.erb (0.7ms)
611
+ Completed 200 OK in 43ms (Views: 41.7ms)
612
+
613
+
614
+ Started GET "/" for 127.0.0.1 at 2011-08-29 12:21:41 +0200
615
+ Processing by FlashController#show as HTML
616
+ Rendered flash/show.html.erb within layouts/application (4.9ms)
617
+ Completed 200 OK in 13ms (Views: 12.5ms)
618
+
619
+
620
+ Started GET "/flash/notice?message=utf8%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 12:21:44 +0200
621
+ Processing by FlashController#create as HTML
622
+ Parameters: {"message"=>"utf8: ✓ ", "type"=>"notice"}
623
+ Redirected to http://localhost:9292/flash
624
+ Completed 302 Found in 2ms
625
+
626
+
627
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 12:21:44 +0200
628
+ Processing by FlashController#show as HTML
629
+ Rendered flash/show.html.erb within layouts/application (4.9ms)
630
+ Completed 200 OK in 13ms (Views: 12.7ms)
631
+
632
+
633
+ Started GET "/flash/notice?message=ajax%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 12:21:46 +0200
634
+ Processing by FlashController#create as JS
635
+ Parameters: {"message"=>"ajax: ✓ ", "type"=>"notice"}
636
+ Rendered flash/create.js.erb (0.7ms)
637
+ Completed 200 OK in 77ms (Views: 75.8ms)
638
+
639
+
640
+ Started GET "/flash/notice?message=utf8%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 12:21:48 +0200
641
+ Processing by FlashController#create as HTML
642
+ Parameters: {"message"=>"utf8: ✓ ", "type"=>"notice"}
643
+ Redirected to http://localhost:9292/flash
644
+ Completed 302 Found in 9ms
645
+
646
+
647
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 12:21:48 +0200
648
+ Processing by FlashController#show as HTML
649
+ Rendered flash/show.html.erb within layouts/application (6.5ms)
650
+ Completed 200 OK in 17ms (Views: 15.9ms)
651
+
652
+
653
+ Started GET "/flash/notice?message=ajax%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 12:21:49 +0200
654
+ Processing by FlashController#create as JS
655
+ Parameters: {"message"=>"ajax: ✓ ", "type"=>"notice"}
656
+ Rendered flash/create.js.erb (0.7ms)
657
+ Completed 200 OK in 15ms (Views: 13.9ms)
658
+
659
+
660
+ Started GET "/flash/notice?message=ajax%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 12:21:53 +0200
661
+ Processing by FlashController#create as JS
662
+ Parameters: {"message"=>"ajax: ✓ ", "type"=>"notice"}
663
+ Rendered flash/create.js.erb (0.7ms)
664
+ Completed 200 OK in 16ms (Views: 14.6ms)
665
+
666
+
667
+ Started GET "/flash/notice?message=utf8%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 12:21:58 +0200
668
+ Processing by FlashController#create as HTML
669
+ Parameters: {"message"=>"utf8: ✓ ", "type"=>"notice"}
670
+ Redirected to http://localhost:9292/flash
671
+ Completed 302 Found in 2ms
672
+
673
+
674
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 12:21:58 +0200
675
+ Processing by FlashController#show as HTML
676
+ Rendered flash/show.html.erb within layouts/application (4.7ms)
677
+ Completed 200 OK in 14ms (Views: 13.0ms)
678
+
679
+
680
+ Started GET "/flash/notice?message=ajax%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 12:22:00 +0200
681
+ Processing by FlashController#create as JS
682
+ Parameters: {"message"=>"ajax: ✓ ", "type"=>"notice"}
683
+ Rendered flash/create.js.erb (1.0ms)
684
+ Completed 200 OK in 15ms (Views: 14.4ms)
685
+
686
+
687
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 12:28:10 +0200
688
+ Processing by FlashController#show as HTML
689
+ Rendered flash/show.html.erb within layouts/application (45.3ms)
690
+ Completed 200 OK in 54ms (Views: 53.8ms)
691
+
692
+
693
+ Started GET "/flash/notice?message=utf8%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 12:28:11 +0200
694
+ Processing by FlashController#create as
695
+ Parameters: {"message"=>"utf8: ✓ ", "type"=>"notice"}
696
+ Redirected to http://localhost:9292/flash
697
+ Completed 302 Found in 2ms
698
+
699
+
700
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 12:28:11 +0200
701
+ Processing by FlashController#show as
702
+ Rendered flash/show.html.erb within layouts/application (5.7ms)
703
+ Completed 200 OK in 30ms (Views: 29.1ms)
704
+
705
+
706
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 14:43:28 +0200
707
+ Processing by FlashController#show as HTML
708
+ Rendered flash/show.html.erb within layouts/application (5.8ms)
709
+ Completed 200 OK in 18ms (Views: 17.1ms)
710
+
711
+
712
+ Started GET "/flash/notice?message=utf8%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 14:43:30 +0200
713
+ Processing by FlashController#create as HTML
714
+ Parameters: {"message"=>"utf8: ✓ ", "type"=>"notice"}
715
+ Redirected to http://localhost:9292/flash
716
+ Completed 302 Found in 5ms
717
+
718
+
719
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 14:43:30 +0200
720
+ Processing by FlashController#show as HTML
721
+ Rendered flash/show.html.erb within layouts/application (4.6ms)
722
+ Completed 200 OK in 13ms (Views: 12.3ms)
723
+
724
+
725
+ Started GET "/flash/notice?message=utf8%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 14:43:35 +0200
726
+ Processing by FlashController#create as
727
+ Parameters: {"message"=>"utf8: ✓ ", "type"=>"notice"}
728
+ Redirected to http://localhost:9292/flash
729
+ Completed 302 Found in 2ms
730
+
731
+
732
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 14:43:35 +0200
733
+ Processing by FlashController#show as
734
+ Rendered flash/show.html.erb within layouts/application (4.5ms)
735
+ Completed 200 OK in 28ms (Views: 27.4ms)
736
+
737
+
738
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 14:43:37 +0200
739
+ Processing by FlashController#show as HTML
740
+ Rendered flash/show.html.erb within layouts/application (4.7ms)
741
+ Completed 200 OK in 17ms (Views: 16.3ms)
742
+
743
+
744
+ Started GET "/flash/notice?message=utf8%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 14:43:39 +0200
745
+ Processing by FlashController#create as
746
+ Parameters: {"message"=>"utf8: ✓ ", "type"=>"notice"}
747
+ Redirected to http://localhost:9292/flash
748
+ Completed 302 Found in 2ms
749
+
750
+
751
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 14:43:39 +0200
752
+ Processing by FlashController#show as
753
+ Rendered flash/show.html.erb within layouts/application (4.5ms)
754
+ Completed 200 OK in 26ms (Views: 25.3ms)
755
+
756
+
757
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 14:44:05 +0200
758
+ Processing by FlashController#show as HTML
759
+ Rendered flash/show.html.erb within layouts/application (7.8ms)
760
+ Completed 200 OK in 34ms (Views: 26.5ms)
761
+
762
+
763
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 14:44:06 +0200
764
+ Processing by FlashController#show as HTML
765
+ Rendered flash/show.html.erb within layouts/application (5.1ms)
766
+ Completed 200 OK in 17ms (Views: 15.8ms)
767
+
768
+
769
+ Started GET "/flash/notice?message=utf8%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 14:44:08 +0200
770
+ Processing by FlashController#create as
771
+ Parameters: {"message"=>"utf8: ✓ ", "type"=>"notice"}
772
+ Redirected to http://localhost:9292/flash
773
+ Completed 302 Found in 2ms
774
+
775
+
776
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 14:44:08 +0200
777
+ Processing by FlashController#show as
778
+ Rendered flash/show.html.erb within layouts/application (4.5ms)
779
+ Completed 200 OK in 30ms (Views: 29.0ms)
780
+
781
+
782
+ Started GET "/flash/notice?message=utf8%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 14:44:17 +0200
783
+ Processing by FlashController#create as
784
+ Parameters: {"message"=>"utf8: ✓ ", "type"=>"notice"}
785
+ Redirected to http://localhost:9292/flash
786
+ Completed 302 Found in 2ms
787
+
788
+
789
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 14:44:17 +0200
790
+ Processing by FlashController#show as
791
+ Rendered flash/show.html.erb within layouts/application (4.6ms)
792
+ Completed 200 OK in 26ms (Views: 25.6ms)
793
+
794
+
795
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 14:54:41 +0200
796
+ Processing by FlashController#show as HTML
797
+ Rendered flash/show.html.erb within layouts/application (16.8ms)
798
+ Completed 500 Internal Server Error in 27ms
799
+
800
+ ActionView::Template::Error (undefined local variable or method `glow' for #<#<Class:0x007f8732c6db10>:0x007f8732c6b3b0>):
801
+ 5: <%=
802
+ 6: #stylesheet_link_tag "application"
803
+ 7: %>
804
+ 8: <%= javascript_include_tag :defaults, glow %>
805
+ 9: <%=
806
+ 10: #csrf_meta_tags
807
+ 11: %>
808
+ app/views/layouts/application.html.erb:8:in `_app_views_layouts_application_html_erb___1434523333241754465_70109324581860_3786228109864525581'
809
+
810
+ Rendered /Users/daniel/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.0.10/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.9ms)
811
+ Rendered /Users/daniel/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.0.10/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (6.5ms)
812
+ Rendered /Users/daniel/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.0.10/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (20.0ms)
813
+
814
+
815
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 14:55:05 +0200
816
+ Processing by FlashController#show as HTML
817
+ Rendered flash/show.html.erb within layouts/application (5.5ms)
818
+ Completed 200 OK in 17ms (Views: 15.9ms)
819
+
820
+
821
+ Started GET "/flash/notice?message=utf8%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 14:55:23 +0200
822
+ Processing by FlashController#create as
823
+ Parameters: {"message"=>"utf8: ✓ ", "type"=>"notice"}
824
+ Redirected to http://localhost:9292/flash
825
+ Completed 302 Found in 2ms
826
+
827
+
828
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 14:55:23 +0200
829
+ Processing by FlashController#show as
830
+ Rendered flash/show.html.erb within layouts/application (5.3ms)
831
+ Completed 200 OK in 33ms (Views: 32.5ms)
832
+
833
+
834
+ Started GET "/flash/notice?message=utf8%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 14:55:28 +0200
835
+ Processing by FlashController#create as
836
+ Parameters: {"message"=>"utf8: ✓ ", "type"=>"notice"}
837
+ Redirected to http://localhost:9292/flash
838
+ Completed 302 Found in 2ms
839
+
840
+
841
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 14:55:28 +0200
842
+ Processing by FlashController#show as
843
+ Rendered flash/show.html.erb within layouts/application (4.9ms)
844
+ Completed 200 OK in 26ms (Views: 25.7ms)
845
+
846
+
847
+ Started GET "/flash/notice?message=utf8%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 14:55:58 +0200
848
+ Processing by FlashController#create as HTML
849
+ Parameters: {"message"=>"utf8: ✓ ", "type"=>"notice"}
850
+ Redirected to http://localhost:9292/flash
851
+ Completed 302 Found in 2ms
852
+
853
+
854
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 14:55:58 +0200
855
+ Processing by FlashController#show as HTML
856
+ Rendered flash/show.html.erb within layouts/application (4.9ms)
857
+ Completed 200 OK in 13ms (Views: 12.3ms)
858
+
859
+
860
+ Started GET "/flash/notice?message=utf8%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 14:56:08 +0200
861
+ Processing by FlashController#create as
862
+ Parameters: {"message"=>"utf8: ✓ ", "type"=>"notice"}
863
+ Redirected to http://localhost:9292/flash
864
+ Completed 302 Found in 3ms
865
+
866
+
867
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 14:56:08 +0200
868
+ Processing by FlashController#show as
869
+ Rendered flash/show.html.erb within layouts/application (54.1ms)
870
+ Completed 200 OK in 78ms (Views: 77.4ms)
871
+
872
+
873
+ Started GET "/flash/notice?message=utf8%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 14:56:54 +0200
874
+ Processing by FlashController#create as
875
+ Parameters: {"message"=>"utf8: ✓ ", "type"=>"notice"}
876
+ Redirected to http://localhost:9292/flash
877
+ Completed 302 Found in 2ms
878
+
879
+
880
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 14:56:54 +0200
881
+ Processing by FlashController#show as
882
+ Rendered flash/show.html.erb within layouts/application (4.8ms)
883
+ Completed 200 OK in 26ms (Views: 25.4ms)
884
+
885
+
886
+ Started GET "/flash/notice?message=utf8%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 14:56:59 +0200
887
+ Processing by FlashController#create as
888
+ Parameters: {"message"=>"utf8: ✓ ", "type"=>"notice"}
889
+ Redirected to http://localhost:9292/flash
890
+ Completed 302 Found in 2ms
891
+
892
+
893
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 14:56:59 +0200
894
+ Processing by FlashController#show as
895
+ Rendered flash/show.html.erb within layouts/application (5.0ms)
896
+ Completed 200 OK in 28ms (Views: 26.9ms)
897
+
898
+
899
+ Started GET "/flash/notice?message=utf8%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 14:58:22 +0200
900
+ Processing by FlashController#create as
901
+ Parameters: {"message"=>"utf8: ✓ ", "type"=>"notice"}
902
+ Redirected to http://localhost:9292/flash
903
+ Completed 302 Found in 2ms
904
+
905
+
906
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 14:58:22 +0200
907
+ Processing by FlashController#show as
908
+ Rendered flash/show.html.erb within layouts/application (4.8ms)
909
+ Completed 200 OK in 26ms (Views: 25.0ms)
910
+
911
+
912
+ Started GET "/flash/notice?message=utf8%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 14:59:56 +0200
913
+ Processing by FlashController#create as
914
+ Parameters: {"message"=>"utf8: ✓ ", "type"=>"notice"}
915
+ Redirected to http://localhost:9292/flash
916
+ Completed 302 Found in 2ms
917
+
918
+
919
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 14:59:56 +0200
920
+ Processing by FlashController#show as
921
+ Rendered flash/show.html.erb within layouts/application (4.8ms)
922
+ Completed 200 OK in 26ms (Views: 25.5ms)
923
+
924
+
925
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 15:01:44 +0200
926
+ Processing by FlashController#show as HTML
927
+ Rendered flash/show.html.erb within layouts/application (5.3ms)
928
+ Completed 200 OK in 14ms (Views: 13.5ms)
929
+
930
+
931
+ Started POST "/flash/notice?message=utf8%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 15:02:00 +0200
932
+ Processing by FlashController#create as
933
+ Parameters: {"message"=>"utf8: ✓ ", "type"=>"notice"}
934
+ Redirected to http://localhost:9292/flash
935
+ Completed 302 Found in 2ms
936
+
937
+
938
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 15:02:00 +0200
939
+ Processing by FlashController#show as
940
+ Rendered flash/show.html.erb within layouts/application (4.9ms)
941
+ Completed 200 OK in 28ms (Views: 27.1ms)
942
+
943
+
944
+ Started POST "/flash/notice?message=utf8%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 15:02:21 +0200
945
+ Processing by FlashController#create as
946
+ Parameters: {"message"=>"utf8: ✓ ", "type"=>"notice"}
947
+ Redirected to http://localhost:9292/flash
948
+ Completed 302 Found in 2ms
949
+
950
+
951
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 15:02:21 +0200
952
+ Processing by FlashController#show as
953
+ Rendered flash/show.html.erb within layouts/application (4.8ms)
954
+ Completed 200 OK in 26ms (Views: 25.7ms)
955
+
956
+
957
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 15:04:01 +0200
958
+ Processing by FlashController#show as HTML
959
+ Rendered flash/show.html.erb within layouts/application (7.1ms)
960
+ Completed 200 OK in 16ms (Views: 15.7ms)
961
+
962
+
963
+ Started POST "/flash/notice?message=utf8%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 15:04:13 +0200
964
+ Processing by FlashController#create as
965
+ Parameters: {"message"=>"utf8: ✓ ", "type"=>"notice"}
966
+ Redirected to http://localhost:9292/flash
967
+ Completed 302 Found in 2ms
968
+
969
+
970
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 15:04:13 +0200
971
+ Processing by FlashController#show as
972
+ Rendered flash/show.html.erb within layouts/application (4.9ms)
973
+ Completed 200 OK in 27ms (Views: 26.5ms)
974
+
975
+
976
+ Started POST "/flash/notice?message=utf8%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 15:04:32 +0200
977
+ Processing by FlashController#create as
978
+ Parameters: {"message"=>"utf8: ✓ ", "type"=>"notice"}
979
+ Redirected to http://localhost:9292/flash
980
+ Completed 302 Found in 2ms
981
+
982
+
983
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 15:04:32 +0200
984
+ Processing by FlashController#show as
985
+ Rendered flash/show.html.erb within layouts/application (5.4ms)
986
+ Completed 200 OK in 29ms (Views: 28.1ms)
987
+
988
+
989
+ Started POST "/flash/notice?message=utf8%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 15:04:39 +0200
990
+ Processing by FlashController#create as
991
+ Parameters: {"message"=>"utf8: ✓ ", "type"=>"notice"}
992
+ Redirected to http://localhost:9292/flash
993
+ Completed 302 Found in 2ms
994
+
995
+
996
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 15:04:39 +0200
997
+ Processing by FlashController#show as
998
+ Rendered flash/show.html.erb within layouts/application (5.2ms)
999
+ Completed 200 OK in 29ms (Views: 28.2ms)
1000
+
1001
+
1002
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 15:06:47 +0200
1003
+ Processing by FlashController#show as HTML
1004
+ Rendered flash/show.html.erb within layouts/application (5.2ms)
1005
+ Completed 200 OK in 13ms (Views: 12.8ms)
1006
+
1007
+
1008
+ Started GET "/flash/notice.js?message=utf8%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 15:07:00 +0200
1009
+ Processing by FlashController#create as JS
1010
+ Parameters: {"message"=>"utf8: ✓ ", "type"=>"notice"}
1011
+ Rendered flash/create.js.erb (0.7ms)
1012
+ Completed 200 OK in 15ms (Views: 14.1ms)
1013
+
1014
+
1015
+ Started GET "/flash/notice.js?message=utf8%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 15:07:25 +0200
1016
+ Processing by FlashController#create as JS
1017
+ Parameters: {"message"=>"utf8: ✓ ", "type"=>"notice"}
1018
+ Rendered flash/create.js.erb (0.7ms)
1019
+ Completed 200 OK in 15ms (Views: 14.2ms)
1020
+
1021
+
1022
+ Started GET "/flash/notice.js?message=utf8%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 15:07:27 +0200
1023
+ Processing by FlashController#create as JS
1024
+ Parameters: {"message"=>"utf8: ✓ ", "type"=>"notice"}
1025
+ Rendered flash/create.js.erb (0.7ms)
1026
+ Completed 200 OK in 15ms (Views: 13.9ms)
1027
+
1028
+
1029
+ Started GET "/flash/notice.js?message=utf8%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 15:08:06 +0200
1030
+ Processing by FlashController#create as JS
1031
+ Parameters: {"message"=>"utf8: ✓ ", "type"=>"notice"}
1032
+ Rendered flash/create.js.erb (0.8ms)
1033
+ Completed 200 OK in 16ms (Views: 14.6ms)
1034
+
1035
+
1036
+ Started GET "/flash/notice.js?message=utf8%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 15:09:30 +0200
1037
+ Processing by FlashController#create as JS
1038
+ Parameters: {"message"=>"utf8: ✓ ", "type"=>"notice"}
1039
+ Rendered flash/create.js.erb (0.7ms)
1040
+ Completed 200 OK in 15ms (Views: 13.9ms)
1041
+
1042
+
1043
+ Started GET "/flash/notice.js?message=utf8%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 15:09:32 +0200
1044
+ Processing by FlashController#create as JS
1045
+ Parameters: {"message"=>"utf8: ✓ ", "type"=>"notice"}
1046
+ Rendered flash/create.js.erb (0.7ms)
1047
+ Completed 200 OK in 15ms (Views: 13.8ms)
1048
+
1049
+
1050
+ Started GET "/flash/notice.js?message=utf8%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 15:09:33 +0200
1051
+ Processing by FlashController#create as JS
1052
+ Parameters: {"message"=>"utf8: ✓ ", "type"=>"notice"}
1053
+ Rendered flash/create.js.erb (0.8ms)
1054
+ Completed 200 OK in 17ms (Views: 16.2ms)
1055
+
1056
+
1057
+ Started GET "/flash/notice.js?message=utf8%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 15:10:46 +0200
1058
+ Processing by FlashController#create as JS
1059
+ Parameters: {"message"=>"utf8: ✓ ", "type"=>"notice"}
1060
+ Rendered flash/create.js.erb (0.7ms)
1061
+ Completed 200 OK in 15ms (Views: 14.2ms)
1062
+
1063
+
1064
+ Started GET "/flash/notice.js?message=utf8%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 15:10:47 +0200
1065
+ Processing by FlashController#create as JS
1066
+ Parameters: {"message"=>"utf8: ✓ ", "type"=>"notice"}
1067
+ Rendered flash/create.js.erb (0.7ms)
1068
+ Completed 200 OK in 15ms (Views: 14.0ms)
1069
+
1070
+
1071
+ Started GET "/flash/notice.js?message=utf8%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 15:10:48 +0200
1072
+ Processing by FlashController#create as JS
1073
+ Parameters: {"message"=>"utf8: ✓ ", "type"=>"notice"}
1074
+ Rendered flash/create.js.erb (0.8ms)
1075
+ Completed 200 OK in 16ms (Views: 15.1ms)
1076
+
1077
+
1078
+ Started GET "/flash/notice.js?message=utf8%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 15:10:48 +0200
1079
+ Processing by FlashController#create as JS
1080
+ Parameters: {"message"=>"utf8: ✓ ", "type"=>"notice"}
1081
+ Rendered flash/create.js.erb (0.8ms)
1082
+ Completed 200 OK in 16ms (Views: 15.1ms)
1083
+
1084
+
1085
+ Started GET "/flash/notice.js?message=utf8%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 15:10:48 +0200
1086
+ Processing by FlashController#create as JS
1087
+ Parameters: {"message"=>"utf8: ✓ ", "type"=>"notice"}
1088
+ Rendered flash/create.js.erb (0.8ms)
1089
+ Completed 200 OK in 15ms (Views: 13.9ms)
1090
+
1091
+
1092
+ Started GET "/flash/notice.js?message=utf8%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 15:10:48 +0200
1093
+ Processing by FlashController#create as JS
1094
+ Parameters: {"message"=>"utf8: ✓ ", "type"=>"notice"}
1095
+ Rendered flash/create.js.erb (0.7ms)
1096
+ Completed 200 OK in 15ms (Views: 14.4ms)
1097
+
1098
+
1099
+ Started GET "/flash/notice.js?message=utf8%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 15:11:39 +0200
1100
+ Processing by FlashController#create as JS
1101
+ Parameters: {"message"=>"utf8: ✓ ", "type"=>"notice"}
1102
+ Rendered flash/create.js.erb (0.7ms)
1103
+ Completed 200 OK in 15ms (Views: 14.0ms)
1104
+
1105
+
1106
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 15:12:47 +0200
1107
+ Processing by FlashController#show as HTML
1108
+ Rendered flash/show.html.erb within layouts/application (6.7ms)
1109
+ Completed 200 OK in 20ms (Views: 17.9ms)
1110
+
1111
+
1112
+ Started GET "/flash/notice?message=utf8%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 15:12:59 +0200
1113
+ Processing by FlashController#create as JS
1114
+ Parameters: {"message"=>"utf8: ✓ ", "type"=>"notice"}
1115
+ Rendered flash/create.js.erb (0.7ms)
1116
+ Completed 200 OK in 15ms (Views: 14.0ms)
1117
+
1118
+
1119
+ Started GET "/flash/notice?message=utf8%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 15:19:13 +0200
1120
+ Processing by FlashController#create as JS
1121
+ Parameters: {"message"=>"utf8: ✓ ", "type"=>"notice"}
1122
+ Rendered flash/create.js.erb (0.7ms)
1123
+ Completed 200 OK in 71ms (Views: 70.2ms)
1124
+
1125
+
1126
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 15:19:25 +0200
1127
+ Processing by FlashController#show as HTML
1128
+ Rendered flash/show.html.erb within layouts/application (5.8ms)
1129
+ Completed 200 OK in 57ms (Views: 56.5ms)
1130
+
1131
+
1132
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 15:19:41 +0200
1133
+ Processing by FlashController#show as HTML
1134
+ Rendered flash/show.html.erb within layouts/application (9.4ms)
1135
+ Completed 200 OK in 35ms (Views: 26.2ms)
1136
+
1137
+
1138
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 15:20:15 +0200
1139
+ Processing by FlashController#show as HTML
1140
+ Rendered flash/show.html.erb within layouts/application (6.0ms)
1141
+ Completed 200 OK in 63ms (Views: 61.9ms)
1142
+
1143
+
1144
+ Started GET "/flash/notice.js?message=utf8%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 15:20:41 +0200
1145
+ Processing by FlashController#create as JS
1146
+ Parameters: {"message"=>"utf8: ✓ ", "type"=>"notice"}
1147
+ Rendered flash/create.js.erb (0.7ms)
1148
+ Completed 200 OK in 15ms (Views: 14.0ms)
1149
+
1150
+
1151
+ Started GET "/flash/notice?message=utf8%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 15:20:44 +0200
1152
+ Processing by FlashController#create as JS
1153
+ Parameters: {"message"=>"utf8: ✓ ", "type"=>"notice"}
1154
+ Rendered flash/create.js.erb (0.7ms)
1155
+ Completed 200 OK in 15ms (Views: 13.8ms)
1156
+
1157
+
1158
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 15:22:41 +0200
1159
+ Processing by FlashController#show as HTML
1160
+ Rendered flash/show.html.erb within layouts/application (6.5ms)
1161
+ Completed 200 OK in 19ms (Views: 18.0ms)
1162
+
1163
+
1164
+ Started GET "/flash/notice.js?message=utf8%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 15:22:53 +0200
1165
+ Processing by FlashController#create as JS
1166
+ Parameters: {"message"=>"utf8: ✓ ", "type"=>"notice"}
1167
+ Rendered flash/create.js.erb (0.7ms)
1168
+ Completed 200 OK in 15ms (Views: 13.8ms)
1169
+
1170
+
1171
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 15:23:37 +0200
1172
+ Processing by FlashController#show as HTML
1173
+ Rendered flash/show.html.erb within layouts/application (6.0ms)
1174
+ Completed 200 OK in 16ms (Views: 15.5ms)
1175
+
1176
+
1177
+ Started GET "/flash/notice.js?message=utf8%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 15:23:50 +0200
1178
+ Processing by FlashController#create as JS
1179
+ Parameters: {"message"=>"utf8: ✓ ", "type"=>"notice"}
1180
+ Rendered flash/create.js.erb (0.7ms)
1181
+ Completed 200 OK in 15ms (Views: 14.0ms)
1182
+
1183
+
1184
+ Started GET "/flash/notice.js?message=utf8%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 15:28:30 +0200
1185
+ Processing by FlashController#create as JS
1186
+ Parameters: {"message"=>"utf8: ✓ ", "type"=>"notice"}
1187
+ Rendered flash/create.js.erb (0.7ms)
1188
+ Completed 200 OK in 72ms (Views: 70.8ms)
1189
+
1190
+
1191
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 15:29:13 +0200
1192
+ Processing by FlashController#show as HTML
1193
+ Rendered flash/show.html.erb within layouts/application (6.0ms)
1194
+ Completed 200 OK in 14ms (Views: 13.5ms)
1195
+
1196
+
1197
+ Started GET "/flash/notice.js?message=utf8%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 15:29:38 +0200
1198
+ Processing by FlashController#create as JS
1199
+ Parameters: {"message"=>"utf8: ✓ ", "type"=>"notice"}
1200
+ Rendered flash/create.js.erb (0.7ms)
1201
+ Completed 200 OK in 414ms (Views: 412.5ms)
1202
+
1203
+
1204
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 15:32:20 +0200
1205
+ Processing by FlashController#show as HTML
1206
+ Rendered flash/show.html.erb within layouts/application (6.3ms)
1207
+ Completed 200 OK in 24ms (Views: 23.6ms)
1208
+
1209
+
1210
+ Started GET "/flash" for 127.0.0.1 at 2011-08-29 15:34:14 +0200
1211
+ Processing by FlashController#show as HTML
1212
+ Rendered flash/show.html.erb within layouts/application (5.9ms)
1213
+ Completed 200 OK in 79ms (Views: 78.0ms)
1214
+
1215
+
1216
+ Started GET "/flash/notice.js?message=utf8%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 15:34:46 +0200
1217
+ Processing by FlashController#create as JS
1218
+ Parameters: {"message"=>"utf8: ✓ ", "type"=>"notice"}
1219
+ Rendered flash/create.js.erb (0.9ms)
1220
+ Completed 500 Internal Server Error in 47ms
1221
+
1222
+ NameError (undefined local variable or method `flash_message' for #<FlashController:0x007fb44acb12f8>):
1223
+
1224
+
1225
+ Rendered /Users/daniel/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.0.10/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.0ms)
1226
+ Rendered /Users/daniel/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.0.10/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (12.5ms)
1227
+ Rendered /Users/daniel/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.0.10/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (26.2ms)
1228
+
1229
+
1230
+ Started GET "/flash/notice.js?message=utf8%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 15:35:16 +0200
1231
+ Processing by FlashController#create as JS
1232
+ Parameters: {"message"=>"utf8: ✓ ", "type"=>"notice"}
1233
+ Rendered flash/create.js.erb (1.2ms)
1234
+ Completed 500 Internal Server Error in 19ms
1235
+
1236
+ NameError (undefined local variable or method `flash_message' for #<FlashController:0x007fb44adecdc0>):
1237
+
1238
+
1239
+ Rendered /Users/daniel/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.0.10/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.9ms)
1240
+ Rendered /Users/daniel/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.0.10/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (9.6ms)
1241
+ Rendered /Users/daniel/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.0.10/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (22.2ms)
1242
+
1243
+
1244
+ Started GET "/" for 127.0.0.1 at 2011-08-29 15:36:22 +0200
1245
+ Processing by FlashController#show as HTML
1246
+ Rendered flash/show.html.erb within layouts/application (6.9ms)
1247
+ Completed 200 OK in 15ms (Views: 14.3ms)
1248
+
1249
+
1250
+ Started GET "/javascripts/dragdrop.js" for 127.0.0.1 at 2011-08-29 15:36:32 +0200
1251
+
1252
+ ActionController::RoutingError (No route matches "/javascripts/dragdrop.js"):
1253
+
1254
+
1255
+ Rendered /Users/daniel/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.0.10/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.7ms)
1256
+
1257
+
1258
+ Started GET "/javascripts/controls.js" for 127.0.0.1 at 2011-08-29 15:36:32 +0200
1259
+
1260
+ ActionController::RoutingError (No route matches "/javascripts/controls.js"):
1261
+
1262
+
1263
+ Rendered /Users/daniel/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.0.10/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (3.0ms)
1264
+
1265
+
1266
+ Started GET "/javascripts/effects.js" for 127.0.0.1 at 2011-08-29 15:36:32 +0200
1267
+
1268
+ ActionController::RoutingError (No route matches "/javascripts/effects.js"):
1269
+
1270
+
1271
+ Rendered /Users/daniel/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.0.10/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.2ms)
1272
+
1273
+
1274
+ Started GET "/javascripts/rails.js" for 127.0.0.1 at 2011-08-29 15:36:32 +0200
1275
+
1276
+ ActionController::RoutingError (No route matches "/javascripts/rails.js"):
1277
+
1278
+
1279
+ Rendered /Users/daniel/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.0.10/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.5ms)
1280
+
1281
+
1282
+ Started GET "/javascripts/prototype.js" for 127.0.0.1 at 2011-08-29 15:36:32 +0200
1283
+
1284
+ ActionController::RoutingError (No route matches "/javascripts/prototype.js"):
1285
+
1286
+
1287
+ Rendered /Users/daniel/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.0.10/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.6ms)
1288
+
1289
+
1290
+ Started GET "/" for 127.0.0.1 at 2011-08-29 15:37:09 +0200
1291
+ Processing by FlashController#show as HTML
1292
+ Rendered flash/show.html.erb within layouts/application (6.9ms)
1293
+ Completed 200 OK in 15ms (Views: 14.5ms)
1294
+
1295
+
1296
+ Started GET "/flash/notice.js?message=utf8%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 15:37:24 +0200
1297
+ Processing by FlashController#create as JS
1298
+ Parameters: {"message"=>"utf8: ✓ ", "type"=>"notice"}
1299
+ Rendered flash/create.js.erb (0.7ms)
1300
+ Completed 200 OK in 81ms (Views: 76.3ms)
1301
+
1302
+
1303
+ Started GET "/" for 127.0.0.1 at 2011-08-29 15:38:43 +0200
1304
+ Processing by FlashController#show as HTML
1305
+ Rendered flash/show.html.erb within layouts/application (6.2ms)
1306
+ Completed 200 OK in 18ms (Views: 17.1ms)
1307
+
1308
+
1309
+ Started GET "/flash/notice.js?message=utf8%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 15:38:55 +0200
1310
+ Processing by FlashController#create as JS
1311
+ Parameters: {"message"=>"utf8: ✓ ", "type"=>"notice"}
1312
+ Rendered flash/create.js.erb (0.8ms)
1313
+ Completed 200 OK in 19ms (Views: 17.6ms)
1314
+
1315
+
1316
+ Started GET "/" for 127.0.0.1 at 2011-08-29 15:39:06 +0200
1317
+ Processing by FlashController#show as HTML
1318
+ Rendered flash/show.html.erb within layouts/application (5.9ms)
1319
+ Completed 200 OK in 14ms (Views: 13.3ms)
1320
+
1321
+
1322
+ Started GET "/flash/notice.js?message=utf8%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 15:39:17 +0200
1323
+ Processing by FlashController#create as JS
1324
+ Parameters: {"message"=>"utf8: ✓ ", "type"=>"notice"}
1325
+ Rendered flash/create.js.erb (0.7ms)
1326
+ Completed 200 OK in 84ms (Views: 83.3ms)
1327
+
1328
+
1329
+ Started GET "/" for 127.0.0.1 at 2011-08-29 15:48:10 +0200
1330
+ Processing by FlashController#show as HTML
1331
+ Rendered flash/show.html.erb within layouts/application (7.0ms)
1332
+ Completed 200 OK in 22ms (Views: 20.7ms)
1333
+
1334
+
1335
+ Started GET "/flash/notice.js?message=utf8%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-29 15:49:13 +0200
1336
+ Processing by FlashController#create as JS
1337
+ Parameters: {"message"=>"utf8: ✓ ", "type"=>"notice"}
1338
+ Rendered flash/create.js.erb (0.8ms)
1339
+ Completed 200 OK in 27ms (Views: 26.0ms)
1340
+
1341
+
1342
+ Started GET "/" for 127.0.0.1 at 2011-08-29 15:54:03 +0200
1343
+ Processing by FlashController#show as HTML
1344
+ Rendered flash/show.html.erb within layouts/application (6.0ms)
1345
+ Completed 200 OK in 79ms (Views: 78.3ms)
1346
+
1347
+
1348
+ Started GET "/blog/articles/feed.atom" for 127.0.0.1 at 2011-08-29 15:58:29 +0200
1349
+
1350
+ ActionController::RoutingError (No route matches "/blog/articles/feed.atom"):
1351
+
1352
+
1353
+ Rendered /Users/daniel/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.0.10/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.3ms)
1354
+
1355
+
1356
+ Started GET "/" for 127.0.0.1 at 2011-08-29 16:00:11 +0200
1357
+ Processing by FlashController#show as HTML
1358
+ Rendered flash/show.html.erb within layouts/application (6.0ms)
1359
+ Completed 200 OK in 85ms (Views: 84.2ms)
1360
+
1361
+
1362
+ Started GET "/" for 127.0.0.1 at 2011-08-29 16:00:34 +0200
1363
+ Processing by FlashController#show as HTML
1364
+ Rendered flash/show.html.erb within layouts/application (5.9ms)
1365
+ Completed 200 OK in 15ms (Views: 14.7ms)
1366
+
1367
+
1368
+ Started GET "/blog/articles/feed.atom" for 127.0.0.1 at 2011-08-29 16:28:31 +0200
1369
+
1370
+ ActionController::RoutingError (No route matches "/blog/articles/feed.atom"):
1371
+
1372
+
1373
+ Rendered /Users/daniel/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.0.10/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.3ms)
1374
+
1375
+
1376
+ Started GET "/blog/articles/feed.atom" for 127.0.0.1 at 2011-08-29 16:58:33 +0200
1377
+
1378
+ ActionController::RoutingError (No route matches "/blog/articles/feed.atom"):
1379
+
1380
+
1381
+ Rendered /Users/daniel/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.0.10/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.2ms)
1382
+
1383
+
1384
+ Started GET "/blog/articles/feed.atom" for 127.0.0.1 at 2011-08-30 02:26:45 +0200
1385
+
1386
+ ActionController::RoutingError (No route matches "/blog/articles/feed.atom"):
1387
+
1388
+
1389
+ Rendered /Users/daniel/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.0.10/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.7ms)
1390
+
1391
+
1392
+ Started GET "/blog/articles/feed.atom" for 127.0.0.1 at 2011-08-30 08:58:06 +0200
1393
+
1394
+ ActionController::RoutingError (No route matches "/blog/articles/feed.atom"):
1395
+
1396
+
1397
+ Rendered /Users/daniel/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.0.10/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.2ms)
1398
+
1399
+
1400
+ Started GET "/blog/articles/feed.atom" for 127.0.0.1 at 2011-08-30 09:28:08 +0200
1401
+
1402
+ ActionController::RoutingError (No route matches "/blog/articles/feed.atom"):
1403
+
1404
+
1405
+ Rendered /Users/daniel/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.0.10/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (42.3ms)
1406
+
1407
+
1408
+ Started GET "/" for 127.0.0.1 at 2011-08-30 09:46:44 +0200
1409
+ Processing by FlashController#show as HTML
1410
+ Rendered flash/show.html.erb within layouts/application (91.1ms)
1411
+ Completed 200 OK in 256ms (Views: 254.7ms)
1412
+
1413
+
1414
+ Started GET "/" for 127.0.0.1 at 2011-08-30 09:48:32 +0200
1415
+ Processing by FlashController#show as HTML
1416
+ Rendered flash/show.html.erb within layouts/application (9.2ms)
1417
+ Completed 200 OK in 117ms (Views: 116.7ms)
1418
+
1419
+
1420
+ Started GET "/blog/articles/feed.atom" for 127.0.0.1 at 2011-08-30 09:58:10 +0200
1421
+
1422
+ ActionController::RoutingError (No route matches "/blog/articles/feed.atom"):
1423
+
1424
+
1425
+ Rendered /Users/daniel/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.0.10/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.5ms)
1426
+
1427
+
1428
+ Started GET "/" for 127.0.0.1 at 2011-08-30 10:25:36 +0200
1429
+ Processing by FlashController#show as HTML
1430
+ Rendered flash/show.html.erb within layouts/application (8.9ms)
1431
+ Completed 200 OK in 19ms (Views: 18.1ms)
1432
+
1433
+
1434
+ Started GET "/flash/notice?message=rails+ajax%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-30 10:25:39 +0200
1435
+ Processing by FlashController#create as JS
1436
+ Parameters: {"message"=>"rails ajax: ✓ ", "type"=>"notice"}
1437
+ Rendered flash/create.js.erb (0.8ms)
1438
+ Completed 200 OK in 83ms (Views: 79.9ms)
1439
+
1440
+
1441
+ Started GET "/flash/notice.js?message=jquery+utf8%3A+%E2%9C%93" for 127.0.0.1 at 2011-08-30 10:25:41 +0200
1442
+ Processing by FlashController#create as JS
1443
+ Parameters: {"message"=>"jquery utf8: ✓", "type"=>"notice"}
1444
+ Rendered flash/create.js.erb (0.8ms)
1445
+ Completed 200 OK in 56ms (Views: 55.4ms)
1446
+
1447
+
1448
+ Started GET "/flash/notice?message=utf8%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-30 10:25:46 +0200
1449
+ Processing by FlashController#create as HTML
1450
+ Parameters: {"message"=>"utf8: ✓ ", "type"=>"notice"}
1451
+ Redirected to http://localhost:3000/flash
1452
+ Completed 302 Found in 13ms
1453
+
1454
+
1455
+ Started GET "/flash" for 127.0.0.1 at 2011-08-30 10:25:46 +0200
1456
+ Processing by FlashController#show as HTML
1457
+ Rendered flash/show.html.erb within layouts/application (6.6ms)
1458
+ Completed 200 OK in 18ms (Views: 14.9ms)
1459
+
1460
+
1461
+ Started GET "/flash" for 127.0.0.1 at 2011-08-30 10:25:59 +0200
1462
+ Processing by FlashController#show as HTML
1463
+ Rendered flash/show.html.erb within layouts/application (24.2ms)
1464
+ Completed 200 OK in 39ms (Views: 38.5ms)
1465
+
1466
+
1467
+ Started GET "/flash/notice?message=rails+ajax%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-30 10:26:22 +0200
1468
+ Processing by FlashController#create as JS
1469
+ Parameters: {"message"=>"rails ajax: ✓ ", "type"=>"notice"}
1470
+ Rendered flash/create.js.erb (0.7ms)
1471
+ Completed 200 OK in 15ms (Views: 14.5ms)
1472
+
1473
+
1474
+ Started GET "/flash/notice.js?message=jquery+utf8%3A+%E2%9C%93" for 127.0.0.1 at 2011-08-30 10:26:26 +0200
1475
+ Processing by FlashController#create as JS
1476
+ Parameters: {"message"=>"jquery utf8: ✓", "type"=>"notice"}
1477
+ Rendered flash/create.js.erb (0.8ms)
1478
+ Completed 200 OK in 16ms (Views: 15.0ms)
1479
+
1480
+
1481
+ Started GET "/blog/articles/feed.atom" for 127.0.0.1 at 2011-08-30 10:28:11 +0200
1482
+
1483
+ ActionController::RoutingError (No route matches "/blog/articles/feed.atom"):
1484
+
1485
+
1486
+ Rendered /Users/daniel/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.0.10/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.2ms)
1487
+
1488
+
1489
+ Started GET "/flash" for 127.0.0.1 at 2011-08-30 10:30:12 +0200
1490
+ Processing by FlashController#show as HTML
1491
+ Rendered flash/show.html.erb within layouts/application (6.3ms)
1492
+ Completed 200 OK in 22ms (Views: 20.9ms)
1493
+
1494
+
1495
+ Started GET "/flash/notice?message=rails+ajax%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-30 10:30:25 +0200
1496
+ Processing by FlashController#create as JS
1497
+ Parameters: {"message"=>"rails ajax: ✓ ", "type"=>"notice"}
1498
+ Rendered flash/create.js.erb (0.7ms)
1499
+ Completed 200 OK in 15ms (Views: 14.0ms)
1500
+
1501
+
1502
+ Started GET "/flash" for 127.0.0.1 at 2011-08-30 10:31:15 +0200
1503
+ Processing by FlashController#show as HTML
1504
+ Rendered flash/show.html.erb within layouts/application (8.5ms)
1505
+ Completed 200 OK in 22ms (Views: 20.9ms)
1506
+
1507
+
1508
+ Started GET "/flash/notice?message=rails+ajax%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-30 10:31:27 +0200
1509
+ Processing by FlashController#create as JS
1510
+ Parameters: {"message"=>"rails ajax: ✓ ", "type"=>"notice"}
1511
+ Rendered flash/create.js.erb (0.7ms)
1512
+ Completed 200 OK in 15ms (Views: 14.3ms)
1513
+
1514
+
1515
+ Started GET "/flash/notice.js?message=jquery+utf8%3A+%E2%9C%93" for 127.0.0.1 at 2011-08-30 10:31:29 +0200
1516
+ Processing by FlashController#create as JS
1517
+ Parameters: {"message"=>"jquery utf8: ✓", "type"=>"notice"}
1518
+ Rendered flash/create.js.erb (0.7ms)
1519
+ Completed 200 OK in 15ms (Views: 13.8ms)
1520
+
1521
+
1522
+ Started GET "/flash/notice?message=rails+ajax%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-30 10:31:30 +0200
1523
+ Processing by FlashController#create as JS
1524
+ Parameters: {"message"=>"rails ajax: ✓ ", "type"=>"notice"}
1525
+ Rendered flash/create.js.erb (0.8ms)
1526
+ Completed 200 OK in 16ms (Views: 14.5ms)
1527
+
1528
+
1529
+ Started GET "/flash/notice?message=utf8%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-30 10:31:31 +0200
1530
+ Processing by FlashController#create as HTML
1531
+ Parameters: {"message"=>"utf8: ✓ ", "type"=>"notice"}
1532
+ Redirected to http://localhost:3000/flash
1533
+ Completed 302 Found in 2ms
1534
+
1535
+
1536
+ Started GET "/flash" for 127.0.0.1 at 2011-08-30 10:31:31 +0200
1537
+ Processing by FlashController#show as HTML
1538
+ Rendered flash/show.html.erb within layouts/application (6.2ms)
1539
+ Completed 200 OK in 14ms (Views: 13.7ms)
1540
+
1541
+
1542
+ Started GET "/flash" for 127.0.0.1 at 2011-08-30 10:34:26 +0200
1543
+ Processing by FlashController#show as HTML
1544
+ Rendered flash/show.html.erb within layouts/application (8.0ms)
1545
+ Completed 200 OK in 16ms (Views: 15.6ms)
1546
+
1547
+
1548
+ Started GET "/flash/notice?message=rails+ajax%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-30 10:34:37 +0200
1549
+ Processing by FlashController#create as JS
1550
+ Parameters: {"message"=>"rails ajax: ✓ ", "type"=>"notice"}
1551
+ Rendered flash/create.js.erb (0.7ms)
1552
+ Completed 200 OK in 15ms (Views: 14.1ms)
1553
+
1554
+
1555
+ Started GET "/flash/notice.js?message=jquery+utf8%3A+%E2%9C%93" for 127.0.0.1 at 2011-08-30 10:34:39 +0200
1556
+ Processing by FlashController#create as JS
1557
+ Parameters: {"message"=>"jquery utf8: ✓", "type"=>"notice"}
1558
+ Rendered flash/create.js.erb (0.7ms)
1559
+ Completed 200 OK in 15ms (Views: 13.6ms)
1560
+
1561
+
1562
+ Started GET "/flash/notice?message=rails+ajax%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-30 10:34:40 +0200
1563
+ Processing by FlashController#create as JS
1564
+ Parameters: {"message"=>"rails ajax: ✓ ", "type"=>"notice"}
1565
+ Rendered flash/create.js.erb (0.7ms)
1566
+ Completed 200 OK in 15ms (Views: 14.2ms)
1567
+
1568
+
1569
+ Started GET "/flash/notice.js?message=jquery+utf8%3A+%E2%9C%93" for 127.0.0.1 at 2011-08-30 10:34:41 +0200
1570
+ Processing by FlashController#create as JS
1571
+ Parameters: {"message"=>"jquery utf8: ✓", "type"=>"notice"}
1572
+ Rendered flash/create.js.erb (0.7ms)
1573
+ Completed 200 OK in 54ms (Views: 53.0ms)
1574
+
1575
+
1576
+ Started GET "/flash/notice?message=rails+ajax%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-30 10:34:42 +0200
1577
+ Processing by FlashController#create as JS
1578
+ Parameters: {"message"=>"rails ajax: ✓ ", "type"=>"notice"}
1579
+ Rendered flash/create.js.erb (0.7ms)
1580
+ Completed 200 OK in 15ms (Views: 13.6ms)
1581
+
1582
+
1583
+ Started GET "/flash/notice.js?message=jquery+utf8%3A+%E2%9C%93" for 127.0.0.1 at 2011-08-30 10:34:43 +0200
1584
+ Processing by FlashController#create as JS
1585
+ Parameters: {"message"=>"jquery utf8: ✓", "type"=>"notice"}
1586
+ Rendered flash/create.js.erb (0.8ms)
1587
+ Completed 200 OK in 15ms (Views: 14.3ms)
1588
+
1589
+
1590
+ Started GET "/flash/notice?message=rails+ajax%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-30 10:34:45 +0200
1591
+ Processing by FlashController#create as JS
1592
+ Parameters: {"message"=>"rails ajax: ✓ ", "type"=>"notice"}
1593
+ Rendered flash/create.js.erb (0.7ms)
1594
+ Completed 200 OK in 15ms (Views: 14.1ms)
1595
+
1596
+
1597
+ Started GET "/flash/notice?message=utf8%3A+%E2%9C%93+" for 127.0.0.1 at 2011-08-30 10:34:45 +0200
1598
+ Processing by FlashController#create as HTML
1599
+ Parameters: {"message"=>"utf8: ✓ ", "type"=>"notice"}
1600
+ Redirected to http://localhost:3000/flash
1601
+ Completed 302 Found in 2ms
1602
+
1603
+
1604
+ Started GET "/flash" for 127.0.0.1 at 2011-08-30 10:34:46 +0200
1605
+ Processing by FlashController#show as HTML
1606
+ Rendered flash/show.html.erb within layouts/application (6.3ms)
1607
+ Completed 200 OK in 15ms (Views: 14.1ms)
1608
+
1609
+
1610
+ Started GET "/blog/articles/feed.atom" for 127.0.0.1 at 2011-08-30 10:58:13 +0200
1611
+
1612
+ ActionController::RoutingError (No route matches "/blog/articles/feed.atom"):
1613
+
1614
+
1615
+ Rendered /Users/daniel/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.0.10/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.3ms)
1616
+
1617
+
1618
+ Started GET "/blog/articles/feed.atom" for 127.0.0.1 at 2011-08-30 11:28:15 +0200
1619
+
1620
+ ActionController::RoutingError (No route matches "/blog/articles/feed.atom"):
1621
+
1622
+
1623
+ Rendered /Users/daniel/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.0.10/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.4ms)
1624
+
1625
+
1626
+ Started GET "/" for 127.0.0.1 at 2011-08-30 11:40:42 +0200
1627
+ Processing by FlashController#show as HTML
1628
+ Rendered flash/show.html.erb within layouts/application (8.3ms)
1629
+ Completed 200 OK in 17ms (Views: 16.7ms)