action_labels 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 (60) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +3 -0
  4. data/Rakefile +32 -0
  5. data/lib/action_labels.rb +9 -0
  6. data/lib/action_labels/active_model_name_extractor.rb +32 -0
  7. data/lib/action_labels/helper_methods.rb +47 -0
  8. data/lib/action_labels/locales/da.yml +9 -0
  9. data/lib/action_labels/locales/en.yml +9 -0
  10. data/lib/action_labels/locales/sv.yml +9 -0
  11. data/lib/action_labels/railtie.rb +15 -0
  12. data/lib/action_labels/version.rb +3 -0
  13. data/lib/tasks/action_labels_tasks.rake +4 -0
  14. data/test/action_labels_test.rb +7 -0
  15. data/test/dummy/README.rdoc +28 -0
  16. data/test/dummy/Rakefile +6 -0
  17. data/test/dummy/app/assets/javascripts/application.js +13 -0
  18. data/test/dummy/app/assets/stylesheets/application.css +9 -0
  19. data/test/dummy/app/controllers/application_controller.rb +15 -0
  20. data/test/dummy/app/controllers/welcome_controller.rb +7 -0
  21. data/test/dummy/app/helpers/application_helper.rb +2 -0
  22. data/test/dummy/app/models/article.rb +3 -0
  23. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  24. data/test/dummy/app/views/welcome/index.html.erb +52 -0
  25. data/test/dummy/bin/bundle +3 -0
  26. data/test/dummy/bin/rails +4 -0
  27. data/test/dummy/bin/rake +4 -0
  28. data/test/dummy/config.ru +4 -0
  29. data/test/dummy/config/application.rb +23 -0
  30. data/test/dummy/config/boot.rb +5 -0
  31. data/test/dummy/config/database.yml +25 -0
  32. data/test/dummy/config/environment.rb +5 -0
  33. data/test/dummy/config/environments/development.rb +29 -0
  34. data/test/dummy/config/environments/production.rb +80 -0
  35. data/test/dummy/config/environments/test.rb +36 -0
  36. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -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 +5 -0
  40. data/test/dummy/config/initializers/secret_token.rb +12 -0
  41. data/test/dummy/config/initializers/session_store.rb +3 -0
  42. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  43. data/test/dummy/config/locales/da.yml +6 -0
  44. data/test/dummy/config/locales/en.yml +27 -0
  45. data/test/dummy/config/locales/sv.yml +6 -0
  46. data/test/dummy/config/routes.rb +3 -0
  47. data/test/dummy/db/development.sqlite3 +0 -0
  48. data/test/dummy/log/development.log +4126 -0
  49. data/test/dummy/public/404.html +58 -0
  50. data/test/dummy/public/422.html +58 -0
  51. data/test/dummy/public/500.html +57 -0
  52. data/test/dummy/public/favicon.ico +0 -0
  53. data/test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  54. data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  55. data/test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  56. data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  57. data/test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  58. data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  59. data/test/test_helper.rb +15 -0
  60. metadata +176 -0
