landing_page 0.1.1 → 1.0.0
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.
- data/app/controllers/landing_page/users_controller.rb +1 -0
- data/app/models/landing_page/user.rb +0 -2
- data/lib/landing_page/version.rb +1 -1
- data/spec/dummy/README.rdoc +15 -248
- data/spec/dummy/Rakefile +0 -1
- data/spec/dummy/app/assets/javascripts/application.js +3 -5
- data/spec/dummy/app/controllers/application_controller.rb +3 -1
- data/spec/dummy/app/views/layouts/application.html.erb +2 -2
- data/spec/dummy/bin/bundle +3 -0
- data/spec/dummy/bin/rails +4 -0
- data/spec/dummy/bin/rake +4 -0
- data/spec/dummy/config/application.rb +0 -37
- data/spec/dummy/config/boot.rb +4 -9
- data/spec/dummy/config/environment.rb +2 -2
- data/spec/dummy/config/environments/development.rb +11 -19
- data/spec/dummy/config/environments/production.rb +40 -27
- data/spec/dummy/config/environments/test.rb +13 -14
- data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/dummy/config/initializers/inflections.rb +6 -5
- data/spec/dummy/config/initializers/secret_token.rb +7 -2
- data/spec/dummy/config/initializers/session_store.rb +0 -5
- data/spec/dummy/config/initializers/wrap_parameters.rb +6 -6
- data/spec/dummy/config/locales/en.yml +20 -2
- data/spec/dummy/config.ru +1 -1
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/schema.rb +6 -6
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/development.log +2542 -0
- data/spec/dummy/log/test.log +11062 -337
- data/spec/dummy/public/404.html +43 -11
- data/spec/dummy/public/422.html +43 -11
- data/spec/dummy/public/500.html +43 -11
- data/spec/dummy/tmp/cache/assets/development/sprockets/377b052ecf160e4f55e803f80b47b53e +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/5a673cabc00fce02d3b374957d161680 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/66c015ce207bad1ae732ded03391853b +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/6801f50d10cc771f47aa800d88c9d471 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/bec936ecc099b96a81d60089168383f1 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/c92a0ca63478955dd693e3dd7d6d8815 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/377b052ecf160e4f55e803f80b47b53e +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/5a673cabc00fce02d3b374957d161680 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/66c015ce207bad1ae732ded03391853b +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/6801f50d10cc771f47aa800d88c9d471 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/bec936ecc099b96a81d60089168383f1 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/c92a0ca63478955dd693e3dd7d6d8815 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/spec/spec_helper.rb +4 -0
- metadata +83 -18
- checksums.yaml +0 -7
- data/spec/dummy/script/rails +0 -6
@@ -1,67 +1,80 @@
|
|
1
1
|
Dummy::Application.configure do
|
2
|
-
# Settings specified here will take precedence over those in config/application.rb
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb.
|
3
3
|
|
4
|
-
# Code is not reloaded between requests
|
4
|
+
# Code is not reloaded between requests.
|
5
5
|
config.cache_classes = true
|
6
6
|
|
7
|
-
#
|
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.
|
8
14
|
config.consider_all_requests_local = false
|
9
15
|
config.action_controller.perform_caching = true
|
10
16
|
|
11
|
-
#
|
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).
|
12
23
|
config.serve_static_assets = false
|
13
24
|
|
14
|
-
# Compress JavaScripts and CSS
|
15
|
-
config.assets.
|
25
|
+
# Compress JavaScripts and CSS.
|
26
|
+
config.assets.js_compressor = :uglifier
|
27
|
+
# config.assets.css_compressor = :sass
|
16
28
|
|
17
|
-
#
|
29
|
+
# Do not fallback to assets pipeline if a precompiled asset is missed.
|
18
30
|
config.assets.compile = false
|
19
31
|
|
20
|
-
# Generate digests for assets URLs
|
32
|
+
# Generate digests for assets URLs.
|
21
33
|
config.assets.digest = true
|
22
34
|
|
23
|
-
#
|
24
|
-
|
35
|
+
# Version of your assets, change this if you want to expire all your assets.
|
36
|
+
config.assets.version = '1.0'
|
25
37
|
|
26
|
-
# Specifies the header that your server uses for sending files
|
38
|
+
# Specifies the header that your server uses for sending files.
|
27
39
|
# config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
|
28
40
|
# config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
|
29
41
|
|
30
42
|
# Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
|
31
43
|
# config.force_ssl = true
|
32
44
|
|
33
|
-
#
|
34
|
-
|
45
|
+
# Set to :debug to see everything in the log.
|
46
|
+
config.log_level = :info
|
35
47
|
|
36
|
-
# Prepend all log lines with the following tags
|
48
|
+
# Prepend all log lines with the following tags.
|
37
49
|
# config.log_tags = [ :subdomain, :uuid ]
|
38
50
|
|
39
|
-
# Use a different logger for distributed setups
|
51
|
+
# Use a different logger for distributed setups.
|
40
52
|
# config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
|
41
53
|
|
42
|
-
# Use a different cache store in production
|
54
|
+
# Use a different cache store in production.
|
43
55
|
# config.cache_store = :mem_cache_store
|
44
56
|
|
45
|
-
# Enable serving of images, stylesheets, and JavaScripts from an asset server
|
57
|
+
# Enable serving of images, stylesheets, and JavaScripts from an asset server.
|
46
58
|
# config.action_controller.asset_host = "http://assets.example.com"
|
47
59
|
|
48
|
-
# Precompile additional assets
|
60
|
+
# Precompile additional assets.
|
61
|
+
# application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
|
49
62
|
# config.assets.precompile += %w( search.js )
|
50
63
|
|
51
|
-
#
|
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.
|
52
66
|
# config.action_mailer.raise_delivery_errors = false
|
53
67
|
|
54
|
-
# Enable threaded mode
|
55
|
-
# config.threadsafe!
|
56
|
-
|
57
68
|
# Enable locale fallbacks for I18n (makes lookups for any locale fall back to
|
58
|
-
# the I18n.default_locale when a translation can not be found)
|
69
|
+
# the I18n.default_locale when a translation can not be found).
|
59
70
|
config.i18n.fallbacks = true
|
60
71
|
|
61
|
-
# Send deprecation notices to registered listeners
|
72
|
+
# Send deprecation notices to registered listeners.
|
62
73
|
config.active_support.deprecation = :notify
|
63
74
|
|
64
|
-
#
|
65
|
-
#
|
66
|
-
|
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
|
67
80
|
end
|
@@ -1,5 +1,5 @@
|
|
1
1
|
Dummy::Application.configure do
|
2
|
-
# Settings specified here will take precedence over those in config/application.rb
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb.
|
3
3
|
|
4
4
|
# The test environment is used exclusively to run your application's
|
5
5
|
# test suite. You never need to work with it otherwise. Remember that
|
@@ -7,31 +7,30 @@ Dummy::Application.configure do
|
|
7
7
|
# and recreated between test runs. Don't rely on the data there!
|
8
8
|
config.cache_classes = true
|
9
9
|
|
10
|
-
#
|
11
|
-
|
12
|
-
|
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
|
13
14
|
|
14
|
-
#
|
15
|
-
config.
|
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"
|
16
18
|
|
17
|
-
# Show full error reports and disable caching
|
19
|
+
# Show full error reports and disable caching.
|
18
20
|
config.consider_all_requests_local = true
|
19
21
|
config.action_controller.perform_caching = false
|
20
22
|
|
21
|
-
# Raise exceptions instead of rendering exception templates
|
23
|
+
# Raise exceptions instead of rendering exception templates.
|
22
24
|
config.action_dispatch.show_exceptions = false
|
23
25
|
|
24
|
-
# Disable request forgery protection in test environment
|
25
|
-
config.action_controller.allow_forgery_protection
|
26
|
+
# Disable request forgery protection in test environment.
|
27
|
+
config.action_controller.allow_forgery_protection = false
|
26
28
|
|
27
29
|
# Tell Action Mailer not to deliver emails to the real world.
|
28
30
|
# The :test delivery method accumulates sent emails in the
|
29
31
|
# ActionMailer::Base.deliveries array.
|
30
32
|
config.action_mailer.delivery_method = :test
|
31
33
|
|
32
|
-
#
|
33
|
-
config.active_record.mass_assignment_sanitizer = :strict
|
34
|
-
|
35
|
-
# Print deprecation notices to the stderr
|
34
|
+
# Print deprecation notices to the stderr.
|
36
35
|
config.active_support.deprecation = :stderr
|
37
36
|
end
|
@@ -1,15 +1,16 @@
|
|
1
1
|
# Be sure to restart your server when you modify this file.
|
2
2
|
|
3
|
-
# Add new inflection rules using the following format
|
4
|
-
#
|
5
|
-
#
|
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|
|
6
7
|
# inflect.plural /^(ox)$/i, '\1en'
|
7
8
|
# inflect.singular /^(ox)en/i, '\1'
|
8
9
|
# inflect.irregular 'person', 'people'
|
9
10
|
# inflect.uncountable %w( fish sheep )
|
10
11
|
# end
|
11
|
-
|
12
|
+
|
12
13
|
# These inflection rules are supported but not enabled by default:
|
13
|
-
# ActiveSupport::Inflector.inflections do |inflect|
|
14
|
+
# ActiveSupport::Inflector.inflections(:en) do |inflect|
|
14
15
|
# inflect.acronym 'RESTful'
|
15
16
|
# end
|
@@ -1,7 +1,12 @@
|
|
1
1
|
# Be sure to restart your server when you modify this file.
|
2
2
|
|
3
|
-
# Your secret key for verifying the integrity of signed cookies.
|
3
|
+
# Your secret key is used for verifying the integrity of signed cookies.
|
4
4
|
# If you change this key, all old signed cookies will become invalid!
|
5
|
+
|
5
6
|
# Make sure the secret is at least 30 characters and all random,
|
6
7
|
# no regular words or you'll be exposed to dictionary attacks.
|
7
|
-
|
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 = 'fd61a98feae343f42e7baa41e7577abcfd7b241d89ab18aecb9107a8343e5f3de3f80d39693489d9d63e94bffecd111f041e4220e38356c7370a1d4db118b2b3'
|
@@ -1,8 +1,3 @@
|
|
1
1
|
# Be sure to restart your server when you modify this file.
|
2
2
|
|
3
3
|
Dummy::Application.config.session_store :cookie_store, key: '_dummy_session'
|
4
|
-
|
5
|
-
# Use the database for sessions instead of the cookie-based default,
|
6
|
-
# which shouldn't be used to store highly confidential information
|
7
|
-
# (create the session table with "rails generate session_migration")
|
8
|
-
# Dummy::Application.config.session_store :active_record_store
|
@@ -1,14 +1,14 @@
|
|
1
1
|
# Be sure to restart your server when you modify this file.
|
2
|
-
|
2
|
+
|
3
3
|
# This file contains settings for ActionController::ParamsWrapper which
|
4
4
|
# is enabled by default.
|
5
5
|
|
6
6
|
# Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
|
7
7
|
ActiveSupport.on_load(:action_controller) do
|
8
|
-
wrap_parameters format: [:json]
|
8
|
+
wrap_parameters format: [:json] if respond_to?(:wrap_parameters)
|
9
9
|
end
|
10
10
|
|
11
|
-
#
|
12
|
-
ActiveSupport.on_load(:active_record) do
|
13
|
-
self.include_root_in_json =
|
14
|
-
end
|
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
|
@@ -1,5 +1,23 @@
|
|
1
|
-
#
|
2
|
-
#
|
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.
|
3
21
|
|
4
22
|
en:
|
5
23
|
hello: "Hello world"
|
data/spec/dummy/config.ru
CHANGED
Binary file
|
data/spec/dummy/db/schema.rb
CHANGED
@@ -9,18 +9,18 @@
|
|
9
9
|
# from scratch. The latter is a flawed and unsustainable approach (the more migrations
|
10
10
|
# you'll amass, the slower it'll run and the greater likelihood for issues).
|
11
11
|
#
|
12
|
-
# It's strongly recommended
|
12
|
+
# It's strongly recommended that you check this file into your version control system.
|
13
13
|
|
14
|
-
ActiveRecord::Schema.define(:
|
14
|
+
ActiveRecord::Schema.define(version: 20130730071415) do
|
15
15
|
|
16
|
-
create_table "landing_page_users", :
|
16
|
+
create_table "landing_page_users", force: true do |t|
|
17
17
|
t.string "email"
|
18
|
-
t.datetime "created_at"
|
19
|
-
t.datetime "updated_at"
|
18
|
+
t.datetime "created_at"
|
19
|
+
t.datetime "updated_at"
|
20
20
|
t.string "name"
|
21
21
|
t.string "locale"
|
22
22
|
end
|
23
23
|
|
24
|
-
add_index "landing_page_users", ["email"], :
|
24
|
+
add_index "landing_page_users", ["email"], name: "index_landing_page_users_on_email", unique: true
|
25
25
|
|
26
26
|
end
|
data/spec/dummy/db/test.sqlite3
CHANGED
Binary file
|
@@ -0,0 +1,2542 @@
|
|
1
|
+
|
2
|
+
|
3
|
+
Started GET "/landing_page" for 127.0.0.1 at 2013-07-26 19:20:24 +0200
|
4
|
+
|
5
|
+
ActionController::RoutingError (No route matches [GET] "/landing_page"):
|
6
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
7
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
8
|
+
railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
|
9
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
|
10
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
|
11
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
|
12
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
|
13
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
|
14
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
15
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
16
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
17
|
+
activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
|
18
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
19
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
|
20
|
+
railties (4.0.0) lib/rails/engine.rb:511:in `call'
|
21
|
+
railties (4.0.0) lib/rails/application.rb:97:in `call'
|
22
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
23
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
24
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
25
|
+
/usr/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
26
|
+
/usr/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
27
|
+
/usr/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
28
|
+
|
29
|
+
|
30
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.3ms)
|
31
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms)
|
32
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
|
33
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (59.1ms)
|
34
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (92.6ms)
|
35
|
+
|
36
|
+
|
37
|
+
Started GET "/landing_page" for 127.0.0.1 at 2013-07-26 19:20:26 +0200
|
38
|
+
|
39
|
+
ActionController::RoutingError (No route matches [GET] "/landing_page"):
|
40
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
41
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
42
|
+
railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
|
43
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
|
44
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
|
45
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
|
46
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
|
47
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
|
48
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
49
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
50
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
51
|
+
activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
|
52
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
53
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
|
54
|
+
railties (4.0.0) lib/rails/engine.rb:511:in `call'
|
55
|
+
railties (4.0.0) lib/rails/application.rb:97:in `call'
|
56
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
57
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
58
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
59
|
+
/usr/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
60
|
+
/usr/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
61
|
+
/usr/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
62
|
+
|
63
|
+
|
64
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.5ms)
|
65
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms)
|
66
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
|
67
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms)
|
68
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (35.8ms)
|
69
|
+
|
70
|
+
|
71
|
+
Started GET "/landing_page" for 127.0.0.1 at 2013-07-26 19:20:26 +0200
|
72
|
+
|
73
|
+
ActionController::RoutingError (No route matches [GET] "/landing_page"):
|
74
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
75
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
76
|
+
railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
|
77
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
|
78
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
|
79
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
|
80
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
|
81
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
|
82
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
83
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
84
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
85
|
+
activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
|
86
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
87
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
|
88
|
+
railties (4.0.0) lib/rails/engine.rb:511:in `call'
|
89
|
+
railties (4.0.0) lib/rails/application.rb:97:in `call'
|
90
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
91
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
92
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
93
|
+
/usr/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
94
|
+
/usr/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
95
|
+
/usr/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
96
|
+
|
97
|
+
|
98
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (5.1ms)
|
99
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (3.3ms)
|
100
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
|
101
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (5.8ms)
|
102
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (57.2ms)
|
103
|
+
|
104
|
+
|
105
|
+
Started GET "/landing_page" for 127.0.0.1 at 2013-07-26 19:20:26 +0200
|
106
|
+
|
107
|
+
ActionController::RoutingError (No route matches [GET] "/landing_page"):
|
108
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
109
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
110
|
+
railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
|
111
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
|
112
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
|
113
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
|
114
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
|
115
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
|
116
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
117
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
118
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
119
|
+
activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
|
120
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
121
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
|
122
|
+
railties (4.0.0) lib/rails/engine.rb:511:in `call'
|
123
|
+
railties (4.0.0) lib/rails/application.rb:97:in `call'
|
124
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
125
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
126
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
127
|
+
/usr/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
128
|
+
/usr/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
129
|
+
/usr/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
130
|
+
|
131
|
+
|
132
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.3ms)
|
133
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms)
|
134
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
|
135
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms)
|
136
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (26.8ms)
|
137
|
+
|
138
|
+
|
139
|
+
Started GET "/landing_page/" for 127.0.0.1 at 2013-07-26 19:21:49 +0200
|
140
|
+
|
141
|
+
ActionController::RoutingError (No route matches [GET] "/landing_page"):
|
142
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
143
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
144
|
+
railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
|
145
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
|
146
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
|
147
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
|
148
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
|
149
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
|
150
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
151
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
152
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
153
|
+
activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
|
154
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
155
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
|
156
|
+
railties (4.0.0) lib/rails/engine.rb:511:in `call'
|
157
|
+
railties (4.0.0) lib/rails/application.rb:97:in `call'
|
158
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
159
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
160
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
161
|
+
/usr/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
162
|
+
/usr/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
163
|
+
/usr/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
164
|
+
|
165
|
+
|
166
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (5.8ms)
|
167
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms)
|
168
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
|
169
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.3ms)
|
170
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (35.0ms)
|
171
|
+
|
172
|
+
|
173
|
+
Started GET "/landing_page/index.html" for 127.0.0.1 at 2013-07-26 19:21:53 +0200
|
174
|
+
|
175
|
+
ActionController::RoutingError (No route matches [GET] "/landing_page/index.html"):
|
176
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
177
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
178
|
+
railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
|
179
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
|
180
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
|
181
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
|
182
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
|
183
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
|
184
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
185
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
186
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
187
|
+
activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
|
188
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
189
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
|
190
|
+
railties (4.0.0) lib/rails/engine.rb:511:in `call'
|
191
|
+
railties (4.0.0) lib/rails/application.rb:97:in `call'
|
192
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
193
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
194
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
195
|
+
/usr/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
196
|
+
/usr/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
197
|
+
/usr/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
198
|
+
|
199
|
+
|
200
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.3ms)
|
201
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms)
|
202
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
|
203
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms)
|
204
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (29.5ms)
|
205
|
+
[1m[36m (193.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
206
|
+
[1m[35m (140.7ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
207
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
208
|
+
Migrating to CreateLandingPageUsers (20130727104115)
|
209
|
+
[1m[35m (0.4ms)[0m begin transaction
|
210
|
+
[1m[36m (1.7ms)[0m [1mCREATE TABLE "landing_page_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
211
|
+
[1m[35m (18.0ms)[0m CREATE UNIQUE INDEX "index_landing_page_users_on_email" ON "landing_page_users" ("email")
|
212
|
+
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20130727104115"]]
|
213
|
+
[1m[35m (149.6ms)[0m commit transaction
|
214
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
215
|
+
|
216
|
+
|
217
|
+
Started GET "/landing_page/" for 127.0.0.1 at 2013-07-27 12:44:20 +0200
|
218
|
+
Processing by LandingPage::UsersController#new as HTML
|
219
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (170.2ms)
|
220
|
+
Completed 200 OK in 294ms (Views: 293.2ms | ActiveRecord: 0.0ms)
|
221
|
+
|
222
|
+
|
223
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 12:44:21 +0200
|
224
|
+
|
225
|
+
|
226
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 12:44:21 +0200
|
227
|
+
|
228
|
+
|
229
|
+
Started GET "/landing_page/" for 127.0.0.1 at 2013-07-27 12:47:58 +0200
|
230
|
+
Processing by LandingPage::UsersController#new as HTML
|
231
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (154.3ms)
|
232
|
+
Completed 500 Internal Server Error in 164ms
|
233
|
+
|
234
|
+
ActionView::Template::Error (undefined method `label_tag_for' for #<#<Class:0x00000002a0f828>:0x00000002bf7ff0>):
|
235
|
+
1: = form_for :user do |f|
|
236
|
+
2: = label_tag_for :email, t('email')
|
237
|
+
3: = f.text_field :email
|
238
|
+
4: = f.submit t('subscribe')
|
239
|
+
/home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim:2:in `block in __home_marc_webs_projects_landing_page_app_views_landing_page_users_new_html_slim__3651770117986980933_23069340'
|
240
|
+
actionpack (4.0.0) lib/action_view/helpers/capture_helper.rb:38:in `block in capture'
|
241
|
+
actionpack (4.0.0) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer'
|
242
|
+
actionpack (4.0.0) lib/action_view/helpers/capture_helper.rb:38:in `capture'
|
243
|
+
actionpack (4.0.0) lib/action_view/helpers/form_helper.rb:435:in `form_for'
|
244
|
+
/home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim:1:in `__home_marc_webs_projects_landing_page_app_views_landing_page_users_new_html_slim__3651770117986980933_23069340'
|
245
|
+
actionpack (4.0.0) lib/action_view/template.rb:143:in `block in render'
|
246
|
+
activesupport (4.0.0) lib/active_support/notifications.rb:161:in `instrument'
|
247
|
+
actionpack (4.0.0) lib/action_view/template.rb:141:in `render'
|
248
|
+
actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template'
|
249
|
+
actionpack (4.0.0) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
250
|
+
activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
|
251
|
+
activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
252
|
+
activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
|
253
|
+
actionpack (4.0.0) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
254
|
+
actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template'
|
255
|
+
actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout'
|
256
|
+
actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:47:in `render_template'
|
257
|
+
actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:17:in `render'
|
258
|
+
actionpack (4.0.0) lib/action_view/renderer/renderer.rb:42:in `render_template'
|
259
|
+
actionpack (4.0.0) lib/action_view/renderer/renderer.rb:23:in `render'
|
260
|
+
actionpack (4.0.0) lib/abstract_controller/rendering.rb:127:in `_render_template'
|
261
|
+
actionpack (4.0.0) lib/action_controller/metal/streaming.rb:219:in `_render_template'
|
262
|
+
actionpack (4.0.0) lib/abstract_controller/rendering.rb:120:in `render_to_body'
|
263
|
+
actionpack (4.0.0) lib/action_controller/metal/rendering.rb:33:in `render_to_body'
|
264
|
+
actionpack (4.0.0) lib/action_controller/metal/renderers.rb:26:in `render_to_body'
|
265
|
+
actionpack (4.0.0) lib/abstract_controller/rendering.rb:97:in `render'
|
266
|
+
actionpack (4.0.0) lib/action_controller/metal/rendering.rb:16:in `render'
|
267
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
|
268
|
+
activesupport (4.0.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
|
269
|
+
/usr/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
|
270
|
+
activesupport (4.0.0) lib/active_support/core_ext/benchmark.rb:12:in `ms'
|
271
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
|
272
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
|
273
|
+
activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
|
274
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:40:in `render'
|
275
|
+
actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
276
|
+
actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
|
277
|
+
actionpack (4.0.0) lib/abstract_controller/base.rb:189:in `process_action'
|
278
|
+
actionpack (4.0.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
279
|
+
actionpack (4.0.0) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
280
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__3510539170218914910__process_action__callbacks'
|
281
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
282
|
+
actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
283
|
+
actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
284
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
285
|
+
activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
|
286
|
+
activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
287
|
+
activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
|
288
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
289
|
+
actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
|
290
|
+
activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
291
|
+
actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process'
|
292
|
+
actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process'
|
293
|
+
actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch'
|
294
|
+
actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
295
|
+
actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action'
|
296
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
|
297
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
|
298
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
|
299
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
300
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
|
301
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
|
302
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
|
303
|
+
railties (4.0.0) lib/rails/engine.rb:511:in `call'
|
304
|
+
railties (4.0.0) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
305
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
306
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
|
307
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
|
308
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
|
309
|
+
rack (1.5.2) lib/rack/etag.rb:23:in `call'
|
310
|
+
rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
|
311
|
+
rack (1.5.2) lib/rack/head.rb:11:in `call'
|
312
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
313
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call'
|
314
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
|
315
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
|
316
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call'
|
317
|
+
activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call'
|
318
|
+
activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
|
319
|
+
activerecord (4.0.0) lib/active_record/migration.rb:369:in `call'
|
320
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
321
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__1636264509818226666__call__callbacks'
|
322
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
323
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
324
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call'
|
325
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
326
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
327
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
328
|
+
railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
|
329
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
|
330
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
|
331
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
|
332
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
|
333
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
|
334
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
335
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
336
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
337
|
+
activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
|
338
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
339
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
|
340
|
+
railties (4.0.0) lib/rails/engine.rb:511:in `call'
|
341
|
+
railties (4.0.0) lib/rails/application.rb:97:in `call'
|
342
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
343
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
344
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
345
|
+
/usr/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
346
|
+
/usr/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
347
|
+
/usr/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
348
|
+
|
349
|
+
|
350
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.0ms)
|
351
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.4ms)
|
352
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (52.3ms)
|
353
|
+
|
354
|
+
|
355
|
+
Started GET "/landing_page/" for 127.0.0.1 at 2013-07-27 12:48:20 +0200
|
356
|
+
Processing by LandingPage::UsersController#new as HTML
|
357
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (16.3ms)
|
358
|
+
Completed 200 OK in 30ms (Views: 28.7ms | ActiveRecord: 0.0ms)
|
359
|
+
|
360
|
+
|
361
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 12:48:20 +0200
|
362
|
+
|
363
|
+
|
364
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 12:48:20 +0200
|
365
|
+
|
366
|
+
|
367
|
+
Started GET "/landing_page/" for 127.0.0.1 at 2013-07-27 12:48:41 +0200
|
368
|
+
Processing by LandingPage::UsersController#new as HTML
|
369
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (7.4ms)
|
370
|
+
Completed 200 OK in 14ms (Views: 13.5ms | ActiveRecord: 0.0ms)
|
371
|
+
|
372
|
+
|
373
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 12:48:41 +0200
|
374
|
+
|
375
|
+
|
376
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 12:48:41 +0200
|
377
|
+
|
378
|
+
|
379
|
+
Started GET "/landing_page/" for 127.0.0.1 at 2013-07-27 12:48:53 +0200
|
380
|
+
Processing by LandingPage::UsersController#new as HTML
|
381
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (5.0ms)
|
382
|
+
Completed 200 OK in 21ms (Views: 20.4ms | ActiveRecord: 0.0ms)
|
383
|
+
|
384
|
+
|
385
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 12:48:54 +0200
|
386
|
+
|
387
|
+
|
388
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 12:48:54 +0200
|
389
|
+
|
390
|
+
|
391
|
+
Started GET "/landing_page/" for 127.0.0.1 at 2013-07-27 12:51:18 +0200
|
392
|
+
Processing by LandingPage::UsersController#new as HTML
|
393
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (35.2ms)
|
394
|
+
Completed 500 Internal Server Error in 44ms
|
395
|
+
|
396
|
+
ActionView::Template::Error (undefined local variable or method `subscribe' for #<#<Class:0x00000002a0f828>:0x00000002e30e98>):
|
397
|
+
1: = form_for :user do |f|
|
398
|
+
2: = label_tag :user_email, t('email')
|
399
|
+
3: = f.text_field :email
|
400
|
+
4: = f.submit subscribe
|
401
|
+
/home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim:4:in `block in __home_marc_webs_projects_landing_page_app_views_landing_page_users_new_html_slim__3651770117986980933_24212860'
|
402
|
+
actionpack (4.0.0) lib/action_view/helpers/capture_helper.rb:38:in `block in capture'
|
403
|
+
actionpack (4.0.0) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer'
|
404
|
+
actionpack (4.0.0) lib/action_view/helpers/capture_helper.rb:38:in `capture'
|
405
|
+
actionpack (4.0.0) lib/action_view/helpers/form_helper.rb:435:in `form_for'
|
406
|
+
/home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim:1:in `__home_marc_webs_projects_landing_page_app_views_landing_page_users_new_html_slim__3651770117986980933_24212860'
|
407
|
+
actionpack (4.0.0) lib/action_view/template.rb:143:in `block in render'
|
408
|
+
activesupport (4.0.0) lib/active_support/notifications.rb:161:in `instrument'
|
409
|
+
actionpack (4.0.0) lib/action_view/template.rb:141:in `render'
|
410
|
+
actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template'
|
411
|
+
actionpack (4.0.0) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
412
|
+
activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
|
413
|
+
activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
414
|
+
activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
|
415
|
+
actionpack (4.0.0) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
416
|
+
actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template'
|
417
|
+
actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout'
|
418
|
+
actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:47:in `render_template'
|
419
|
+
actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:17:in `render'
|
420
|
+
actionpack (4.0.0) lib/action_view/renderer/renderer.rb:42:in `render_template'
|
421
|
+
actionpack (4.0.0) lib/action_view/renderer/renderer.rb:23:in `render'
|
422
|
+
actionpack (4.0.0) lib/abstract_controller/rendering.rb:127:in `_render_template'
|
423
|
+
actionpack (4.0.0) lib/action_controller/metal/streaming.rb:219:in `_render_template'
|
424
|
+
actionpack (4.0.0) lib/abstract_controller/rendering.rb:120:in `render_to_body'
|
425
|
+
actionpack (4.0.0) lib/action_controller/metal/rendering.rb:33:in `render_to_body'
|
426
|
+
actionpack (4.0.0) lib/action_controller/metal/renderers.rb:26:in `render_to_body'
|
427
|
+
actionpack (4.0.0) lib/abstract_controller/rendering.rb:97:in `render'
|
428
|
+
actionpack (4.0.0) lib/action_controller/metal/rendering.rb:16:in `render'
|
429
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
|
430
|
+
activesupport (4.0.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
|
431
|
+
/usr/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
|
432
|
+
activesupport (4.0.0) lib/active_support/core_ext/benchmark.rb:12:in `ms'
|
433
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
|
434
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
|
435
|
+
activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
|
436
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:40:in `render'
|
437
|
+
actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
438
|
+
actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
|
439
|
+
actionpack (4.0.0) lib/abstract_controller/base.rb:189:in `process_action'
|
440
|
+
actionpack (4.0.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
441
|
+
actionpack (4.0.0) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
442
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__3510539170218914910__process_action__callbacks'
|
443
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
444
|
+
actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
445
|
+
actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
446
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
447
|
+
activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
|
448
|
+
activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
449
|
+
activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
|
450
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
451
|
+
actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
|
452
|
+
activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
453
|
+
actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process'
|
454
|
+
actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process'
|
455
|
+
actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch'
|
456
|
+
actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
457
|
+
actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action'
|
458
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
|
459
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
|
460
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
|
461
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
462
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
|
463
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
|
464
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
|
465
|
+
railties (4.0.0) lib/rails/engine.rb:511:in `call'
|
466
|
+
railties (4.0.0) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
467
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
468
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
|
469
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
|
470
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
|
471
|
+
rack (1.5.2) lib/rack/etag.rb:23:in `call'
|
472
|
+
rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
|
473
|
+
rack (1.5.2) lib/rack/head.rb:11:in `call'
|
474
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
475
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call'
|
476
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
|
477
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
|
478
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call'
|
479
|
+
activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call'
|
480
|
+
activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
|
481
|
+
activerecord (4.0.0) lib/active_record/migration.rb:369:in `call'
|
482
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
483
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__1636264509818226666__call__callbacks'
|
484
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
485
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
486
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call'
|
487
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
488
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
489
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
490
|
+
railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
|
491
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
|
492
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
|
493
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
|
494
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
|
495
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
|
496
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
497
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
498
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
499
|
+
activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
|
500
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
501
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
|
502
|
+
railties (4.0.0) lib/rails/engine.rb:511:in `call'
|
503
|
+
railties (4.0.0) lib/rails/application.rb:97:in `call'
|
504
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
505
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
506
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
507
|
+
/usr/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
508
|
+
/usr/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
509
|
+
/usr/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
510
|
+
|
511
|
+
|
512
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (5.8ms)
|
513
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (6.5ms)
|
514
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (41.1ms)
|
515
|
+
|
516
|
+
|
517
|
+
Started GET "/landing_page/" for 127.0.0.1 at 2013-07-27 12:51:24 +0200
|
518
|
+
Processing by LandingPage::UsersController#new as HTML
|
519
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (16.1ms)
|
520
|
+
Completed 200 OK in 30ms (Views: 29.3ms | ActiveRecord: 0.0ms)
|
521
|
+
|
522
|
+
|
523
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 12:51:25 +0200
|
524
|
+
|
525
|
+
|
526
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 12:51:25 +0200
|
527
|
+
|
528
|
+
|
529
|
+
Started GET "/landing_page/" for 127.0.0.1 at 2013-07-27 12:52:17 +0200
|
530
|
+
Processing by LandingPage::UsersController#new as HTML
|
531
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (120.3ms)
|
532
|
+
Completed 200 OK in 132ms (Views: 131.1ms | ActiveRecord: 0.0ms)
|
533
|
+
|
534
|
+
|
535
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 12:52:18 +0200
|
536
|
+
|
537
|
+
|
538
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 12:52:18 +0200
|
539
|
+
|
540
|
+
|
541
|
+
Started GET "/landing_page/" for 127.0.0.1 at 2013-07-27 12:52:39 +0200
|
542
|
+
Processing by LandingPage::UsersController#new as HTML
|
543
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (146.2ms)
|
544
|
+
Completed 200 OK in 240ms (Views: 238.7ms | ActiveRecord: 0.0ms)
|
545
|
+
|
546
|
+
|
547
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 12:52:41 +0200
|
548
|
+
|
549
|
+
|
550
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 12:52:41 +0200
|
551
|
+
|
552
|
+
|
553
|
+
Started GET "/landing_page/" for 127.0.0.1 at 2013-07-27 12:53:08 +0200
|
554
|
+
Processing by LandingPage::UsersController#new as HTML
|
555
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (147.7ms)
|
556
|
+
Completed 200 OK in 243ms (Views: 241.9ms | ActiveRecord: 0.0ms)
|
557
|
+
|
558
|
+
|
559
|
+
Started GET "/landing_page/" for 127.0.0.1 at 2013-07-27 12:53:09 +0200
|
560
|
+
Processing by LandingPage::UsersController#new as HTML
|
561
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (4.3ms)
|
562
|
+
Completed 200 OK in 11ms (Views: 10.1ms | ActiveRecord: 0.0ms)
|
563
|
+
|
564
|
+
|
565
|
+
Started GET "/landing_page/" for 127.0.0.1 at 2013-07-27 12:53:09 +0200
|
566
|
+
Processing by LandingPage::UsersController#new as HTML
|
567
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (2.5ms)
|
568
|
+
Completed 200 OK in 8ms (Views: 7.3ms | ActiveRecord: 0.0ms)
|
569
|
+
|
570
|
+
|
571
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 12:53:09 +0200
|
572
|
+
|
573
|
+
|
574
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 12:53:09 +0200
|
575
|
+
|
576
|
+
|
577
|
+
Started GET "/landing_page/" for 127.0.0.1 at 2013-07-27 12:54:34 +0200
|
578
|
+
Processing by LandingPage::UsersController#new as HTML
|
579
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (5.1ms)
|
580
|
+
Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.0ms)
|
581
|
+
|
582
|
+
|
583
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 12:54:34 +0200
|
584
|
+
|
585
|
+
|
586
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 12:54:34 +0200
|
587
|
+
|
588
|
+
|
589
|
+
Started GET "/landing_page/" for 127.0.0.1 at 2013-07-27 12:54:35 +0200
|
590
|
+
Processing by LandingPage::UsersController#new as HTML
|
591
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (4.6ms)
|
592
|
+
Completed 200 OK in 16ms (Views: 15.7ms | ActiveRecord: 0.0ms)
|
593
|
+
|
594
|
+
|
595
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 12:54:35 +0200
|
596
|
+
|
597
|
+
|
598
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 12:54:35 +0200
|
599
|
+
|
600
|
+
|
601
|
+
Started GET "/landing_page/" for 127.0.0.1 at 2013-07-27 13:17:27 +0200
|
602
|
+
Processing by LandingPage::UsersController#new as HTML
|
603
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (6.4ms)
|
604
|
+
Completed 200 OK in 21ms (Views: 19.5ms | ActiveRecord: 0.0ms)
|
605
|
+
|
606
|
+
|
607
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 13:17:28 +0200
|
608
|
+
|
609
|
+
|
610
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 13:17:28 +0200
|
611
|
+
|
612
|
+
|
613
|
+
Started GET "/landing_page/" for 127.0.0.1 at 2013-07-27 13:19:31 +0200
|
614
|
+
Processing by LandingPage::UsersController#new as HTML
|
615
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (15.3ms)
|
616
|
+
Completed 200 OK in 27ms (Views: 25.8ms | ActiveRecord: 0.0ms)
|
617
|
+
|
618
|
+
|
619
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 13:19:31 +0200
|
620
|
+
|
621
|
+
|
622
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 13:19:31 +0200
|
623
|
+
|
624
|
+
|
625
|
+
Started POST "/landing_page/users" for 127.0.0.1 at 2013-07-27 13:19:33 +0200
|
626
|
+
Processing by LandingPage::UsersController#create as HTML
|
627
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"YZHvZCm+i3ayLRzoiK552Y0MqaVBm3lX1rv3GN/JD6U=", "user"=>{"email"=>""}, "commit"=>"Subscribe"}
|
628
|
+
Completed 500 Internal Server Error in 28ms
|
629
|
+
|
630
|
+
ActionView::MissingTemplate (Missing template landing_page/users/create, landing_page/application/create with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :raw, :ruby, :slim]}. Searched in:
|
631
|
+
* "/home/marc/webs/projects/landing_page/spec/dummy/app/views"
|
632
|
+
* "/home/marc/webs/projects/landing_page/app/views"
|
633
|
+
):
|
634
|
+
actionpack (4.0.0) lib/action_view/path_set.rb:46:in `find'
|
635
|
+
actionpack (4.0.0) lib/action_view/lookup_context.rb:115:in `find'
|
636
|
+
actionpack (4.0.0) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template'
|
637
|
+
actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:35:in `determine_template'
|
638
|
+
actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:8:in `render'
|
639
|
+
actionpack (4.0.0) lib/action_view/renderer/renderer.rb:42:in `render_template'
|
640
|
+
actionpack (4.0.0) lib/action_view/renderer/renderer.rb:23:in `render'
|
641
|
+
actionpack (4.0.0) lib/abstract_controller/rendering.rb:127:in `_render_template'
|
642
|
+
actionpack (4.0.0) lib/action_controller/metal/streaming.rb:219:in `_render_template'
|
643
|
+
actionpack (4.0.0) lib/abstract_controller/rendering.rb:120:in `render_to_body'
|
644
|
+
actionpack (4.0.0) lib/action_controller/metal/rendering.rb:33:in `render_to_body'
|
645
|
+
actionpack (4.0.0) lib/action_controller/metal/renderers.rb:26:in `render_to_body'
|
646
|
+
actionpack (4.0.0) lib/abstract_controller/rendering.rb:97:in `render'
|
647
|
+
actionpack (4.0.0) lib/action_controller/metal/rendering.rb:16:in `render'
|
648
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
|
649
|
+
activesupport (4.0.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
|
650
|
+
/usr/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
|
651
|
+
activesupport (4.0.0) lib/active_support/core_ext/benchmark.rb:12:in `ms'
|
652
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
|
653
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
|
654
|
+
activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
|
655
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:40:in `render'
|
656
|
+
actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
657
|
+
actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
|
658
|
+
actionpack (4.0.0) lib/abstract_controller/base.rb:189:in `process_action'
|
659
|
+
actionpack (4.0.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
660
|
+
actionpack (4.0.0) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
661
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__1577633682949477246__process_action__callbacks'
|
662
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
663
|
+
actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
664
|
+
actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
665
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
666
|
+
activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
|
667
|
+
activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
668
|
+
activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
|
669
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
670
|
+
actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
|
671
|
+
activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
672
|
+
actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process'
|
673
|
+
actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process'
|
674
|
+
actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch'
|
675
|
+
actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
676
|
+
actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action'
|
677
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
|
678
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
|
679
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
|
680
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
681
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
|
682
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
|
683
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
|
684
|
+
railties (4.0.0) lib/rails/engine.rb:511:in `call'
|
685
|
+
railties (4.0.0) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
686
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
687
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
|
688
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
|
689
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
|
690
|
+
rack (1.5.2) lib/rack/etag.rb:23:in `call'
|
691
|
+
rack (1.5.2) lib/rack/conditionalget.rb:35:in `call'
|
692
|
+
rack (1.5.2) lib/rack/head.rb:11:in `call'
|
693
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
694
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call'
|
695
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
|
696
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
|
697
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call'
|
698
|
+
activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call'
|
699
|
+
activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
|
700
|
+
activerecord (4.0.0) lib/active_record/migration.rb:369:in `call'
|
701
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
702
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__932654429453131663__call__callbacks'
|
703
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
704
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
705
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call'
|
706
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
707
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
708
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
709
|
+
railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
|
710
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
|
711
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
|
712
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
|
713
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
|
714
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
|
715
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
716
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
717
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
718
|
+
activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
|
719
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
720
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
|
721
|
+
railties (4.0.0) lib/rails/engine.rb:511:in `call'
|
722
|
+
railties (4.0.0) lib/rails/application.rb:97:in `call'
|
723
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
724
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
725
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
726
|
+
/usr/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
727
|
+
/usr/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
728
|
+
/usr/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
729
|
+
|
730
|
+
|
731
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (2.0ms)
|
732
|
+
|
733
|
+
|
734
|
+
Started GET "/landing_page/" for 127.0.0.1 at 2013-07-27 13:20:10 +0200
|
735
|
+
Processing by LandingPage::UsersController#new as HTML
|
736
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (3.1ms)
|
737
|
+
Completed 200 OK in 10ms (Views: 9.2ms | ActiveRecord: 0.0ms)
|
738
|
+
|
739
|
+
|
740
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 13:20:11 +0200
|
741
|
+
|
742
|
+
|
743
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 13:20:11 +0200
|
744
|
+
|
745
|
+
|
746
|
+
Started POST "/landing_page/users" for 127.0.0.1 at 2013-07-27 13:20:12 +0200
|
747
|
+
Processing by LandingPage::UsersController#create as HTML
|
748
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"YZHvZCm+i3ayLRzoiK552Y0MqaVBm3lX1rv3GN/JD6U=", "user"=>{"email"=>""}, "commit"=>"Subscribe"}
|
749
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (6.3ms)
|
750
|
+
Completed 200 OK in 20ms (Views: 18.7ms | ActiveRecord: 0.0ms)
|
751
|
+
|
752
|
+
|
753
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 13:20:12 +0200
|
754
|
+
|
755
|
+
|
756
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 13:20:12 +0200
|
757
|
+
|
758
|
+
|
759
|
+
Started GET "/landing_page/" for 127.0.0.1 at 2013-07-27 13:20:15 +0200
|
760
|
+
Processing by LandingPage::UsersController#new as HTML
|
761
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (2.2ms)
|
762
|
+
Completed 200 OK in 7ms (Views: 7.1ms | ActiveRecord: 0.0ms)
|
763
|
+
|
764
|
+
|
765
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 13:20:16 +0200
|
766
|
+
|
767
|
+
|
768
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 13:20:16 +0200
|
769
|
+
|
770
|
+
|
771
|
+
Started GET "/landing_page/" for 127.0.0.1 at 2013-07-27 13:32:48 +0200
|
772
|
+
Processing by LandingPage::UsersController#new as HTML
|
773
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (33.2ms)
|
774
|
+
Completed 200 OK in 48ms (Views: 46.1ms | ActiveRecord: 0.0ms)
|
775
|
+
|
776
|
+
|
777
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 13:32:49 +0200
|
778
|
+
|
779
|
+
|
780
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 13:32:49 +0200
|
781
|
+
|
782
|
+
|
783
|
+
Started POST "/landing_page/users" for 127.0.0.1 at 2013-07-27 13:32:52 +0200
|
784
|
+
Processing by LandingPage::UsersController#create as HTML
|
785
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"YZHvZCm+i3ayLRzoiK552Y0MqaVBm3lX1rv3GN/JD6U=", "user"=>{"email"=>"dweded"}, "commit"=>"Subscribe"}
|
786
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (3.7ms)
|
787
|
+
Completed 200 OK in 18ms (Views: 15.2ms | ActiveRecord: 0.0ms)
|
788
|
+
|
789
|
+
|
790
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 13:32:52 +0200
|
791
|
+
|
792
|
+
|
793
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 13:32:52 +0200
|
794
|
+
|
795
|
+
|
796
|
+
Started GET "/landing_page/users" for 127.0.0.1 at 2013-07-27 17:14:34 +0200
|
797
|
+
|
798
|
+
ActionController::RoutingError (No route matches [GET] "/landing_page/users"):
|
799
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
800
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
801
|
+
railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
|
802
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
|
803
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
|
804
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
|
805
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
|
806
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
|
807
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
808
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
809
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
810
|
+
activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
|
811
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
812
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
|
813
|
+
railties (4.0.0) lib/rails/engine.rb:511:in `call'
|
814
|
+
railties (4.0.0) lib/rails/application.rb:97:in `call'
|
815
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
816
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
817
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
818
|
+
/usr/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
819
|
+
/usr/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
820
|
+
/usr/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
821
|
+
|
822
|
+
|
823
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.3ms)
|
824
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms)
|
825
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms)
|
826
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (14.9ms)
|
827
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (69.7ms)
|
828
|
+
|
829
|
+
|
830
|
+
Started GET "/landing_page" for 127.0.0.1 at 2013-07-27 17:14:38 +0200
|
831
|
+
Processing by LandingPage::UsersController#new as HTML
|
832
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (20.0ms)
|
833
|
+
Completed 200 OK in 28ms (Views: 26.6ms | ActiveRecord: 0.0ms)
|
834
|
+
|
835
|
+
|
836
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 17:14:39 +0200
|
837
|
+
|
838
|
+
|
839
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 17:14:39 +0200
|
840
|
+
|
841
|
+
|
842
|
+
Started POST "/landing_page/users" for 127.0.0.1 at 2013-07-27 17:14:45 +0200
|
843
|
+
Processing by LandingPage::UsersController#create as HTML
|
844
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"YZHvZCm+i3ayLRzoiK552Y0MqaVBm3lX1rv3GN/JD6U=", "user"=>{"email"=>"cram1010@gmail.com"}, "commit"=>"Subscribe"}
|
845
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (2.4ms)
|
846
|
+
Completed 200 OK in 203ms (Views: 8.8ms | ActiveRecord: 149.0ms)
|
847
|
+
|
848
|
+
|
849
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 17:14:46 +0200
|
850
|
+
|
851
|
+
|
852
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 17:14:46 +0200
|
853
|
+
|
854
|
+
|
855
|
+
Started GET "/landing_page" for 127.0.0.1 at 2013-07-27 17:14:51 +0200
|
856
|
+
Processing by LandingPage::UsersController#new as HTML
|
857
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (5.0ms)
|
858
|
+
Completed 200 OK in 11ms (Views: 10.2ms | ActiveRecord: 0.0ms)
|
859
|
+
|
860
|
+
|
861
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 17:14:51 +0200
|
862
|
+
|
863
|
+
|
864
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 17:14:51 +0200
|
865
|
+
|
866
|
+
|
867
|
+
Started GET "/landing_page" for 127.0.0.1 at 2013-07-27 17:14:54 +0200
|
868
|
+
Processing by LandingPage::UsersController#new as HTML
|
869
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (4.9ms)
|
870
|
+
Completed 200 OK in 19ms (Views: 18.1ms | ActiveRecord: 0.0ms)
|
871
|
+
|
872
|
+
|
873
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 17:14:54 +0200
|
874
|
+
|
875
|
+
|
876
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 17:14:54 +0200
|
877
|
+
|
878
|
+
|
879
|
+
Started GET "/landing_page" for 127.0.0.1 at 2013-07-27 17:14:55 +0200
|
880
|
+
Processing by LandingPage::UsersController#new as HTML
|
881
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (4.9ms)
|
882
|
+
Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.0ms)
|
883
|
+
|
884
|
+
|
885
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 17:14:55 +0200
|
886
|
+
|
887
|
+
|
888
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 17:14:55 +0200
|
889
|
+
|
890
|
+
|
891
|
+
Started POST "/landing_page/users" for 127.0.0.1 at 2013-07-27 17:14:56 +0200
|
892
|
+
Processing by LandingPage::UsersController#create as HTML
|
893
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"YZHvZCm+i3ayLRzoiK552Y0MqaVBm3lX1rv3GN/JD6U=", "user"=>{"email"=>""}, "commit"=>"Subscribe"}
|
894
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (3.4ms)
|
895
|
+
Completed 200 OK in 24ms (Views: 14.0ms | ActiveRecord: 0.0ms)
|
896
|
+
|
897
|
+
|
898
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 17:14:56 +0200
|
899
|
+
|
900
|
+
|
901
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 17:14:56 +0200
|
902
|
+
|
903
|
+
|
904
|
+
Started POST "/landing_page/users" for 127.0.0.1 at 2013-07-27 17:15:03 +0200
|
905
|
+
Processing by LandingPage::UsersController#create as HTML
|
906
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"YZHvZCm+i3ayLRzoiK552Y0MqaVBm3lX1rv3GN/JD6U=", "user"=>{"email"=>"cram1010@gmail.com"}, "commit"=>"Subscribe"}
|
907
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (4.0ms)
|
908
|
+
Completed 200 OK in 20ms (Views: 16.6ms | ActiveRecord: 0.0ms)
|
909
|
+
|
910
|
+
|
911
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 17:15:03 +0200
|
912
|
+
|
913
|
+
|
914
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 17:15:03 +0200
|
915
|
+
|
916
|
+
|
917
|
+
Started POST "/landing_page/users" for 127.0.0.1 at 2013-07-27 17:15:11 +0200
|
918
|
+
Processing by LandingPage::UsersController#create as HTML
|
919
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"YZHvZCm+i3ayLRzoiK552Y0MqaVBm3lX1rv3GN/JD6U=", "user"=>{"email"=>""}, "commit"=>"Subscribe"}
|
920
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (3.4ms)
|
921
|
+
Completed 200 OK in 23ms (Views: 14.6ms | ActiveRecord: 0.0ms)
|
922
|
+
|
923
|
+
|
924
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 17:15:11 +0200
|
925
|
+
|
926
|
+
|
927
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 17:15:11 +0200
|
928
|
+
|
929
|
+
|
930
|
+
Started POST "/landing_page/users" for 127.0.0.1 at 2013-07-27 17:15:13 +0200
|
931
|
+
Processing by LandingPage::UsersController#create as HTML
|
932
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"YZHvZCm+i3ayLRzoiK552Y0MqaVBm3lX1rv3GN/JD6U=", "user"=>{"email"=>""}, "commit"=>"Subscribe"}
|
933
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (1.7ms)
|
934
|
+
Completed 200 OK in 10ms (Views: 7.0ms | ActiveRecord: 0.0ms)
|
935
|
+
|
936
|
+
|
937
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 17:15:13 +0200
|
938
|
+
|
939
|
+
|
940
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 17:15:13 +0200
|
941
|
+
|
942
|
+
|
943
|
+
Started POST "/landing_page/users" for 127.0.0.1 at 2013-07-27 17:17:52 +0200
|
944
|
+
Processing by LandingPage::UsersController#create as HTML
|
945
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"YZHvZCm+i3ayLRzoiK552Y0MqaVBm3lX1rv3GN/JD6U=", "user"=>{"email"=>""}, "commit"=>"Subscribe"}
|
946
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (1.7ms)
|
947
|
+
Completed 200 OK in 10ms (Views: 6.8ms | ActiveRecord: 0.0ms)
|
948
|
+
|
949
|
+
|
950
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 17:17:52 +0200
|
951
|
+
|
952
|
+
|
953
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 17:17:52 +0200
|
954
|
+
|
955
|
+
|
956
|
+
Started GET "/landing_page" for 127.0.0.1 at 2013-07-27 17:17:59 +0200
|
957
|
+
Processing by LandingPage::UsersController#new as HTML
|
958
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (2.2ms)
|
959
|
+
Completed 200 OK in 10ms (Views: 10.0ms | ActiveRecord: 0.0ms)
|
960
|
+
|
961
|
+
|
962
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 17:18:00 +0200
|
963
|
+
|
964
|
+
|
965
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 17:18:00 +0200
|
966
|
+
|
967
|
+
|
968
|
+
Started GET "/landing_page" for 127.0.0.1 at 2013-07-27 17:18:24 +0200
|
969
|
+
Processing by LandingPage::UsersController#new as HTML
|
970
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (5.0ms)
|
971
|
+
Completed 200 OK in 16ms (Views: 15.9ms | ActiveRecord: 0.0ms)
|
972
|
+
|
973
|
+
|
974
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 17:18:24 +0200
|
975
|
+
|
976
|
+
|
977
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 17:18:24 +0200
|
978
|
+
|
979
|
+
|
980
|
+
Started GET "/landing_page" for 127.0.0.1 at 2013-07-27 17:18:25 +0200
|
981
|
+
Processing by LandingPage::UsersController#new as HTML
|
982
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (2.4ms)
|
983
|
+
Completed 200 OK in 8ms (Views: 8.2ms | ActiveRecord: 0.0ms)
|
984
|
+
|
985
|
+
|
986
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 17:18:25 +0200
|
987
|
+
|
988
|
+
|
989
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 17:18:25 +0200
|
990
|
+
|
991
|
+
|
992
|
+
Started GET "/landing_page" for 127.0.0.1 at 2013-07-27 17:18:25 +0200
|
993
|
+
Processing by LandingPage::UsersController#new as HTML
|
994
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (5.0ms)
|
995
|
+
Completed 200 OK in 16ms (Views: 15.7ms | ActiveRecord: 0.0ms)
|
996
|
+
|
997
|
+
|
998
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 17:18:25 +0200
|
999
|
+
|
1000
|
+
|
1001
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 17:18:25 +0200
|
1002
|
+
|
1003
|
+
|
1004
|
+
Started GET "/landing_page" for 127.0.0.1 at 2013-07-27 17:18:25 +0200
|
1005
|
+
Processing by LandingPage::UsersController#new as HTML
|
1006
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (2.6ms)
|
1007
|
+
Completed 200 OK in 8ms (Views: 7.7ms | ActiveRecord: 0.0ms)
|
1008
|
+
|
1009
|
+
|
1010
|
+
Started GET "/landing_page" for 127.0.0.1 at 2013-07-27 17:18:26 +0200
|
1011
|
+
Processing by LandingPage::UsersController#new as HTML
|
1012
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (2.3ms)
|
1013
|
+
Completed 200 OK in 8ms (Views: 7.2ms | ActiveRecord: 0.0ms)
|
1014
|
+
|
1015
|
+
|
1016
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 17:18:26 +0200
|
1017
|
+
|
1018
|
+
|
1019
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 17:18:26 +0200
|
1020
|
+
|
1021
|
+
|
1022
|
+
Started GET "/landing_page" for 127.0.0.1 at 2013-07-27 17:18:26 +0200
|
1023
|
+
Processing by LandingPage::UsersController#new as HTML
|
1024
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (2.3ms)
|
1025
|
+
Completed 200 OK in 7ms (Views: 7.1ms | ActiveRecord: 0.0ms)
|
1026
|
+
|
1027
|
+
|
1028
|
+
Started GET "/landing_page" for 127.0.0.1 at 2013-07-27 17:18:26 +0200
|
1029
|
+
Processing by LandingPage::UsersController#new as HTML
|
1030
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (4.5ms)
|
1031
|
+
Completed 200 OK in 10ms (Views: 9.8ms | ActiveRecord: 0.0ms)
|
1032
|
+
|
1033
|
+
|
1034
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 17:18:26 +0200
|
1035
|
+
|
1036
|
+
|
1037
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 17:18:26 +0200
|
1038
|
+
|
1039
|
+
|
1040
|
+
Started GET "/landing_page" for 127.0.0.1 at 2013-07-27 17:18:26 +0200
|
1041
|
+
Processing by LandingPage::UsersController#new as HTML
|
1042
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (2.5ms)
|
1043
|
+
Completed 200 OK in 9ms (Views: 8.5ms | ActiveRecord: 0.0ms)
|
1044
|
+
|
1045
|
+
|
1046
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 17:18:26 +0200
|
1047
|
+
|
1048
|
+
|
1049
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 17:18:26 +0200
|
1050
|
+
|
1051
|
+
|
1052
|
+
Started POST "/landing_page/users" for 127.0.0.1 at 2013-07-27 17:18:32 +0200
|
1053
|
+
Processing by LandingPage::UsersController#create as HTML
|
1054
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"YZHvZCm+i3ayLRzoiK552Y0MqaVBm3lX1rv3GN/JD6U=", "user"=>{"email"=>"crdewded"}, "commit"=>"Subscribe"}
|
1055
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (3.6ms)
|
1056
|
+
Completed 200 OK in 21ms (Views: 14.3ms | ActiveRecord: 0.0ms)
|
1057
|
+
|
1058
|
+
|
1059
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 17:18:32 +0200
|
1060
|
+
|
1061
|
+
|
1062
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 17:18:32 +0200
|
1063
|
+
|
1064
|
+
|
1065
|
+
Started GET "/landing_page" for 127.0.0.1 at 2013-07-27 17:18:36 +0200
|
1066
|
+
Processing by LandingPage::UsersController#new as HTML
|
1067
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (2.4ms)
|
1068
|
+
Completed 200 OK in 8ms (Views: 8.2ms | ActiveRecord: 0.0ms)
|
1069
|
+
|
1070
|
+
|
1071
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 17:18:36 +0200
|
1072
|
+
|
1073
|
+
|
1074
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 17:18:36 +0200
|
1075
|
+
|
1076
|
+
|
1077
|
+
Started GET "/landing_page" for 127.0.0.1 at 2013-07-27 17:18:39 +0200
|
1078
|
+
Processing by LandingPage::UsersController#new as HTML
|
1079
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (5.0ms)
|
1080
|
+
Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.0ms)
|
1081
|
+
|
1082
|
+
|
1083
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 17:18:39 +0200
|
1084
|
+
|
1085
|
+
|
1086
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 17:18:39 +0200
|
1087
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1088
|
+
Migrating to AddNameToUser (20130727152153)
|
1089
|
+
[1m[35m (0.2ms)[0m begin transaction
|
1090
|
+
[1m[36m (0.5ms)[0m [1mALTER TABLE "users" ADD "name" varchar(255)[0m
|
1091
|
+
SQLite3::SQLException: no such table: users: ALTER TABLE "users" ADD "name" varchar(255)
|
1092
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
1093
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1094
|
+
Migrating to AddNameToUser (20130727152153)
|
1095
|
+
[1m[35m (0.3ms)[0m begin transaction
|
1096
|
+
[1m[36m (0.5ms)[0m [1mALTER TABLE "users" ADD "name" varchar(255)[0m
|
1097
|
+
SQLite3::SQLException: no such table: users: ALTER TABLE "users" ADD "name" varchar(255)
|
1098
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
1099
|
+
[1m[36m (152.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
1100
|
+
[1m[35m (125.0ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
1101
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.7ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1102
|
+
Migrating to CreateLandingPageUsers (20130727104115)
|
1103
|
+
[1m[35m (0.5ms)[0m begin transaction
|
1104
|
+
[1m[36m (1.7ms)[0m [1mCREATE TABLE "landing_page_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
1105
|
+
[1m[35m (1.3ms)[0m CREATE UNIQUE INDEX "index_landing_page_users_on_email" ON "landing_page_users" ("email")
|
1106
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20130727104115"]]
|
1107
|
+
[1m[35m (140.3ms)[0m commit transaction
|
1108
|
+
Migrating to AddNameToLandingPageUsers (20130727152153)
|
1109
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
1110
|
+
[1m[35m (0.9ms)[0m ALTER TABLE "users" ADD "name" varchar(255)
|
1111
|
+
SQLite3::SQLException: no such table: users: ALTER TABLE "users" ADD "name" varchar(255)
|
1112
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
1113
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1114
|
+
Migrating to AddNameToLandingPageUsers (20130727152153)
|
1115
|
+
[1m[35m (0.2ms)[0m begin transaction
|
1116
|
+
[1m[36m (1.0ms)[0m [1mALTER TABLE "landing_page_users" ADD "name" varchar(255)[0m
|
1117
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20130727152153"]]
|
1118
|
+
[1m[36m (150.4ms)[0m [1mcommit transaction[0m
|
1119
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.6ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1120
|
+
|
1121
|
+
|
1122
|
+
Started GET "/landing_page" for 127.0.0.1 at 2013-07-27 17:35:24 +0200
|
1123
|
+
Processing by LandingPage::UsersController#new as HTML
|
1124
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (36.1ms)
|
1125
|
+
Completed 200 OK in 52ms (Views: 50.4ms | ActiveRecord: 0.0ms)
|
1126
|
+
|
1127
|
+
|
1128
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 17:35:24 +0200
|
1129
|
+
|
1130
|
+
|
1131
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 17:35:24 +0200
|
1132
|
+
|
1133
|
+
|
1134
|
+
Started GET "/landing_page" for 127.0.0.1 at 2013-07-27 17:39:51 +0200
|
1135
|
+
Processing by LandingPage::UsersController#new as HTML
|
1136
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (20.6ms)
|
1137
|
+
Completed 200 OK in 35ms (Views: 33.6ms | ActiveRecord: 0.0ms)
|
1138
|
+
|
1139
|
+
|
1140
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 17:39:51 +0200
|
1141
|
+
|
1142
|
+
|
1143
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 17:39:51 +0200
|
1144
|
+
|
1145
|
+
|
1146
|
+
Started POST "/landing_page/users" for 127.0.0.1 at 2013-07-27 17:39:58 +0200
|
1147
|
+
Processing by LandingPage::UsersController#create as HTML
|
1148
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"YZHvZCm+i3ayLRzoiK552Y0MqaVBm3lX1rv3GN/JD6U=", "user"=>{"name"=>"", "email"=>"dedferffr"}, "commit"=>"Subscribe"}
|
1149
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (2.7ms)
|
1150
|
+
Completed 200 OK in 128ms (Views: 8.7ms | ActiveRecord: 1.6ms)
|
1151
|
+
|
1152
|
+
|
1153
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 17:39:58 +0200
|
1154
|
+
|
1155
|
+
|
1156
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 17:39:58 +0200
|
1157
|
+
|
1158
|
+
|
1159
|
+
Started POST "/landing_page/users" for 127.0.0.1 at 2013-07-27 17:43:04 +0200
|
1160
|
+
Processing by LandingPage::UsersController#create as HTML
|
1161
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"YZHvZCm+i3ayLRzoiK552Y0MqaVBm3lX1rv3GN/JD6U=", "user"=>{"name"=>"", "email"=>"dewdeded"}, "commit"=>"Subscribe"}
|
1162
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (7.2ms)
|
1163
|
+
Completed 500 Internal Server Error in 92ms
|
1164
|
+
|
1165
|
+
ActionView::Template::Error (undefined method `each_value' for ["Email The email is not valid"]:Array):
|
1166
|
+
10:
|
1167
|
+
11: - if flash[:error]
|
1168
|
+
12: ul.message.message-error
|
1169
|
+
13: - flash[:error].each_value do |value|
|
1170
|
+
14: li = value
|
1171
|
+
/home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim:13:in `__home_marc_webs_projects_landing_page_app_views_landing_page_users_new_html_slim___3213773864101037748_38916780'
|
1172
|
+
actionpack (4.0.0) lib/action_view/template.rb:143:in `block in render'
|
1173
|
+
activesupport (4.0.0) lib/active_support/notifications.rb:161:in `instrument'
|
1174
|
+
actionpack (4.0.0) lib/action_view/template.rb:141:in `render'
|
1175
|
+
actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template'
|
1176
|
+
actionpack (4.0.0) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
1177
|
+
activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
|
1178
|
+
activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
1179
|
+
activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
|
1180
|
+
actionpack (4.0.0) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
1181
|
+
actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template'
|
1182
|
+
actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout'
|
1183
|
+
actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:47:in `render_template'
|
1184
|
+
actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:17:in `render'
|
1185
|
+
actionpack (4.0.0) lib/action_view/renderer/renderer.rb:42:in `render_template'
|
1186
|
+
actionpack (4.0.0) lib/action_view/renderer/renderer.rb:23:in `render'
|
1187
|
+
actionpack (4.0.0) lib/abstract_controller/rendering.rb:127:in `_render_template'
|
1188
|
+
actionpack (4.0.0) lib/action_controller/metal/streaming.rb:219:in `_render_template'
|
1189
|
+
actionpack (4.0.0) lib/abstract_controller/rendering.rb:120:in `render_to_body'
|
1190
|
+
actionpack (4.0.0) lib/action_controller/metal/rendering.rb:33:in `render_to_body'
|
1191
|
+
actionpack (4.0.0) lib/action_controller/metal/renderers.rb:26:in `render_to_body'
|
1192
|
+
actionpack (4.0.0) lib/abstract_controller/rendering.rb:97:in `render'
|
1193
|
+
actionpack (4.0.0) lib/action_controller/metal/rendering.rb:16:in `render'
|
1194
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
|
1195
|
+
activesupport (4.0.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
|
1196
|
+
/usr/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
|
1197
|
+
activesupport (4.0.0) lib/active_support/core_ext/benchmark.rb:12:in `ms'
|
1198
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
|
1199
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
|
1200
|
+
activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
|
1201
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:40:in `render'
|
1202
|
+
/home/marc/webs/projects/landing_page/app/controllers/landing_page/users_controller.rb:14:in `create'
|
1203
|
+
actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
1204
|
+
actionpack (4.0.0) lib/abstract_controller/base.rb:189:in `process_action'
|
1205
|
+
actionpack (4.0.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
1206
|
+
actionpack (4.0.0) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
1207
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__1577633682949477246__process_action__callbacks'
|
1208
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
1209
|
+
actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
1210
|
+
actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
1211
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
1212
|
+
activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
|
1213
|
+
activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
1214
|
+
activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
|
1215
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
1216
|
+
actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
|
1217
|
+
activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
1218
|
+
actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process'
|
1219
|
+
actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process'
|
1220
|
+
actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch'
|
1221
|
+
actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
1222
|
+
actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action'
|
1223
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
|
1224
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
|
1225
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
|
1226
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
1227
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
|
1228
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
|
1229
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
|
1230
|
+
railties (4.0.0) lib/rails/engine.rb:511:in `call'
|
1231
|
+
railties (4.0.0) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
1232
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
1233
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
|
1234
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
|
1235
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
|
1236
|
+
rack (1.5.2) lib/rack/etag.rb:23:in `call'
|
1237
|
+
rack (1.5.2) lib/rack/conditionalget.rb:35:in `call'
|
1238
|
+
rack (1.5.2) lib/rack/head.rb:11:in `call'
|
1239
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
1240
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call'
|
1241
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
|
1242
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
|
1243
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call'
|
1244
|
+
activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call'
|
1245
|
+
activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
|
1246
|
+
activerecord (4.0.0) lib/active_record/migration.rb:369:in `call'
|
1247
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
1248
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__932654429453131663__call__callbacks'
|
1249
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
1250
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
1251
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call'
|
1252
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
1253
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
1254
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
1255
|
+
railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
|
1256
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
|
1257
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
|
1258
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
|
1259
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
|
1260
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
|
1261
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
1262
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
1263
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
1264
|
+
activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
|
1265
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
1266
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
|
1267
|
+
railties (4.0.0) lib/rails/engine.rb:511:in `call'
|
1268
|
+
railties (4.0.0) lib/rails/application.rb:97:in `call'
|
1269
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
1270
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
1271
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
1272
|
+
/usr/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
1273
|
+
/usr/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
1274
|
+
/usr/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
1275
|
+
|
1276
|
+
|
1277
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.6ms)
|
1278
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.4ms)
|
1279
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (18.2ms)
|
1280
|
+
|
1281
|
+
|
1282
|
+
Started GET "/landing_page" for 127.0.0.1 at 2013-07-27 17:43:22 +0200
|
1283
|
+
Processing by LandingPage::UsersController#new as HTML
|
1284
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (16.6ms)
|
1285
|
+
Completed 200 OK in 26ms (Views: 25.3ms | ActiveRecord: 0.0ms)
|
1286
|
+
|
1287
|
+
|
1288
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 17:43:22 +0200
|
1289
|
+
|
1290
|
+
|
1291
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 17:43:22 +0200
|
1292
|
+
|
1293
|
+
|
1294
|
+
Started POST "/landing_page/users" for 127.0.0.1 at 2013-07-27 17:43:25 +0200
|
1295
|
+
Processing by LandingPage::UsersController#create as HTML
|
1296
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"YZHvZCm+i3ayLRzoiK552Y0MqaVBm3lX1rv3GN/JD6U=", "user"=>{"name"=>"", "email"=>"dwdedwede"}, "commit"=>"Subscribe"}
|
1297
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (4.0ms)
|
1298
|
+
Completed 200 OK in 24ms (Views: 15.2ms | ActiveRecord: 0.0ms)
|
1299
|
+
|
1300
|
+
|
1301
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 17:43:25 +0200
|
1302
|
+
|
1303
|
+
|
1304
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 17:43:25 +0200
|
1305
|
+
|
1306
|
+
|
1307
|
+
Started GET "/landing_page" for 127.0.0.1 at 2013-07-27 17:48:40 +0200
|
1308
|
+
Processing by LandingPage::UsersController#new as HTML
|
1309
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (32.8ms)
|
1310
|
+
Completed 500 Internal Server Error in 39ms
|
1311
|
+
|
1312
|
+
ActionView::Template::Error (undefined local variable or method `errors' for #<#<Class:0x00000004919390>:0x00000004918710>):
|
1313
|
+
8: - if flash[:success]
|
1314
|
+
9: p.message.message-success = flash[:success]
|
1315
|
+
10:
|
1316
|
+
11: - if errors.defined?
|
1317
|
+
12: ul.message.message-error
|
1318
|
+
13: - errors.each do |attr, value|
|
1319
|
+
14: li = value
|
1320
|
+
/home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim:11:in `__home_marc_webs_projects_landing_page_app_views_landing_page_users_new_html_slim___3213773864101037748_38319000'
|
1321
|
+
actionpack (4.0.0) lib/action_view/template.rb:143:in `block in render'
|
1322
|
+
activesupport (4.0.0) lib/active_support/notifications.rb:161:in `instrument'
|
1323
|
+
actionpack (4.0.0) lib/action_view/template.rb:141:in `render'
|
1324
|
+
actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template'
|
1325
|
+
actionpack (4.0.0) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
1326
|
+
activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
|
1327
|
+
activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
1328
|
+
activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
|
1329
|
+
actionpack (4.0.0) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
1330
|
+
actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template'
|
1331
|
+
actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout'
|
1332
|
+
actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:47:in `render_template'
|
1333
|
+
actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:17:in `render'
|
1334
|
+
actionpack (4.0.0) lib/action_view/renderer/renderer.rb:42:in `render_template'
|
1335
|
+
actionpack (4.0.0) lib/action_view/renderer/renderer.rb:23:in `render'
|
1336
|
+
actionpack (4.0.0) lib/abstract_controller/rendering.rb:127:in `_render_template'
|
1337
|
+
actionpack (4.0.0) lib/action_controller/metal/streaming.rb:219:in `_render_template'
|
1338
|
+
actionpack (4.0.0) lib/abstract_controller/rendering.rb:120:in `render_to_body'
|
1339
|
+
actionpack (4.0.0) lib/action_controller/metal/rendering.rb:33:in `render_to_body'
|
1340
|
+
actionpack (4.0.0) lib/action_controller/metal/renderers.rb:26:in `render_to_body'
|
1341
|
+
actionpack (4.0.0) lib/abstract_controller/rendering.rb:97:in `render'
|
1342
|
+
actionpack (4.0.0) lib/action_controller/metal/rendering.rb:16:in `render'
|
1343
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
|
1344
|
+
activesupport (4.0.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
|
1345
|
+
/usr/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
|
1346
|
+
activesupport (4.0.0) lib/active_support/core_ext/benchmark.rb:12:in `ms'
|
1347
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
|
1348
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
|
1349
|
+
activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
|
1350
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:40:in `render'
|
1351
|
+
actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
1352
|
+
actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
|
1353
|
+
actionpack (4.0.0) lib/abstract_controller/base.rb:189:in `process_action'
|
1354
|
+
actionpack (4.0.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
1355
|
+
actionpack (4.0.0) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
1356
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__1577633682949477246__process_action__callbacks'
|
1357
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
1358
|
+
actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
1359
|
+
actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
1360
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
1361
|
+
activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
|
1362
|
+
activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
1363
|
+
activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
|
1364
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
1365
|
+
actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
|
1366
|
+
activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
1367
|
+
actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process'
|
1368
|
+
actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process'
|
1369
|
+
actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch'
|
1370
|
+
actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
1371
|
+
actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action'
|
1372
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
|
1373
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
|
1374
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
|
1375
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
1376
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
|
1377
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
|
1378
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
|
1379
|
+
railties (4.0.0) lib/rails/engine.rb:511:in `call'
|
1380
|
+
railties (4.0.0) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
1381
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
1382
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
|
1383
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
|
1384
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
|
1385
|
+
rack (1.5.2) lib/rack/etag.rb:23:in `call'
|
1386
|
+
rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
|
1387
|
+
rack (1.5.2) lib/rack/head.rb:11:in `call'
|
1388
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
1389
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call'
|
1390
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
|
1391
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
|
1392
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call'
|
1393
|
+
activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call'
|
1394
|
+
activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
|
1395
|
+
activerecord (4.0.0) lib/active_record/migration.rb:369:in `call'
|
1396
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
1397
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__932654429453131663__call__callbacks'
|
1398
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
1399
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
1400
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call'
|
1401
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
1402
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
1403
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
1404
|
+
railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
|
1405
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
|
1406
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
|
1407
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
|
1408
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
|
1409
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
|
1410
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
1411
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
1412
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
1413
|
+
activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
|
1414
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
1415
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
|
1416
|
+
railties (4.0.0) lib/rails/engine.rb:511:in `call'
|
1417
|
+
railties (4.0.0) lib/rails/application.rb:97:in `call'
|
1418
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
1419
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
1420
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
1421
|
+
/usr/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
1422
|
+
/usr/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
1423
|
+
/usr/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
1424
|
+
|
1425
|
+
|
1426
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.6ms)
|
1427
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.2ms)
|
1428
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (20.7ms)
|
1429
|
+
|
1430
|
+
|
1431
|
+
Started GET "/landing_page" for 127.0.0.1 at 2013-07-27 17:49:00 +0200
|
1432
|
+
Processing by LandingPage::UsersController#new as HTML
|
1433
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (20.4ms)
|
1434
|
+
Completed 200 OK in 34ms (Views: 32.8ms | ActiveRecord: 0.0ms)
|
1435
|
+
|
1436
|
+
|
1437
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 17:49:00 +0200
|
1438
|
+
|
1439
|
+
|
1440
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 17:49:00 +0200
|
1441
|
+
|
1442
|
+
|
1443
|
+
Started POST "/landing_page/users" for 127.0.0.1 at 2013-07-27 17:49:06 +0200
|
1444
|
+
Processing by LandingPage::UsersController#create as HTML
|
1445
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"YZHvZCm+i3ayLRzoiK552Y0MqaVBm3lX1rv3GN/JD6U=", "user"=>{"name"=>"", "email"=>"cram1010@gmail.com"}, "commit"=>"Subscribe"}
|
1446
|
+
Completed 500 Internal Server Error in 82ms
|
1447
|
+
|
1448
|
+
ActionView::MissingTemplate (Missing template landing_page/users/create, landing_page/application/create with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :raw, :ruby, :slim]}. Searched in:
|
1449
|
+
* "/home/marc/webs/projects/landing_page/spec/dummy/app/views"
|
1450
|
+
* "/home/marc/webs/projects/landing_page/app/views"
|
1451
|
+
):
|
1452
|
+
actionpack (4.0.0) lib/action_view/path_set.rb:46:in `find'
|
1453
|
+
actionpack (4.0.0) lib/action_view/lookup_context.rb:115:in `find'
|
1454
|
+
actionpack (4.0.0) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template'
|
1455
|
+
actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:35:in `determine_template'
|
1456
|
+
actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:8:in `render'
|
1457
|
+
actionpack (4.0.0) lib/action_view/renderer/renderer.rb:42:in `render_template'
|
1458
|
+
actionpack (4.0.0) lib/action_view/renderer/renderer.rb:23:in `render'
|
1459
|
+
actionpack (4.0.0) lib/abstract_controller/rendering.rb:127:in `_render_template'
|
1460
|
+
actionpack (4.0.0) lib/action_controller/metal/streaming.rb:219:in `_render_template'
|
1461
|
+
actionpack (4.0.0) lib/abstract_controller/rendering.rb:120:in `render_to_body'
|
1462
|
+
actionpack (4.0.0) lib/action_controller/metal/rendering.rb:33:in `render_to_body'
|
1463
|
+
actionpack (4.0.0) lib/action_controller/metal/renderers.rb:26:in `render_to_body'
|
1464
|
+
actionpack (4.0.0) lib/abstract_controller/rendering.rb:97:in `render'
|
1465
|
+
actionpack (4.0.0) lib/action_controller/metal/rendering.rb:16:in `render'
|
1466
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
|
1467
|
+
activesupport (4.0.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
|
1468
|
+
/usr/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
|
1469
|
+
activesupport (4.0.0) lib/active_support/core_ext/benchmark.rb:12:in `ms'
|
1470
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
|
1471
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
|
1472
|
+
activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
|
1473
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:40:in `render'
|
1474
|
+
actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
1475
|
+
actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
|
1476
|
+
actionpack (4.0.0) lib/abstract_controller/base.rb:189:in `process_action'
|
1477
|
+
actionpack (4.0.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
1478
|
+
actionpack (4.0.0) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
1479
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__1577633682949477246__process_action__callbacks'
|
1480
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
1481
|
+
actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
1482
|
+
actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
1483
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
1484
|
+
activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
|
1485
|
+
activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
1486
|
+
activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
|
1487
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
1488
|
+
actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
|
1489
|
+
activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
1490
|
+
actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process'
|
1491
|
+
actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process'
|
1492
|
+
actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch'
|
1493
|
+
actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
1494
|
+
actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action'
|
1495
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
|
1496
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
|
1497
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
|
1498
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
1499
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
|
1500
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
|
1501
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
|
1502
|
+
railties (4.0.0) lib/rails/engine.rb:511:in `call'
|
1503
|
+
railties (4.0.0) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
1504
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
1505
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
|
1506
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
|
1507
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
|
1508
|
+
rack (1.5.2) lib/rack/etag.rb:23:in `call'
|
1509
|
+
rack (1.5.2) lib/rack/conditionalget.rb:35:in `call'
|
1510
|
+
rack (1.5.2) lib/rack/head.rb:11:in `call'
|
1511
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
1512
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call'
|
1513
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
|
1514
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
|
1515
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call'
|
1516
|
+
activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call'
|
1517
|
+
activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
|
1518
|
+
activerecord (4.0.0) lib/active_record/migration.rb:369:in `call'
|
1519
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
1520
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__932654429453131663__call__callbacks'
|
1521
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
1522
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
1523
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call'
|
1524
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
1525
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
1526
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
1527
|
+
railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
|
1528
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
|
1529
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
|
1530
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
|
1531
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
|
1532
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
|
1533
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
1534
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
1535
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
1536
|
+
activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
|
1537
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
1538
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
|
1539
|
+
railties (4.0.0) lib/rails/engine.rb:511:in `call'
|
1540
|
+
railties (4.0.0) lib/rails/application.rb:97:in `call'
|
1541
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
1542
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
1543
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
1544
|
+
/usr/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
1545
|
+
/usr/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
1546
|
+
/usr/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
1547
|
+
|
1548
|
+
|
1549
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (1.0ms)
|
1550
|
+
|
1551
|
+
|
1552
|
+
Started GET "/landing_page" for 127.0.0.1 at 2013-07-27 17:49:21 +0200
|
1553
|
+
Processing by LandingPage::UsersController#new as HTML
|
1554
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (3.6ms)
|
1555
|
+
Completed 200 OK in 13ms (Views: 12.6ms | ActiveRecord: 0.0ms)
|
1556
|
+
|
1557
|
+
|
1558
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 17:49:21 +0200
|
1559
|
+
|
1560
|
+
|
1561
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 17:49:21 +0200
|
1562
|
+
|
1563
|
+
|
1564
|
+
Started POST "/landing_page/users" for 127.0.0.1 at 2013-07-27 17:49:24 +0200
|
1565
|
+
Processing by LandingPage::UsersController#create as HTML
|
1566
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"YZHvZCm+i3ayLRzoiK552Y0MqaVBm3lX1rv3GN/JD6U=", "user"=>{"name"=>"", "email"=>"cram1010@gmail.com"}, "commit"=>"Subscribe"}
|
1567
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (5.1ms)
|
1568
|
+
Completed 200 OK in 83ms (Views: 15.3ms | ActiveRecord: 2.8ms)
|
1569
|
+
|
1570
|
+
|
1571
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 17:49:24 +0200
|
1572
|
+
|
1573
|
+
|
1574
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 17:49:24 +0200
|
1575
|
+
|
1576
|
+
|
1577
|
+
Started GET "/landing_page" for 127.0.0.1 at 2013-07-27 17:49:31 +0200
|
1578
|
+
Processing by LandingPage::UsersController#new as HTML
|
1579
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (8.7ms)
|
1580
|
+
Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.0ms)
|
1581
|
+
|
1582
|
+
|
1583
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 17:49:31 +0200
|
1584
|
+
|
1585
|
+
|
1586
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 17:49:31 +0200
|
1587
|
+
|
1588
|
+
|
1589
|
+
Started GET "/landing_page" for 127.0.0.1 at 2013-07-27 17:49:33 +0200
|
1590
|
+
Processing by LandingPage::UsersController#new as HTML
|
1591
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (5.8ms)
|
1592
|
+
Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.0ms)
|
1593
|
+
|
1594
|
+
|
1595
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 17:49:33 +0200
|
1596
|
+
|
1597
|
+
|
1598
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 17:49:33 +0200
|
1599
|
+
|
1600
|
+
|
1601
|
+
Started POST "/landing_page/users" for 127.0.0.1 at 2013-07-27 17:49:36 +0200
|
1602
|
+
Processing by LandingPage::UsersController#create as HTML
|
1603
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"YZHvZCm+i3ayLRzoiK552Y0MqaVBm3lX1rv3GN/JD6U=", "user"=>{"name"=>"", "email"=>"dweded"}, "commit"=>"Subscribe"}
|
1604
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (5.7ms)
|
1605
|
+
Completed 200 OK in 29ms (Views: 20.1ms | ActiveRecord: 0.0ms)
|
1606
|
+
|
1607
|
+
|
1608
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 17:49:36 +0200
|
1609
|
+
|
1610
|
+
|
1611
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 17:49:36 +0200
|
1612
|
+
|
1613
|
+
|
1614
|
+
Started POST "/landing_page/users" for 127.0.0.1 at 2013-07-27 17:49:39 +0200
|
1615
|
+
Processing by LandingPage::UsersController#create as HTML
|
1616
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"YZHvZCm+i3ayLRzoiK552Y0MqaVBm3lX1rv3GN/JD6U=", "user"=>{"name"=>"", "email"=>"dweded"}, "commit"=>"Subscribe"}
|
1617
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (2.6ms)
|
1618
|
+
Completed 200 OK in 14ms (Views: 9.0ms | ActiveRecord: 0.0ms)
|
1619
|
+
|
1620
|
+
|
1621
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 17:49:39 +0200
|
1622
|
+
|
1623
|
+
|
1624
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 17:49:39 +0200
|
1625
|
+
|
1626
|
+
|
1627
|
+
Started POST "/landing_page/users" for 127.0.0.1 at 2013-07-27 17:49:55 +0200
|
1628
|
+
Processing by LandingPage::UsersController#create as HTML
|
1629
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"YZHvZCm+i3ayLRzoiK552Y0MqaVBm3lX1rv3GN/JD6U=", "user"=>{"name"=>"", "email"=>"erfref"}, "commit"=>"Subscribe"}
|
1630
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (111.2ms)
|
1631
|
+
Completed 200 OK in 218ms (Views: 208.2ms | ActiveRecord: 0.0ms)
|
1632
|
+
|
1633
|
+
|
1634
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 17:49:55 +0200
|
1635
|
+
|
1636
|
+
|
1637
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 17:49:55 +0200
|
1638
|
+
|
1639
|
+
|
1640
|
+
Started POST "/landing_page/users" for 127.0.0.1 at 2013-07-27 17:49:58 +0200
|
1641
|
+
Processing by LandingPage::UsersController#create as HTML
|
1642
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"YZHvZCm+i3ayLRzoiK552Y0MqaVBm3lX1rv3GN/JD6U=", "user"=>{"name"=>"", "email"=>"dweded"}, "commit"=>"Subscribe"}
|
1643
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (6.9ms)
|
1644
|
+
Completed 200 OK in 27ms (Views: 19.3ms | ActiveRecord: 0.0ms)
|
1645
|
+
|
1646
|
+
|
1647
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 17:49:58 +0200
|
1648
|
+
|
1649
|
+
|
1650
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 17:49:58 +0200
|
1651
|
+
|
1652
|
+
|
1653
|
+
Started POST "/landing_page/users" for 127.0.0.1 at 2013-07-27 17:50:57 +0200
|
1654
|
+
Processing by LandingPage::UsersController#create as HTML
|
1655
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"YZHvZCm+i3ayLRzoiK552Y0MqaVBm3lX1rv3GN/JD6U=", "user"=>{"name"=>"", "email"=>"dwwed"}, "commit"=>"Subscribe"}
|
1656
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (21.3ms)
|
1657
|
+
Completed 200 OK in 39ms (Views: 33.5ms | ActiveRecord: 0.0ms)
|
1658
|
+
|
1659
|
+
|
1660
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 17:50:58 +0200
|
1661
|
+
|
1662
|
+
|
1663
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 17:50:58 +0200
|
1664
|
+
|
1665
|
+
|
1666
|
+
Started POST "/landing_page/users" for 127.0.0.1 at 2013-07-27 17:51:01 +0200
|
1667
|
+
Processing by LandingPage::UsersController#create as HTML
|
1668
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"YZHvZCm+i3ayLRzoiK552Y0MqaVBm3lX1rv3GN/JD6U=", "user"=>{"name"=>"", "email"=>"dewdwedewd"}, "commit"=>"Subscribe"}
|
1669
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (5.5ms)
|
1670
|
+
Completed 200 OK in 23ms (Views: 16.9ms | ActiveRecord: 0.0ms)
|
1671
|
+
|
1672
|
+
|
1673
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 17:51:01 +0200
|
1674
|
+
|
1675
|
+
|
1676
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 17:51:01 +0200
|
1677
|
+
|
1678
|
+
|
1679
|
+
Started POST "/landing_page/users" for 127.0.0.1 at 2013-07-27 17:52:32 +0200
|
1680
|
+
Processing by LandingPage::UsersController#create as HTML
|
1681
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"YZHvZCm+i3ayLRzoiK552Y0MqaVBm3lX1rv3GN/JD6U=", "user"=>{"name"=>"", "email"=>"dewdewd"}, "commit"=>"Subscribe"}
|
1682
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (20.7ms)
|
1683
|
+
Completed 200 OK in 43ms (Views: 32.7ms | ActiveRecord: 0.0ms)
|
1684
|
+
|
1685
|
+
|
1686
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 17:52:33 +0200
|
1687
|
+
|
1688
|
+
|
1689
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 17:52:33 +0200
|
1690
|
+
|
1691
|
+
|
1692
|
+
Started POST "/landing_page/users" for 127.0.0.1 at 2013-07-27 17:52:34 +0200
|
1693
|
+
Processing by LandingPage::UsersController#create as HTML
|
1694
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"YZHvZCm+i3ayLRzoiK552Y0MqaVBm3lX1rv3GN/JD6U=", "user"=>{"name"=>"", "email"=>"dewded"}, "commit"=>"Subscribe"}
|
1695
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (5.3ms)
|
1696
|
+
Completed 200 OK in 26ms (Views: 19.5ms | ActiveRecord: 0.0ms)
|
1697
|
+
|
1698
|
+
|
1699
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 17:52:35 +0200
|
1700
|
+
|
1701
|
+
|
1702
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 17:52:35 +0200
|
1703
|
+
|
1704
|
+
|
1705
|
+
Started POST "/landing_page/users" for 127.0.0.1 at 2013-07-27 17:54:54 +0200
|
1706
|
+
Processing by LandingPage::UsersController#create as HTML
|
1707
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"YZHvZCm+i3ayLRzoiK552Y0MqaVBm3lX1rv3GN/JD6U=", "user"=>{"name"=>"", "email"=>"áááá"}, "commit"=>"Subscribe"}
|
1708
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (5.4ms)
|
1709
|
+
Completed 200 OK in 21ms (Views: 16.0ms | ActiveRecord: 0.0ms)
|
1710
|
+
|
1711
|
+
|
1712
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 17:54:54 +0200
|
1713
|
+
|
1714
|
+
|
1715
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 17:54:54 +0200
|
1716
|
+
|
1717
|
+
|
1718
|
+
Started GET "/landing_page" for 127.0.0.1 at 2013-07-27 17:55:35 +0200
|
1719
|
+
Processing by LandingPage::UsersController#new as HTML
|
1720
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (13.0ms)
|
1721
|
+
Completed 200 OK in 21ms (Views: 20.3ms | ActiveRecord: 0.0ms)
|
1722
|
+
|
1723
|
+
|
1724
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 17:55:35 +0200
|
1725
|
+
|
1726
|
+
|
1727
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 17:55:35 +0200
|
1728
|
+
|
1729
|
+
|
1730
|
+
Started POST "/landing_page/users" for 127.0.0.1 at 2013-07-27 17:55:46 +0200
|
1731
|
+
Processing by LandingPage::UsersController#create as HTML
|
1732
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"YZHvZCm+i3ayLRzoiK552Y0MqaVBm3lX1rv3GN/JD6U=", "user"=>{"name"=>"", "email"=>"dwdwe"}, "commit"=>"Subscribe"}
|
1733
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (9.6ms)
|
1734
|
+
Completed 200 OK in 82ms (Views: 15.4ms | ActiveRecord: 2.7ms)
|
1735
|
+
|
1736
|
+
|
1737
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 17:55:47 +0200
|
1738
|
+
|
1739
|
+
|
1740
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 17:55:47 +0200
|
1741
|
+
|
1742
|
+
|
1743
|
+
Started POST "/landing_page/users" for 127.0.0.1 at 2013-07-27 17:55:48 +0200
|
1744
|
+
Processing by LandingPage::UsersController#create as HTML
|
1745
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"YZHvZCm+i3ayLRzoiK552Y0MqaVBm3lX1rv3GN/JD6U=", "user"=>{"name"=>"", "email"=>"dewded"}, "commit"=>"Subscribe"}
|
1746
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (5.4ms)
|
1747
|
+
Completed 200 OK in 25ms (Views: 16.8ms | ActiveRecord: 0.0ms)
|
1748
|
+
|
1749
|
+
|
1750
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 17:55:48 +0200
|
1751
|
+
|
1752
|
+
|
1753
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 17:55:48 +0200
|
1754
|
+
|
1755
|
+
|
1756
|
+
Started POST "/landing_page/users" for 127.0.0.1 at 2013-07-27 17:55:51 +0200
|
1757
|
+
Processing by LandingPage::UsersController#create as HTML
|
1758
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"YZHvZCm+i3ayLRzoiK552Y0MqaVBm3lX1rv3GN/JD6U=", "user"=>{"name"=>"", "email"=>"dwedewdewdeded"}, "commit"=>"Subscribe"}
|
1759
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (5.6ms)
|
1760
|
+
Completed 200 OK in 125ms (Views: 16.6ms | ActiveRecord: 0.0ms)
|
1761
|
+
|
1762
|
+
|
1763
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 17:55:51 +0200
|
1764
|
+
|
1765
|
+
|
1766
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 17:55:51 +0200
|
1767
|
+
|
1768
|
+
|
1769
|
+
Started POST "/landing_page/users" for 127.0.0.1 at 2013-07-27 17:56:27 +0200
|
1770
|
+
|
1771
|
+
SyntaxError (/home/marc/webs/projects/landing_page/app/controllers/landing_page/users_controller.rb:13: syntax error, unexpected ':', expecting '}'
|
1772
|
+
render {partial: :new}, errors: user.errors
|
1773
|
+
^
|
1774
|
+
/home/marc/webs/projects/landing_page/app/controllers/landing_page/users_controller.rb:13: syntax error, unexpected ',', expecting keyword_end
|
1775
|
+
render {partial: :new}, errors: user.errors
|
1776
|
+
^):
|
1777
|
+
activesupport (4.0.0) lib/active_support/dependencies.rb:423:in `load'
|
1778
|
+
activesupport (4.0.0) lib/active_support/dependencies.rb:423:in `block in load_file'
|
1779
|
+
activesupport (4.0.0) lib/active_support/dependencies.rb:615:in `new_constants_in'
|
1780
|
+
activesupport (4.0.0) lib/active_support/dependencies.rb:422:in `load_file'
|
1781
|
+
activesupport (4.0.0) lib/active_support/dependencies.rb:323:in `require_or_load'
|
1782
|
+
activesupport (4.0.0) lib/active_support/dependencies.rb:462:in `load_missing_constant'
|
1783
|
+
activesupport (4.0.0) lib/active_support/dependencies.rb:183:in `const_missing'
|
1784
|
+
activesupport (4.0.0) lib/active_support/inflector/methods.rb:228:in `const_get'
|
1785
|
+
activesupport (4.0.0) lib/active_support/inflector/methods.rb:228:in `block in constantize'
|
1786
|
+
activesupport (4.0.0) lib/active_support/inflector/methods.rb:224:in `each'
|
1787
|
+
activesupport (4.0.0) lib/active_support/inflector/methods.rb:224:in `inject'
|
1788
|
+
activesupport (4.0.0) lib/active_support/inflector/methods.rb:224:in `constantize'
|
1789
|
+
activesupport (4.0.0) lib/active_support/dependencies.rb:534:in `get'
|
1790
|
+
activesupport (4.0.0) lib/active_support/dependencies.rb:565:in `constantize'
|
1791
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:76:in `controller_reference'
|
1792
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:66:in `controller'
|
1793
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:44:in `call'
|
1794
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
1795
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
|
1796
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
|
1797
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
|
1798
|
+
railties (4.0.0) lib/rails/engine.rb:511:in `call'
|
1799
|
+
railties (4.0.0) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
1800
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
1801
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
|
1802
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
|
1803
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
|
1804
|
+
rack (1.5.2) lib/rack/etag.rb:23:in `call'
|
1805
|
+
rack (1.5.2) lib/rack/conditionalget.rb:35:in `call'
|
1806
|
+
rack (1.5.2) lib/rack/head.rb:11:in `call'
|
1807
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
1808
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call'
|
1809
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
|
1810
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
|
1811
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call'
|
1812
|
+
activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call'
|
1813
|
+
activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
|
1814
|
+
activerecord (4.0.0) lib/active_record/migration.rb:369:in `call'
|
1815
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
1816
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__932654429453131663__call__callbacks'
|
1817
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
1818
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
1819
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call'
|
1820
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
1821
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
1822
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
1823
|
+
railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
|
1824
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
|
1825
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
|
1826
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
|
1827
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
|
1828
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
|
1829
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
1830
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
1831
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
1832
|
+
activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
|
1833
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
1834
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
|
1835
|
+
railties (4.0.0) lib/rails/engine.rb:511:in `call'
|
1836
|
+
railties (4.0.0) lib/rails/application.rb:97:in `call'
|
1837
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
1838
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
1839
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
1840
|
+
/usr/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
1841
|
+
/usr/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
1842
|
+
/usr/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
1843
|
+
|
1844
|
+
|
1845
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.3ms)
|
1846
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.6ms)
|
1847
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.2ms)
|
1848
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (26.6ms)
|
1849
|
+
|
1850
|
+
|
1851
|
+
Started POST "/landing_page/users" for 127.0.0.1 at 2013-07-27 17:56:52 +0200
|
1852
|
+
|
1853
|
+
SyntaxError (/home/marc/webs/projects/landing_page/app/controllers/landing_page/users_controller.rb:13: syntax error, unexpected ':', expecting '}'
|
1854
|
+
render {partial: :new}, {errors: user.errors}
|
1855
|
+
^
|
1856
|
+
/home/marc/webs/projects/landing_page/app/controllers/landing_page/users_controller.rb:13: syntax error, unexpected ',', expecting keyword_end
|
1857
|
+
render {partial: :new}, {errors: user.errors}
|
1858
|
+
^):
|
1859
|
+
activesupport (4.0.0) lib/active_support/dependencies.rb:423:in `load'
|
1860
|
+
activesupport (4.0.0) lib/active_support/dependencies.rb:423:in `block in load_file'
|
1861
|
+
activesupport (4.0.0) lib/active_support/dependencies.rb:615:in `new_constants_in'
|
1862
|
+
activesupport (4.0.0) lib/active_support/dependencies.rb:422:in `load_file'
|
1863
|
+
activesupport (4.0.0) lib/active_support/dependencies.rb:323:in `require_or_load'
|
1864
|
+
activesupport (4.0.0) lib/active_support/dependencies.rb:462:in `load_missing_constant'
|
1865
|
+
activesupport (4.0.0) lib/active_support/dependencies.rb:183:in `const_missing'
|
1866
|
+
activesupport (4.0.0) lib/active_support/inflector/methods.rb:228:in `const_get'
|
1867
|
+
activesupport (4.0.0) lib/active_support/inflector/methods.rb:228:in `block in constantize'
|
1868
|
+
activesupport (4.0.0) lib/active_support/inflector/methods.rb:224:in `each'
|
1869
|
+
activesupport (4.0.0) lib/active_support/inflector/methods.rb:224:in `inject'
|
1870
|
+
activesupport (4.0.0) lib/active_support/inflector/methods.rb:224:in `constantize'
|
1871
|
+
activesupport (4.0.0) lib/active_support/dependencies.rb:534:in `get'
|
1872
|
+
activesupport (4.0.0) lib/active_support/dependencies.rb:565:in `constantize'
|
1873
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:76:in `controller_reference'
|
1874
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:66:in `controller'
|
1875
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:44:in `call'
|
1876
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
1877
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
|
1878
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
|
1879
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
|
1880
|
+
railties (4.0.0) lib/rails/engine.rb:511:in `call'
|
1881
|
+
railties (4.0.0) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
1882
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
1883
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
|
1884
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
|
1885
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
|
1886
|
+
rack (1.5.2) lib/rack/etag.rb:23:in `call'
|
1887
|
+
rack (1.5.2) lib/rack/conditionalget.rb:35:in `call'
|
1888
|
+
rack (1.5.2) lib/rack/head.rb:11:in `call'
|
1889
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
1890
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call'
|
1891
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
|
1892
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
|
1893
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call'
|
1894
|
+
activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call'
|
1895
|
+
activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
|
1896
|
+
activerecord (4.0.0) lib/active_record/migration.rb:369:in `call'
|
1897
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
1898
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__932654429453131663__call__callbacks'
|
1899
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
1900
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
1901
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call'
|
1902
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
1903
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
1904
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
1905
|
+
railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
|
1906
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
|
1907
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
|
1908
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
|
1909
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
|
1910
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
|
1911
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
1912
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
1913
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
1914
|
+
activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
|
1915
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
1916
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
|
1917
|
+
railties (4.0.0) lib/rails/engine.rb:511:in `call'
|
1918
|
+
railties (4.0.0) lib/rails/application.rb:97:in `call'
|
1919
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
1920
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
1921
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
1922
|
+
/usr/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
1923
|
+
/usr/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
1924
|
+
/usr/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
1925
|
+
|
1926
|
+
|
1927
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.3ms)
|
1928
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.5ms)
|
1929
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.1ms)
|
1930
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (32.0ms)
|
1931
|
+
|
1932
|
+
|
1933
|
+
Started GET "/landing_page/" for 127.0.0.1 at 2013-07-27 17:57:52 +0200
|
1934
|
+
Processing by LandingPage::UsersController#new as HTML
|
1935
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (12.0ms)
|
1936
|
+
Completed 200 OK in 21ms (Views: 19.5ms | ActiveRecord: 0.0ms)
|
1937
|
+
|
1938
|
+
|
1939
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 17:57:52 +0200
|
1940
|
+
|
1941
|
+
|
1942
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 17:57:52 +0200
|
1943
|
+
|
1944
|
+
|
1945
|
+
Started POST "/landing_page/users" for 127.0.0.1 at 2013-07-27 17:57:55 +0200
|
1946
|
+
Processing by LandingPage::UsersController#create as HTML
|
1947
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"YZHvZCm+i3ayLRzoiK552Y0MqaVBm3lX1rv3GN/JD6U=", "user"=>{"name"=>"", "email"=>"dewd"}, "commit"=>"Subscribe"}
|
1948
|
+
Completed 500 Internal Server Error in 69ms
|
1949
|
+
|
1950
|
+
NameError (undefined local variable or method `user' for #<LandingPage::UsersController:0x000000047e5028>):
|
1951
|
+
/home/marc/webs/projects/landing_page/app/controllers/landing_page/users_controller.rb:9:in `create'
|
1952
|
+
actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
1953
|
+
actionpack (4.0.0) lib/abstract_controller/base.rb:189:in `process_action'
|
1954
|
+
actionpack (4.0.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
1955
|
+
actionpack (4.0.0) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
1956
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__1577633682949477246__process_action__callbacks'
|
1957
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
1958
|
+
actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
1959
|
+
actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
1960
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
1961
|
+
activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
|
1962
|
+
activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
1963
|
+
activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
|
1964
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
1965
|
+
actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
|
1966
|
+
activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
1967
|
+
actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process'
|
1968
|
+
actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process'
|
1969
|
+
actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch'
|
1970
|
+
actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
1971
|
+
actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action'
|
1972
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
|
1973
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
|
1974
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
|
1975
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
1976
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
|
1977
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
|
1978
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
|
1979
|
+
railties (4.0.0) lib/rails/engine.rb:511:in `call'
|
1980
|
+
railties (4.0.0) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
1981
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
1982
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
|
1983
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
|
1984
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
|
1985
|
+
rack (1.5.2) lib/rack/etag.rb:23:in `call'
|
1986
|
+
rack (1.5.2) lib/rack/conditionalget.rb:35:in `call'
|
1987
|
+
rack (1.5.2) lib/rack/head.rb:11:in `call'
|
1988
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
1989
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call'
|
1990
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
|
1991
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
|
1992
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call'
|
1993
|
+
activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call'
|
1994
|
+
activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
|
1995
|
+
activerecord (4.0.0) lib/active_record/migration.rb:369:in `call'
|
1996
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
1997
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__932654429453131663__call__callbacks'
|
1998
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
1999
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
2000
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call'
|
2001
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
2002
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
2003
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
2004
|
+
railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
|
2005
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
|
2006
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
|
2007
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
|
2008
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
|
2009
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
|
2010
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
2011
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
2012
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
2013
|
+
activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
|
2014
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
2015
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
|
2016
|
+
railties (4.0.0) lib/rails/engine.rb:511:in `call'
|
2017
|
+
railties (4.0.0) lib/rails/application.rb:97:in `call'
|
2018
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
2019
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
2020
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
2021
|
+
/usr/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
2022
|
+
/usr/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
2023
|
+
/usr/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
2024
|
+
|
2025
|
+
|
2026
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.7ms)
|
2027
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (5.3ms)
|
2028
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (6.6ms)
|
2029
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (60.0ms)
|
2030
|
+
|
2031
|
+
|
2032
|
+
Started POST "/landing_page/users" for 127.0.0.1 at 2013-07-27 17:58:33 +0200
|
2033
|
+
Processing by LandingPage::UsersController#create as HTML
|
2034
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"YZHvZCm+i3ayLRzoiK552Y0MqaVBm3lX1rv3GN/JD6U=", "user"=>{"name"=>"", "email"=>"dewddew"}, "commit"=>"Subscribe"}
|
2035
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (26.3ms)
|
2036
|
+
Completed 500 Internal Server Error in 186ms
|
2037
|
+
|
2038
|
+
ActionView::Template::Error (undefined local variable or method `errors' for #<#<Class:0x00000004560078>:0x0000000455d8c8>):
|
2039
|
+
11: - if defined? @errors
|
2040
|
+
12: p Holaaaaaaaaaaaaa
|
2041
|
+
13: ul.message.message-error
|
2042
|
+
14: - errors.each do |attr, value|
|
2043
|
+
15: li = value
|
2044
|
+
/home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim:14:in `__home_marc_webs_projects_landing_page_app_views_landing_page_users_new_html_slim___3213773864101037748_34882840'
|
2045
|
+
actionpack (4.0.0) lib/action_view/template.rb:143:in `block in render'
|
2046
|
+
activesupport (4.0.0) lib/active_support/notifications.rb:161:in `instrument'
|
2047
|
+
actionpack (4.0.0) lib/action_view/template.rb:141:in `render'
|
2048
|
+
actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template'
|
2049
|
+
actionpack (4.0.0) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
2050
|
+
activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
|
2051
|
+
activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
2052
|
+
activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
|
2053
|
+
actionpack (4.0.0) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
2054
|
+
actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template'
|
2055
|
+
actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout'
|
2056
|
+
actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:47:in `render_template'
|
2057
|
+
actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:17:in `render'
|
2058
|
+
actionpack (4.0.0) lib/action_view/renderer/renderer.rb:42:in `render_template'
|
2059
|
+
actionpack (4.0.0) lib/action_view/renderer/renderer.rb:23:in `render'
|
2060
|
+
actionpack (4.0.0) lib/abstract_controller/rendering.rb:127:in `_render_template'
|
2061
|
+
actionpack (4.0.0) lib/action_controller/metal/streaming.rb:219:in `_render_template'
|
2062
|
+
actionpack (4.0.0) lib/abstract_controller/rendering.rb:120:in `render_to_body'
|
2063
|
+
actionpack (4.0.0) lib/action_controller/metal/rendering.rb:33:in `render_to_body'
|
2064
|
+
actionpack (4.0.0) lib/action_controller/metal/renderers.rb:26:in `render_to_body'
|
2065
|
+
actionpack (4.0.0) lib/abstract_controller/rendering.rb:97:in `render'
|
2066
|
+
actionpack (4.0.0) lib/action_controller/metal/rendering.rb:16:in `render'
|
2067
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
|
2068
|
+
activesupport (4.0.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
|
2069
|
+
/usr/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
|
2070
|
+
activesupport (4.0.0) lib/active_support/core_ext/benchmark.rb:12:in `ms'
|
2071
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
|
2072
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
|
2073
|
+
activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
|
2074
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:40:in `render'
|
2075
|
+
/home/marc/webs/projects/landing_page/app/controllers/landing_page/users_controller.rb:14:in `create'
|
2076
|
+
actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
2077
|
+
actionpack (4.0.0) lib/abstract_controller/base.rb:189:in `process_action'
|
2078
|
+
actionpack (4.0.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
2079
|
+
actionpack (4.0.0) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
2080
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__1577633682949477246__process_action__callbacks'
|
2081
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
2082
|
+
actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
2083
|
+
actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
2084
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
2085
|
+
activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
|
2086
|
+
activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
2087
|
+
activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
|
2088
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
2089
|
+
actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
|
2090
|
+
activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
2091
|
+
actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process'
|
2092
|
+
actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process'
|
2093
|
+
actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch'
|
2094
|
+
actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
2095
|
+
actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action'
|
2096
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
|
2097
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
|
2098
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
|
2099
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
2100
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
|
2101
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
|
2102
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
|
2103
|
+
railties (4.0.0) lib/rails/engine.rb:511:in `call'
|
2104
|
+
railties (4.0.0) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
2105
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
2106
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
|
2107
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
|
2108
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
|
2109
|
+
rack (1.5.2) lib/rack/etag.rb:23:in `call'
|
2110
|
+
rack (1.5.2) lib/rack/conditionalget.rb:35:in `call'
|
2111
|
+
rack (1.5.2) lib/rack/head.rb:11:in `call'
|
2112
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
2113
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call'
|
2114
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
|
2115
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
|
2116
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call'
|
2117
|
+
activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call'
|
2118
|
+
activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
|
2119
|
+
activerecord (4.0.0) lib/active_record/migration.rb:369:in `call'
|
2120
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
2121
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__932654429453131663__call__callbacks'
|
2122
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
2123
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
2124
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call'
|
2125
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
2126
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
2127
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
2128
|
+
railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
|
2129
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
|
2130
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
|
2131
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
|
2132
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
|
2133
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
|
2134
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
2135
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
2136
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
2137
|
+
activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
|
2138
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
2139
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
|
2140
|
+
railties (4.0.0) lib/rails/engine.rb:511:in `call'
|
2141
|
+
railties (4.0.0) lib/rails/application.rb:97:in `call'
|
2142
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
2143
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
2144
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
2145
|
+
/usr/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
2146
|
+
/usr/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
2147
|
+
/usr/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
2148
|
+
|
2149
|
+
|
2150
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.7ms)
|
2151
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.4ms)
|
2152
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (18.3ms)
|
2153
|
+
|
2154
|
+
|
2155
|
+
Started POST "/landing_page/users" for 127.0.0.1 at 2013-07-27 17:58:47 +0200
|
2156
|
+
Processing by LandingPage::UsersController#create as HTML
|
2157
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"YZHvZCm+i3ayLRzoiK552Y0MqaVBm3lX1rv3GN/JD6U=", "user"=>{"name"=>"", "email"=>"dewddew"}, "commit"=>"Subscribe"}
|
2158
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (21.9ms)
|
2159
|
+
Completed 200 OK in 47ms (Views: 34.9ms | ActiveRecord: 0.0ms)
|
2160
|
+
|
2161
|
+
|
2162
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 17:58:48 +0200
|
2163
|
+
|
2164
|
+
|
2165
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 17:58:48 +0200
|
2166
|
+
|
2167
|
+
|
2168
|
+
Started GET "/landing_page" for 127.0.0.1 at 2013-07-27 18:00:42 +0200
|
2169
|
+
Processing by LandingPage::UsersController#new as HTML
|
2170
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (12.0ms)
|
2171
|
+
Completed 200 OK in 18ms (Views: 18.0ms | ActiveRecord: 0.0ms)
|
2172
|
+
|
2173
|
+
|
2174
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 18:00:42 +0200
|
2175
|
+
|
2176
|
+
|
2177
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 18:00:42 +0200
|
2178
|
+
|
2179
|
+
|
2180
|
+
Started POST "/landing_page/users" for 127.0.0.1 at 2013-07-27 18:03:17 +0200
|
2181
|
+
Processing by LandingPage::UsersController#create as HTML
|
2182
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"YZHvZCm+i3ayLRzoiK552Y0MqaVBm3lX1rv3GN/JD6U=", "user"=>{"name"=>"", "email"=>"cram1010@gmail.com"}, "commit"=>"Subscribe"}
|
2183
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
2184
|
+
[1m[35mSQL (83.2ms)[0m INSERT INTO "landing_page_users" ("created_at", "email", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sat, 27 Jul 2013 16:03:18 UTC +00:00], ["email", "cram1010@gmail.com"], ["name", ""], ["updated_at", Sat, 27 Jul 2013 16:03:18 UTC +00:00]]
|
2185
|
+
[1m[36m (176.8ms)[0m [1mcommit transaction[0m
|
2186
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (6.1ms)
|
2187
|
+
Completed 200 OK in 331ms (Views: 20.7ms | ActiveRecord: 262.9ms)
|
2188
|
+
|
2189
|
+
|
2190
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 18:03:18 +0200
|
2191
|
+
|
2192
|
+
|
2193
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 18:03:18 +0200
|
2194
|
+
|
2195
|
+
|
2196
|
+
Started GET "/landing_page" for 127.0.0.1 at 2013-07-27 18:03:22 +0200
|
2197
|
+
Processing by LandingPage::UsersController#new as HTML
|
2198
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (5.5ms)
|
2199
|
+
Completed 200 OK in 24ms (Views: 13.1ms | ActiveRecord: 0.0ms)
|
2200
|
+
|
2201
|
+
|
2202
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 18:03:22 +0200
|
2203
|
+
|
2204
|
+
|
2205
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 18:03:22 +0200
|
2206
|
+
|
2207
|
+
|
2208
|
+
Started GET "/landing_page" for 127.0.0.1 at 2013-07-27 18:04:17 +0200
|
2209
|
+
Processing by LandingPage::UsersController#new as HTML
|
2210
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (7.7ms)
|
2211
|
+
Completed 200 OK in 23ms (Views: 21.0ms | ActiveRecord: 0.0ms)
|
2212
|
+
|
2213
|
+
|
2214
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 18:04:18 +0200
|
2215
|
+
|
2216
|
+
|
2217
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 18:04:18 +0200
|
2218
|
+
|
2219
|
+
|
2220
|
+
Started POST "/landing_page/users" for 127.0.0.1 at 2013-07-27 18:04:20 +0200
|
2221
|
+
Processing by LandingPage::UsersController#create as HTML
|
2222
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"YZHvZCm+i3ayLRzoiK552Y0MqaVBm3lX1rv3GN/JD6U=", "user"=>{"name"=>"", "email"=>"cram1010@gmail.com"}, "commit"=>"Subscribe"}
|
2223
|
+
[1m[35m (0.4ms)[0m begin transaction
|
2224
|
+
[1m[36mSQL (2.4ms)[0m [1mINSERT INTO "landing_page_users" ("created_at", "email", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sat, 27 Jul 2013 16:04:20 UTC +00:00], ["email", "cram1010@gmail.com"], ["name", ""], ["updated_at", Sat, 27 Jul 2013 16:04:20 UTC +00:00]]
|
2225
|
+
SQLite3::ConstraintException: column email is not unique: INSERT INTO "landing_page_users" ("created_at", "email", "name", "updated_at") VALUES (?, ?, ?, ?)
|
2226
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
2227
|
+
Completed 500 Internal Server Error in 84ms
|
2228
|
+
|
2229
|
+
ActiveRecord::RecordNotUnique (SQLite3::ConstraintException: column email is not unique: INSERT INTO "landing_page_users" ("created_at", "email", "name", "updated_at") VALUES (?, ?, ?, ?)):
|
2230
|
+
sqlite3 (1.3.7) lib/sqlite3/statement.rb:108:in `step'
|
2231
|
+
sqlite3 (1.3.7) lib/sqlite3/statement.rb:108:in `block in each'
|
2232
|
+
sqlite3 (1.3.7) lib/sqlite3/statement.rb:107:in `loop'
|
2233
|
+
sqlite3 (1.3.7) lib/sqlite3/statement.rb:107:in `each'
|
2234
|
+
activerecord (4.0.0) lib/active_record/connection_adapters/sqlite3_adapter.rb:313:in `to_a'
|
2235
|
+
activerecord (4.0.0) lib/active_record/connection_adapters/sqlite3_adapter.rb:313:in `block in exec_query'
|
2236
|
+
activerecord (4.0.0) lib/active_record/connection_adapters/abstract_adapter.rb:425:in `block in log'
|
2237
|
+
activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
2238
|
+
activerecord (4.0.0) lib/active_record/connection_adapters/abstract_adapter.rb:420:in `log'
|
2239
|
+
activerecord (4.0.0) lib/active_record/connection_adapters/sqlite3_adapter.rb:292:in `exec_query'
|
2240
|
+
activerecord (4.0.0) lib/active_record/connection_adapters/abstract/database_statements.rb:69:in `exec_insert'
|
2241
|
+
activerecord (4.0.0) lib/active_record/connection_adapters/abstract/database_statements.rb:96:in `insert'
|
2242
|
+
activerecord (4.0.0) lib/active_record/connection_adapters/abstract/query_cache.rb:14:in `insert'
|
2243
|
+
activerecord (4.0.0) lib/active_record/relation.rb:76:in `insert'
|
2244
|
+
activerecord (4.0.0) lib/active_record/persistence.rb:498:in `create_record'
|
2245
|
+
activerecord (4.0.0) lib/active_record/attribute_methods/dirty.rb:78:in `create_record'
|
2246
|
+
activerecord (4.0.0) lib/active_record/callbacks.rb:303:in `block in create_record'
|
2247
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__400092277477067781__create__callbacks'
|
2248
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
2249
|
+
activerecord (4.0.0) lib/active_record/callbacks.rb:303:in `create_record'
|
2250
|
+
activerecord (4.0.0) lib/active_record/timestamp.rb:57:in `create_record'
|
2251
|
+
activerecord (4.0.0) lib/active_record/persistence.rb:466:in `create_or_update'
|
2252
|
+
activerecord (4.0.0) lib/active_record/callbacks.rb:299:in `block in create_or_update'
|
2253
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__400092277477067781__save__callbacks'
|
2254
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
2255
|
+
activerecord (4.0.0) lib/active_record/callbacks.rb:299:in `create_or_update'
|
2256
|
+
activerecord (4.0.0) lib/active_record/persistence.rb:106:in `save'
|
2257
|
+
activerecord (4.0.0) lib/active_record/validations.rb:51:in `save'
|
2258
|
+
activerecord (4.0.0) lib/active_record/attribute_methods/dirty.rb:32:in `save'
|
2259
|
+
activerecord (4.0.0) lib/active_record/transactions.rb:270:in `block (2 levels) in save'
|
2260
|
+
activerecord (4.0.0) lib/active_record/transactions.rb:326:in `block in with_transaction_returning_status'
|
2261
|
+
activerecord (4.0.0) lib/active_record/connection_adapters/abstract/database_statements.rb:202:in `block in transaction'
|
2262
|
+
activerecord (4.0.0) lib/active_record/connection_adapters/abstract/database_statements.rb:210:in `within_new_transaction'
|
2263
|
+
activerecord (4.0.0) lib/active_record/connection_adapters/abstract/database_statements.rb:202:in `transaction'
|
2264
|
+
activerecord (4.0.0) lib/active_record/transactions.rb:209:in `transaction'
|
2265
|
+
activerecord (4.0.0) lib/active_record/transactions.rb:323:in `with_transaction_returning_status'
|
2266
|
+
activerecord (4.0.0) lib/active_record/transactions.rb:270:in `block in save'
|
2267
|
+
activerecord (4.0.0) lib/active_record/transactions.rb:281:in `rollback_active_record_state!'
|
2268
|
+
activerecord (4.0.0) lib/active_record/transactions.rb:269:in `save'
|
2269
|
+
/home/marc/webs/projects/landing_page/app/controllers/landing_page/users_controller.rb:10:in `create'
|
2270
|
+
actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
2271
|
+
actionpack (4.0.0) lib/abstract_controller/base.rb:189:in `process_action'
|
2272
|
+
actionpack (4.0.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
2273
|
+
actionpack (4.0.0) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
2274
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__1577633682949477246__process_action__callbacks'
|
2275
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
2276
|
+
actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
2277
|
+
actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
2278
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
2279
|
+
activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
|
2280
|
+
activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
2281
|
+
activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
|
2282
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
2283
|
+
actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
|
2284
|
+
activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
2285
|
+
actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process'
|
2286
|
+
actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process'
|
2287
|
+
actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch'
|
2288
|
+
actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
2289
|
+
actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action'
|
2290
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
|
2291
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
|
2292
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
|
2293
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
2294
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
|
2295
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
|
2296
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
|
2297
|
+
railties (4.0.0) lib/rails/engine.rb:511:in `call'
|
2298
|
+
railties (4.0.0) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
2299
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
2300
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
|
2301
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
|
2302
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
|
2303
|
+
rack (1.5.2) lib/rack/etag.rb:23:in `call'
|
2304
|
+
rack (1.5.2) lib/rack/conditionalget.rb:35:in `call'
|
2305
|
+
rack (1.5.2) lib/rack/head.rb:11:in `call'
|
2306
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
2307
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call'
|
2308
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
|
2309
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
|
2310
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call'
|
2311
|
+
activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call'
|
2312
|
+
activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
|
2313
|
+
activerecord (4.0.0) lib/active_record/migration.rb:369:in `call'
|
2314
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
2315
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__932654429453131663__call__callbacks'
|
2316
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
2317
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
2318
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call'
|
2319
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
2320
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
2321
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
2322
|
+
railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
|
2323
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
|
2324
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
|
2325
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
|
2326
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
|
2327
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
|
2328
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
2329
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
2330
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
2331
|
+
activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
|
2332
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
2333
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
|
2334
|
+
railties (4.0.0) lib/rails/engine.rb:511:in `call'
|
2335
|
+
railties (4.0.0) lib/rails/application.rb:97:in `call'
|
2336
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
2337
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
2338
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
2339
|
+
/usr/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
2340
|
+
/usr/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
2341
|
+
/usr/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
2342
|
+
|
2343
|
+
|
2344
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.3ms)
|
2345
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.6ms)
|
2346
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.1ms)
|
2347
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (24.8ms)
|
2348
|
+
|
2349
|
+
|
2350
|
+
Started POST "/landing_page/users" for 127.0.0.1 at 2013-07-27 18:04:35 +0200
|
2351
|
+
Processing by LandingPage::UsersController#create as HTML
|
2352
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"YZHvZCm+i3ayLRzoiK552Y0MqaVBm3lX1rv3GN/JD6U=", "user"=>{"name"=>"", "email"=>"marc@lamarciana.com"}, "commit"=>"Subscribe"}
|
2353
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
2354
|
+
[1m[35mSQL (1.8ms)[0m INSERT INTO "landing_page_users" ("created_at", "email", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sat, 27 Jul 2013 16:04:35 UTC +00:00], ["email", "marc@lamarciana.com"], ["name", ""], ["updated_at", Sat, 27 Jul 2013 16:04:35 UTC +00:00]]
|
2355
|
+
[1m[36m (155.3ms)[0m [1mcommit transaction[0m
|
2356
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (3.0ms)
|
2357
|
+
Completed 200 OK in 182ms (Views: 8.7ms | ActiveRecord: 157.4ms)
|
2358
|
+
|
2359
|
+
|
2360
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 18:04:35 +0200
|
2361
|
+
|
2362
|
+
|
2363
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 18:04:35 +0200
|
2364
|
+
|
2365
|
+
|
2366
|
+
Started GET "/landing_page" for 127.0.0.1 at 2013-07-27 18:04:38 +0200
|
2367
|
+
Processing by LandingPage::UsersController#new as HTML
|
2368
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (2.9ms)
|
2369
|
+
Completed 200 OK in 9ms (Views: 8.4ms | ActiveRecord: 0.0ms)
|
2370
|
+
|
2371
|
+
|
2372
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 18:04:38 +0200
|
2373
|
+
|
2374
|
+
|
2375
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 18:04:38 +0200
|
2376
|
+
|
2377
|
+
|
2378
|
+
Started POST "/landing_page/users" for 127.0.0.1 at 2013-07-27 18:05:25 +0200
|
2379
|
+
Processing by LandingPage::UsersController#create as HTML
|
2380
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"YZHvZCm+i3ayLRzoiK552Y0MqaVBm3lX1rv3GN/JD6U=", "user"=>{"name"=>"", "email"=>"cram1010@gmail.com"}, "commit"=>"Subscribe"}
|
2381
|
+
[1m[35m (0.3ms)[0m begin transaction
|
2382
|
+
[1m[36mSQL (2.4ms)[0m [1mINSERT INTO "landing_page_users" ("created_at", "email", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sat, 27 Jul 2013 16:05:25 UTC +00:00], ["email", "cram1010@gmail.com"], ["name", ""], ["updated_at", Sat, 27 Jul 2013 16:05:25 UTC +00:00]]
|
2383
|
+
SQLite3::ConstraintException: column email is not unique: INSERT INTO "landing_page_users" ("created_at", "email", "name", "updated_at") VALUES (?, ?, ?, ?)
|
2384
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
2385
|
+
Completed 500 Internal Server Error in 11ms
|
2386
|
+
|
2387
|
+
ActiveRecord::RecordNotUnique (SQLite3::ConstraintException: column email is not unique: INSERT INTO "landing_page_users" ("created_at", "email", "name", "updated_at") VALUES (?, ?, ?, ?)):
|
2388
|
+
sqlite3 (1.3.7) lib/sqlite3/statement.rb:108:in `step'
|
2389
|
+
sqlite3 (1.3.7) lib/sqlite3/statement.rb:108:in `block in each'
|
2390
|
+
sqlite3 (1.3.7) lib/sqlite3/statement.rb:107:in `loop'
|
2391
|
+
sqlite3 (1.3.7) lib/sqlite3/statement.rb:107:in `each'
|
2392
|
+
activerecord (4.0.0) lib/active_record/connection_adapters/sqlite3_adapter.rb:313:in `to_a'
|
2393
|
+
activerecord (4.0.0) lib/active_record/connection_adapters/sqlite3_adapter.rb:313:in `block in exec_query'
|
2394
|
+
activerecord (4.0.0) lib/active_record/connection_adapters/abstract_adapter.rb:425:in `block in log'
|
2395
|
+
activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
2396
|
+
activerecord (4.0.0) lib/active_record/connection_adapters/abstract_adapter.rb:420:in `log'
|
2397
|
+
activerecord (4.0.0) lib/active_record/connection_adapters/sqlite3_adapter.rb:292:in `exec_query'
|
2398
|
+
activerecord (4.0.0) lib/active_record/connection_adapters/abstract/database_statements.rb:69:in `exec_insert'
|
2399
|
+
activerecord (4.0.0) lib/active_record/connection_adapters/abstract/database_statements.rb:96:in `insert'
|
2400
|
+
activerecord (4.0.0) lib/active_record/connection_adapters/abstract/query_cache.rb:14:in `insert'
|
2401
|
+
activerecord (4.0.0) lib/active_record/relation.rb:76:in `insert'
|
2402
|
+
activerecord (4.0.0) lib/active_record/persistence.rb:498:in `create_record'
|
2403
|
+
activerecord (4.0.0) lib/active_record/attribute_methods/dirty.rb:78:in `create_record'
|
2404
|
+
activerecord (4.0.0) lib/active_record/callbacks.rb:303:in `block in create_record'
|
2405
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__400092277477067781__create__callbacks'
|
2406
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
2407
|
+
activerecord (4.0.0) lib/active_record/callbacks.rb:303:in `create_record'
|
2408
|
+
activerecord (4.0.0) lib/active_record/timestamp.rb:57:in `create_record'
|
2409
|
+
activerecord (4.0.0) lib/active_record/persistence.rb:466:in `create_or_update'
|
2410
|
+
activerecord (4.0.0) lib/active_record/callbacks.rb:299:in `block in create_or_update'
|
2411
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__400092277477067781__save__callbacks'
|
2412
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
2413
|
+
activerecord (4.0.0) lib/active_record/callbacks.rb:299:in `create_or_update'
|
2414
|
+
activerecord (4.0.0) lib/active_record/persistence.rb:106:in `save'
|
2415
|
+
activerecord (4.0.0) lib/active_record/validations.rb:51:in `save'
|
2416
|
+
activerecord (4.0.0) lib/active_record/attribute_methods/dirty.rb:32:in `save'
|
2417
|
+
activerecord (4.0.0) lib/active_record/transactions.rb:270:in `block (2 levels) in save'
|
2418
|
+
activerecord (4.0.0) lib/active_record/transactions.rb:326:in `block in with_transaction_returning_status'
|
2419
|
+
activerecord (4.0.0) lib/active_record/connection_adapters/abstract/database_statements.rb:202:in `block in transaction'
|
2420
|
+
activerecord (4.0.0) lib/active_record/connection_adapters/abstract/database_statements.rb:210:in `within_new_transaction'
|
2421
|
+
activerecord (4.0.0) lib/active_record/connection_adapters/abstract/database_statements.rb:202:in `transaction'
|
2422
|
+
activerecord (4.0.0) lib/active_record/transactions.rb:209:in `transaction'
|
2423
|
+
activerecord (4.0.0) lib/active_record/transactions.rb:323:in `with_transaction_returning_status'
|
2424
|
+
activerecord (4.0.0) lib/active_record/transactions.rb:270:in `block in save'
|
2425
|
+
activerecord (4.0.0) lib/active_record/transactions.rb:281:in `rollback_active_record_state!'
|
2426
|
+
activerecord (4.0.0) lib/active_record/transactions.rb:269:in `save'
|
2427
|
+
/home/marc/webs/projects/landing_page/app/controllers/landing_page/users_controller.rb:10:in `create'
|
2428
|
+
actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
2429
|
+
actionpack (4.0.0) lib/abstract_controller/base.rb:189:in `process_action'
|
2430
|
+
actionpack (4.0.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
2431
|
+
actionpack (4.0.0) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
2432
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__1577633682949477246__process_action__callbacks'
|
2433
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
2434
|
+
actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
2435
|
+
actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
2436
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
2437
|
+
activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
|
2438
|
+
activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
2439
|
+
activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
|
2440
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
2441
|
+
actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
|
2442
|
+
activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
2443
|
+
actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process'
|
2444
|
+
actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process'
|
2445
|
+
actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch'
|
2446
|
+
actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
2447
|
+
actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action'
|
2448
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
|
2449
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
|
2450
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
|
2451
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
2452
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
|
2453
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
|
2454
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
|
2455
|
+
railties (4.0.0) lib/rails/engine.rb:511:in `call'
|
2456
|
+
railties (4.0.0) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
2457
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
2458
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
|
2459
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
|
2460
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
|
2461
|
+
rack (1.5.2) lib/rack/etag.rb:23:in `call'
|
2462
|
+
rack (1.5.2) lib/rack/conditionalget.rb:35:in `call'
|
2463
|
+
rack (1.5.2) lib/rack/head.rb:11:in `call'
|
2464
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
2465
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call'
|
2466
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
|
2467
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
|
2468
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call'
|
2469
|
+
activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call'
|
2470
|
+
activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
|
2471
|
+
activerecord (4.0.0) lib/active_record/migration.rb:369:in `call'
|
2472
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
2473
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__932654429453131663__call__callbacks'
|
2474
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
2475
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
2476
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call'
|
2477
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
2478
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
2479
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
2480
|
+
railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
|
2481
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
|
2482
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
|
2483
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
|
2484
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
|
2485
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
|
2486
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
2487
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
2488
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
2489
|
+
activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
|
2490
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
2491
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
|
2492
|
+
railties (4.0.0) lib/rails/engine.rb:511:in `call'
|
2493
|
+
railties (4.0.0) lib/rails/application.rb:97:in `call'
|
2494
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
2495
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
2496
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
2497
|
+
/usr/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
2498
|
+
/usr/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
2499
|
+
/usr/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
2500
|
+
|
2501
|
+
|
2502
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.7ms)
|
2503
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (5.7ms)
|
2504
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (6.8ms)
|
2505
|
+
Rendered /var/lib/gems/1.9.1/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (55.3ms)
|
2506
|
+
|
2507
|
+
|
2508
|
+
Started GET "/landing_page/" for 127.0.0.1 at 2013-07-27 18:13:44 +0200
|
2509
|
+
Processing by LandingPage::UsersController#new as HTML
|
2510
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (160.5ms)
|
2511
|
+
Completed 200 OK in 262ms (Views: 261.3ms | ActiveRecord: 0.0ms)
|
2512
|
+
|
2513
|
+
|
2514
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 18:13:46 +0200
|
2515
|
+
|
2516
|
+
|
2517
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 18:13:46 +0200
|
2518
|
+
|
2519
|
+
|
2520
|
+
Started POST "/landing_page/users" for 127.0.0.1 at 2013-07-27 18:13:51 +0200
|
2521
|
+
Processing by LandingPage::UsersController#create as HTML
|
2522
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"YZHvZCm+i3ayLRzoiK552Y0MqaVBm3lX1rv3GN/JD6U=", "user"=>{"name"=>"", "email"=>"cram1010@gmail.com"}, "commit"=>"Subscribe"}
|
2523
|
+
[1m[36mLandingPage::User Exists (0.4ms)[0m [1mSELECT 1 AS one FROM "landing_page_users" WHERE "landing_page_users"."email" = 'cram1010@gmail.com' LIMIT 1[0m
|
2524
|
+
Rendered /home/marc/webs/projects/landing_page/app/views/landing_page/users/new.html.slim within layouts/landing_page/application (3.7ms)
|
2525
|
+
Completed 200 OK in 269ms (Views: 9.6ms | ActiveRecord: 117.3ms)
|
2526
|
+
|
2527
|
+
|
2528
|
+
Started GET "/assets/landing_page/application.css?body=1" for 127.0.0.1 at 2013-07-27 18:13:52 +0200
|
2529
|
+
|
2530
|
+
|
2531
|
+
Started GET "/assets/landing_page/application.js?body=1" for 127.0.0.1 at 2013-07-27 18:13:52 +0200
|
2532
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2533
|
+
Migrating to AddLocaleToLandingPageUsers (20130730071415)
|
2534
|
+
[1m[35m (0.2ms)[0m begin transaction
|
2535
|
+
[1m[36m (1.0ms)[0m [1mALTER TABLE "landing_page_users" ADD "locale" varchar(255)[0m
|
2536
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20130730071415"]]
|
2537
|
+
[1m[36m (220.6ms)[0m [1mcommit transaction[0m
|
2538
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.8ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
2539
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2540
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.3ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
2541
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2542
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.3ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|