contact_page 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +15 -0
- data/MIT-LICENSE +20 -0
- data/README.rdoc +3 -0
- data/Rakefile +40 -0
- data/app/assets/javascripts/contact_page/application.js +15 -0
- data/app/assets/javascripts/contact_page/contact_messages.js +2 -0
- data/app/assets/stylesheets/contact_page/application.css +13 -0
- data/app/assets/stylesheets/contact_page/contact_messages.css +4 -0
- data/app/controllers/contact_page/application_controller.rb +4 -0
- data/app/controllers/contact_page/contact_messages_controller.rb +26 -0
- data/app/helpers/contact_page/application_helper.rb +4 -0
- data/app/helpers/contact_page/contact_messages_helper.rb +4 -0
- data/app/models/contact_page/contact_message.rb +11 -0
- data/app/views/contact_page/contact_messages/index.html.erb +39 -0
- data/app/views/layouts/contact_page/application.html.erb +14 -0
- data/config/routes.rb +3 -0
- data/db/migrate/20130503165641_create_contact_page_contact_messages.rb +13 -0
- data/lib/contact_page.rb +4 -0
- data/lib/contact_page/engine.rb +5 -0
- data/lib/contact_page/version.rb +3 -0
- data/lib/tasks/contact_page_tasks.rake +4 -0
- data/test/contact_page_test.rb +7 -0
- data/test/dummy/README.rdoc +261 -0
- data/test/dummy/Rakefile +7 -0
- data/test/dummy/app/assets/javascripts/application.js +15 -0
- data/test/dummy/app/assets/stylesheets/application.css +13 -0
- data/test/dummy/app/controllers/application_controller.rb +3 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/config/application.rb +59 -0
- data/test/dummy/config/boot.rb +10 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +37 -0
- data/test/dummy/config/environments/production.rb +67 -0
- data/test/dummy/config/environments/test.rb +37 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/inflections.rb +15 -0
- data/test/dummy/config/initializers/mime_types.rb +5 -0
- data/test/dummy/config/initializers/secret_token.rb +7 -0
- data/test/dummy/config/initializers/session_store.rb +8 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +5 -0
- data/test/dummy/config/routes.rb +4 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/schema.rb +26 -0
- data/test/dummy/log/development.log +936 -0
- data/test/dummy/public/404.html +26 -0
- data/test/dummy/public/422.html +26 -0
- data/test/dummy/public/500.html +25 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/script/rails +6 -0
- data/test/dummy/tmp/cache/assets/C44/150/sprockets%2F2022343c80844b68629ac03649f05aa5 +0 -0
- data/test/dummy/tmp/cache/assets/C58/9B0/sprockets%2F176f7888026a610920f7f30713bc577e +0 -0
- data/test/dummy/tmp/cache/assets/C81/370/sprockets%2F14b543a4c3bd12c021131101bdb18277 +0 -0
- data/test/dummy/tmp/cache/assets/CAD/350/sprockets%2Fcba8275b578257955c019c03802b5c3d +0 -0
- data/test/dummy/tmp/cache/assets/CD9/1C0/sprockets%2F90beed3420fdc50f1c079509d6223547 +0 -0
- data/test/dummy/tmp/cache/assets/CDF/BB0/sprockets%2F199007472b7dec5af2f20066724ebb69 +0 -0
- data/test/dummy/tmp/cache/assets/D0B/FD0/sprockets%2Fcb284d7998fc458178a9ef368ec97771 +0 -0
- data/test/dummy/tmp/cache/assets/D44/FB0/sprockets%2F127ed6caf0dd49d4786c9c8147442a2c +0 -0
- data/test/dummy/tmp/cache/assets/D79/770/sprockets%2F5d9c647bc7b31996eb607c03444cffbf +0 -0
- data/test/dummy/tmp/cache/assets/D8A/A50/sprockets%2Fac9d2c29ba54a630b04de109a5cee920 +0 -0
- data/test/dummy/tmp/cache/assets/DAA/9C0/sprockets%2Fc8ad6f6fe27c60f91cce0859b46c3b64 +0 -0
- data/test/dummy/tmp/cache/assets/DCC/4F0/sprockets%2F2f4510ec0caafd88c3ff8721ac5b689a +0 -0
- data/test/dummy/tmp/cache/assets/DE7/450/sprockets%2Fe7d109ad7d4aad610fa1b0bfb280b77b +0 -0
- data/test/dummy/tmp/cache/assets/E1B/1B0/sprockets%2Fa8f230faf2dd43bfe1eca2d050f395ac +0 -0
- data/test/fixtures/contact_page/contact_messages.yml +15 -0
- data/test/functional/contact_page/contact_messages_controller_test.rb +11 -0
- data/test/integration/navigation_test.rb +10 -0
- data/test/test_helper.rb +15 -0
- data/test/unit/contact_page/contact_message_test.rb +9 -0
- data/test/unit/helpers/contact_page/contact_messages_helper_test.rb +6 -0
- metadata +195 -0
data/test/dummy/Rakefile
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
#!/usr/bin/env rake
|
2
|
+
# Add your own tasks in files placed in lib/tasks ending in .rake,
|
3
|
+
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
|
4
|
+
|
5
|
+
require File.expand_path('../config/application', __FILE__)
|
6
|
+
|
7
|
+
Dummy::Application.load_tasks
|
@@ -0,0 +1,15 @@
|
|
1
|
+
// This is a manifest file that'll be compiled into application.js, which will include all the files
|
2
|
+
// listed below.
|
3
|
+
//
|
4
|
+
// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
|
5
|
+
// or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path.
|
6
|
+
//
|
7
|
+
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
|
8
|
+
// the compiled file.
|
9
|
+
//
|
10
|
+
// WARNING: THE FIRST BLANK LINE MARKS THE END OF WHAT'S TO BE PROCESSED, ANY BLANK LINE SHOULD
|
11
|
+
// GO AFTER THE REQUIRES BELOW.
|
12
|
+
//
|
13
|
+
//= require jquery
|
14
|
+
//= require jquery_ujs
|
15
|
+
//= require_tree .
|
@@ -0,0 +1,13 @@
|
|
1
|
+
/*
|
2
|
+
* This is a manifest file that'll be compiled into application.css, which will include all the files
|
3
|
+
* listed below.
|
4
|
+
*
|
5
|
+
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
|
6
|
+
* or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
|
7
|
+
*
|
8
|
+
* You're free to add application-wide styles to this file and they'll appear at the top of the
|
9
|
+
* compiled file, but it's generally better to create a new file per style scope.
|
10
|
+
*
|
11
|
+
*= require_self
|
12
|
+
*= require_tree .
|
13
|
+
*/
|
@@ -0,0 +1,59 @@
|
|
1
|
+
require File.expand_path('../boot', __FILE__)
|
2
|
+
|
3
|
+
require 'rails/all'
|
4
|
+
|
5
|
+
Bundler.require(*Rails.groups)
|
6
|
+
require "contact_page"
|
7
|
+
|
8
|
+
module Dummy
|
9
|
+
class Application < Rails::Application
|
10
|
+
# Settings in config/environments/* take precedence over those specified here.
|
11
|
+
# Application configuration should go into files in config/initializers
|
12
|
+
# -- all .rb files in that directory are automatically loaded.
|
13
|
+
|
14
|
+
# Custom directories with classes and modules you want to be autoloadable.
|
15
|
+
# config.autoload_paths += %W(#{config.root}/extras)
|
16
|
+
|
17
|
+
# Only load the plugins named here, in the order given (default is alphabetical).
|
18
|
+
# :all can be used as a placeholder for all plugins not explicitly named.
|
19
|
+
# config.plugins = [ :exception_notification, :ssl_requirement, :all ]
|
20
|
+
|
21
|
+
# Activate observers that should always be running.
|
22
|
+
# config.active_record.observers = :cacher, :garbage_collector, :forum_observer
|
23
|
+
|
24
|
+
# Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
|
25
|
+
# Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
|
26
|
+
# config.time_zone = 'Central Time (US & Canada)'
|
27
|
+
|
28
|
+
# The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
|
29
|
+
# config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
|
30
|
+
# config.i18n.default_locale = :de
|
31
|
+
|
32
|
+
# Configure the default encoding used in templates for Ruby 1.9.
|
33
|
+
config.encoding = "utf-8"
|
34
|
+
|
35
|
+
# Configure sensitive parameters which will be filtered from the log file.
|
36
|
+
config.filter_parameters += [:password]
|
37
|
+
|
38
|
+
# Enable escaping HTML in JSON.
|
39
|
+
config.active_support.escape_html_entities_in_json = true
|
40
|
+
|
41
|
+
# Use SQL instead of Active Record's schema dumper when creating the database.
|
42
|
+
# This is necessary if your schema can't be completely dumped by the schema dumper,
|
43
|
+
# like if you have constraints or database-specific column types
|
44
|
+
# config.active_record.schema_format = :sql
|
45
|
+
|
46
|
+
# Enforce whitelist mode for mass assignment.
|
47
|
+
# This will create an empty whitelist of attributes available for mass-assignment for all models
|
48
|
+
# in your app. As such, your models will need to explicitly whitelist or blacklist accessible
|
49
|
+
# parameters by using an attr_accessible or attr_protected declaration.
|
50
|
+
config.active_record.whitelist_attributes = true
|
51
|
+
|
52
|
+
# Enable the asset pipeline
|
53
|
+
config.assets.enabled = true
|
54
|
+
|
55
|
+
# Version of your assets, change this if you want to expire all your assets
|
56
|
+
config.assets.version = '1.0'
|
57
|
+
end
|
58
|
+
end
|
59
|
+
|
@@ -0,0 +1,25 @@
|
|
1
|
+
# SQLite version 3.x
|
2
|
+
# gem install sqlite3
|
3
|
+
#
|
4
|
+
# Ensure the SQLite 3 gem is defined in your Gemfile
|
5
|
+
# gem 'sqlite3'
|
6
|
+
development:
|
7
|
+
adapter: sqlite3
|
8
|
+
database: db/development.sqlite3
|
9
|
+
pool: 5
|
10
|
+
timeout: 5000
|
11
|
+
|
12
|
+
# Warning: The database defined as "test" will be erased and
|
13
|
+
# re-generated from your development database when you run "rake".
|
14
|
+
# Do not set this db to the same as development or production.
|
15
|
+
test:
|
16
|
+
adapter: sqlite3
|
17
|
+
database: db/test.sqlite3
|
18
|
+
pool: 5
|
19
|
+
timeout: 5000
|
20
|
+
|
21
|
+
production:
|
22
|
+
adapter: sqlite3
|
23
|
+
database: db/production.sqlite3
|
24
|
+
pool: 5
|
25
|
+
timeout: 5000
|
@@ -0,0 +1,37 @@
|
|
1
|
+
Dummy::Application.configure do
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb
|
3
|
+
|
4
|
+
# In the development environment your application's code is reloaded on
|
5
|
+
# every request. This slows down response time but is perfect for development
|
6
|
+
# since you don't have to restart the web server when you make code changes.
|
7
|
+
config.cache_classes = false
|
8
|
+
|
9
|
+
# Log error messages when you accidentally call methods on nil.
|
10
|
+
config.whiny_nils = true
|
11
|
+
|
12
|
+
# Show full error reports and disable caching
|
13
|
+
config.consider_all_requests_local = true
|
14
|
+
config.action_controller.perform_caching = false
|
15
|
+
|
16
|
+
# Don't care if the mailer can't send
|
17
|
+
config.action_mailer.raise_delivery_errors = false
|
18
|
+
|
19
|
+
# Print deprecation notices to the Rails logger
|
20
|
+
config.active_support.deprecation = :log
|
21
|
+
|
22
|
+
# Only use best-standards-support built into browsers
|
23
|
+
config.action_dispatch.best_standards_support = :builtin
|
24
|
+
|
25
|
+
# Raise exception on mass assignment protection for Active Record models
|
26
|
+
config.active_record.mass_assignment_sanitizer = :strict
|
27
|
+
|
28
|
+
# Log the query plan for queries taking more than this (works
|
29
|
+
# with SQLite, MySQL, and PostgreSQL)
|
30
|
+
config.active_record.auto_explain_threshold_in_seconds = 0.5
|
31
|
+
|
32
|
+
# Do not compress assets
|
33
|
+
config.assets.compress = false
|
34
|
+
|
35
|
+
# Expands the lines which load the assets
|
36
|
+
config.assets.debug = true
|
37
|
+
end
|
@@ -0,0 +1,67 @@
|
|
1
|
+
Dummy::Application.configure do
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb
|
3
|
+
|
4
|
+
# Code is not reloaded between requests
|
5
|
+
config.cache_classes = true
|
6
|
+
|
7
|
+
# Full error reports are disabled and caching is turned on
|
8
|
+
config.consider_all_requests_local = false
|
9
|
+
config.action_controller.perform_caching = true
|
10
|
+
|
11
|
+
# Disable Rails's static asset server (Apache or nginx will already do this)
|
12
|
+
config.serve_static_assets = false
|
13
|
+
|
14
|
+
# Compress JavaScripts and CSS
|
15
|
+
config.assets.compress = true
|
16
|
+
|
17
|
+
# Don't fallback to assets pipeline if a precompiled asset is missed
|
18
|
+
config.assets.compile = false
|
19
|
+
|
20
|
+
# Generate digests for assets URLs
|
21
|
+
config.assets.digest = true
|
22
|
+
|
23
|
+
# Defaults to nil and saved in location specified by config.assets.prefix
|
24
|
+
# config.assets.manifest = YOUR_PATH
|
25
|
+
|
26
|
+
# Specifies the header that your server uses for sending files
|
27
|
+
# config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
|
28
|
+
# config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
|
29
|
+
|
30
|
+
# Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
|
31
|
+
# config.force_ssl = true
|
32
|
+
|
33
|
+
# See everything in the log (default is :info)
|
34
|
+
# config.log_level = :debug
|
35
|
+
|
36
|
+
# Prepend all log lines with the following tags
|
37
|
+
# config.log_tags = [ :subdomain, :uuid ]
|
38
|
+
|
39
|
+
# Use a different logger for distributed setups
|
40
|
+
# config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
|
41
|
+
|
42
|
+
# Use a different cache store in production
|
43
|
+
# config.cache_store = :mem_cache_store
|
44
|
+
|
45
|
+
# Enable serving of images, stylesheets, and JavaScripts from an asset server
|
46
|
+
# config.action_controller.asset_host = "http://assets.example.com"
|
47
|
+
|
48
|
+
# Precompile additional assets (application.js, application.css, and all non-JS/CSS are already added)
|
49
|
+
# config.assets.precompile += %w( search.js )
|
50
|
+
|
51
|
+
# Disable delivery errors, bad email addresses will be ignored
|
52
|
+
# config.action_mailer.raise_delivery_errors = false
|
53
|
+
|
54
|
+
# Enable threaded mode
|
55
|
+
# config.threadsafe!
|
56
|
+
|
57
|
+
# 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)
|
59
|
+
config.i18n.fallbacks = true
|
60
|
+
|
61
|
+
# Send deprecation notices to registered listeners
|
62
|
+
config.active_support.deprecation = :notify
|
63
|
+
|
64
|
+
# Log the query plan for queries taking more than this (works
|
65
|
+
# with SQLite, MySQL, and PostgreSQL)
|
66
|
+
# config.active_record.auto_explain_threshold_in_seconds = 0.5
|
67
|
+
end
|
@@ -0,0 +1,37 @@
|
|
1
|
+
Dummy::Application.configure do
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb
|
3
|
+
|
4
|
+
# The test environment is used exclusively to run your application's
|
5
|
+
# test suite. You never need to work with it otherwise. Remember that
|
6
|
+
# your test database is "scratch space" for the test suite and is wiped
|
7
|
+
# and recreated between test runs. Don't rely on the data there!
|
8
|
+
config.cache_classes = true
|
9
|
+
|
10
|
+
# Configure static asset server for tests with Cache-Control for performance
|
11
|
+
config.serve_static_assets = true
|
12
|
+
config.static_cache_control = "public, max-age=3600"
|
13
|
+
|
14
|
+
# Log error messages when you accidentally call methods on nil
|
15
|
+
config.whiny_nils = true
|
16
|
+
|
17
|
+
# Show full error reports and disable caching
|
18
|
+
config.consider_all_requests_local = true
|
19
|
+
config.action_controller.perform_caching = false
|
20
|
+
|
21
|
+
# Raise exceptions instead of rendering exception templates
|
22
|
+
config.action_dispatch.show_exceptions = false
|
23
|
+
|
24
|
+
# Disable request forgery protection in test environment
|
25
|
+
config.action_controller.allow_forgery_protection = false
|
26
|
+
|
27
|
+
# Tell Action Mailer not to deliver emails to the real world.
|
28
|
+
# The :test delivery method accumulates sent emails in the
|
29
|
+
# ActionMailer::Base.deliveries array.
|
30
|
+
config.action_mailer.delivery_method = :test
|
31
|
+
|
32
|
+
# Raise exception on mass assignment protection for Active Record models
|
33
|
+
config.active_record.mass_assignment_sanitizer = :strict
|
34
|
+
|
35
|
+
# Print deprecation notices to the stderr
|
36
|
+
config.active_support.deprecation = :stderr
|
37
|
+
end
|
@@ -0,0 +1,7 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
|
4
|
+
# Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
|
5
|
+
|
6
|
+
# You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
|
7
|
+
# Rails.backtrace_cleaner.remove_silencers!
|
@@ -0,0 +1,15 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Add new inflection rules using the following format
|
4
|
+
# (all these examples are active by default):
|
5
|
+
# ActiveSupport::Inflector.inflections do |inflect|
|
6
|
+
# inflect.plural /^(ox)$/i, '\1en'
|
7
|
+
# inflect.singular /^(ox)en/i, '\1'
|
8
|
+
# inflect.irregular 'person', 'people'
|
9
|
+
# inflect.uncountable %w( fish sheep )
|
10
|
+
# end
|
11
|
+
#
|
12
|
+
# These inflection rules are supported but not enabled by default:
|
13
|
+
# ActiveSupport::Inflector.inflections do |inflect|
|
14
|
+
# inflect.acronym 'RESTful'
|
15
|
+
# end
|
@@ -0,0 +1,7 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Your secret key for verifying the integrity of signed cookies.
|
4
|
+
# If you change this key, all old signed cookies will become invalid!
|
5
|
+
# Make sure the secret is at least 30 characters and all random,
|
6
|
+
# no regular words or you'll be exposed to dictionary attacks.
|
7
|
+
Dummy::Application.config.secret_token = '00e07094b068f916ba3f33ab5303878d472074de38ac7c3fff6517a0ac3e0022b47acb1c5fdb42db3a9913d7806dbc159a6e913556b03bd9f6c808831af84dbc'
|
@@ -0,0 +1,8 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
Dummy::Application.config.session_store :cookie_store, key: '_dummy_session'
|
4
|
+
|
5
|
+
# Use the database for sessions instead of the cookie-based default,
|
6
|
+
# which shouldn't be used to store highly confidential information
|
7
|
+
# (create the session table with "rails generate session_migration")
|
8
|
+
# Dummy::Application.config.session_store :active_record_store
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
#
|
3
|
+
# This file contains settings for ActionController::ParamsWrapper which
|
4
|
+
# is enabled by default.
|
5
|
+
|
6
|
+
# Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
|
7
|
+
ActiveSupport.on_load(:action_controller) do
|
8
|
+
wrap_parameters format: [:json]
|
9
|
+
end
|
10
|
+
|
11
|
+
# Disable root element in JSON by default.
|
12
|
+
ActiveSupport.on_load(:active_record) do
|
13
|
+
self.include_root_in_json = false
|
14
|
+
end
|
Binary file
|
@@ -0,0 +1,26 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
# This file is auto-generated from the current state of the database. Instead
|
3
|
+
# of editing this file, please use the migrations feature of Active Record to
|
4
|
+
# incrementally modify your database, and then regenerate this schema definition.
|
5
|
+
#
|
6
|
+
# Note that this schema.rb definition is the authoritative source for your
|
7
|
+
# database schema. If you need to create the application database on another
|
8
|
+
# system, you should be using db:schema:load, not running all the migrations
|
9
|
+
# from scratch. The latter is a flawed and unsustainable approach (the more migrations
|
10
|
+
# you'll amass, the slower it'll run and the greater likelihood for issues).
|
11
|
+
#
|
12
|
+
# It's strongly recommended to check this file into your version control system.
|
13
|
+
|
14
|
+
ActiveRecord::Schema.define(:version => 20130503165641) do
|
15
|
+
|
16
|
+
create_table "contact_page_contact_messages", :force => true do |t|
|
17
|
+
t.string "first_name"
|
18
|
+
t.string "last_name"
|
19
|
+
t.string "email"
|
20
|
+
t.string "phone_number"
|
21
|
+
t.text "message"
|
22
|
+
t.datetime "created_at", :null => false
|
23
|
+
t.datetime "updated_at", :null => false
|
24
|
+
end
|
25
|
+
|
26
|
+
end
|
@@ -0,0 +1,936 @@
|
|
1
|
+
Connecting to database specified by database.yml
|
2
|
+
|
3
|
+
|
4
|
+
Started GET "/" for 127.0.0.1 at 2013-05-03 10:59:05 -0600
|
5
|
+
|
6
|
+
ActionController::RoutingError (No route matches [GET] "/"):
|
7
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
8
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
9
|
+
railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
|
10
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
|
11
|
+
activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
|
12
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
|
13
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
14
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
15
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
16
|
+
activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
17
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
18
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
|
19
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
20
|
+
railties (3.2.13) lib/rails/application.rb:223:in `call'
|
21
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
22
|
+
railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
|
23
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
24
|
+
/Users/rguillen/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
25
|
+
/Users/rguillen/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
26
|
+
/Users/rguillen/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
27
|
+
|
28
|
+
|
29
|
+
Rendered /Users/rguillen/.rvm/gems/ruby-1.9.3-p392@r3213/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.8ms)
|
30
|
+
|
31
|
+
|
32
|
+
Started GET "/contact_page" for 127.0.0.1 at 2013-05-03 10:59:10 -0600
|
33
|
+
|
34
|
+
ActionController::RoutingError (No route matches [GET] "/contact_page"):
|
35
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
36
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
37
|
+
railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
|
38
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
|
39
|
+
activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
|
40
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
|
41
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
42
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
43
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
44
|
+
activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
45
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
46
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
|
47
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
48
|
+
railties (3.2.13) lib/rails/application.rb:223:in `call'
|
49
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
50
|
+
railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
|
51
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
52
|
+
/Users/rguillen/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
53
|
+
/Users/rguillen/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
54
|
+
/Users/rguillen/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
55
|
+
|
56
|
+
|
57
|
+
Rendered /Users/rguillen/.rvm/gems/ruby-1.9.3-p392@r3213/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
|
58
|
+
|
59
|
+
|
60
|
+
Started GET "/contact_page" for 127.0.0.1 at 2013-05-03 10:59:41 -0600
|
61
|
+
|
62
|
+
ActionController::RoutingError (No route matches [GET] "/contact_page"):
|
63
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
64
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
65
|
+
railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
|
66
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
|
67
|
+
activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
|
68
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
|
69
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
70
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
71
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
72
|
+
activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
73
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
74
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
|
75
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
76
|
+
railties (3.2.13) lib/rails/application.rb:223:in `call'
|
77
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
78
|
+
railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
|
79
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
80
|
+
/Users/rguillen/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
81
|
+
/Users/rguillen/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
82
|
+
/Users/rguillen/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
83
|
+
|
84
|
+
|
85
|
+
Rendered /Users/rguillen/.rvm/gems/ruby-1.9.3-p392@r3213/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
|
86
|
+
Connecting to database specified by database.yml
|
87
|
+
|
88
|
+
|
89
|
+
Started GET "/contact_page" for 127.0.0.1 at 2013-05-03 11:00:10 -0600
|
90
|
+
|
91
|
+
ActionController::RoutingError (No route matches [GET] "/contact_page"):
|
92
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
93
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
94
|
+
railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
|
95
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
|
96
|
+
activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
|
97
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
|
98
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
99
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
100
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
101
|
+
activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
102
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
103
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
|
104
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
105
|
+
railties (3.2.13) lib/rails/application.rb:223:in `call'
|
106
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
107
|
+
railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
|
108
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
109
|
+
/Users/rguillen/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
110
|
+
/Users/rguillen/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
111
|
+
/Users/rguillen/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
112
|
+
|
113
|
+
|
114
|
+
Rendered /Users/rguillen/.rvm/gems/ruby-1.9.3-p392@r3213/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.2ms)
|
115
|
+
|
116
|
+
|
117
|
+
Started GET "/contact_page" for 127.0.0.1 at 2013-05-03 11:01:02 -0600
|
118
|
+
Processing by ContactPage::ContactMessagesController#index as HTML
|
119
|
+
Completed 500 Internal Server Error in 53ms
|
120
|
+
|
121
|
+
ActiveRecord::StatementInvalid (Could not find table 'contact_page_contact_messages'):
|
122
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/sqlite_adapter.rb:472:in `table_structure'
|
123
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/sqlite_adapter.rb:346:in `columns'
|
124
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/schema_cache.rb:12:in `block in initialize'
|
125
|
+
activerecord (3.2.13) lib/active_record/model_schema.rb:228:in `yield'
|
126
|
+
activerecord (3.2.13) lib/active_record/model_schema.rb:228:in `default'
|
127
|
+
activerecord (3.2.13) lib/active_record/model_schema.rb:228:in `columns'
|
128
|
+
activerecord (3.2.13) lib/active_record/model_schema.rb:243:in `column_defaults'
|
129
|
+
activerecord (3.2.13) lib/active_record/base.rb:482:in `initialize'
|
130
|
+
/Users/rguillen/Files/contact_page/app/controllers/contact_page/contact_messages_controller.rb:18:in `new'
|
131
|
+
/Users/rguillen/Files/contact_page/app/controllers/contact_page/contact_messages_controller.rb:18:in `index'
|
132
|
+
actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
133
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
|
134
|
+
actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
135
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
136
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:403:in `_run__1234820188622120777__process_action__1023741163189872957__callbacks'
|
137
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
138
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
139
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
140
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
141
|
+
actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
142
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
143
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
|
144
|
+
activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
145
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
|
146
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
147
|
+
actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
148
|
+
activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
149
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
|
150
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
|
151
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
|
152
|
+
actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
153
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
|
154
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
155
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
156
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
157
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
158
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
159
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
160
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
161
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
162
|
+
railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
163
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
164
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
165
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
166
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
167
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
168
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
169
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
170
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
|
171
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
172
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
173
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
174
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
175
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
176
|
+
activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
|
177
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
178
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
179
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__562862178031729156__call__1635093999473612846__callbacks'
|
180
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
181
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
182
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
183
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
184
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
185
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
186
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
187
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
188
|
+
railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
|
189
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
|
190
|
+
activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
|
191
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
|
192
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
193
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
194
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
195
|
+
activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
196
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
197
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
|
198
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
199
|
+
railties (3.2.13) lib/rails/application.rb:223:in `call'
|
200
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
201
|
+
railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
|
202
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
203
|
+
/Users/rguillen/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
204
|
+
/Users/rguillen/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
205
|
+
/Users/rguillen/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
206
|
+
|
207
|
+
|
208
|
+
Rendered /Users/rguillen/.rvm/gems/ruby-1.9.3-p392@r3213/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
|
209
|
+
Rendered /Users/rguillen/.rvm/gems/ruby-1.9.3-p392@r3213/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
|
210
|
+
Rendered /Users/rguillen/.rvm/gems/ruby-1.9.3-p392@r3213/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (8.9ms)
|
211
|
+
Connecting to database specified by database.yml
|
212
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
213
|
+
[1m[35m (1.7ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
214
|
+
[1m[36m (2.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
215
|
+
[1m[35m (13.2ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
216
|
+
Migrating to CreateContactPageContactMessages (20130503165641)
|
217
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
218
|
+
[1m[35m (0.4ms)[0m CREATE TABLE "contact_page_contact_messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "email" varchar(255), "phone_number" varchar(255), "message" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
219
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20130503165641')[0m
|
220
|
+
[1m[35m (2.5ms)[0m commit transaction
|
221
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
222
|
+
Connecting to database specified by database.yml
|
223
|
+
|
224
|
+
|
225
|
+
Started GET "/contact_page" for 127.0.0.1 at 2013-05-03 11:01:53 -0600
|
226
|
+
Processing by ContactPage::ContactMessagesController#index as HTML
|
227
|
+
Rendered /Users/rguillen/Files/contact_page/app/views/contact_page/contact_messages/index.html.erb within layouts/contact_page/application (25.4ms)
|
228
|
+
Completed 500 Internal Server Error in 80ms
|
229
|
+
|
230
|
+
ActionView::Template::Error (undefined local variable or method `create_contacto_path' for #<#<Class:0x007fd802c41288>:0x007fd802c4de98>):
|
231
|
+
1: <p id="notice"><%= notice %></p>
|
232
|
+
2:
|
233
|
+
3: <%= form_for(@contact_message, :url => create_contacto_path) do |f| %>
|
234
|
+
4: <% if @contact_message.errors.any? %>
|
235
|
+
5: <div id="error_explanation">
|
236
|
+
6: <h2><%= @contact_message.errors.count %> Errores</h2>
|
237
|
+
/Users/rguillen/Files/contact_page/app/views/contact_page/contact_messages/index.html.erb:3:in `___sers_rguillen__iles_contact_page_app_views_contact_page_contact_messages_index_html_erb__1894058610467716478_70282893662100'
|
238
|
+
actionpack (3.2.13) lib/action_view/template.rb:145:in `block in render'
|
239
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:125:in `instrument'
|
240
|
+
actionpack (3.2.13) lib/action_view/template.rb:143:in `render'
|
241
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
|
242
|
+
actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
243
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
|
244
|
+
activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
245
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
|
246
|
+
actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
247
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
|
248
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
|
249
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
|
250
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:18:in `render'
|
251
|
+
actionpack (3.2.13) lib/action_view/renderer/renderer.rb:36:in `render_template'
|
252
|
+
actionpack (3.2.13) lib/action_view/renderer/renderer.rb:17:in `render'
|
253
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:110:in `_render_template'
|
254
|
+
actionpack (3.2.13) lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
255
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
256
|
+
actionpack (3.2.13) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
257
|
+
actionpack (3.2.13) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
258
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:88:in `render'
|
259
|
+
actionpack (3.2.13) lib/action_controller/metal/rendering.rb:16:in `render'
|
260
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
261
|
+
activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
262
|
+
/Users/rguillen/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
|
263
|
+
activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
264
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
265
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
266
|
+
activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
|
267
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:39:in `render'
|
268
|
+
actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
269
|
+
actionpack (3.2.13) lib/action_controller/metal/mime_responds.rb:196:in `respond_to'
|
270
|
+
/Users/rguillen/Files/contact_page/app/controllers/contact_page/contact_messages_controller.rb:19:in `index'
|
271
|
+
actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
272
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
|
273
|
+
actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
274
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
275
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:403:in `_run__4188075072902098141__process_action__1892853712038100154__callbacks'
|
276
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
277
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
278
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
279
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
280
|
+
actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
281
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
282
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
|
283
|
+
activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
284
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
|
285
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
286
|
+
actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
287
|
+
activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
288
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
|
289
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
|
290
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
|
291
|
+
actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
292
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
|
293
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
294
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
295
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
296
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
297
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
298
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
299
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
300
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
301
|
+
railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
302
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
303
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
304
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
305
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
306
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
307
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
308
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
309
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
|
310
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
311
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
312
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
313
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
314
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
315
|
+
activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
|
316
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
317
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
318
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__255824515748034515__call__3163856982038188020__callbacks'
|
319
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
320
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
321
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
322
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
323
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
324
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
325
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
326
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
327
|
+
railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
|
328
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
|
329
|
+
activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
|
330
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
|
331
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
332
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
333
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
334
|
+
activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
335
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
336
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
|
337
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
338
|
+
railties (3.2.13) lib/rails/application.rb:223:in `call'
|
339
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
340
|
+
railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
|
341
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
342
|
+
/Users/rguillen/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
343
|
+
/Users/rguillen/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
344
|
+
/Users/rguillen/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
345
|
+
|
346
|
+
|
347
|
+
Rendered /Users/rguillen/.rvm/gems/ruby-1.9.3-p392@r3213/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
|
348
|
+
Rendered /Users/rguillen/.rvm/gems/ruby-1.9.3-p392@r3213/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
|
349
|
+
Rendered /Users/rguillen/.rvm/gems/ruby-1.9.3-p392@r3213/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.1ms)
|
350
|
+
|
351
|
+
|
352
|
+
Started GET "/contact_page" for 127.0.0.1 at 2013-05-03 11:02:09 -0600
|
353
|
+
Processing by ContactPage::ContactMessagesController#index as HTML
|
354
|
+
Rendered /Users/rguillen/Files/contact_page/app/views/contact_page/contact_messages/index.html.erb within layouts/contact_page/application (45.3ms)
|
355
|
+
Completed 500 Internal Server Error in 47ms
|
356
|
+
|
357
|
+
ActionView::Template::Error (undefined method `name' for #<ContactPage::ContactMessage:0x007fd80599de70>):
|
358
|
+
15:
|
359
|
+
16: <div class="field">
|
360
|
+
17: <%= f.label :name %><br />
|
361
|
+
18: <%= f.text_field :name %>
|
362
|
+
19: </div>
|
363
|
+
20: <div class="field">
|
364
|
+
21: <%= f.label :email %><br />
|
365
|
+
activemodel (3.2.13) lib/active_model/attribute_methods.rb:407:in `method_missing'
|
366
|
+
activerecord (3.2.13) lib/active_record/attribute_methods.rb:149:in `method_missing'
|
367
|
+
actionpack (3.2.13) lib/action_view/helpers/form_helper.rb:1159:in `value_before_type_cast'
|
368
|
+
actionpack (3.2.13) lib/action_view/helpers/form_helper.rb:1147:in `value_before_type_cast'
|
369
|
+
actionpack (3.2.13) lib/action_view/helpers/form_helper.rb:1041:in `block in to_input_field_tag'
|
370
|
+
actionpack (3.2.13) lib/action_view/helpers/form_helper.rb:1041:in `fetch'
|
371
|
+
actionpack (3.2.13) lib/action_view/helpers/form_helper.rb:1041:in `to_input_field_tag'
|
372
|
+
actionpack (3.2.13) lib/action_view/helpers/form_helper.rb:690:in `text_field'
|
373
|
+
actionpack (3.2.13) lib/action_view/helpers/form_helper.rb:1284:in `text_field'
|
374
|
+
/Users/rguillen/Files/contact_page/app/views/contact_page/contact_messages/index.html.erb:18:in `block in ___sers_rguillen__iles_contact_page_app_views_contact_page_contact_messages_index_html_erb__1894058610467716478_70282891826740'
|
375
|
+
actionpack (3.2.13) lib/action_view/helpers/capture_helper.rb:40:in `block in capture'
|
376
|
+
actionpack (3.2.13) lib/action_view/helpers/capture_helper.rb:187:in `with_output_buffer'
|
377
|
+
actionpack (3.2.13) lib/action_view/helpers/capture_helper.rb:40:in `capture'
|
378
|
+
actionpack (3.2.13) lib/action_view/helpers/form_helper.rb:378:in `form_for'
|
379
|
+
/Users/rguillen/Files/contact_page/app/views/contact_page/contact_messages/index.html.erb:3:in `___sers_rguillen__iles_contact_page_app_views_contact_page_contact_messages_index_html_erb__1894058610467716478_70282891826740'
|
380
|
+
actionpack (3.2.13) lib/action_view/template.rb:145:in `block in render'
|
381
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:125:in `instrument'
|
382
|
+
actionpack (3.2.13) lib/action_view/template.rb:143:in `render'
|
383
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
|
384
|
+
actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
385
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
|
386
|
+
activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
387
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
|
388
|
+
actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
389
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
|
390
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
|
391
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
|
392
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:18:in `render'
|
393
|
+
actionpack (3.2.13) lib/action_view/renderer/renderer.rb:36:in `render_template'
|
394
|
+
actionpack (3.2.13) lib/action_view/renderer/renderer.rb:17:in `render'
|
395
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:110:in `_render_template'
|
396
|
+
actionpack (3.2.13) lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
397
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
398
|
+
actionpack (3.2.13) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
399
|
+
actionpack (3.2.13) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
400
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:88:in `render'
|
401
|
+
actionpack (3.2.13) lib/action_controller/metal/rendering.rb:16:in `render'
|
402
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
403
|
+
activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
404
|
+
/Users/rguillen/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
|
405
|
+
activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
406
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
407
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
408
|
+
activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
|
409
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:39:in `render'
|
410
|
+
actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
411
|
+
actionpack (3.2.13) lib/action_controller/metal/mime_responds.rb:196:in `respond_to'
|
412
|
+
/Users/rguillen/Files/contact_page/app/controllers/contact_page/contact_messages_controller.rb:19:in `index'
|
413
|
+
actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
414
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
|
415
|
+
actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
416
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
417
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:403:in `_run__4188075072902098141__process_action__1892853712038100154__callbacks'
|
418
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
419
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
420
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
421
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
422
|
+
actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
423
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
424
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
|
425
|
+
activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
426
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
|
427
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
428
|
+
actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
429
|
+
activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
430
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
|
431
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
|
432
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
|
433
|
+
actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
434
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
|
435
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
436
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
437
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
438
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
439
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
440
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
441
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
442
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
443
|
+
railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
444
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
445
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
446
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
447
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
448
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
449
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
450
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
451
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
|
452
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
453
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
454
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
455
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
456
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
457
|
+
activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
|
458
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
459
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
460
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__255824515748034515__call__3163856982038188020__callbacks'
|
461
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
462
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
463
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
464
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
465
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
466
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
467
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
468
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
469
|
+
railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
|
470
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
|
471
|
+
activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
|
472
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
|
473
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
474
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
475
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
476
|
+
activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
477
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
478
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
|
479
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
480
|
+
railties (3.2.13) lib/rails/application.rb:223:in `call'
|
481
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
482
|
+
railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
|
483
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
484
|
+
/Users/rguillen/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
485
|
+
/Users/rguillen/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
486
|
+
/Users/rguillen/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
487
|
+
|
488
|
+
|
489
|
+
Rendered /Users/rguillen/.rvm/gems/ruby-1.9.3-p392@r3213/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
|
490
|
+
Rendered /Users/rguillen/.rvm/gems/ruby-1.9.3-p392@r3213/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
|
491
|
+
Rendered /Users/rguillen/.rvm/gems/ruby-1.9.3-p392@r3213/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.0ms)
|
492
|
+
|
493
|
+
|
494
|
+
Started GET "/contact_page" for 127.0.0.1 at 2013-05-03 11:02:44 -0600
|
495
|
+
Processing by ContactPage::ContactMessagesController#index as HTML
|
496
|
+
Rendered /Users/rguillen/Files/contact_page/app/views/contact_page/contact_messages/index.html.erb within layouts/contact_page/application (3.1ms)
|
497
|
+
Completed 500 Internal Server Error in 5ms
|
498
|
+
|
499
|
+
ActionView::Template::Error (undefined method `_lastname' for #<ContactPage::ContactMessage:0x007fd802cd1310>):
|
500
|
+
19: </div>
|
501
|
+
20: <div class="field">
|
502
|
+
21: <%= f.label :last_name %><br />
|
503
|
+
22: <%= f.text_field :_lastname %>
|
504
|
+
23: </div>
|
505
|
+
24: <div class="field">
|
506
|
+
25: <%= f.label :email %><br />
|
507
|
+
activemodel (3.2.13) lib/active_model/attribute_methods.rb:407:in `method_missing'
|
508
|
+
activerecord (3.2.13) lib/active_record/attribute_methods.rb:149:in `method_missing'
|
509
|
+
actionpack (3.2.13) lib/action_view/helpers/form_helper.rb:1159:in `value_before_type_cast'
|
510
|
+
actionpack (3.2.13) lib/action_view/helpers/form_helper.rb:1147:in `value_before_type_cast'
|
511
|
+
actionpack (3.2.13) lib/action_view/helpers/form_helper.rb:1041:in `block in to_input_field_tag'
|
512
|
+
actionpack (3.2.13) lib/action_view/helpers/form_helper.rb:1041:in `fetch'
|
513
|
+
actionpack (3.2.13) lib/action_view/helpers/form_helper.rb:1041:in `to_input_field_tag'
|
514
|
+
actionpack (3.2.13) lib/action_view/helpers/form_helper.rb:690:in `text_field'
|
515
|
+
actionpack (3.2.13) lib/action_view/helpers/form_helper.rb:1284:in `text_field'
|
516
|
+
/Users/rguillen/Files/contact_page/app/views/contact_page/contact_messages/index.html.erb:22:in `block in ___sers_rguillen__iles_contact_page_app_views_contact_page_contact_messages_index_html_erb__1894058610467716478_70282868322480'
|
517
|
+
actionpack (3.2.13) lib/action_view/helpers/capture_helper.rb:40:in `block in capture'
|
518
|
+
actionpack (3.2.13) lib/action_view/helpers/capture_helper.rb:187:in `with_output_buffer'
|
519
|
+
actionpack (3.2.13) lib/action_view/helpers/capture_helper.rb:40:in `capture'
|
520
|
+
actionpack (3.2.13) lib/action_view/helpers/form_helper.rb:378:in `form_for'
|
521
|
+
/Users/rguillen/Files/contact_page/app/views/contact_page/contact_messages/index.html.erb:3:in `___sers_rguillen__iles_contact_page_app_views_contact_page_contact_messages_index_html_erb__1894058610467716478_70282868322480'
|
522
|
+
actionpack (3.2.13) lib/action_view/template.rb:145:in `block in render'
|
523
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:125:in `instrument'
|
524
|
+
actionpack (3.2.13) lib/action_view/template.rb:143:in `render'
|
525
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
|
526
|
+
actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
527
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
|
528
|
+
activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
529
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
|
530
|
+
actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
531
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
|
532
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
|
533
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
|
534
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:18:in `render'
|
535
|
+
actionpack (3.2.13) lib/action_view/renderer/renderer.rb:36:in `render_template'
|
536
|
+
actionpack (3.2.13) lib/action_view/renderer/renderer.rb:17:in `render'
|
537
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:110:in `_render_template'
|
538
|
+
actionpack (3.2.13) lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
539
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
540
|
+
actionpack (3.2.13) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
541
|
+
actionpack (3.2.13) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
542
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:88:in `render'
|
543
|
+
actionpack (3.2.13) lib/action_controller/metal/rendering.rb:16:in `render'
|
544
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
545
|
+
activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
546
|
+
/Users/rguillen/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
|
547
|
+
activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
548
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
549
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
550
|
+
activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
|
551
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:39:in `render'
|
552
|
+
actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
553
|
+
actionpack (3.2.13) lib/action_controller/metal/mime_responds.rb:196:in `respond_to'
|
554
|
+
/Users/rguillen/Files/contact_page/app/controllers/contact_page/contact_messages_controller.rb:19:in `index'
|
555
|
+
actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
556
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
|
557
|
+
actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
558
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
559
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:403:in `_run__4188075072902098141__process_action__1892853712038100154__callbacks'
|
560
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
561
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
562
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
563
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
564
|
+
actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
565
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
566
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
|
567
|
+
activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
568
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
|
569
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
570
|
+
actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
571
|
+
activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
572
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
|
573
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
|
574
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
|
575
|
+
actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
576
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
|
577
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
578
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
579
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
580
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
581
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
582
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
583
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
584
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
585
|
+
railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
586
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
587
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
588
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
589
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
590
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
591
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
592
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
593
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
|
594
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
595
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
596
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
597
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
598
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
599
|
+
activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
|
600
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
601
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
602
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__255824515748034515__call__3163856982038188020__callbacks'
|
603
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
604
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
605
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
606
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
607
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
608
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
609
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
610
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
611
|
+
railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
|
612
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
|
613
|
+
activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
|
614
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
|
615
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
616
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
617
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
618
|
+
activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
619
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
620
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
|
621
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
622
|
+
railties (3.2.13) lib/rails/application.rb:223:in `call'
|
623
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
624
|
+
railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
|
625
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
626
|
+
/Users/rguillen/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
627
|
+
/Users/rguillen/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
628
|
+
/Users/rguillen/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
629
|
+
|
630
|
+
|
631
|
+
Rendered /Users/rguillen/.rvm/gems/ruby-1.9.3-p392@r3213/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
|
632
|
+
Rendered /Users/rguillen/.rvm/gems/ruby-1.9.3-p392@r3213/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
|
633
|
+
Rendered /Users/rguillen/.rvm/gems/ruby-1.9.3-p392@r3213/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.7ms)
|
634
|
+
|
635
|
+
|
636
|
+
Started GET "/contact_page" for 127.0.0.1 at 2013-05-03 11:02:54 -0600
|
637
|
+
Processing by ContactPage::ContactMessagesController#index as HTML
|
638
|
+
Rendered /Users/rguillen/Files/contact_page/app/views/contact_page/contact_messages/index.html.erb within layouts/contact_page/application (3.5ms)
|
639
|
+
Compiled contact_page/contact_messages.css (0ms) (pid 957)
|
640
|
+
Compiled contact_page/application.css (10ms) (pid 957)
|
641
|
+
Compiled jquery.js (2ms) (pid 957)
|
642
|
+
Compiled jquery_ujs.js (0ms) (pid 957)
|
643
|
+
Compiled contact_page/contact_messages.js (0ms) (pid 957)
|
644
|
+
Compiled contact_page/application.js (78ms) (pid 957)
|
645
|
+
Completed 200 OK in 160ms (Views: 159.6ms | ActiveRecord: 0.0ms)
|
646
|
+
|
647
|
+
|
648
|
+
Started GET "/assets/contact_page/application.css?body=1" for 127.0.0.1 at 2013-05-03 11:02:54 -0600
|
649
|
+
Served asset /contact_page/application.css - 200 OK (94ms)
|
650
|
+
|
651
|
+
|
652
|
+
Started GET "/assets/contact_page/contact_messages.css?body=1" for 127.0.0.1 at 2013-05-03 11:02:54 -0600
|
653
|
+
Served asset /contact_page/contact_messages.css - 200 OK (2ms)
|
654
|
+
|
655
|
+
|
656
|
+
Started GET "/assets/contact_page/application.js?body=1" for 127.0.0.1 at 2013-05-03 11:02:54 -0600
|
657
|
+
Served asset /contact_page/application.js - 200 OK (11ms)
|
658
|
+
|
659
|
+
|
660
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-03 11:02:54 -0600
|
661
|
+
Served asset /jquery_ujs.js - 200 OK (1ms)
|
662
|
+
|
663
|
+
|
664
|
+
Started GET "/assets/contact_page/contact_messages.js?body=1" for 127.0.0.1 at 2013-05-03 11:02:54 -0600
|
665
|
+
Served asset /contact_page/contact_messages.js - 200 OK (2ms)
|
666
|
+
|
667
|
+
|
668
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-03 11:02:54 -0600
|
669
|
+
Served asset /jquery.js - 200 OK (2ms)
|
670
|
+
|
671
|
+
|
672
|
+
Started POST "/contact_page/" for 127.0.0.1 at 2013-05-03 11:04:11 -0600
|
673
|
+
Processing by ContactPage::ContactMessagesController#index as HTML
|
674
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"x6V+yx3oo1YDzP9DBqV49Ic99vPsAOHymAOIQXzNo/k=", "contact_message"=>{"first_name"=>"Ricardo", "last_name"=>"Guillen", "email"=>"nizzle@nizzledev.com", "phone_number"=>"1212232", "message"=>"asdasd"}, "commit"=>"Enviar"}
|
675
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
676
|
+
[1m[35mSQL (53.6ms)[0m INSERT INTO "contact_page_contact_messages" ("created_at", "email", "first_name", "last_name", "message", "phone_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 03 May 2013 17:04:11 UTC +00:00], ["email", "nizzle@nizzledev.com"], ["first_name", "Ricardo"], ["last_name", "Guillen"], ["message", "asdasd"], ["phone_number", "1212232"], ["updated_at", Fri, 03 May 2013 17:04:11 UTC +00:00]]
|
677
|
+
[1m[36m (2.0ms)[0m [1mcommit transaction[0m
|
678
|
+
Completed 500 Internal Server Error in 64ms
|
679
|
+
|
680
|
+
NameError (undefined local variable or method `contacto_path' for #<ContactPage::ContactMessagesController:0x007fd805970038>):
|
681
|
+
/Users/rguillen/Files/contact_page/app/controllers/contact_page/contact_messages_controller.rb:10:in `block (2 levels) in index'
|
682
|
+
actionpack (3.2.13) lib/action_controller/metal/mime_responds.rb:196:in `call'
|
683
|
+
actionpack (3.2.13) lib/action_controller/metal/mime_responds.rb:196:in `respond_to'
|
684
|
+
/Users/rguillen/Files/contact_page/app/controllers/contact_page/contact_messages_controller.rb:8:in `index'
|
685
|
+
actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
686
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
|
687
|
+
actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
688
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
689
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:403:in `_run__4188075072902098141__process_action__1892853712038100154__callbacks'
|
690
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
691
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
692
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
693
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
694
|
+
actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
695
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
696
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
|
697
|
+
activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
698
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
|
699
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
700
|
+
actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
701
|
+
activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
702
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
|
703
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
|
704
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
|
705
|
+
actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
706
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
|
707
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
708
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
709
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
710
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
711
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
712
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
713
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
714
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
715
|
+
railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
716
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
717
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
718
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
719
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
720
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
721
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
722
|
+
rack (1.4.5) lib/rack/conditionalget.rb:35:in `call'
|
723
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
|
724
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
725
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
726
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
727
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
728
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
729
|
+
activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
|
730
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
731
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
732
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__255824515748034515__call__3163856982038188020__callbacks'
|
733
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
734
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
735
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
736
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
737
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
738
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
739
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
740
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
741
|
+
railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
|
742
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
|
743
|
+
activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
|
744
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
|
745
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
746
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
747
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
748
|
+
activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
749
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
750
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
|
751
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
752
|
+
railties (3.2.13) lib/rails/application.rb:223:in `call'
|
753
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
754
|
+
railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
|
755
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
756
|
+
/Users/rguillen/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
757
|
+
/Users/rguillen/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
758
|
+
/Users/rguillen/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
759
|
+
|
760
|
+
|
761
|
+
Rendered /Users/rguillen/.rvm/gems/ruby-1.9.3-p392@r3213/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
|
762
|
+
Rendered /Users/rguillen/.rvm/gems/ruby-1.9.3-p392@r3213/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
|
763
|
+
Rendered /Users/rguillen/.rvm/gems/ruby-1.9.3-p392@r3213/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (8.4ms)
|
764
|
+
|
765
|
+
|
766
|
+
Started POST "/contact_page/" for 127.0.0.1 at 2013-05-03 11:04:31 -0600
|
767
|
+
Processing by ContactPage::ContactMessagesController#index as HTML
|
768
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"x6V+yx3oo1YDzP9DBqV49Ic99vPsAOHymAOIQXzNo/k=", "contact_message"=>{"first_name"=>"Ricardo", "last_name"=>"Guillen", "email"=>"nizzle@nizzledev.com", "phone_number"=>"1212232", "message"=>"asdasd"}, "commit"=>"Enviar"}
|
769
|
+
[1m[35m (0.1ms)[0m begin transaction
|
770
|
+
[1m[36mSQL (25.7ms)[0m [1mINSERT INTO "contact_page_contact_messages" ("created_at", "email", "first_name", "last_name", "message", "phone_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["created_at", Fri, 03 May 2013 17:04:31 UTC +00:00], ["email", "nizzle@nizzledev.com"], ["first_name", "Ricardo"], ["last_name", "Guillen"], ["message", "asdasd"], ["phone_number", "1212232"], ["updated_at", Fri, 03 May 2013 17:04:31 UTC +00:00]]
|
771
|
+
[1m[35m (1.4ms)[0m commit transaction
|
772
|
+
Redirected to http://localhost:3000/contact_page/
|
773
|
+
Completed 302 Found in 39ms (ActiveRecord: 27.6ms)
|
774
|
+
|
775
|
+
|
776
|
+
Started GET "/contact_page/" for 127.0.0.1 at 2013-05-03 11:04:32 -0600
|
777
|
+
Processing by ContactPage::ContactMessagesController#index as HTML
|
778
|
+
Rendered /Users/rguillen/Files/contact_page/app/views/contact_page/contact_messages/index.html.erb within layouts/contact_page/application (6.2ms)
|
779
|
+
Completed 200 OK in 13ms (Views: 12.7ms | ActiveRecord: 0.0ms)
|
780
|
+
|
781
|
+
|
782
|
+
Started GET "/assets/contact_page/application.css?body=1" for 127.0.0.1 at 2013-05-03 11:04:32 -0600
|
783
|
+
Served asset /contact_page/application.css - 304 Not Modified (0ms)
|
784
|
+
|
785
|
+
|
786
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-03 11:04:32 -0600
|
787
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
788
|
+
|
789
|
+
|
790
|
+
Started GET "/assets/contact_page/contact_messages.js?body=1" for 127.0.0.1 at 2013-05-03 11:04:32 -0600
|
791
|
+
Served asset /contact_page/contact_messages.js - 304 Not Modified (0ms)
|
792
|
+
|
793
|
+
|
794
|
+
Started GET "/assets/contact_page/application.js?body=1" for 127.0.0.1 at 2013-05-03 11:04:32 -0600
|
795
|
+
Served asset /contact_page/application.js - 304 Not Modified (0ms)
|
796
|
+
|
797
|
+
|
798
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-03 11:04:32 -0600
|
799
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
800
|
+
|
801
|
+
|
802
|
+
Started GET "/assets/contact_page/contact_messages.css?body=1" for 127.0.0.1 at 2013-05-03 11:04:32 -0600
|
803
|
+
Served asset /contact_page/contact_messages.css - 304 Not Modified (0ms)
|
804
|
+
|
805
|
+
|
806
|
+
Started POST "/contact_page/" for 127.0.0.1 at 2013-05-03 11:06:27 -0600
|
807
|
+
|
808
|
+
ArgumentError (You need to supply at least one validation):
|
809
|
+
activemodel (3.2.13) lib/active_model/validations/validates.rb:86:in `validates'
|
810
|
+
/Users/rguillen/Files/contact_page/app/models/contact_page/contact_message.rb:9:in `<class:ContactMessage>'
|
811
|
+
/Users/rguillen/Files/contact_page/app/models/contact_page/contact_message.rb:2:in `<module:ContactPage>'
|
812
|
+
/Users/rguillen/Files/contact_page/app/models/contact_page/contact_message.rb:1:in `<top (required)>'
|
813
|
+
activesupport (3.2.13) lib/active_support/dependencies.rb:469:in `load'
|
814
|
+
activesupport (3.2.13) lib/active_support/dependencies.rb:469:in `block in load_file'
|
815
|
+
activesupport (3.2.13) lib/active_support/dependencies.rb:639:in `new_constants_in'
|
816
|
+
activesupport (3.2.13) lib/active_support/dependencies.rb:468:in `load_file'
|
817
|
+
activesupport (3.2.13) lib/active_support/dependencies.rb:353:in `require_or_load'
|
818
|
+
activesupport (3.2.13) lib/active_support/dependencies.rb:502:in `load_missing_constant'
|
819
|
+
activesupport (3.2.13) lib/active_support/dependencies.rb:192:in `block in const_missing'
|
820
|
+
activesupport (3.2.13) lib/active_support/dependencies.rb:190:in `each'
|
821
|
+
activesupport (3.2.13) lib/active_support/dependencies.rb:190:in `const_missing'
|
822
|
+
activesupport (3.2.13) lib/active_support/inflector/methods.rb:230:in `block in constantize'
|
823
|
+
activesupport (3.2.13) lib/active_support/inflector/methods.rb:229:in `each'
|
824
|
+
activesupport (3.2.13) lib/active_support/inflector/methods.rb:229:in `constantize'
|
825
|
+
activesupport (3.2.13) lib/active_support/inflector/methods.rb:260:in `safe_constantize'
|
826
|
+
activesupport (3.2.13) lib/active_support/core_ext/string/inflections.rb:66:in `safe_constantize'
|
827
|
+
actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:152:in `_default_wrap_model'
|
828
|
+
actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:169:in `_set_wrapper_defaults'
|
829
|
+
actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:133:in `inherited'
|
830
|
+
actionpack (3.2.13) lib/abstract_controller/railties/routes_helpers.rb:7:in `block (2 levels) in with'
|
831
|
+
actionpack (3.2.13) lib/action_controller/railties/paths.rb:7:in `block (2 levels) in with'
|
832
|
+
/Users/rguillen/Files/contact_page/app/controllers/contact_page/contact_messages_controller.rb:4:in `<module:ContactPage>'
|
833
|
+
/Users/rguillen/Files/contact_page/app/controllers/contact_page/contact_messages_controller.rb:3:in `<top (required)>'
|
834
|
+
activesupport (3.2.13) lib/active_support/dependencies.rb:469:in `load'
|
835
|
+
activesupport (3.2.13) lib/active_support/dependencies.rb:469:in `block in load_file'
|
836
|
+
activesupport (3.2.13) lib/active_support/dependencies.rb:639:in `new_constants_in'
|
837
|
+
activesupport (3.2.13) lib/active_support/dependencies.rb:468:in `load_file'
|
838
|
+
activesupport (3.2.13) lib/active_support/dependencies.rb:353:in `require_or_load'
|
839
|
+
activesupport (3.2.13) lib/active_support/dependencies.rb:502:in `load_missing_constant'
|
840
|
+
activesupport (3.2.13) lib/active_support/dependencies.rb:192:in `block in const_missing'
|
841
|
+
activesupport (3.2.13) lib/active_support/dependencies.rb:190:in `each'
|
842
|
+
activesupport (3.2.13) lib/active_support/dependencies.rb:190:in `const_missing'
|
843
|
+
activesupport (3.2.13) lib/active_support/inflector/methods.rb:230:in `block in constantize'
|
844
|
+
activesupport (3.2.13) lib/active_support/inflector/methods.rb:229:in `each'
|
845
|
+
activesupport (3.2.13) lib/active_support/inflector/methods.rb:229:in `constantize'
|
846
|
+
activesupport (3.2.13) lib/active_support/dependencies.rb:554:in `get'
|
847
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
|
848
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:54:in `controller'
|
849
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:32:in `call'
|
850
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
851
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
852
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
853
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
854
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
855
|
+
railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
856
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
857
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
858
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
859
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
860
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
861
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
862
|
+
rack (1.4.5) lib/rack/conditionalget.rb:35:in `call'
|
863
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
|
864
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
865
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
866
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
867
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
868
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
869
|
+
activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
|
870
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
871
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
872
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__255824515748034515__call__3163856982038188020__callbacks'
|
873
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
874
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
875
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
876
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
877
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
878
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
879
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
880
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
881
|
+
railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
|
882
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
|
883
|
+
activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
|
884
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
|
885
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
886
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
887
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
888
|
+
activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
889
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
890
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
|
891
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
892
|
+
railties (3.2.13) lib/rails/application.rb:223:in `call'
|
893
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
894
|
+
railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
|
895
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
896
|
+
/Users/rguillen/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
897
|
+
/Users/rguillen/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
898
|
+
/Users/rguillen/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
899
|
+
|
900
|
+
|
901
|
+
Rendered /Users/rguillen/.rvm/gems/ruby-1.9.3-p392@r3213/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
|
902
|
+
Rendered /Users/rguillen/.rvm/gems/ruby-1.9.3-p392@r3213/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
|
903
|
+
Rendered /Users/rguillen/.rvm/gems/ruby-1.9.3-p392@r3213/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.6ms)
|
904
|
+
|
905
|
+
|
906
|
+
Started POST "/contact_page/" for 127.0.0.1 at 2013-05-03 11:06:38 -0600
|
907
|
+
Processing by ContactPage::ContactMessagesController#index as HTML
|
908
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"x6V+yx3oo1YDzP9DBqV49Ic99vPsAOHymAOIQXzNo/k=", "contact_message"=>{"first_name"=>"", "last_name"=>"", "email"=>"", "phone_number"=>"", "message"=>""}, "commit"=>"Enviar"}
|
909
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
910
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
911
|
+
Rendered /Users/rguillen/Files/contact_page/app/views/contact_page/contact_messages/index.html.erb within layouts/contact_page/application (5.2ms)
|
912
|
+
Completed 200 OK in 23ms (Views: 9.4ms | ActiveRecord: 0.6ms)
|
913
|
+
|
914
|
+
|
915
|
+
Started GET "/assets/contact_page/application.css?body=1" for 127.0.0.1 at 2013-05-03 11:06:38 -0600
|
916
|
+
Served asset /contact_page/application.css - 304 Not Modified (0ms)
|
917
|
+
|
918
|
+
|
919
|
+
Started GET "/assets/contact_page/contact_messages.css?body=1" for 127.0.0.1 at 2013-05-03 11:06:38 -0600
|
920
|
+
Served asset /contact_page/contact_messages.css - 304 Not Modified (0ms)
|
921
|
+
|
922
|
+
|
923
|
+
Started GET "/assets/contact_page/contact_messages.js?body=1" for 127.0.0.1 at 2013-05-03 11:06:38 -0600
|
924
|
+
Served asset /contact_page/contact_messages.js - 304 Not Modified (0ms)
|
925
|
+
|
926
|
+
|
927
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-03 11:06:38 -0600
|
928
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
929
|
+
|
930
|
+
|
931
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-03 11:06:38 -0600
|
932
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
933
|
+
|
934
|
+
|
935
|
+
Started GET "/assets/contact_page/application.js?body=1" for 127.0.0.1 at 2013-05-03 11:06:38 -0600
|
936
|
+
Served asset /contact_page/application.js - 304 Not Modified (0ms)
|