@@ -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,29 @@
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
+ # Do not eager load code on boot.
10
+ config.eager_load = false
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
+ # Don't care if the mailer can't send.
17
+ config.action_mailer.raise_delivery_errors = false
18
+
19
+ # Print deprecation notices to the Rails logger.
20
+ config.active_support.deprecation = :log
21
+
22
+ # Raise an error on page load if there are pending migrations
23
+ config.active_record.migration_error = :page_load
24
+
25
+ # Debug mode disables concatenation and preprocessing of assets.
26
+ # This option may cause significant delays in view rendering with a large
27
+ # number of complex assets.
28
+ config.assets.debug = true
29
+ end
@@ -0,0 +1,80 @@
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
+ # Eager load code on boot. This eager loads most of Rails and
8
+ # your application in memory, allowing both thread web servers
9
+ # and those relying on copy on write to perform better.
10
+ # Rake tasks automatically ignore this option for performance.
11
+ config.eager_load = true
12
+
13
+ # Full error reports are disabled and caching is turned on.
14
+ config.consider_all_requests_local = false
15
+ config.action_controller.perform_caching = true
16
+
17
+ # Enable Rack::Cache to put a simple HTTP cache in front of your application
18
+ # Add `rack-cache` to your Gemfile before enabling this.
19
+ # For large-scale production use, consider using a caching reverse proxy like nginx, varnish or squid.
20
+ # config.action_dispatch.rack_cache = true
21
+
22
+ # Disable Rails's static asset server (Apache or nginx will already do this).
23
+ config.serve_static_assets = false
24
+
25
+ # Compress JavaScripts and CSS.
26
+ config.assets.js_compressor = :uglifier
27
+ # config.assets.css_compressor = :sass
28
+
29
+ # Do not fallback to assets pipeline if a precompiled asset is missed.
30
+ config.assets.compile = false
31
+
32
+ # Generate digests for assets URLs.
33
+ config.assets.digest = true
34
+
35
+ # Version of your assets, change this if you want to expire all your assets.
36
+ config.assets.version = '1.0'
37
+
38
+ # Specifies the header that your server uses for sending files.
39
+ # config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
40
+ # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
41
+
42
+ # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
43
+ # config.force_ssl = true
44
+
45
+ # Set to :debug to see everything in the log.
46
+ config.log_level = :info
47
+
48
+ # Prepend all log lines with the following tags.
49
+ # config.log_tags = [ :subdomain, :uuid ]
50
+
51
+ # Use a different logger for distributed setups.
52
+ # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
53
+
54
+ # Use a different cache store in production.
55
+ # config.cache_store = :mem_cache_store
56
+
57
+ # Enable serving of images, stylesheets, and JavaScripts from an asset server.
58
+ # config.action_controller.asset_host = "http://assets.example.com"
59
+
60
+ # Precompile additional assets.
61
+ # application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
62
+ # config.assets.precompile += %w( search.js )
63
+
64
+ # Ignore bad email addresses and do not raise email delivery errors.
65
+ # Set this to true and configure the email server for immediate delivery to raise delivery errors.
66
+ # config.action_mailer.raise_delivery_errors = false
67
+
68
+ # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
69
+ # the I18n.default_locale when a translation can not be found).
70
+ config.i18n.fallbacks = true
71
+
72
+ # Send deprecation notices to registered listeners.
73
+ config.active_support.deprecation = :notify
74
+
75
+ # Disable automatic flushing of the log to improve performance.
76
+ # config.autoflush_log = false
77
+
78
+ # Use default logging formatter so that PID and timestamp are not suppressed.
79
+ config.log_formatter = ::Logger::Formatter.new
80
+ end
@@ -0,0 +1,36 @@
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
+ # Do not eager load code on boot. This avoids loading your whole application
11
+ # just for the purpose of running a single test. If you are using a tool that
12
+ # preloads Rails for running tests, you may have to set it to true.
13
+ config.eager_load = false
14
+
15
+ # Configure static asset server for tests with Cache-Control for performance.
16
+ config.serve_static_assets = true
17
+ config.static_cache_control = "public, max-age=3600"
18
+
19
+ # Show full error reports and disable caching.
20
+ config.consider_all_requests_local = true
21
+ config.action_controller.perform_caching = false
22
+
23
+ # Raise exceptions instead of rendering exception templates.
24
+ config.action_dispatch.show_exceptions = false
25
+
26
+ # Disable request forgery protection in test environment.
27
+ config.action_controller.allow_forgery_protection = false
28
+
29
+ # Tell Action Mailer not to deliver emails to the real world.
30
+ # The :test delivery method accumulates sent emails in the
31
+ # ActionMailer::Base.deliveries array.
32
+ config.action_mailer.delivery_method = :test
33
+
34
+ # Print deprecation notices to the stderr.
35
+ config.active_support.deprecation = :stderr
36
+ 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,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,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,12 @@
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 your secret_key_base is kept private
11
+ # if you're sharing your code publicly.
12
+ Dummy::Application.config.secret_key_base = '1b0c32c3461b92d230a878206b8c626dd91eb2dc0da0037c622c5fb561fb6bbf5fa55e4b34286fe0547eaf24b2dd1d938710aa0a202e667b7d50d15f3e1df382'
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Dummy::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,6 @@
1
+ da:
2
+ activemodel:
3
+ models:
4
+ article:
5
+ one: artikel
6
+ other: artikler
@@ -0,0 +1,27 @@
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
+ activemodel:
24
+ models:
25
+ article:
26
+ one: article
27
+ other: articles
@@ -0,0 +1,6 @@
1
+ sv:
2
+ activemodel:
3
+ models:
4
+ article:
5
+ one: artikel
6
+ other: artiklar
@@ -0,0 +1,3 @@
1
+ Dummy::Application.routes.draw do
2
+ root 'welcome#index'
3
+ end
File without changes
@@ -0,0 +1,4126 @@
1
+
2
+
3
+ Started GET "/" for 127.0.0.1 at 2014-04-02 16:12:56 +0200
4
+ Processing by Rails::WelcomeController#index as HTML
5
+ Rendered /Users/nielsbuus/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/railties-4.0.4/lib/rails/templates/rails/welcome/index.html.erb (1.2ms)
6
+ Completed 200 OK in 5ms (Views: 5.2ms | ActiveRecord: 0.0ms)
7
+
8
+
9
+ Started GET "/" for 127.0.0.1 at 2014-04-02 16:14:37 +0200
10
+ Processing by WelcomeController#index as HTML
11
+ Rendered welcome/index.html.erb within layouts/application (5.1ms)
12
+ Completed 500 Internal Server Error in 9ms
13
+
14
+ ActionView::Template::Error (undefined local variable or method `the_truth' for #<#<Class:0x007fefa03f31c0>:0x007fefa03f2658>):
15
+ 1: <p> <%= the_truth %> </p>
16
+ app/views/welcome/index.html.erb:1:in `_app_views_welcome_index_html_erb__4292881504836287198_70333581279780'
17
+
18
+
19
+ Rendered /Users/nielsbuus/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
20
+ Rendered /Users/nielsbuus/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (7.4ms)
21
+ Rendered /Users/nielsbuus/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (15.1ms)
22
+
23
+
24
+ Started GET "/" for 127.0.0.1 at 2014-04-02 16:15:03 +0200
25
+ Processing by WelcomeController#index as HTML
26
+ Rendered welcome/index.html.erb within layouts/application (0.5ms)
27
+ Completed 200 OK in 14ms (Views: 13.5ms | ActiveRecord: 0.0ms)
28
+
29
+
30
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 16:15:03 +0200
31
+
32
+
33
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 16:15:03 +0200
34
+
35
+
36
+ Started GET "/" for 127.0.0.1 at 2014-04-02 16:54:25 +0200
37
+ Processing by WelcomeController#index as HTML
38
+ Rendered welcome/index.html.erb within layouts/application (3.8ms)
39
+ Completed 500 Internal Server Error in 8ms
40
+
41
+ ActionView::Template::Error (uninitialized constant ActionLabels::HelperMethods::ActiveModelNameExtractor):
42
+ 1: <p> <%= create_label(Blogpost) %> </p>
43
+ app/views/welcome/index.html.erb:1:in `_app_views_welcome_index_html_erb___4217867641815437824_70205714921600'
44
+
45
+
46
+ Rendered /Users/nielsbuus/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
47
+ Rendered /Users/nielsbuus/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (7.4ms)
48
+ Rendered /Users/nielsbuus/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (15.1ms)
49
+
50
+
51
+ Started GET "/" for 127.0.0.1 at 2014-04-02 16:55:53 +0200
52
+ Processing by WelcomeController#index as HTML
53
+ Rendered welcome/index.html.erb within layouts/application (12.8ms)
54
+ Completed 500 Internal Server Error in 20ms
55
+
56
+ ActionView::Template::Error (undefined method `pluralize_active_model_name' for #<#<Class:0x007fce05159ed0>:0x007fce05159368>):
57
+ 1: <p> <%= create_label(Blogpost) %> </p>
58
+ app/views/welcome/index.html.erb:1:in `_app_views_welcome_index_html_erb__4249082601029239507_70261412747400'
59
+
60
+
61
+ Rendered /Users/nielsbuus/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
62
+ Rendered /Users/nielsbuus/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (17.0ms)
63
+ Rendered /Users/nielsbuus/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (25.5ms)
64
+
65
+
66
+ Started GET "/" for 127.0.0.1 at 2014-04-02 16:58:58 +0200
67
+ Processing by WelcomeController#index as HTML
68
+ Rendered welcome/index.html.erb within layouts/application (4.7ms)
69
+ Completed 500 Internal Server Error in 6ms
70
+
71
+ ActionView::Template::Error (undefined method `pluralize_active_model_name' for #<#<Class:0x007fce05159ed0>:0x007fce03136180>):
72
+ 1: <p> <%= create_label(Blogpost) %> </p>
73
+ app/views/welcome/index.html.erb:1:in `_app_views_welcome_index_html_erb__4249082601029239507_70261412747400'
74
+
75
+
76
+ Rendered /Users/nielsbuus/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
77
+ Rendered /Users/nielsbuus/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
78
+ Rendered /Users/nielsbuus/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.2ms)
79
+
80
+
81
+ Started GET "/" for 127.0.0.1 at 2014-04-02 16:59:01 +0200
82
+ Processing by WelcomeController#index as HTML
83
+ Rendered welcome/index.html.erb within layouts/application (4.0ms)
84
+ Completed 500 Internal Server Error in 5ms
85
+
86
+ ActionView::Template::Error (undefined method `pluralize_active_model_name' for #<#<Class:0x007fce05159ed0>:0x007fce025ca620>):
87
+ 1: <p> <%= create_label(Blogpost) %> </p>
88
+ app/views/welcome/index.html.erb:1:in `_app_views_welcome_index_html_erb__4249082601029239507_70261412747400'
89
+
90
+
91
+ Rendered /Users/nielsbuus/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
92
+ Rendered /Users/nielsbuus/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
93
+ Rendered /Users/nielsbuus/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.4ms)
94
+
95
+
96
+ Started GET "/" for 127.0.0.1 at 2014-04-02 16:59:05 +0200
97
+ Processing by WelcomeController#index as HTML
98
+ Rendered welcome/index.html.erb within layouts/application (5.5ms)
99
+ Completed 200 OK in 22ms (Views: 21.7ms | ActiveRecord: 0.0ms)
100
+
101
+
102
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 16:59:05 +0200
103
+
104
+
105
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 16:59:05 +0200
106
+
107
+
108
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:08:38 +0200
109
+ Processing by WelcomeController#index as HTML
110
+ Rendered welcome/index.html.erb within layouts/application (4.6ms)
111
+ Completed 200 OK in 7ms (Views: 6.9ms | ActiveRecord: 0.0ms)
112
+
113
+
114
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:08:38 +0200
115
+
116
+
117
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:08:38 +0200
118
+
119
+
120
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:08:39 +0200
121
+ Processing by WelcomeController#index as HTML
122
+ Rendered welcome/index.html.erb within layouts/application (0.2ms)
123
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
124
+
125
+
126
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:08:39 +0200
127
+
128
+
129
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:08:39 +0200
130
+
131
+
132
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:08:45 +0200
133
+ Processing by WelcomeController#index as HTML
134
+ Rendered welcome/index.html.erb within layouts/application (5.7ms)
135
+ Completed 200 OK in 23ms (Views: 22.4ms | ActiveRecord: 0.0ms)
136
+
137
+
138
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:08:46 +0200
139
+
140
+
141
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:08:46 +0200
142
+
143
+
144
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:09:22 +0200
145
+ Processing by WelcomeController#index as HTML
146
+ Rendered welcome/index.html.erb within layouts/application (0.2ms)
147
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
148
+
149
+
150
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:09:22 +0200
151
+
152
+
153
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:09:22 +0200
154
+
155
+
156
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:09:27 +0200
157
+ Processing by WelcomeController#index as HTML
158
+ Rendered welcome/index.html.erb within layouts/application (5.6ms)
159
+ Completed 200 OK in 22ms (Views: 21.9ms | ActiveRecord: 0.0ms)
160
+
161
+
162
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:09:27 +0200
163
+
164
+
165
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:09:27 +0200
166
+
167
+
168
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:09:27 +0200
169
+ Processing by WelcomeController#index as HTML
170
+ Rendered welcome/index.html.erb within layouts/application (0.2ms)
171
+ Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
172
+
173
+
174
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:09:27 +0200
175
+
176
+
177
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:09:27 +0200
178
+
179
+
180
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:09:28 +0200
181
+ Processing by WelcomeController#index as HTML
182
+ Rendered welcome/index.html.erb within layouts/application (0.2ms)
183
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
184
+
185
+
186
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:09:28 +0200
187
+
188
+
189
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:09:28 +0200
190
+
191
+
192
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:09:29 +0200
193
+ Processing by WelcomeController#index as HTML
194
+ Rendered welcome/index.html.erb within layouts/application (0.2ms)
195
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
196
+
197
+
198
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:09:29 +0200
199
+
200
+
201
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:09:29 +0200
202
+
203
+
204
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:09:30 +0200
205
+ Processing by WelcomeController#index as HTML
206
+ Rendered welcome/index.html.erb within layouts/application (0.2ms)
207
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
208
+
209
+
210
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:09:30 +0200
211
+
212
+
213
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:09:30 +0200
214
+
215
+
216
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:09:32 +0200
217
+ Processing by WelcomeController#index as HTML
218
+ Rendered welcome/index.html.erb within layouts/application (0.2ms)
219
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
220
+
221
+
222
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:09:32 +0200
223
+
224
+
225
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:09:32 +0200
226
+
227
+
228
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:09:40 +0200
229
+ Processing by WelcomeController#index as HTML
230
+ Rendered welcome/index.html.erb within layouts/application (4.4ms)
231
+ Completed 200 OK in 7ms (Views: 6.6ms | ActiveRecord: 0.0ms)
232
+
233
+
234
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:09:40 +0200
235
+
236
+
237
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:09:40 +0200
238
+
239
+
240
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:11:43 +0200
241
+ Processing by WelcomeController#index as HTML
242
+ Rendered welcome/index.html.erb within layouts/application (5.7ms)
243
+ Completed 200 OK in 22ms (Views: 22.0ms | ActiveRecord: 0.0ms)
244
+
245
+
246
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:11:43 +0200
247
+
248
+
249
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:11:43 +0200
250
+
251
+
252
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:12:58 +0200
253
+ Processing by WelcomeController#index as HTML
254
+ Rendered welcome/index.html.erb within layouts/application (4.7ms)
255
+ Completed 200 OK in 7ms (Views: 7.0ms | ActiveRecord: 0.0ms)
256
+
257
+
258
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:12:58 +0200
259
+
260
+
261
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:12:58 +0200
262
+
263
+
264
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:13:18 +0200
265
+ Processing by WelcomeController#index as HTML
266
+ Rendered welcome/index.html.erb within layouts/application (7.7ms)
267
+ Completed 200 OK in 26ms (Views: 25.5ms | ActiveRecord: 0.0ms)
268
+
269
+
270
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:13:18 +0200
271
+
272
+
273
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:13:18 +0200
274
+
275
+
276
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:20:31 +0200
277
+ Processing by WelcomeController#index as HTML
278
+ Rendered welcome/index.html.erb within layouts/application (5.9ms)
279
+ Completed 200 OK in 9ms (Views: 8.3ms | ActiveRecord: 0.0ms)
280
+
281
+
282
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:20:31 +0200
283
+
284
+
285
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:20:31 +0200
286
+
287
+
288
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:21:56 +0200
289
+ Processing by WelcomeController#index as HTML
290
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
291
+ Completed 200 OK in 9ms (Views: 9.3ms | ActiveRecord: 0.0ms)
292
+
293
+
294
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:21:56 +0200
295
+
296
+
297
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:21:56 +0200
298
+
299
+
300
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:22:02 +0200
301
+
302
+
303
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:23:08 +0200
304
+ Processing by WelcomeController#index as HTML
305
+ Rendered welcome/index.html.erb within layouts/application (1.5ms)
306
+ Completed 200 OK in 10ms (Views: 9.6ms | ActiveRecord: 0.0ms)
307
+
308
+
309
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:23:10 +0200
310
+ Processing by WelcomeController#index as HTML
311
+ Rendered welcome/index.html.erb within layouts/application (0.8ms)
312
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
313
+
314
+
315
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:23:10 +0200
316
+
317
+
318
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:23:11 +0200
319
+
320
+
321
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:23:25 +0200
322
+ Processing by WelcomeController#index as HTML
323
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
324
+ Completed 200 OK in 10ms (Views: 10.2ms | ActiveRecord: 0.0ms)
325
+
326
+
327
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:23:25 +0200
328
+
329
+
330
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:23:25 +0200
331
+
332
+
333
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:23:37 +0200
334
+ Processing by WelcomeController#index as HTML
335
+ Rendered welcome/index.html.erb within layouts/application (1.0ms)
336
+ Completed 200 OK in 11ms (Views: 10.5ms | ActiveRecord: 0.0ms)
337
+
338
+
339
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:23:37 +0200
340
+
341
+
342
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:23:37 +0200
343
+
344
+
345
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:23:52 +0200
346
+ Processing by WelcomeController#index as HTML
347
+ Rendered welcome/index.html.erb within layouts/application (1.1ms)
348
+ Completed 200 OK in 11ms (Views: 10.4ms | ActiveRecord: 0.0ms)
349
+
350
+
351
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:23:52 +0200
352
+
353
+
354
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:23:52 +0200
355
+
356
+
357
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:24:53 +0200
358
+ Processing by WelcomeController#index as HTML
359
+ Rendered welcome/index.html.erb within layouts/application (1.3ms)
360
+ Completed 200 OK in 10ms (Views: 9.7ms | ActiveRecord: 0.0ms)
361
+
362
+
363
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:24:53 +0200
364
+
365
+
366
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:24:53 +0200
367
+
368
+
369
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:25:10 +0200
370
+ Processing by WelcomeController#index as HTML
371
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
372
+ Completed 200 OK in 6ms (Views: 6.0ms | ActiveRecord: 0.0ms)
373
+
374
+
375
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:25:10 +0200
376
+
377
+
378
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:25:10 +0200
379
+
380
+
381
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:25:23 +0200
382
+ Processing by WelcomeController#index as HTML
383
+ Rendered welcome/index.html.erb within layouts/application (0.8ms)
384
+ Completed 200 OK in 9ms (Views: 8.8ms | ActiveRecord: 0.0ms)
385
+
386
+
387
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:25:23 +0200
388
+
389
+
390
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:25:23 +0200
391
+
392
+
393
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:28:48 +0200
394
+ Processing by WelcomeController#index as HTML
395
+ Rendered welcome/index.html.erb within layouts/application (1.4ms)
396
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
397
+
398
+
399
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:28:48 +0200
400
+
401
+
402
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:28:48 +0200
403
+
404
+
405
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:32:25 +0200
406
+ Processing by WelcomeController#index as HTML
407
+ Rendered welcome/index.html.erb within layouts/application (6.9ms)
408
+ Completed 200 OK in 29ms (Views: 29.0ms | ActiveRecord: 0.0ms)
409
+
410
+
411
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:32:26 +0200
412
+
413
+
414
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:32:26 +0200
415
+
416
+
417
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:32:45 +0200
418
+ Processing by WelcomeController#index as HTML
419
+ Rendered welcome/index.html.erb within layouts/application (1.5ms)
420
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms)
421
+
422
+
423
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:32:45 +0200
424
+
425
+
426
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:32:45 +0200
427
+
428
+
429
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:32:52 +0200
430
+ Processing by WelcomeController#index as HTML
431
+ Rendered welcome/index.html.erb within layouts/application (1.3ms)
432
+ Completed 200 OK in 3ms (Views: 3.4ms | ActiveRecord: 0.0ms)
433
+
434
+
435
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:32:52 +0200
436
+
437
+
438
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:32:52 +0200
439
+
440
+
441
+ Started GET "/?locale=en" for 127.0.0.1 at 2014-04-02 17:32:56 +0200
442
+ Processing by WelcomeController#index as HTML
443
+ Parameters: {"locale"=>"en"}
444
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
445
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
446
+
447
+
448
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:32:56 +0200
449
+
450
+
451
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:32:56 +0200
452
+
453
+
454
+ Started GET "/?locale=da" for 127.0.0.1 at 2014-04-02 17:32:57 +0200
455
+ Processing by WelcomeController#index as HTML
456
+ Parameters: {"locale"=>"da"}
457
+ Rendered welcome/index.html.erb within layouts/application (1.3ms)
458
+ Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.0ms)
459
+
460
+
461
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:32:57 +0200
462
+
463
+
464
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:32:57 +0200
465
+
466
+
467
+ Started GET "/?locale=da" for 127.0.0.1 at 2014-04-02 17:33:54 +0200
468
+ Processing by WelcomeController#index as HTML
469
+ Parameters: {"locale"=>"da"}
470
+ Rendered welcome/index.html.erb within layouts/application (1.7ms)
471
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
472
+
473
+
474
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:33:54 +0200
475
+
476
+
477
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:33:54 +0200
478
+
479
+
480
+ Started GET "/?locale=en" for 127.0.0.1 at 2014-04-02 17:33:57 +0200
481
+ Processing by WelcomeController#index as HTML
482
+ Parameters: {"locale"=>"en"}
483
+ Rendered welcome/index.html.erb within layouts/application (1.5ms)
484
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
485
+
486
+
487
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:33:57 +0200
488
+
489
+
490
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:33:57 +0200
491
+
492
+
493
+ Started GET "/?locale=da" for 127.0.0.1 at 2014-04-02 17:33:58 +0200
494
+ Processing by WelcomeController#index as HTML
495
+ Parameters: {"locale"=>"da"}
496
+ Rendered welcome/index.html.erb within layouts/application (1.0ms)
497
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
498
+
499
+
500
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:33:58 +0200
501
+
502
+
503
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:33:58 +0200
504
+
505
+
506
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:34:03 +0200
507
+ Processing by WelcomeController#index as HTML
508
+ Rendered welcome/index.html.erb within layouts/application (0.8ms)
509
+ Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
510
+
511
+
512
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:34:03 +0200
513
+
514
+
515
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:34:03 +0200
516
+
517
+
518
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:34:07 +0200
519
+ Processing by WelcomeController#index as HTML
520
+ Rendered welcome/index.html.erb within layouts/application (1.1ms)
521
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
522
+
523
+
524
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:34:07 +0200
525
+
526
+
527
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:34:07 +0200
528
+
529
+
530
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:34:08 +0200
531
+ Processing by WelcomeController#index as HTML
532
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
533
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
534
+
535
+
536
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:34:08 +0200
537
+
538
+
539
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:34:08 +0200
540
+
541
+
542
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:34:08 +0200
543
+ Processing by WelcomeController#index as HTML
544
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
545
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
546
+
547
+
548
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:34:08 +0200
549
+
550
+
551
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:34:08 +0200
552
+
553
+
554
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:34:08 +0200
555
+ Processing by WelcomeController#index as HTML
556
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
557
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
558
+
559
+
560
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:34:08 +0200
561
+
562
+
563
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:34:08 +0200
564
+
565
+
566
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:34:09 +0200
567
+ Processing by WelcomeController#index as HTML
568
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
569
+ Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
570
+
571
+
572
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:34:09 +0200
573
+
574
+
575
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:34:09 +0200
576
+
577
+
578
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:34:09 +0200
579
+ Processing by WelcomeController#index as HTML
580
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
581
+ Completed 200 OK in 3ms (Views: 3.3ms | ActiveRecord: 0.0ms)
582
+
583
+
584
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:34:09 +0200
585
+
586
+
587
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:34:09 +0200
588
+
589
+
590
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:34:10 +0200
591
+ Processing by WelcomeController#index as HTML
592
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
593
+ Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
594
+
595
+
596
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:34:10 +0200
597
+
598
+
599
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:34:10 +0200
600
+
601
+
602
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:34:10 +0200
603
+ Processing by WelcomeController#index as HTML
604
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
605
+ Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
606
+
607
+
608
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:34:10 +0200
609
+
610
+
611
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:34:10 +0200
612
+
613
+
614
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:34:11 +0200
615
+ Processing by WelcomeController#index as HTML
616
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
617
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
618
+
619
+
620
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:34:11 +0200
621
+
622
+
623
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:34:11 +0200
624
+
625
+
626
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:34:11 +0200
627
+ Processing by WelcomeController#index as HTML
628
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
629
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
630
+
631
+
632
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:34:11 +0200
633
+
634
+
635
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:34:11 +0200
636
+
637
+
638
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:34:14 +0200
639
+ Processing by WelcomeController#index as HTML
640
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
641
+ Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
642
+
643
+
644
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:34:14 +0200
645
+
646
+
647
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:34:14 +0200
648
+
649
+
650
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:34:16 +0200
651
+ Processing by WelcomeController#index as HTML
652
+ Rendered welcome/index.html.erb within layouts/application (0.8ms)
653
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
654
+
655
+
656
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:34:16 +0200
657
+
658
+
659
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:34:16 +0200
660
+
661
+
662
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:34:16 +0200
663
+ Processing by WelcomeController#index as HTML
664
+ Rendered welcome/index.html.erb within layouts/application (0.8ms)
665
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
666
+
667
+
668
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:34:16 +0200
669
+
670
+
671
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:34:16 +0200
672
+
673
+
674
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:34:17 +0200
675
+ Processing by WelcomeController#index as HTML
676
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
677
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
678
+
679
+
680
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:34:17 +0200
681
+
682
+
683
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:34:17 +0200
684
+
685
+
686
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:34:18 +0200
687
+ Processing by WelcomeController#index as HTML
688
+ Rendered welcome/index.html.erb within layouts/application (1.0ms)
689
+ Completed 200 OK in 3ms (Views: 3.3ms | ActiveRecord: 0.0ms)
690
+
691
+
692
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:34:18 +0200
693
+
694
+
695
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:34:18 +0200
696
+
697
+
698
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:34:18 +0200
699
+ Processing by WelcomeController#index as HTML
700
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
701
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
702
+
703
+
704
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:34:18 +0200
705
+
706
+
707
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:34:18 +0200
708
+
709
+
710
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:34:19 +0200
711
+ Processing by WelcomeController#index as HTML
712
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
713
+ Completed 200 OK in 3ms (Views: 3.3ms | ActiveRecord: 0.0ms)
714
+
715
+
716
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:34:19 +0200
717
+
718
+
719
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:34:19 +0200
720
+
721
+
722
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:34:20 +0200
723
+ Processing by WelcomeController#index as HTML
724
+ Rendered welcome/index.html.erb within layouts/application (1.0ms)
725
+ Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
726
+
727
+
728
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:34:20 +0200
729
+
730
+
731
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:34:20 +0200
732
+
733
+
734
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:34:20 +0200
735
+ Processing by WelcomeController#index as HTML
736
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
737
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
738
+
739
+
740
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:34:20 +0200
741
+
742
+
743
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:34:20 +0200
744
+
745
+
746
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:34:20 +0200
747
+ Processing by WelcomeController#index as HTML
748
+ Rendered welcome/index.html.erb within layouts/application (0.8ms)
749
+ Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
750
+
751
+
752
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:34:20 +0200
753
+
754
+
755
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:34:20 +0200
756
+
757
+
758
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:34:20 +0200
759
+ Processing by WelcomeController#index as HTML
760
+ Rendered welcome/index.html.erb within layouts/application (0.8ms)
761
+ Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
762
+
763
+
764
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:34:20 +0200
765
+
766
+
767
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:34:20 +0200
768
+
769
+
770
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:34:20 +0200
771
+ Processing by WelcomeController#index as HTML
772
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
773
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
774
+
775
+
776
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:34:20 +0200
777
+
778
+
779
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:34:20 +0200
780
+
781
+
782
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:34:21 +0200
783
+ Processing by WelcomeController#index as HTML
784
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
785
+ Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
786
+
787
+
788
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:34:21 +0200
789
+
790
+
791
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:34:21 +0200
792
+
793
+
794
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:34:21 +0200
795
+ Processing by WelcomeController#index as HTML
796
+ Rendered welcome/index.html.erb within layouts/application (1.4ms)
797
+ Completed 200 OK in 6ms (Views: 6.1ms | ActiveRecord: 0.0ms)
798
+
799
+
800
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:34:21 +0200
801
+
802
+
803
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:34:21 +0200
804
+
805
+
806
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:34:22 +0200
807
+ Processing by WelcomeController#index as HTML
808
+ Rendered welcome/index.html.erb within layouts/application (1.0ms)
809
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
810
+
811
+
812
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:34:22 +0200
813
+
814
+
815
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:34:22 +0200
816
+
817
+
818
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:34:22 +0200
819
+ Processing by WelcomeController#index as HTML
820
+ Rendered welcome/index.html.erb within layouts/application (1.0ms)
821
+ Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
822
+
823
+
824
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:34:22 +0200
825
+
826
+
827
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:34:22 +0200
828
+
829
+
830
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:34:23 +0200
831
+ Processing by WelcomeController#index as HTML
832
+ Rendered welcome/index.html.erb within layouts/application (0.8ms)
833
+ Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
834
+
835
+
836
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:34:23 +0200
837
+
838
+
839
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:34:23 +0200
840
+
841
+
842
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:34:23 +0200
843
+ Processing by WelcomeController#index as HTML
844
+ Rendered welcome/index.html.erb within layouts/application (0.8ms)
845
+ Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
846
+
847
+
848
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:34:23 +0200
849
+
850
+
851
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:34:23 +0200
852
+
853
+
854
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:34:23 +0200
855
+ Processing by WelcomeController#index as HTML
856
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
857
+ Completed 200 OK in 3ms (Views: 3.3ms | ActiveRecord: 0.0ms)
858
+
859
+
860
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:34:23 +0200
861
+
862
+
863
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:34:23 +0200
864
+
865
+
866
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:34:25 +0200
867
+ Processing by WelcomeController#index as HTML
868
+ Rendered welcome/index.html.erb within layouts/application (1.0ms)
869
+ Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
870
+
871
+
872
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:34:25 +0200
873
+
874
+
875
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:34:25 +0200
876
+
877
+
878
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:34:25 +0200
879
+ Processing by WelcomeController#index as HTML
880
+ Rendered welcome/index.html.erb within layouts/application (0.8ms)
881
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
882
+
883
+
884
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:34:25 +0200
885
+
886
+
887
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:34:25 +0200
888
+
889
+
890
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:34:25 +0200
891
+ Processing by WelcomeController#index as HTML
892
+ Rendered welcome/index.html.erb within layouts/application (1.0ms)
893
+ Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
894
+
895
+
896
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:34:25 +0200
897
+
898
+
899
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:34:25 +0200
900
+
901
+
902
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:34:26 +0200
903
+ Processing by WelcomeController#index as HTML
904
+ Rendered welcome/index.html.erb within layouts/application (1.0ms)
905
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
906
+
907
+
908
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:34:26 +0200
909
+
910
+
911
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:34:26 +0200
912
+
913
+
914
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:34:26 +0200
915
+ Processing by WelcomeController#index as HTML
916
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
917
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
918
+
919
+
920
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:34:26 +0200
921
+
922
+
923
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:34:26 +0200
924
+
925
+
926
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:34:26 +0200
927
+ Processing by WelcomeController#index as HTML
928
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
929
+ Completed 200 OK in 3ms (Views: 3.3ms | ActiveRecord: 0.0ms)
930
+
931
+
932
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:34:26 +0200
933
+
934
+
935
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:34:26 +0200
936
+
937
+
938
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:34:26 +0200
939
+ Processing by WelcomeController#index as HTML
940
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
941
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
942
+
943
+
944
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:34:26 +0200
945
+
946
+
947
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:34:26 +0200
948
+
949
+
950
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:34:26 +0200
951
+ Processing by WelcomeController#index as HTML
952
+ Rendered welcome/index.html.erb within layouts/application (0.8ms)
953
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
954
+
955
+
956
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:34:27 +0200
957
+
958
+
959
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:34:27 +0200
960
+
961
+
962
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:34:27 +0200
963
+ Processing by WelcomeController#index as HTML
964
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
965
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
966
+
967
+
968
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:34:27 +0200
969
+
970
+
971
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:34:27 +0200
972
+
973
+
974
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:34:27 +0200
975
+ Processing by WelcomeController#index as HTML
976
+ Rendered welcome/index.html.erb within layouts/application (1.0ms)
977
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
978
+
979
+
980
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:34:27 +0200
981
+
982
+
983
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:34:27 +0200
984
+
985
+
986
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:34:27 +0200
987
+ Processing by WelcomeController#index as HTML
988
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
989
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
990
+
991
+
992
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:34:27 +0200
993
+
994
+
995
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:34:27 +0200
996
+
997
+
998
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:34:27 +0200
999
+ Processing by WelcomeController#index as HTML
1000
+ Rendered welcome/index.html.erb within layouts/application (1.2ms)
1001
+ Completed 200 OK in 4ms (Views: 4.2ms | ActiveRecord: 0.0ms)
1002
+
1003
+
1004
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:34:27 +0200
1005
+
1006
+
1007
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:34:27 +0200
1008
+
1009
+
1010
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:34:27 +0200
1011
+ Processing by WelcomeController#index as HTML
1012
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
1013
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
1014
+
1015
+
1016
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:34:27 +0200
1017
+
1018
+
1019
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:34:27 +0200
1020
+
1021
+
1022
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:34:27 +0200
1023
+ Processing by WelcomeController#index as HTML
1024
+ Rendered welcome/index.html.erb within layouts/application (0.8ms)
1025
+ Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
1026
+
1027
+
1028
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:34:27 +0200
1029
+
1030
+
1031
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:34:27 +0200
1032
+
1033
+
1034
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:34:27 +0200
1035
+ Processing by WelcomeController#index as HTML
1036
+ Rendered welcome/index.html.erb within layouts/application (0.8ms)
1037
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
1038
+
1039
+
1040
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:34:27 +0200
1041
+
1042
+
1043
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:34:27 +0200
1044
+
1045
+
1046
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:34:27 +0200
1047
+ Processing by WelcomeController#index as HTML
1048
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
1049
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
1050
+
1051
+
1052
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:34:27 +0200
1053
+
1054
+
1055
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:34:27 +0200
1056
+
1057
+
1058
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:34:27 +0200
1059
+ Processing by WelcomeController#index as HTML
1060
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
1061
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
1062
+
1063
+
1064
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:34:27 +0200
1065
+
1066
+
1067
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:34:27 +0200
1068
+
1069
+
1070
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:34:27 +0200
1071
+ Processing by WelcomeController#index as HTML
1072
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
1073
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
1074
+
1075
+
1076
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:34:27 +0200
1077
+
1078
+
1079
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:34:27 +0200
1080
+
1081
+
1082
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:34:27 +0200
1083
+ Processing by WelcomeController#index as HTML
1084
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
1085
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
1086
+
1087
+
1088
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:34:27 +0200
1089
+
1090
+
1091
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:34:27 +0200
1092
+
1093
+
1094
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:34:27 +0200
1095
+ Processing by WelcomeController#index as HTML
1096
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
1097
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
1098
+
1099
+
1100
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:34:28 +0200
1101
+
1102
+
1103
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:34:28 +0200
1104
+
1105
+
1106
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:34:28 +0200
1107
+ Processing by WelcomeController#index as HTML
1108
+ Rendered welcome/index.html.erb within layouts/application (1.0ms)
1109
+ Completed 200 OK in 6ms (Views: 5.9ms | ActiveRecord: 0.0ms)
1110
+
1111
+
1112
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:34:28 +0200
1113
+
1114
+
1115
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:34:28 +0200
1116
+
1117
+
1118
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:34:28 +0200
1119
+ Processing by WelcomeController#index as HTML
1120
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
1121
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
1122
+
1123
+
1124
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:34:28 +0200
1125
+
1126
+
1127
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:34:28 +0200
1128
+
1129
+
1130
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:34:28 +0200
1131
+ Processing by WelcomeController#index as HTML
1132
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
1133
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
1134
+
1135
+
1136
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:34:28 +0200
1137
+
1138
+
1139
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:34:28 +0200
1140
+
1141
+
1142
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:34:28 +0200
1143
+ Processing by WelcomeController#index as HTML
1144
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
1145
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
1146
+
1147
+
1148
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:34:28 +0200
1149
+
1150
+
1151
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:34:28 +0200
1152
+
1153
+
1154
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:34:28 +0200
1155
+ Processing by WelcomeController#index as HTML
1156
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
1157
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
1158
+
1159
+
1160
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:34:28 +0200
1161
+
1162
+
1163
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:34:28 +0200
1164
+
1165
+
1166
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:34:28 +0200
1167
+ Processing by WelcomeController#index as HTML
1168
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
1169
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
1170
+
1171
+
1172
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:34:28 +0200
1173
+
1174
+
1175
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:34:28 +0200
1176
+
1177
+
1178
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:34:28 +0200
1179
+ Processing by WelcomeController#index as HTML
1180
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
1181
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
1182
+
1183
+
1184
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:34:28 +0200
1185
+
1186
+
1187
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:34:28 +0200
1188
+
1189
+
1190
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:34:28 +0200
1191
+ Processing by WelcomeController#index as HTML
1192
+ Rendered welcome/index.html.erb within layouts/application (1.4ms)
1193
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms)
1194
+
1195
+
1196
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:34:28 +0200
1197
+
1198
+
1199
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:34:28 +0200
1200
+
1201
+
1202
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:35:47 +0200
1203
+ Processing by WelcomeController#index as HTML
1204
+ Rendered welcome/index.html.erb within layouts/application (1.7ms)
1205
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
1206
+
1207
+
1208
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:35:47 +0200
1209
+
1210
+
1211
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:35:47 +0200
1212
+
1213
+
1214
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:35:47 +0200
1215
+ Processing by WelcomeController#index as HTML
1216
+ Rendered welcome/index.html.erb within layouts/application (0.8ms)
1217
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
1218
+
1219
+
1220
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:35:47 +0200
1221
+
1222
+
1223
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:35:47 +0200
1224
+
1225
+
1226
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:35:48 +0200
1227
+ Processing by WelcomeController#index as HTML
1228
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
1229
+ Completed 200 OK in 3ms (Views: 3.3ms | ActiveRecord: 0.0ms)
1230
+
1231
+
1232
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:35:48 +0200
1233
+
1234
+
1235
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:35:48 +0200
1236
+
1237
+
1238
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:35:48 +0200
1239
+ Processing by WelcomeController#index as HTML
1240
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
1241
+ Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
1242
+
1243
+
1244
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:35:48 +0200
1245
+
1246
+
1247
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:35:48 +0200
1248
+
1249
+
1250
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:35:48 +0200
1251
+ Processing by WelcomeController#index as HTML
1252
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
1253
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
1254
+
1255
+
1256
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:35:48 +0200
1257
+
1258
+
1259
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:35:48 +0200
1260
+
1261
+
1262
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:35:49 +0200
1263
+ Processing by WelcomeController#index as HTML
1264
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
1265
+ Completed 200 OK in 3ms (Views: 3.3ms | ActiveRecord: 0.0ms)
1266
+
1267
+
1268
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:35:49 +0200
1269
+
1270
+
1271
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:35:49 +0200
1272
+
1273
+
1274
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:35:49 +0200
1275
+ Processing by WelcomeController#index as HTML
1276
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
1277
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
1278
+
1279
+
1280
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:35:49 +0200
1281
+
1282
+
1283
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:35:49 +0200
1284
+
1285
+
1286
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:35:49 +0200
1287
+ Processing by WelcomeController#index as HTML
1288
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
1289
+ Completed 200 OK in 3ms (Views: 3.3ms | ActiveRecord: 0.0ms)
1290
+
1291
+
1292
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:35:49 +0200
1293
+
1294
+
1295
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:35:49 +0200
1296
+
1297
+
1298
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:35:50 +0200
1299
+ Processing by WelcomeController#index as HTML
1300
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
1301
+ Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
1302
+
1303
+
1304
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:35:50 +0200
1305
+
1306
+
1307
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:35:50 +0200
1308
+
1309
+
1310
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:35:50 +0200
1311
+ Processing by WelcomeController#index as HTML
1312
+ Rendered welcome/index.html.erb within layouts/application (0.8ms)
1313
+ Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
1314
+
1315
+
1316
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:35:50 +0200
1317
+
1318
+
1319
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:35:50 +0200
1320
+
1321
+
1322
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:35:50 +0200
1323
+ Processing by WelcomeController#index as HTML
1324
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
1325
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
1326
+
1327
+
1328
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:35:50 +0200
1329
+
1330
+
1331
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:35:50 +0200
1332
+
1333
+
1334
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:35:51 +0200
1335
+ Processing by WelcomeController#index as HTML
1336
+ Rendered welcome/index.html.erb within layouts/application (0.8ms)
1337
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
1338
+
1339
+
1340
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:35:51 +0200
1341
+
1342
+
1343
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:35:51 +0200
1344
+
1345
+
1346
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:35:51 +0200
1347
+ Processing by WelcomeController#index as HTML
1348
+ Rendered welcome/index.html.erb within layouts/application (1.0ms)
1349
+ Completed 200 OK in 3ms (Views: 3.4ms | ActiveRecord: 0.0ms)
1350
+
1351
+
1352
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:35:51 +0200
1353
+
1354
+
1355
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:35:51 +0200
1356
+
1357
+
1358
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:35:51 +0200
1359
+ Processing by WelcomeController#index as HTML
1360
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
1361
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
1362
+
1363
+
1364
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:35:51 +0200
1365
+
1366
+
1367
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:35:51 +0200
1368
+
1369
+
1370
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:35:51 +0200
1371
+ Processing by WelcomeController#index as HTML
1372
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
1373
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
1374
+
1375
+
1376
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:35:51 +0200
1377
+
1378
+
1379
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:35:51 +0200
1380
+
1381
+
1382
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:35:51 +0200
1383
+ Processing by WelcomeController#index as HTML
1384
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
1385
+ Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
1386
+
1387
+
1388
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:35:51 +0200
1389
+
1390
+
1391
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:35:51 +0200
1392
+
1393
+
1394
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:36:07 +0200
1395
+ Processing by WelcomeController#index as HTML
1396
+ Rendered welcome/index.html.erb within layouts/application (1.6ms)
1397
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
1398
+
1399
+
1400
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:36:07 +0200
1401
+
1402
+
1403
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:36:07 +0200
1404
+
1405
+
1406
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:36:08 +0200
1407
+ Processing by WelcomeController#index as HTML
1408
+ Rendered welcome/index.html.erb within layouts/application (0.8ms)
1409
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
1410
+
1411
+
1412
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:36:08 +0200
1413
+
1414
+
1415
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:36:08 +0200
1416
+
1417
+
1418
+ Started GET "/?locale=en" for 127.0.0.1 at 2014-04-02 17:36:09 +0200
1419
+ Processing by WelcomeController#index as HTML
1420
+ Parameters: {"locale"=>"en"}
1421
+ Rendered welcome/index.html.erb within layouts/application (1.0ms)
1422
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
1423
+
1424
+
1425
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:36:09 +0200
1426
+
1427
+
1428
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:36:09 +0200
1429
+
1430
+
1431
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:36:12 +0200
1432
+ Processing by WelcomeController#index as HTML
1433
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
1434
+ Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
1435
+
1436
+
1437
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:36:12 +0200
1438
+
1439
+
1440
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:36:12 +0200
1441
+
1442
+
1443
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:36:13 +0200
1444
+ Processing by WelcomeController#index as HTML
1445
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
1446
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
1447
+
1448
+
1449
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:36:13 +0200
1450
+
1451
+
1452
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:36:13 +0200
1453
+
1454
+
1455
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:36:13 +0200
1456
+ Processing by WelcomeController#index as HTML
1457
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
1458
+ Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
1459
+
1460
+
1461
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:36:13 +0200
1462
+
1463
+
1464
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:36:13 +0200
1465
+
1466
+
1467
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:36:13 +0200
1468
+ Processing by WelcomeController#index as HTML
1469
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
1470
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
1471
+
1472
+
1473
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:36:13 +0200
1474
+
1475
+
1476
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:36:13 +0200
1477
+
1478
+
1479
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:36:14 +0200
1480
+ Processing by WelcomeController#index as HTML
1481
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
1482
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
1483
+
1484
+
1485
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:36:14 +0200
1486
+
1487
+
1488
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:36:14 +0200
1489
+
1490
+
1491
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:36:14 +0200
1492
+ Processing by WelcomeController#index as HTML
1493
+ Rendered welcome/index.html.erb within layouts/application (1.0ms)
1494
+ Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
1495
+
1496
+
1497
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:36:14 +0200
1498
+
1499
+
1500
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:36:14 +0200
1501
+
1502
+
1503
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:36:15 +0200
1504
+ Processing by WelcomeController#index as HTML
1505
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
1506
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
1507
+
1508
+
1509
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:36:15 +0200
1510
+
1511
+
1512
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:36:15 +0200
1513
+
1514
+
1515
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:36:16 +0200
1516
+ Processing by WelcomeController#index as HTML
1517
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
1518
+ Completed 200 OK in 3ms (Views: 3.3ms | ActiveRecord: 0.0ms)
1519
+
1520
+
1521
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:36:16 +0200
1522
+
1523
+
1524
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:36:16 +0200
1525
+
1526
+
1527
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:36:16 +0200
1528
+ Processing by WelcomeController#index as HTML
1529
+ Rendered welcome/index.html.erb within layouts/application (1.0ms)
1530
+ Completed 200 OK in 3ms (Views: 3.3ms | ActiveRecord: 0.0ms)
1531
+
1532
+
1533
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:36:16 +0200
1534
+
1535
+
1536
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:36:16 +0200
1537
+
1538
+
1539
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:36:17 +0200
1540
+ Processing by WelcomeController#index as HTML
1541
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
1542
+ Completed 200 OK in 4ms (Views: 4.1ms | ActiveRecord: 0.0ms)
1543
+
1544
+
1545
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:36:17 +0200
1546
+
1547
+
1548
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:36:17 +0200
1549
+
1550
+
1551
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:36:17 +0200
1552
+ Processing by WelcomeController#index as HTML
1553
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
1554
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
1555
+
1556
+
1557
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:36:17 +0200
1558
+
1559
+
1560
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:36:17 +0200
1561
+
1562
+
1563
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:36:35 +0200
1564
+ Processing by WelcomeController#index as HTML
1565
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
1566
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
1567
+
1568
+
1569
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:36:35 +0200
1570
+
1571
+
1572
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:36:35 +0200
1573
+
1574
+
1575
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:36:36 +0200
1576
+ Processing by WelcomeController#index as HTML
1577
+ Rendered welcome/index.html.erb within layouts/application (1.0ms)
1578
+ Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
1579
+
1580
+
1581
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:36:36 +0200
1582
+
1583
+
1584
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:36:36 +0200
1585
+
1586
+
1587
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:36:36 +0200
1588
+ Processing by WelcomeController#index as HTML
1589
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
1590
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
1591
+
1592
+
1593
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:36:36 +0200
1594
+
1595
+
1596
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:36:36 +0200
1597
+
1598
+
1599
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:36:36 +0200
1600
+ Processing by WelcomeController#index as HTML
1601
+ Rendered welcome/index.html.erb within layouts/application (1.0ms)
1602
+ Completed 200 OK in 3ms (Views: 3.4ms | ActiveRecord: 0.0ms)
1603
+
1604
+
1605
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:36:36 +0200
1606
+
1607
+
1608
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:36:36 +0200
1609
+
1610
+
1611
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:36:36 +0200
1612
+ Processing by WelcomeController#index as HTML
1613
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
1614
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
1615
+
1616
+
1617
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:36:36 +0200
1618
+
1619
+
1620
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:36:36 +0200
1621
+
1622
+
1623
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:36:36 +0200
1624
+ Processing by WelcomeController#index as HTML
1625
+ Rendered welcome/index.html.erb within layouts/application (0.8ms)
1626
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
1627
+
1628
+
1629
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:36:36 +0200
1630
+
1631
+
1632
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:36:36 +0200
1633
+
1634
+
1635
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:36:37 +0200
1636
+ Processing by WelcomeController#index as HTML
1637
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
1638
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
1639
+
1640
+
1641
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:36:37 +0200
1642
+
1643
+
1644
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:36:37 +0200
1645
+
1646
+
1647
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:36:37 +0200
1648
+ Processing by WelcomeController#index as HTML
1649
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
1650
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
1651
+
1652
+
1653
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:36:37 +0200
1654
+
1655
+
1656
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:36:37 +0200
1657
+
1658
+
1659
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:36:37 +0200
1660
+ Processing by WelcomeController#index as HTML
1661
+ Rendered welcome/index.html.erb within layouts/application (1.0ms)
1662
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
1663
+
1664
+
1665
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:36:37 +0200
1666
+
1667
+
1668
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:36:37 +0200
1669
+
1670
+
1671
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:36:38 +0200
1672
+ Processing by WelcomeController#index as HTML
1673
+ Rendered welcome/index.html.erb within layouts/application (0.8ms)
1674
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
1675
+
1676
+
1677
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:36:38 +0200
1678
+
1679
+
1680
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:36:38 +0200
1681
+
1682
+
1683
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:36:40 +0200
1684
+ Processing by WelcomeController#index as HTML
1685
+ Rendered welcome/index.html.erb within layouts/application (0.8ms)
1686
+ Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
1687
+
1688
+
1689
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:36:40 +0200
1690
+
1691
+
1692
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:36:40 +0200
1693
+
1694
+
1695
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:36:40 +0200
1696
+ Processing by WelcomeController#index as HTML
1697
+ Rendered welcome/index.html.erb within layouts/application (0.8ms)
1698
+ Completed 200 OK in 3ms (Views: 3.3ms | ActiveRecord: 0.0ms)
1699
+
1700
+
1701
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:36:41 +0200
1702
+
1703
+
1704
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:36:41 +0200
1705
+
1706
+
1707
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:36:45 +0200
1708
+ Processing by WelcomeController#index as HTML
1709
+ Rendered welcome/index.html.erb within layouts/application (1.2ms)
1710
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
1711
+
1712
+
1713
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:36:45 +0200
1714
+
1715
+
1716
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:36:45 +0200
1717
+
1718
+
1719
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:36:46 +0200
1720
+ Processing by WelcomeController#index as HTML
1721
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
1722
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
1723
+
1724
+
1725
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:36:46 +0200
1726
+
1727
+
1728
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:36:46 +0200
1729
+
1730
+
1731
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:36:46 +0200
1732
+ Processing by WelcomeController#index as HTML
1733
+ Rendered welcome/index.html.erb within layouts/application (1.9ms)
1734
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
1735
+
1736
+
1737
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:36:46 +0200
1738
+
1739
+
1740
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:36:46 +0200
1741
+
1742
+
1743
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:36:47 +0200
1744
+ Processing by WelcomeController#index as HTML
1745
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
1746
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
1747
+
1748
+
1749
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:36:47 +0200
1750
+
1751
+
1752
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:36:47 +0200
1753
+
1754
+
1755
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:36:48 +0200
1756
+ Processing by WelcomeController#index as HTML
1757
+ Rendered welcome/index.html.erb within layouts/application (0.8ms)
1758
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
1759
+
1760
+
1761
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:36:48 +0200
1762
+
1763
+
1764
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:36:48 +0200
1765
+
1766
+
1767
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:36:49 +0200
1768
+ Processing by WelcomeController#index as HTML
1769
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
1770
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
1771
+
1772
+
1773
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:36:49 +0200
1774
+
1775
+
1776
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:36:49 +0200
1777
+
1778
+
1779
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:38:33 +0200
1780
+ Processing by WelcomeController#index as HTML
1781
+ Rendered welcome/index.html.erb within layouts/application (1.8ms)
1782
+ Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
1783
+
1784
+
1785
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:38:33 +0200
1786
+
1787
+
1788
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:38:33 +0200
1789
+
1790
+
1791
+ Started GET "/?locale=da" for 127.0.0.1 at 2014-04-02 17:38:35 +0200
1792
+ Processing by WelcomeController#index as HTML
1793
+ Parameters: {"locale"=>"da"}
1794
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
1795
+ Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
1796
+
1797
+
1798
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:38:35 +0200
1799
+
1800
+
1801
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:38:35 +0200
1802
+
1803
+
1804
+ Started GET "/?locale=en" for 127.0.0.1 at 2014-04-02 17:38:36 +0200
1805
+ Processing by WelcomeController#index as HTML
1806
+ Parameters: {"locale"=>"en"}
1807
+ Rendered welcome/index.html.erb within layouts/application (1.0ms)
1808
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
1809
+
1810
+
1811
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:38:36 +0200
1812
+
1813
+
1814
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:38:36 +0200
1815
+
1816
+
1817
+ Started GET "/?locale=en" for 127.0.0.1 at 2014-04-02 17:38:36 +0200
1818
+ Processing by WelcomeController#index as HTML
1819
+ Parameters: {"locale"=>"en"}
1820
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
1821
+ Completed 200 OK in 4ms (Views: 4.1ms | ActiveRecord: 0.0ms)
1822
+
1823
+
1824
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:38:36 +0200
1825
+
1826
+
1827
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:38:36 +0200
1828
+
1829
+
1830
+ Started GET "/?locale=en" for 127.0.0.1 at 2014-04-02 17:38:37 +0200
1831
+ Processing by WelcomeController#index as HTML
1832
+ Parameters: {"locale"=>"en"}
1833
+ Rendered welcome/index.html.erb within layouts/application (0.8ms)
1834
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
1835
+
1836
+
1837
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:38:37 +0200
1838
+
1839
+
1840
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:38:37 +0200
1841
+
1842
+
1843
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:38:39 +0200
1844
+ Processing by WelcomeController#index as HTML
1845
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
1846
+ Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
1847
+
1848
+
1849
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:38:39 +0200
1850
+
1851
+
1852
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:38:39 +0200
1853
+
1854
+
1855
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:36 +0200
1856
+ Processing by WelcomeController#index as HTML
1857
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
1858
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
1859
+
1860
+
1861
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:36 +0200
1862
+
1863
+
1864
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:36 +0200
1865
+
1866
+
1867
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:37 +0200
1868
+ Processing by WelcomeController#index as HTML
1869
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
1870
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
1871
+
1872
+
1873
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:37 +0200
1874
+
1875
+
1876
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:37 +0200
1877
+
1878
+
1879
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:37 +0200
1880
+ Processing by WelcomeController#index as HTML
1881
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
1882
+ Completed 200 OK in 3ms (Views: 3.3ms | ActiveRecord: 0.0ms)
1883
+
1884
+
1885
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:37 +0200
1886
+
1887
+
1888
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:37 +0200
1889
+
1890
+
1891
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:37 +0200
1892
+ Processing by WelcomeController#index as HTML
1893
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
1894
+ Completed 200 OK in 3ms (Views: 3.3ms | ActiveRecord: 0.0ms)
1895
+
1896
+
1897
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:37 +0200
1898
+
1899
+
1900
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:37 +0200
1901
+
1902
+
1903
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:38 +0200
1904
+ Processing by WelcomeController#index as HTML
1905
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
1906
+ Completed 200 OK in 3ms (Views: 3.3ms | ActiveRecord: 0.0ms)
1907
+
1908
+
1909
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:38 +0200
1910
+
1911
+
1912
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:38 +0200
1913
+
1914
+
1915
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:38 +0200
1916
+ Processing by WelcomeController#index as HTML
1917
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
1918
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
1919
+
1920
+
1921
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:38 +0200
1922
+
1923
+
1924
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:38 +0200
1925
+
1926
+
1927
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:40 +0200
1928
+ Processing by WelcomeController#index as HTML
1929
+ Rendered welcome/index.html.erb within layouts/application (0.8ms)
1930
+ Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
1931
+
1932
+
1933
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:40 +0200
1934
+
1935
+
1936
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:40 +0200
1937
+
1938
+
1939
+ Started GET "/?locale=da" for 127.0.0.1 at 2014-04-02 17:40:47 +0200
1940
+ Processing by WelcomeController#index as HTML
1941
+ Parameters: {"locale"=>"da"}
1942
+ Rendered welcome/index.html.erb within layouts/application (1.0ms)
1943
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
1944
+
1945
+
1946
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:47 +0200
1947
+
1948
+
1949
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:47 +0200
1950
+
1951
+
1952
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:49 +0200
1953
+ Processing by WelcomeController#index as HTML
1954
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
1955
+ Completed 200 OK in 3ms (Views: 3.3ms | ActiveRecord: 0.0ms)
1956
+
1957
+
1958
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:49 +0200
1959
+
1960
+
1961
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:49 +0200
1962
+
1963
+
1964
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:49 +0200
1965
+ Processing by WelcomeController#index as HTML
1966
+ Rendered welcome/index.html.erb within layouts/application (1.0ms)
1967
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
1968
+
1969
+
1970
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:49 +0200
1971
+
1972
+
1973
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:49 +0200
1974
+
1975
+
1976
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:50 +0200
1977
+ Processing by WelcomeController#index as HTML
1978
+ Rendered welcome/index.html.erb within layouts/application (1.1ms)
1979
+ Completed 200 OK in 4ms (Views: 4.1ms | ActiveRecord: 0.0ms)
1980
+
1981
+
1982
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:50 +0200
1983
+
1984
+
1985
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:50 +0200
1986
+
1987
+
1988
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:50 +0200
1989
+ Processing by WelcomeController#index as HTML
1990
+ Rendered welcome/index.html.erb within layouts/application (0.8ms)
1991
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
1992
+
1993
+
1994
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:50 +0200
1995
+
1996
+
1997
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:50 +0200
1998
+
1999
+
2000
+ Started GET "/?locale=en" for 127.0.0.1 at 2014-04-02 17:40:50 +0200
2001
+ Processing by WelcomeController#index as HTML
2002
+ Parameters: {"locale"=>"en"}
2003
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
2004
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
2005
+
2006
+
2007
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:50 +0200
2008
+
2009
+
2010
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:50 +0200
2011
+
2012
+
2013
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:52 +0200
2014
+ Processing by WelcomeController#index as HTML
2015
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
2016
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
2017
+
2018
+
2019
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:52 +0200
2020
+
2021
+
2022
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:52 +0200
2023
+
2024
+
2025
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:52 +0200
2026
+ Processing by WelcomeController#index as HTML
2027
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
2028
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
2029
+
2030
+
2031
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:52 +0200
2032
+
2033
+
2034
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:52 +0200
2035
+
2036
+
2037
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:52 +0200
2038
+ Processing by WelcomeController#index as HTML
2039
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
2040
+ Completed 200 OK in 3ms (Views: 3.3ms | ActiveRecord: 0.0ms)
2041
+
2042
+
2043
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:52 +0200
2044
+
2045
+
2046
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:52 +0200
2047
+
2048
+
2049
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:52 +0200
2050
+ Processing by WelcomeController#index as HTML
2051
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
2052
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
2053
+
2054
+
2055
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:52 +0200
2056
+
2057
+
2058
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:52 +0200
2059
+
2060
+
2061
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:53 +0200
2062
+ Processing by WelcomeController#index as HTML
2063
+ Rendered welcome/index.html.erb within layouts/application (1.4ms)
2064
+ Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.0ms)
2065
+
2066
+
2067
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:53 +0200
2068
+
2069
+
2070
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:53 +0200
2071
+
2072
+
2073
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:53 +0200
2074
+ Processing by WelcomeController#index as HTML
2075
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
2076
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
2077
+
2078
+
2079
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:53 +0200
2080
+
2081
+
2082
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:53 +0200
2083
+
2084
+
2085
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:53 +0200
2086
+ Processing by WelcomeController#index as HTML
2087
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
2088
+ Completed 200 OK in 3ms (Views: 3.3ms | ActiveRecord: 0.0ms)
2089
+
2090
+
2091
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:53 +0200
2092
+
2093
+
2094
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:53 +0200
2095
+
2096
+
2097
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:53 +0200
2098
+ Processing by WelcomeController#index as HTML
2099
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
2100
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
2101
+
2102
+
2103
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:53 +0200
2104
+
2105
+
2106
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:53 +0200
2107
+
2108
+
2109
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:53 +0200
2110
+ Processing by WelcomeController#index as HTML
2111
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
2112
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
2113
+
2114
+
2115
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:53 +0200
2116
+
2117
+
2118
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:53 +0200
2119
+
2120
+
2121
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:53 +0200
2122
+ Processing by WelcomeController#index as HTML
2123
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
2124
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
2125
+
2126
+
2127
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:53 +0200
2128
+
2129
+
2130
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:53 +0200
2131
+
2132
+
2133
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:54 +0200
2134
+ Processing by WelcomeController#index as HTML
2135
+ Rendered welcome/index.html.erb within layouts/application (0.8ms)
2136
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
2137
+
2138
+
2139
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:54 +0200
2140
+
2141
+
2142
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:54 +0200
2143
+
2144
+
2145
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:54 +0200
2146
+ Processing by WelcomeController#index as HTML
2147
+ Rendered welcome/index.html.erb within layouts/application (0.8ms)
2148
+ Completed 200 OK in 3ms (Views: 3.3ms | ActiveRecord: 0.0ms)
2149
+
2150
+
2151
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:54 +0200
2152
+
2153
+
2154
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:54 +0200
2155
+
2156
+
2157
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:54 +0200
2158
+ Processing by WelcomeController#index as HTML
2159
+ Rendered welcome/index.html.erb within layouts/application (1.0ms)
2160
+ Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
2161
+
2162
+
2163
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:54 +0200
2164
+
2165
+
2166
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:54 +0200
2167
+
2168
+
2169
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:54 +0200
2170
+ Processing by WelcomeController#index as HTML
2171
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
2172
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
2173
+
2174
+
2175
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:54 +0200
2176
+
2177
+
2178
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:54 +0200
2179
+
2180
+
2181
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:54 +0200
2182
+ Processing by WelcomeController#index as HTML
2183
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
2184
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
2185
+
2186
+
2187
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:54 +0200
2188
+
2189
+
2190
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:54 +0200
2191
+
2192
+
2193
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:54 +0200
2194
+ Processing by WelcomeController#index as HTML
2195
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
2196
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
2197
+
2198
+
2199
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:54 +0200
2200
+
2201
+
2202
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:54 +0200
2203
+
2204
+
2205
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:54 +0200
2206
+ Processing by WelcomeController#index as HTML
2207
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
2208
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
2209
+
2210
+
2211
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:54 +0200
2212
+
2213
+
2214
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:54 +0200
2215
+
2216
+
2217
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:54 +0200
2218
+ Processing by WelcomeController#index as HTML
2219
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
2220
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
2221
+
2222
+
2223
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:54 +0200
2224
+
2225
+
2226
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:54 +0200
2227
+
2228
+
2229
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:54 +0200
2230
+ Processing by WelcomeController#index as HTML
2231
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
2232
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
2233
+
2234
+
2235
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:55 +0200
2236
+
2237
+
2238
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:55 +0200
2239
+
2240
+
2241
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:55 +0200
2242
+ Processing by WelcomeController#index as HTML
2243
+ Rendered welcome/index.html.erb within layouts/application (0.8ms)
2244
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
2245
+
2246
+
2247
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:55 +0200
2248
+
2249
+
2250
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:55 +0200
2251
+
2252
+
2253
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:55 +0200
2254
+ Processing by WelcomeController#index as HTML
2255
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
2256
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
2257
+
2258
+
2259
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:55 +0200
2260
+
2261
+
2262
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:55 +0200
2263
+
2264
+
2265
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:55 +0200
2266
+ Processing by WelcomeController#index as HTML
2267
+ Rendered welcome/index.html.erb within layouts/application (0.8ms)
2268
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
2269
+
2270
+
2271
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:55 +0200
2272
+
2273
+
2274
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:55 +0200
2275
+
2276
+
2277
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:55 +0200
2278
+ Processing by WelcomeController#index as HTML
2279
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
2280
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
2281
+
2282
+
2283
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:55 +0200
2284
+
2285
+
2286
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:55 +0200
2287
+
2288
+
2289
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:55 +0200
2290
+ Processing by WelcomeController#index as HTML
2291
+ Rendered welcome/index.html.erb within layouts/application (1.0ms)
2292
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
2293
+
2294
+
2295
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:55 +0200
2296
+
2297
+
2298
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:55 +0200
2299
+
2300
+
2301
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:55 +0200
2302
+ Processing by WelcomeController#index as HTML
2303
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
2304
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
2305
+
2306
+
2307
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:55 +0200
2308
+
2309
+
2310
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:55 +0200
2311
+
2312
+
2313
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:55 +0200
2314
+ Processing by WelcomeController#index as HTML
2315
+ Rendered welcome/index.html.erb within layouts/application (0.8ms)
2316
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
2317
+
2318
+
2319
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:55 +0200
2320
+
2321
+
2322
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:55 +0200
2323
+
2324
+
2325
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:55 +0200
2326
+ Processing by WelcomeController#index as HTML
2327
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
2328
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
2329
+
2330
+
2331
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:55 +0200
2332
+
2333
+
2334
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:55 +0200
2335
+
2336
+
2337
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:55 +0200
2338
+ Processing by WelcomeController#index as HTML
2339
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
2340
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
2341
+
2342
+
2343
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:55 +0200
2344
+
2345
+
2346
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:55 +0200
2347
+
2348
+
2349
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:55 +0200
2350
+ Processing by WelcomeController#index as HTML
2351
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
2352
+ Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
2353
+
2354
+
2355
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:55 +0200
2356
+
2357
+
2358
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:55 +0200
2359
+
2360
+
2361
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:55 +0200
2362
+ Processing by WelcomeController#index as HTML
2363
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
2364
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
2365
+
2366
+
2367
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:55 +0200
2368
+
2369
+
2370
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:55 +0200
2371
+
2372
+
2373
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:56 +0200
2374
+ Processing by WelcomeController#index as HTML
2375
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
2376
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
2377
+
2378
+
2379
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:56 +0200
2380
+
2381
+
2382
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:56 +0200
2383
+
2384
+
2385
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:56 +0200
2386
+ Processing by WelcomeController#index as HTML
2387
+ Rendered welcome/index.html.erb within layouts/application (0.8ms)
2388
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
2389
+
2390
+
2391
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:56 +0200
2392
+
2393
+
2394
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:56 +0200
2395
+
2396
+
2397
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:56 +0200
2398
+ Processing by WelcomeController#index as HTML
2399
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
2400
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
2401
+
2402
+
2403
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:56 +0200
2404
+
2405
+
2406
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:56 +0200
2407
+
2408
+
2409
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:56 +0200
2410
+ Processing by WelcomeController#index as HTML
2411
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
2412
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
2413
+
2414
+
2415
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:56 +0200
2416
+
2417
+
2418
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:56 +0200
2419
+
2420
+
2421
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:56 +0200
2422
+ Processing by WelcomeController#index as HTML
2423
+ Rendered welcome/index.html.erb within layouts/application (0.8ms)
2424
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
2425
+
2426
+
2427
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:56 +0200
2428
+
2429
+
2430
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:56 +0200
2431
+
2432
+
2433
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:56 +0200
2434
+ Processing by WelcomeController#index as HTML
2435
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
2436
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
2437
+
2438
+
2439
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:56 +0200
2440
+
2441
+
2442
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:56 +0200
2443
+
2444
+
2445
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:56 +0200
2446
+ Processing by WelcomeController#index as HTML
2447
+ Rendered welcome/index.html.erb within layouts/application (0.8ms)
2448
+ Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
2449
+
2450
+
2451
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:56 +0200
2452
+
2453
+
2454
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:56 +0200
2455
+
2456
+
2457
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:56 +0200
2458
+ Processing by WelcomeController#index as HTML
2459
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
2460
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
2461
+
2462
+
2463
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:56 +0200
2464
+
2465
+
2466
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:56 +0200
2467
+
2468
+
2469
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:56 +0200
2470
+ Processing by WelcomeController#index as HTML
2471
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
2472
+ Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
2473
+
2474
+
2475
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:56 +0200
2476
+
2477
+
2478
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:56 +0200
2479
+
2480
+
2481
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:56 +0200
2482
+ Processing by WelcomeController#index as HTML
2483
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
2484
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
2485
+
2486
+
2487
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:56 +0200
2488
+
2489
+
2490
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:56 +0200
2491
+
2492
+
2493
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:56 +0200
2494
+ Processing by WelcomeController#index as HTML
2495
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
2496
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
2497
+
2498
+
2499
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:56 +0200
2500
+
2501
+
2502
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:56 +0200
2503
+
2504
+
2505
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:56 +0200
2506
+ Processing by WelcomeController#index as HTML
2507
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
2508
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
2509
+
2510
+
2511
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:56 +0200
2512
+
2513
+
2514
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:56 +0200
2515
+
2516
+
2517
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:57 +0200
2518
+ Processing by WelcomeController#index as HTML
2519
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
2520
+ Completed 200 OK in 3ms (Views: 3.3ms | ActiveRecord: 0.0ms)
2521
+
2522
+
2523
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:57 +0200
2524
+
2525
+
2526
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:57 +0200
2527
+
2528
+
2529
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:57 +0200
2530
+ Processing by WelcomeController#index as HTML
2531
+ Rendered welcome/index.html.erb within layouts/application (0.8ms)
2532
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
2533
+
2534
+
2535
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:57 +0200
2536
+
2537
+
2538
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:57 +0200
2539
+
2540
+
2541
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:57 +0200
2542
+ Processing by WelcomeController#index as HTML
2543
+ Rendered welcome/index.html.erb within layouts/application (0.8ms)
2544
+ Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
2545
+
2546
+
2547
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:57 +0200
2548
+
2549
+
2550
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:57 +0200
2551
+
2552
+
2553
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:57 +0200
2554
+ Processing by WelcomeController#index as HTML
2555
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
2556
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
2557
+
2558
+
2559
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:57 +0200
2560
+
2561
+
2562
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:57 +0200
2563
+
2564
+
2565
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:57 +0200
2566
+ Processing by WelcomeController#index as HTML
2567
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
2568
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
2569
+
2570
+
2571
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:57 +0200
2572
+
2573
+
2574
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:57 +0200
2575
+
2576
+
2577
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:57 +0200
2578
+ Processing by WelcomeController#index as HTML
2579
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
2580
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
2581
+
2582
+
2583
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:57 +0200
2584
+
2585
+
2586
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:57 +0200
2587
+
2588
+
2589
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:57 +0200
2590
+ Processing by WelcomeController#index as HTML
2591
+ Rendered welcome/index.html.erb within layouts/application (0.8ms)
2592
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
2593
+
2594
+
2595
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:57 +0200
2596
+
2597
+
2598
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:57 +0200
2599
+
2600
+
2601
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:57 +0200
2602
+ Processing by WelcomeController#index as HTML
2603
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
2604
+ Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
2605
+
2606
+
2607
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:57 +0200
2608
+
2609
+
2610
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:57 +0200
2611
+
2612
+
2613
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:57 +0200
2614
+ Processing by WelcomeController#index as HTML
2615
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
2616
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
2617
+
2618
+
2619
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:57 +0200
2620
+
2621
+
2622
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:57 +0200
2623
+
2624
+
2625
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:57 +0200
2626
+ Processing by WelcomeController#index as HTML
2627
+ Rendered welcome/index.html.erb within layouts/application (0.8ms)
2628
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
2629
+
2630
+
2631
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:57 +0200
2632
+
2633
+
2634
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:57 +0200
2635
+
2636
+
2637
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:57 +0200
2638
+ Processing by WelcomeController#index as HTML
2639
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
2640
+ Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
2641
+
2642
+
2643
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:57 +0200
2644
+
2645
+
2646
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:57 +0200
2647
+
2648
+
2649
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:57 +0200
2650
+ Processing by WelcomeController#index as HTML
2651
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
2652
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
2653
+
2654
+
2655
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:57 +0200
2656
+
2657
+
2658
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:57 +0200
2659
+
2660
+
2661
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:58 +0200
2662
+ Processing by WelcomeController#index as HTML
2663
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
2664
+ Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
2665
+
2666
+
2667
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:58 +0200
2668
+
2669
+
2670
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:58 +0200
2671
+
2672
+
2673
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:58 +0200
2674
+ Processing by WelcomeController#index as HTML
2675
+ Rendered welcome/index.html.erb within layouts/application (0.8ms)
2676
+ Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
2677
+
2678
+
2679
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:58 +0200
2680
+
2681
+
2682
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:58 +0200
2683
+
2684
+
2685
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:58 +0200
2686
+ Processing by WelcomeController#index as HTML
2687
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
2688
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
2689
+
2690
+
2691
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:58 +0200
2692
+
2693
+
2694
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:58 +0200
2695
+
2696
+
2697
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:58 +0200
2698
+ Processing by WelcomeController#index as HTML
2699
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
2700
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
2701
+
2702
+
2703
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:58 +0200
2704
+
2705
+
2706
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:58 +0200
2707
+
2708
+
2709
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:58 +0200
2710
+ Processing by WelcomeController#index as HTML
2711
+ Rendered welcome/index.html.erb within layouts/application (1.0ms)
2712
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
2713
+
2714
+
2715
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:58 +0200
2716
+
2717
+
2718
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:58 +0200
2719
+
2720
+
2721
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:58 +0200
2722
+ Processing by WelcomeController#index as HTML
2723
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
2724
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
2725
+
2726
+
2727
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:58 +0200
2728
+
2729
+
2730
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:58 +0200
2731
+
2732
+
2733
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:58 +0200
2734
+ Processing by WelcomeController#index as HTML
2735
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
2736
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
2737
+
2738
+
2739
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:58 +0200
2740
+
2741
+
2742
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:58 +0200
2743
+
2744
+
2745
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:58 +0200
2746
+ Processing by WelcomeController#index as HTML
2747
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
2748
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
2749
+
2750
+
2751
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:58 +0200
2752
+
2753
+
2754
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:58 +0200
2755
+
2756
+
2757
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:58 +0200
2758
+ Processing by WelcomeController#index as HTML
2759
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
2760
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
2761
+
2762
+
2763
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:58 +0200
2764
+
2765
+
2766
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:58 +0200
2767
+
2768
+
2769
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:58 +0200
2770
+ Processing by WelcomeController#index as HTML
2771
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
2772
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
2773
+
2774
+
2775
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:58 +0200
2776
+
2777
+
2778
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:58 +0200
2779
+
2780
+
2781
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:58 +0200
2782
+ Processing by WelcomeController#index as HTML
2783
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
2784
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
2785
+
2786
+
2787
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:58 +0200
2788
+
2789
+
2790
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:58 +0200
2791
+
2792
+
2793
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:58 +0200
2794
+ Processing by WelcomeController#index as HTML
2795
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
2796
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
2797
+
2798
+
2799
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:58 +0200
2800
+
2801
+
2802
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:58 +0200
2803
+
2804
+
2805
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:59 +0200
2806
+ Processing by WelcomeController#index as HTML
2807
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
2808
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
2809
+
2810
+
2811
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:59 +0200
2812
+
2813
+
2814
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:59 +0200
2815
+
2816
+
2817
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:59 +0200
2818
+ Processing by WelcomeController#index as HTML
2819
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
2820
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
2821
+
2822
+
2823
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:59 +0200
2824
+
2825
+
2826
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:59 +0200
2827
+
2828
+
2829
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:59 +0200
2830
+ Processing by WelcomeController#index as HTML
2831
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
2832
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
2833
+
2834
+
2835
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:59 +0200
2836
+
2837
+
2838
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:59 +0200
2839
+
2840
+
2841
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:59 +0200
2842
+ Processing by WelcomeController#index as HTML
2843
+ Rendered welcome/index.html.erb within layouts/application (1.0ms)
2844
+ Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
2845
+
2846
+
2847
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:59 +0200
2848
+
2849
+
2850
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:59 +0200
2851
+
2852
+
2853
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:59 +0200
2854
+ Processing by WelcomeController#index as HTML
2855
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
2856
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
2857
+
2858
+
2859
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:59 +0200
2860
+
2861
+
2862
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:59 +0200
2863
+
2864
+
2865
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:59 +0200
2866
+ Processing by WelcomeController#index as HTML
2867
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
2868
+ Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
2869
+
2870
+
2871
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:59 +0200
2872
+
2873
+
2874
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:59 +0200
2875
+
2876
+
2877
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:59 +0200
2878
+ Processing by WelcomeController#index as HTML
2879
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
2880
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
2881
+
2882
+
2883
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:59 +0200
2884
+
2885
+
2886
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:59 +0200
2887
+
2888
+
2889
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:59 +0200
2890
+ Processing by WelcomeController#index as HTML
2891
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
2892
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
2893
+
2894
+
2895
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:59 +0200
2896
+
2897
+
2898
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:59 +0200
2899
+
2900
+
2901
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:59 +0200
2902
+ Processing by WelcomeController#index as HTML
2903
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
2904
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
2905
+
2906
+
2907
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:59 +0200
2908
+
2909
+
2910
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:59 +0200
2911
+
2912
+
2913
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:59 +0200
2914
+ Processing by WelcomeController#index as HTML
2915
+ Rendered welcome/index.html.erb within layouts/application (0.8ms)
2916
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
2917
+
2918
+
2919
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:59 +0200
2920
+
2921
+
2922
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:59 +0200
2923
+
2924
+
2925
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:59 +0200
2926
+ Processing by WelcomeController#index as HTML
2927
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
2928
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
2929
+
2930
+
2931
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:59 +0200
2932
+
2933
+
2934
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:59 +0200
2935
+
2936
+
2937
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:40:59 +0200
2938
+ Processing by WelcomeController#index as HTML
2939
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
2940
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
2941
+
2942
+
2943
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:40:59 +0200
2944
+
2945
+
2946
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:40:59 +0200
2947
+
2948
+
2949
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:41:00 +0200
2950
+ Processing by WelcomeController#index as HTML
2951
+ Rendered welcome/index.html.erb within layouts/application (1.0ms)
2952
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
2953
+
2954
+
2955
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:41:00 +0200
2956
+
2957
+
2958
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:41:00 +0200
2959
+
2960
+
2961
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:41:00 +0200
2962
+ Processing by WelcomeController#index as HTML
2963
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
2964
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
2965
+
2966
+
2967
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:41:00 +0200
2968
+
2969
+
2970
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:41:00 +0200
2971
+
2972
+
2973
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:41:00 +0200
2974
+ Processing by WelcomeController#index as HTML
2975
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
2976
+ Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
2977
+
2978
+
2979
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:41:00 +0200
2980
+
2981
+
2982
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:41:00 +0200
2983
+
2984
+
2985
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:41:00 +0200
2986
+ Processing by WelcomeController#index as HTML
2987
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
2988
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
2989
+
2990
+
2991
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:41:00 +0200
2992
+
2993
+
2994
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:41:00 +0200
2995
+
2996
+
2997
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:41:00 +0200
2998
+ Processing by WelcomeController#index as HTML
2999
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
3000
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
3001
+
3002
+
3003
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:41:00 +0200
3004
+
3005
+
3006
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:41:00 +0200
3007
+
3008
+
3009
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:41:00 +0200
3010
+ Processing by WelcomeController#index as HTML
3011
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
3012
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
3013
+
3014
+
3015
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:41:00 +0200
3016
+
3017
+
3018
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:41:00 +0200
3019
+
3020
+
3021
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:41:00 +0200
3022
+ Processing by WelcomeController#index as HTML
3023
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
3024
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
3025
+
3026
+
3027
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:41:00 +0200
3028
+
3029
+
3030
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:41:00 +0200
3031
+
3032
+
3033
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:41:00 +0200
3034
+ Processing by WelcomeController#index as HTML
3035
+ Rendered welcome/index.html.erb within layouts/application (1.2ms)
3036
+ Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
3037
+
3038
+
3039
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:41:00 +0200
3040
+
3041
+
3042
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:41:00 +0200
3043
+
3044
+
3045
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:41:00 +0200
3046
+ Processing by WelcomeController#index as HTML
3047
+ Rendered welcome/index.html.erb within layouts/application (1.1ms)
3048
+ Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
3049
+
3050
+
3051
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:41:00 +0200
3052
+
3053
+
3054
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:41:00 +0200
3055
+
3056
+
3057
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:41:00 +0200
3058
+ Processing by WelcomeController#index as HTML
3059
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
3060
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
3061
+
3062
+
3063
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:41:00 +0200
3064
+
3065
+
3066
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:41:00 +0200
3067
+
3068
+
3069
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:41:00 +0200
3070
+ Processing by WelcomeController#index as HTML
3071
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
3072
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
3073
+
3074
+
3075
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:41:00 +0200
3076
+
3077
+
3078
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:41:00 +0200
3079
+
3080
+
3081
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:41:00 +0200
3082
+ Processing by WelcomeController#index as HTML
3083
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
3084
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
3085
+
3086
+
3087
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:41:00 +0200
3088
+
3089
+
3090
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:41:00 +0200
3091
+
3092
+
3093
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:41:01 +0200
3094
+ Processing by WelcomeController#index as HTML
3095
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
3096
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
3097
+
3098
+
3099
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:41:01 +0200
3100
+
3101
+
3102
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:41:01 +0200
3103
+
3104
+
3105
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:41:01 +0200
3106
+ Processing by WelcomeController#index as HTML
3107
+ Rendered welcome/index.html.erb within layouts/application (0.8ms)
3108
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
3109
+
3110
+
3111
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:41:01 +0200
3112
+
3113
+
3114
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:41:01 +0200
3115
+
3116
+
3117
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:41:01 +0200
3118
+ Processing by WelcomeController#index as HTML
3119
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
3120
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
3121
+
3122
+
3123
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:41:01 +0200
3124
+
3125
+
3126
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:41:01 +0200
3127
+
3128
+
3129
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:41:01 +0200
3130
+ Processing by WelcomeController#index as HTML
3131
+ Rendered welcome/index.html.erb within layouts/application (0.8ms)
3132
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
3133
+
3134
+
3135
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:41:01 +0200
3136
+
3137
+
3138
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:41:01 +0200
3139
+
3140
+
3141
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:41:01 +0200
3142
+ Processing by WelcomeController#index as HTML
3143
+ Rendered welcome/index.html.erb within layouts/application (0.8ms)
3144
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
3145
+
3146
+
3147
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:41:01 +0200
3148
+
3149
+
3150
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:41:01 +0200
3151
+
3152
+
3153
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:41:01 +0200
3154
+ Processing by WelcomeController#index as HTML
3155
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
3156
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
3157
+
3158
+
3159
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:41:01 +0200
3160
+
3161
+
3162
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:41:01 +0200
3163
+
3164
+
3165
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:41:01 +0200
3166
+ Processing by WelcomeController#index as HTML
3167
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
3168
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
3169
+
3170
+
3171
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:41:01 +0200
3172
+
3173
+
3174
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:41:01 +0200
3175
+
3176
+
3177
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:41:01 +0200
3178
+ Processing by WelcomeController#index as HTML
3179
+ Rendered welcome/index.html.erb within layouts/application (0.8ms)
3180
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
3181
+
3182
+
3183
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:41:01 +0200
3184
+
3185
+
3186
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:41:01 +0200
3187
+
3188
+
3189
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:41:01 +0200
3190
+ Processing by WelcomeController#index as HTML
3191
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
3192
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
3193
+
3194
+
3195
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:41:01 +0200
3196
+
3197
+
3198
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:41:01 +0200
3199
+
3200
+
3201
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:41:01 +0200
3202
+ Processing by WelcomeController#index as HTML
3203
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
3204
+ Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
3205
+
3206
+
3207
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:41:01 +0200
3208
+
3209
+
3210
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:41:01 +0200
3211
+
3212
+
3213
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:41:01 +0200
3214
+ Processing by WelcomeController#index as HTML
3215
+ Rendered welcome/index.html.erb within layouts/application (0.8ms)
3216
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
3217
+
3218
+
3219
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:41:01 +0200
3220
+
3221
+
3222
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:41:01 +0200
3223
+
3224
+
3225
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:41:01 +0200
3226
+ Processing by WelcomeController#index as HTML
3227
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
3228
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
3229
+
3230
+
3231
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:41:01 +0200
3232
+
3233
+
3234
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:41:01 +0200
3235
+
3236
+
3237
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:41:02 +0200
3238
+ Processing by WelcomeController#index as HTML
3239
+ Rendered welcome/index.html.erb within layouts/application (0.8ms)
3240
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
3241
+
3242
+
3243
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:41:02 +0200
3244
+
3245
+
3246
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:41:02 +0200
3247
+
3248
+
3249
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:41:02 +0200
3250
+ Processing by WelcomeController#index as HTML
3251
+ Rendered welcome/index.html.erb within layouts/application (1.0ms)
3252
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
3253
+
3254
+
3255
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:41:02 +0200
3256
+
3257
+
3258
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:41:02 +0200
3259
+
3260
+
3261
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:41:02 +0200
3262
+ Processing by WelcomeController#index as HTML
3263
+ Rendered welcome/index.html.erb within layouts/application (1.0ms)
3264
+ Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
3265
+
3266
+
3267
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:41:02 +0200
3268
+
3269
+
3270
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:41:02 +0200
3271
+
3272
+
3273
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:41:03 +0200
3274
+ Processing by WelcomeController#index as HTML
3275
+ Rendered welcome/index.html.erb within layouts/application (1.0ms)
3276
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
3277
+
3278
+
3279
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:41:03 +0200
3280
+
3281
+
3282
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:41:03 +0200
3283
+
3284
+
3285
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:41:04 +0200
3286
+ Processing by WelcomeController#index as HTML
3287
+ Rendered welcome/index.html.erb within layouts/application (0.8ms)
3288
+ Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
3289
+
3290
+
3291
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:41:04 +0200
3292
+
3293
+
3294
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:41:04 +0200
3295
+
3296
+
3297
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:41:04 +0200
3298
+ Processing by WelcomeController#index as HTML
3299
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
3300
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
3301
+
3302
+
3303
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:41:04 +0200
3304
+
3305
+
3306
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:41:04 +0200
3307
+
3308
+
3309
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:41:04 +0200
3310
+ Processing by WelcomeController#index as HTML
3311
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
3312
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
3313
+
3314
+
3315
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:41:04 +0200
3316
+
3317
+
3318
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:41:04 +0200
3319
+
3320
+
3321
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:41:12 +0200
3322
+ Processing by WelcomeController#index as HTML
3323
+ Rendered welcome/index.html.erb within layouts/application (1.7ms)
3324
+ Completed 200 OK in 4ms (Views: 4.1ms | ActiveRecord: 0.0ms)
3325
+
3326
+
3327
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:41:12 +0200
3328
+
3329
+
3330
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:41:12 +0200
3331
+
3332
+
3333
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:41:12 +0200
3334
+ Processing by WelcomeController#index as HTML
3335
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
3336
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
3337
+
3338
+
3339
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:41:12 +0200
3340
+
3341
+
3342
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:41:12 +0200
3343
+
3344
+
3345
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:41:12 +0200
3346
+ Processing by WelcomeController#index as HTML
3347
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
3348
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
3349
+
3350
+
3351
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:41:13 +0200
3352
+
3353
+
3354
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:41:13 +0200
3355
+
3356
+
3357
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:41:13 +0200
3358
+ Processing by WelcomeController#index as HTML
3359
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
3360
+ Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
3361
+
3362
+
3363
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:41:13 +0200
3364
+
3365
+
3366
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:41:13 +0200
3367
+
3368
+
3369
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:41:13 +0200
3370
+ Processing by WelcomeController#index as HTML
3371
+ Rendered welcome/index.html.erb within layouts/application (1.2ms)
3372
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms)
3373
+
3374
+
3375
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:41:13 +0200
3376
+
3377
+
3378
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:41:13 +0200
3379
+
3380
+
3381
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:41:13 +0200
3382
+ Processing by WelcomeController#index as HTML
3383
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
3384
+ Completed 200 OK in 3ms (Views: 3.3ms | ActiveRecord: 0.0ms)
3385
+
3386
+
3387
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:41:13 +0200
3388
+
3389
+
3390
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:41:13 +0200
3391
+
3392
+
3393
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:41:13 +0200
3394
+ Processing by WelcomeController#index as HTML
3395
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
3396
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
3397
+
3398
+
3399
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:41:13 +0200
3400
+
3401
+
3402
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:41:13 +0200
3403
+
3404
+
3405
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:41:13 +0200
3406
+ Processing by WelcomeController#index as HTML
3407
+ Rendered welcome/index.html.erb within layouts/application (1.0ms)
3408
+ Completed 200 OK in 3ms (Views: 3.3ms | ActiveRecord: 0.0ms)
3409
+
3410
+
3411
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:41:13 +0200
3412
+
3413
+
3414
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:41:13 +0200
3415
+
3416
+
3417
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:41:13 +0200
3418
+ Processing by WelcomeController#index as HTML
3419
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
3420
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
3421
+
3422
+
3423
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:41:14 +0200
3424
+
3425
+
3426
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:41:14 +0200
3427
+
3428
+
3429
+ Started GET "/?locale=da" for 127.0.0.1 at 2014-04-02 17:41:15 +0200
3430
+ Processing by WelcomeController#index as HTML
3431
+ Parameters: {"locale"=>"da"}
3432
+ Completed 500 Internal Server Error in 0ms
3433
+
3434
+ RuntimeError (hej):
3435
+ app/controllers/application_controller.rb:11:in `set_locale'
3436
+
3437
+
3438
+ Rendered /Users/nielsbuus/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms)
3439
+ Rendered /Users/nielsbuus/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
3440
+ Rendered /Users/nielsbuus/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
3441
+ Rendered /Users/nielsbuus/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (11.7ms)
3442
+
3443
+
3444
+ Started GET "/?locale=da" for 127.0.0.1 at 2014-04-02 17:41:15 +0200
3445
+ Processing by WelcomeController#index as HTML
3446
+ Parameters: {"locale"=>"da"}
3447
+ Completed 500 Internal Server Error in 0ms
3448
+
3449
+ RuntimeError (hej):
3450
+ app/controllers/application_controller.rb:11:in `set_locale'
3451
+
3452
+
3453
+ Rendered /Users/nielsbuus/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms)
3454
+ Rendered /Users/nielsbuus/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
3455
+ Rendered /Users/nielsbuus/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
3456
+ Rendered /Users/nielsbuus/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.0ms)
3457
+
3458
+
3459
+ Started GET "/?locale=da" for 127.0.0.1 at 2014-04-02 17:41:15 +0200
3460
+ Processing by WelcomeController#index as HTML
3461
+ Parameters: {"locale"=>"da"}
3462
+ Completed 500 Internal Server Error in 0ms
3463
+
3464
+ RuntimeError (hej):
3465
+ app/controllers/application_controller.rb:11:in `set_locale'
3466
+
3467
+
3468
+ Rendered /Users/nielsbuus/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms)
3469
+ Rendered /Users/nielsbuus/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
3470
+ Rendered /Users/nielsbuus/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
3471
+ Rendered /Users/nielsbuus/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.0ms)
3472
+
3473
+
3474
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:41:42 +0200
3475
+ Processing by WelcomeController#index as HTML
3476
+ Rendered welcome/index.html.erb within layouts/application (1.7ms)
3477
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
3478
+
3479
+
3480
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:41:42 +0200
3481
+
3482
+
3483
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:41:42 +0200
3484
+
3485
+
3486
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:41:42 +0200
3487
+ Processing by WelcomeController#index as HTML
3488
+ Rendered welcome/index.html.erb within layouts/application (0.8ms)
3489
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
3490
+
3491
+
3492
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:41:42 +0200
3493
+
3494
+
3495
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:41:42 +0200
3496
+
3497
+
3498
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:41:43 +0200
3499
+ Processing by WelcomeController#index as HTML
3500
+ Rendered welcome/index.html.erb within layouts/application (1.0ms)
3501
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
3502
+
3503
+
3504
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:41:43 +0200
3505
+
3506
+
3507
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:41:43 +0200
3508
+
3509
+
3510
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:41:43 +0200
3511
+ Processing by WelcomeController#index as HTML
3512
+ Rendered welcome/index.html.erb within layouts/application (1.0ms)
3513
+ Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
3514
+
3515
+
3516
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:41:43 +0200
3517
+
3518
+
3519
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:41:43 +0200
3520
+
3521
+
3522
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:41:43 +0200
3523
+ Processing by WelcomeController#index as HTML
3524
+ Rendered welcome/index.html.erb within layouts/application (0.8ms)
3525
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
3526
+
3527
+
3528
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:41:43 +0200
3529
+
3530
+
3531
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:41:43 +0200
3532
+
3533
+
3534
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:41:43 +0200
3535
+ Processing by WelcomeController#index as HTML
3536
+ Rendered welcome/index.html.erb within layouts/application (1.4ms)
3537
+ Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.0ms)
3538
+
3539
+
3540
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:41:43 +0200
3541
+
3542
+
3543
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:41:43 +0200
3544
+
3545
+
3546
+ Started GET "/?locale=da" for 127.0.0.1 at 2014-04-02 17:41:44 +0200
3547
+ Processing by WelcomeController#index as HTML
3548
+ Parameters: {"locale"=>"da"}
3549
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
3550
+ Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
3551
+
3552
+
3553
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:41:44 +0200
3554
+
3555
+
3556
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:41:44 +0200
3557
+
3558
+
3559
+ Started GET "/?locale=da" for 127.0.0.1 at 2014-04-02 17:41:44 +0200
3560
+ Processing by WelcomeController#index as HTML
3561
+ Parameters: {"locale"=>"da"}
3562
+ Rendered welcome/index.html.erb within layouts/application (0.8ms)
3563
+ Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
3564
+
3565
+
3566
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:41:44 +0200
3567
+
3568
+
3569
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:41:44 +0200
3570
+
3571
+
3572
+ Started GET "/?locale=da" for 127.0.0.1 at 2014-04-02 17:41:45 +0200
3573
+ Processing by WelcomeController#index as HTML
3574
+ Parameters: {"locale"=>"da"}
3575
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
3576
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
3577
+
3578
+
3579
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:41:45 +0200
3580
+
3581
+
3582
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:41:45 +0200
3583
+
3584
+
3585
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:41:46 +0200
3586
+ Processing by WelcomeController#index as HTML
3587
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
3588
+ Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
3589
+
3590
+
3591
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:41:46 +0200
3592
+
3593
+
3594
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:41:46 +0200
3595
+
3596
+
3597
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:41:46 +0200
3598
+ Processing by WelcomeController#index as HTML
3599
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
3600
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
3601
+
3602
+
3603
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:41:46 +0200
3604
+
3605
+
3606
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:41:46 +0200
3607
+
3608
+
3609
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:41:46 +0200
3610
+ Processing by WelcomeController#index as HTML
3611
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
3612
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
3613
+
3614
+
3615
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:41:46 +0200
3616
+
3617
+
3618
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:41:46 +0200
3619
+
3620
+
3621
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:41:47 +0200
3622
+ Processing by WelcomeController#index as HTML
3623
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
3624
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
3625
+
3626
+
3627
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:41:47 +0200
3628
+
3629
+
3630
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:41:47 +0200
3631
+
3632
+
3633
+ Started GET "/?locale=en" for 127.0.0.1 at 2014-04-02 17:41:48 +0200
3634
+ Processing by WelcomeController#index as HTML
3635
+ Parameters: {"locale"=>"en"}
3636
+ Rendered welcome/index.html.erb within layouts/application (1.0ms)
3637
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
3638
+
3639
+
3640
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:41:48 +0200
3641
+
3642
+
3643
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:41:48 +0200
3644
+
3645
+
3646
+ Started GET "/?locale=en" for 127.0.0.1 at 2014-04-02 17:41:49 +0200
3647
+ Processing by WelcomeController#index as HTML
3648
+ Parameters: {"locale"=>"en"}
3649
+ Rendered welcome/index.html.erb within layouts/application (0.8ms)
3650
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
3651
+
3652
+
3653
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:41:49 +0200
3654
+
3655
+
3656
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:41:49 +0200
3657
+
3658
+
3659
+ Started GET "/?locale=en" for 127.0.0.1 at 2014-04-02 17:41:49 +0200
3660
+ Processing by WelcomeController#index as HTML
3661
+ Parameters: {"locale"=>"en"}
3662
+ Rendered welcome/index.html.erb within layouts/application (0.8ms)
3663
+ Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
3664
+
3665
+
3666
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:41:49 +0200
3667
+
3668
+
3669
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:41:49 +0200
3670
+
3671
+
3672
+ Started GET "/?locale=en" for 127.0.0.1 at 2014-04-02 17:41:49 +0200
3673
+ Processing by WelcomeController#index as HTML
3674
+ Parameters: {"locale"=>"en"}
3675
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
3676
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
3677
+
3678
+
3679
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:41:49 +0200
3680
+
3681
+
3682
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:41:49 +0200
3683
+
3684
+
3685
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:41:50 +0200
3686
+ Processing by WelcomeController#index as HTML
3687
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
3688
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
3689
+
3690
+
3691
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:41:50 +0200
3692
+
3693
+
3694
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:41:50 +0200
3695
+
3696
+
3697
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:41:50 +0200
3698
+ Processing by WelcomeController#index as HTML
3699
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
3700
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
3701
+
3702
+
3703
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:41:50 +0200
3704
+
3705
+
3706
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:41:50 +0200
3707
+
3708
+
3709
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:41:50 +0200
3710
+ Processing by WelcomeController#index as HTML
3711
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
3712
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
3713
+
3714
+
3715
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:41:50 +0200
3716
+
3717
+
3718
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:41:50 +0200
3719
+
3720
+
3721
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:41:50 +0200
3722
+ Processing by WelcomeController#index as HTML
3723
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
3724
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
3725
+
3726
+
3727
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:41:50 +0200
3728
+
3729
+
3730
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:41:50 +0200
3731
+
3732
+
3733
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:41:51 +0200
3734
+ Processing by WelcomeController#index as HTML
3735
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
3736
+ Completed 200 OK in 3ms (Views: 3.3ms | ActiveRecord: 0.0ms)
3737
+
3738
+
3739
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:41:51 +0200
3740
+
3741
+
3742
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:41:51 +0200
3743
+
3744
+
3745
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:41:51 +0200
3746
+ Processing by WelcomeController#index as HTML
3747
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
3748
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
3749
+
3750
+
3751
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:41:51 +0200
3752
+
3753
+
3754
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:41:51 +0200
3755
+
3756
+
3757
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:41:51 +0200
3758
+ Processing by WelcomeController#index as HTML
3759
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
3760
+ Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
3761
+
3762
+
3763
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:41:51 +0200
3764
+
3765
+
3766
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:41:51 +0200
3767
+
3768
+
3769
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:41:51 +0200
3770
+ Processing by WelcomeController#index as HTML
3771
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
3772
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
3773
+
3774
+
3775
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:41:51 +0200
3776
+
3777
+
3778
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:41:51 +0200
3779
+
3780
+
3781
+ Started GET "/" for 127.0.0.1 at 2014-04-02 17:41:51 +0200
3782
+ Processing by WelcomeController#index as HTML
3783
+ Rendered welcome/index.html.erb within layouts/application (1.0ms)
3784
+ Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
3785
+
3786
+
3787
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 17:41:51 +0200
3788
+
3789
+
3790
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 17:41:51 +0200
3791
+
3792
+
3793
+ Started GET "/" for 127.0.0.1 at 2014-04-02 18:08:43 +0200
3794
+ Processing by WelcomeController#index as HTML
3795
+ Rendered welcome/index.html.erb within layouts/application (3.2ms)
3796
+ Completed 200 OK in 24ms (Views: 19.4ms | ActiveRecord: 0.0ms)
3797
+
3798
+
3799
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 18:08:43 +0200
3800
+
3801
+
3802
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 18:08:43 +0200
3803
+
3804
+
3805
+ Started GET "/?locale=sv" for 127.0.0.1 at 2014-04-02 18:08:44 +0200
3806
+ Processing by WelcomeController#index as HTML
3807
+ Parameters: {"locale"=>"sv"}
3808
+ Rendered welcome/index.html.erb within layouts/application (1.3ms)
3809
+ Completed 200 OK in 4ms (Views: 4.3ms | ActiveRecord: 0.0ms)
3810
+
3811
+
3812
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 18:08:44 +0200
3813
+
3814
+
3815
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 18:08:44 +0200
3816
+
3817
+
3818
+ Started GET "/?locale=en" for 127.0.0.1 at 2014-04-02 18:08:46 +0200
3819
+ Processing by WelcomeController#index as HTML
3820
+ Parameters: {"locale"=>"en"}
3821
+ Rendered welcome/index.html.erb within layouts/application (1.5ms)
3822
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
3823
+
3824
+
3825
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 18:08:46 +0200
3826
+
3827
+
3828
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 18:08:46 +0200
3829
+
3830
+
3831
+ Started GET "/?locale=da" for 127.0.0.1 at 2014-04-02 18:08:46 +0200
3832
+ Processing by WelcomeController#index as HTML
3833
+ Parameters: {"locale"=>"da"}
3834
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
3835
+ Completed 200 OK in 3ms (Views: 3.3ms | ActiveRecord: 0.0ms)
3836
+
3837
+
3838
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 18:08:46 +0200
3839
+
3840
+
3841
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 18:08:46 +0200
3842
+
3843
+
3844
+ Started GET "/?locale=da" for 127.0.0.1 at 2014-04-02 18:10:16 +0200
3845
+ Processing by WelcomeController#index as HTML
3846
+ Parameters: {"locale"=>"da"}
3847
+ Rendered welcome/index.html.erb within layouts/application (3.1ms)
3848
+ Completed 200 OK in 23ms (Views: 19.1ms | ActiveRecord: 0.0ms)
3849
+
3850
+
3851
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 18:10:16 +0200
3852
+
3853
+
3854
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 18:10:16 +0200
3855
+
3856
+
3857
+ Started GET "/?locale=da" for 127.0.0.1 at 2014-04-02 18:10:17 +0200
3858
+ Processing by WelcomeController#index as HTML
3859
+ Parameters: {"locale"=>"da"}
3860
+ Rendered welcome/index.html.erb within layouts/application (0.8ms)
3861
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
3862
+
3863
+
3864
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 18:10:17 +0200
3865
+
3866
+
3867
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 18:10:17 +0200
3868
+
3869
+
3870
+ Started GET "/?locale=da" for 127.0.0.1 at 2014-04-02 18:10:40 +0200
3871
+ Processing by WelcomeController#index as HTML
3872
+ Parameters: {"locale"=>"da"}
3873
+ Rendered welcome/index.html.erb within layouts/application (5.2ms)
3874
+ Completed 500 Internal Server Error in 6ms
3875
+
3876
+ SyntaxError (/Users/nielsbuus/Documents/repos/action_labels/test/dummy/app/views/welcome/index.html.erb:32: syntax error, unexpected '<', expecting ')'
3877
+ </tr>
3878
+ ^
3879
+ /Users/nielsbuus/Documents/repos/action_labels/test/dummy/app/views/welcome/index.html.erb:34: unknown regexp options - td
3880
+ /Users/nielsbuus/Documents/repos/action_labels/test/dummy/app/views/welcome/index.html.erb:35: syntax error, unexpected '<'
3881
+ <td>';@output_buffer.append=( ...
3882
+ ^
3883
+ /Users/nielsbuus/Documents/repos/action_labels/test/dummy/app/views/welcome/index.html.erb:36: unknown regexp options - tr
3884
+ /Users/nielsbuus/Documents/repos/action_labels/test/dummy/app/views/welcome/index.html.erb:37: syntax error, unexpected '<'
3885
+ </tbody>
3886
+ ^
3887
+ /Users/nielsbuus/Documents/repos/action_labels/test/dummy/app/views/welcome/index.html.erb:38: unknown regexp options - tabl
3888
+ /Users/nielsbuus/Documents/repos/action_labels/test/dummy/app/views/welcome/index.html.erb:40: syntax error, unexpected '<'
3889
+ <h3>Change locale</h3>
3890
+ ^
3891
+ /Users/nielsbuus/Documents/repos/action_labels/test/dummy/app/views/welcome/index.html.erb:40: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '('
3892
+ <h3>Change locale</h3>
3893
+ ^
3894
+ /Users/nielsbuus/Documents/repos/action_labels/test/dummy/app/views/welcome/index.html.erb:45: unknown regexp option - a
3895
+ /Users/nielsbuus/Documents/repos/action_labels/test/dummy/app/views/welcome/index.html.erb:46: syntax error, unexpected '<'
3896
+ </li>
3897
+ ^
3898
+ /Users/nielsbuus/Documents/repos/action_labels/test/dummy/app/views/welcome/index.html.erb:49: unknown regexp option - l
3899
+ /Users/nielsbuus/Documents/repos/action_labels/test/dummy/app/views/welcome/index.html.erb:50: unterminated string meets end of file
3900
+ /Users/nielsbuus/Documents/repos/action_labels/test/dummy/app/views/welcome/index.html.erb:50: syntax error, unexpected end-of-input, expecting ')'):
3901
+ actionpack (4.0.4) lib/action_view/template.rb:299:in `module_eval'
3902
+ actionpack (4.0.4) lib/action_view/template.rb:299:in `compile'
3903
+ actionpack (4.0.4) lib/action_view/template.rb:248:in `block in compile!'
3904
+ actionpack (4.0.4) lib/action_view/template.rb:236:in `synchronize'
3905
+ actionpack (4.0.4) lib/action_view/template.rb:236:in `compile!'
3906
+ actionpack (4.0.4) lib/action_view/template.rb:142:in `block in render'
3907
+ activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument'
3908
+ actionpack (4.0.4) lib/action_view/template.rb:141:in `render'
3909
+ actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template'
3910
+ actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
3911
+ activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument'
3912
+ activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
3913
+ activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument'
3914
+ actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
3915
+ actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template'
3916
+ actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout'
3917
+ actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:47:in `render_template'
3918
+ actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:17:in `render'
3919
+ actionpack (4.0.4) lib/action_view/renderer/renderer.rb:42:in `render_template'
3920
+ actionpack (4.0.4) lib/action_view/renderer/renderer.rb:23:in `render'
3921
+ actionpack (4.0.4) lib/abstract_controller/rendering.rb:127:in `_render_template'
3922
+ actionpack (4.0.4) lib/action_controller/metal/streaming.rb:219:in `_render_template'
3923
+ actionpack (4.0.4) lib/abstract_controller/rendering.rb:120:in `render_to_body'
3924
+ actionpack (4.0.4) lib/action_controller/metal/rendering.rb:33:in `render_to_body'
3925
+ actionpack (4.0.4) lib/action_controller/metal/renderers.rb:26:in `render_to_body'
3926
+ actionpack (4.0.4) lib/abstract_controller/rendering.rb:97:in `render'
3927
+ actionpack (4.0.4) lib/action_controller/metal/rendering.rb:16:in `render'
3928
+ actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
3929
+ activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
3930
+ /Users/nielsbuus/.rbenv/versions/2.1.1/lib/ruby/2.1.0/benchmark.rb:294:in `realtime'
3931
+ activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `ms'
3932
+ actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
3933
+ actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
3934
+ activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
3935
+ actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:40:in `render'
3936
+ actionpack (4.0.4) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
3937
+ actionpack (4.0.4) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
3938
+ actionpack (4.0.4) lib/abstract_controller/base.rb:189:in `process_action'
3939
+ actionpack (4.0.4) lib/action_controller/metal/rendering.rb:10:in `process_action'
3940
+ actionpack (4.0.4) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
3941
+ activesupport (4.0.4) lib/active_support/callbacks.rb:393:in `_run__3595298936842874849__process_action__callbacks'
3942
+ activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks'
3943
+ actionpack (4.0.4) lib/abstract_controller/callbacks.rb:17:in `process_action'
3944
+ actionpack (4.0.4) lib/action_controller/metal/rescue.rb:29:in `process_action'
3945
+ actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
3946
+ activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument'
3947
+ activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
3948
+ activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument'
3949
+ actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
3950
+ actionpack (4.0.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
3951
+ activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
3952
+ actionpack (4.0.4) lib/abstract_controller/base.rb:136:in `process'
3953
+ actionpack (4.0.4) lib/abstract_controller/rendering.rb:44:in `process'
3954
+ actionpack (4.0.4) lib/action_controller/metal.rb:195:in `dispatch'
3955
+ actionpack (4.0.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
3956
+ actionpack (4.0.4) lib/action_controller/metal.rb:231:in `block in action'
3957
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `call'
3958
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
3959
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:48:in `call'
3960
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call'
3961
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `each'
3962
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call'
3963
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call'
3964
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
3965
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
3966
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
3967
+ actionpack (4.0.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
3968
+ actionpack (4.0.4) lib/action_dispatch/middleware/flash.rb:241:in `call'
3969
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
3970
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
3971
+ actionpack (4.0.4) lib/action_dispatch/middleware/cookies.rb:486:in `call'
3972
+ activerecord (4.0.4) lib/active_record/query_cache.rb:36:in `call'
3973
+ activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
3974
+ activerecord (4.0.4) lib/active_record/migration.rb:373:in `call'
3975
+ actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
3976
+ activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__3303998874739672383__call__callbacks'
3977
+ activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks'
3978
+ actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
3979
+ actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call'
3980
+ actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
3981
+ actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
3982
+ actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
3983
+ railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app'
3984
+ railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call'
3985
+ activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
3986
+ activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged'
3987
+ activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged'
3988
+ railties (4.0.4) lib/rails/rack/logger.rb:20:in `call'
3989
+ actionpack (4.0.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
3990
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
3991
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
3992
+ activesupport (4.0.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
3993
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3994
+ actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call'
3995
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
3996
+ railties (4.0.4) lib/rails/engine.rb:511:in `call'
3997
+ railties (4.0.4) lib/rails/application.rb:97:in `call'
3998
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3999
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
4000
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
4001
+ /Users/nielsbuus/.rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
4002
+ /Users/nielsbuus/.rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
4003
+ /Users/nielsbuus/.rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
4004
+
4005
+
4006
+ Rendered /Users/nielsbuus/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
4007
+ Rendered /Users/nielsbuus/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
4008
+ Rendered /Users/nielsbuus/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
4009
+ Rendered /Users/nielsbuus/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.7ms)
4010
+
4011
+
4012
+ Started GET "/?locale=da" for 127.0.0.1 at 2014-04-02 18:10:48 +0200
4013
+ Processing by WelcomeController#index as HTML
4014
+ Parameters: {"locale"=>"da"}
4015
+ Rendered welcome/index.html.erb within layouts/application (1.2ms)
4016
+ Completed 200 OK in 3ms (Views: 3.3ms | ActiveRecord: 0.0ms)
4017
+
4018
+
4019
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 18:10:48 +0200
4020
+
4021
+
4022
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 18:10:48 +0200
4023
+
4024
+
4025
+ Started GET "/?locale=da" for 127.0.0.1 at 2014-04-02 18:10:51 +0200
4026
+ Processing by WelcomeController#index as HTML
4027
+ Parameters: {"locale"=>"da"}
4028
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
4029
+ Completed 200 OK in 3ms (Views: 3.3ms | ActiveRecord: 0.0ms)
4030
+
4031
+
4032
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 18:10:51 +0200
4033
+
4034
+
4035
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 18:10:51 +0200
4036
+
4037
+
4038
+ Started GET "/?locale=da" for 127.0.0.1 at 2014-04-02 18:10:51 +0200
4039
+ Processing by WelcomeController#index as HTML
4040
+ Parameters: {"locale"=>"da"}
4041
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
4042
+ Completed 200 OK in 3ms (Views: 3.3ms | ActiveRecord: 0.0ms)
4043
+
4044
+
4045
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 18:10:51 +0200
4046
+
4047
+
4048
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 18:10:51 +0200
4049
+
4050
+
4051
+ Started GET "/?locale=en" for 127.0.0.1 at 2014-04-02 18:10:52 +0200
4052
+ Processing by WelcomeController#index as HTML
4053
+ Parameters: {"locale"=>"en"}
4054
+ Rendered welcome/index.html.erb within layouts/application (1.8ms)
4055
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
4056
+
4057
+
4058
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 18:10:52 +0200
4059
+
4060
+
4061
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 18:10:52 +0200
4062
+
4063
+
4064
+ Started GET "/?locale=da" for 127.0.0.1 at 2014-04-02 18:10:53 +0200
4065
+ Processing by WelcomeController#index as HTML
4066
+ Parameters: {"locale"=>"da"}
4067
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
4068
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
4069
+
4070
+
4071
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 18:10:53 +0200
4072
+
4073
+
4074
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 18:10:53 +0200
4075
+
4076
+
4077
+ Started GET "/?locale=en" for 127.0.0.1 at 2014-04-02 18:10:55 +0200
4078
+ Processing by WelcomeController#index as HTML
4079
+ Parameters: {"locale"=>"en"}
4080
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
4081
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
4082
+
4083
+
4084
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 18:10:55 +0200
4085
+
4086
+
4087
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 18:10:55 +0200
4088
+
4089
+
4090
+ Started GET "/?locale=sv" for 127.0.0.1 at 2014-04-02 18:11:00 +0200
4091
+ Processing by WelcomeController#index as HTML
4092
+ Parameters: {"locale"=>"sv"}
4093
+ Rendered welcome/index.html.erb within layouts/application (1.6ms)
4094
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
4095
+
4096
+
4097
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 18:11:00 +0200
4098
+
4099
+
4100
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 18:11:00 +0200
4101
+
4102
+
4103
+ Started GET "/?locale=sv" for 127.0.0.1 at 2014-04-02 18:13:32 +0200
4104
+ Processing by WelcomeController#index as HTML
4105
+ Parameters: {"locale"=>"sv"}
4106
+ Rendered welcome/index.html.erb within layouts/application (1.3ms)
4107
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
4108
+
4109
+
4110
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 18:13:32 +0200
4111
+
4112
+
4113
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 18:13:32 +0200
4114
+
4115
+
4116
+ Started GET "/?locale=sv" for 127.0.0.1 at 2014-04-02 18:13:33 +0200
4117
+ Processing by WelcomeController#index as HTML
4118
+ Parameters: {"locale"=>"sv"}
4119
+ Rendered welcome/index.html.erb within layouts/application (0.9ms)
4120
+ Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
4121
+
4122
+
4123
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-02 18:13:33 +0200
4124
+
4125
+
4126
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-02 18:13:33 +0200