capybara_rails 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/MIT-LICENSE +20 -0
- data/README.rdoc +3 -0
- data/Rakefile +38 -0
- data/lib/capybara_rails.rb +4 -0
- data/lib/capybara_rails/basic.rb +7 -0
- data/lib/capybara_rails/railtie.rb +12 -0
- data/lib/capybara_rails/selenium.rb +49 -0
- data/lib/capybara_rails/version.rb +3 -0
- data/lib/tasks/capybara_rails_tasks.rake +4 -0
- data/test/capybara_rails_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 +17 -0
- data/test/dummy/app/assets/javascripts/welcome.js +2 -0
- data/test/dummy/app/assets/stylesheets/application.css +13 -0
- data/test/dummy/app/assets/stylesheets/welcome.css +4 -0
- data/test/dummy/app/controllers/application_controller.rb +3 -0
- data/test/dummy/app/controllers/welcome_controller.rb +4 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/helpers/welcome_helper.rb +2 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/app/views/welcome/index.html.erb +2 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/config/application.rb +56 -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 +3 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +0 -0
- data/test/dummy/log/test.log +628 -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/test/integration/basic_capybara_test.rb +8 -0
- data/test/dummy/test/integration/firebug_capybara_test.rb +13 -0
- data/test/dummy/test/integration/javascript_capybara_test.rb +10 -0
- data/test/dummy/test/unit/helpers/welcome_helper_test.rb +4 -0
- data/test/dummy/tmp/cache/assets/C7B/190/sprockets%2F37b103f4623089af1456b90830fe941c +0 -0
- data/test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
- data/test/dummy/tmp/cache/assets/D13/C60/sprockets%2F2dedb8177c20286c4259c1d58c5646cc +0 -0
- data/test/dummy/tmp/cache/assets/D21/5D0/sprockets%2Fe2c4f946939f2d7d0b42d86383755cae +0 -0
- data/test/dummy/tmp/cache/assets/D31/310/sprockets%2Fe2e176818da274b6f14412ec51dca0a7 +0 -0
- data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/test/dummy/tmp/cache/assets/D3E/F40/sprockets%2F25a167c7563d6fe8ec6b13ec1ac09274 +0 -0
- data/test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/test/dummy/tmp/cache/assets/D7A/A60/sprockets%2F4155fdcab3373e1e8989ef6f46e11c6a +0 -0
- data/test/dummy/tmp/cache/assets/D8A/700/sprockets%2F13a1216a805a8ef86ffb3b3aa36c33ad +0 -0
- data/test/dummy/tmp/cache/assets/D8E/540/sprockets%2F42bd064a68dcc4b7a1d813fed1c06e06 +0 -0
- data/test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/test/test_helper.rb +10 -0
- metadata +228 -0
@@ -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,56 @@
|
|
1
|
+
require File.expand_path('../boot', __FILE__)
|
2
|
+
|
3
|
+
require 'rails/all'
|
4
|
+
|
5
|
+
Bundler.require
|
6
|
+
require "capybara_rails"
|
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
|
+
# Use SQL instead of Active Record's schema dumper when creating the database.
|
39
|
+
# This is necessary if your schema can't be completely dumped by the schema dumper,
|
40
|
+
# like if you have constraints or database-specific column types
|
41
|
+
# config.active_record.schema_format = :sql
|
42
|
+
|
43
|
+
# Enforce whitelist mode for mass assignment.
|
44
|
+
# This will create an empty whitelist of attributes available for mass-assignment for all models
|
45
|
+
# in your app. As such, your models will need to explicitly whitelist or blacklist accessible
|
46
|
+
# parameters by using an attr_accessible or attr_protected declaration.
|
47
|
+
# config.active_record.whitelist_attributes = true
|
48
|
+
|
49
|
+
# Enable the asset pipeline
|
50
|
+
config.assets.enabled = true
|
51
|
+
|
52
|
+
# Version of your assets, change this if you want to expire all your assets
|
53
|
+
config.assets.version = '1.0'
|
54
|
+
end
|
55
|
+
end
|
56
|
+
|
@@ -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 Rails.root.join("public/assets")
|
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 = '13b43f7dca5f8b02af06c446b9d36d805269b4d097605dc65027c6629c90c564716c8f39c74becdff07caabefec523e2be3c1385177be0b15396a8b20adf443c'
|
@@ -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
|
File without changes
|
File without changes
|
@@ -0,0 +1,628 @@
|
|
1
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
2
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
4
|
+
|
5
|
+
|
6
|
+
Started GET "/" for 127.0.0.1 at 2012-02-17 23:40:58 -0500
|
7
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
8
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
9
|
+
|
10
|
+
|
11
|
+
Started GET "/" for 127.0.0.1 at 2012-02-17 23:41:30 -0500
|
12
|
+
Processing by WelcomeController#index as HTML
|
13
|
+
Rendered welcome/index.html.erb within layouts/application (50.5ms)
|
14
|
+
Completed 200 OK in 85ms (Views: 84.8ms | ActiveRecord: 0.0ms)
|
15
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
16
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
17
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
18
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
19
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
20
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
21
|
+
Processing by WelcomeController#index as HTML
|
22
|
+
Completed 200 OK in 75ms (Views: 74.1ms | ActiveRecord: 0.0ms)
|
23
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
24
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
25
|
+
|
26
|
+
|
27
|
+
Started GET "/" for 127.0.0.1 at 2012-02-17 23:43:56 -0500
|
28
|
+
Processing by WelcomeController#index as HTML
|
29
|
+
Rendered welcome/index.html.erb within layouts/application (11.6ms)
|
30
|
+
Completed 200 OK in 89ms (Views: 88.1ms | ActiveRecord: 0.0ms)
|
31
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
32
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
33
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
34
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
35
|
+
Processing by WelcomeController#index as HTML
|
36
|
+
Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
37
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
38
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
39
|
+
|
40
|
+
|
41
|
+
Started GET "/" for 127.0.0.1 at 2012-02-17 23:44:23 -0500
|
42
|
+
Processing by WelcomeController#index as HTML
|
43
|
+
Rendered welcome/index.html.erb within layouts/application (51.7ms)
|
44
|
+
Completed 200 OK in 88ms (Views: 87.3ms | ActiveRecord: 0.0ms)
|
45
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
46
|
+
[1m[36m (0.5ms)[0m [1mbegin transaction[0m
|
47
|
+
|
48
|
+
|
49
|
+
Started GET "/" for 127.0.0.1 at 2012-02-17 23:44:31 -0500
|
50
|
+
Processing by WelcomeController#index as HTML
|
51
|
+
Rendered welcome/index.html.erb within layouts/application (11.7ms)
|
52
|
+
Completed 200 OK in 90ms (Views: 89.3ms | ActiveRecord: 0.0ms)
|
53
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
54
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
55
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
56
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
57
|
+
Processing by WelcomeController#index as HTML
|
58
|
+
Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
59
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
60
|
+
[1m[36m (0.5ms)[0m [1mbegin transaction[0m
|
61
|
+
|
62
|
+
|
63
|
+
Started GET "/" for 127.0.0.1 at 2012-02-17 23:45:37 -0500
|
64
|
+
Processing by WelcomeController#index as HTML
|
65
|
+
Rendered welcome/index.html.erb within layouts/application (54.2ms)
|
66
|
+
Completed 200 OK in 93ms (Views: 92.6ms | ActiveRecord: 0.0ms)
|
67
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
68
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
69
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
70
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
71
|
+
|
72
|
+
|
73
|
+
Started GET "/" for 127.0.0.1 at 2012-02-17 23:55:57 -0500
|
74
|
+
Processing by WelcomeController#index as HTML
|
75
|
+
Rendered welcome/index.html.erb within layouts/application (11.1ms)
|
76
|
+
Completed 200 OK in 86ms (Views: 85.0ms | ActiveRecord: 0.0ms)
|
77
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
78
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
79
|
+
|
80
|
+
|
81
|
+
Started GET "/" for 127.0.0.1 at 2012-02-17 23:57:55 -0500
|
82
|
+
Processing by WelcomeController#index as HTML
|
83
|
+
Rendered welcome/index.html.erb within layouts/application (54.5ms)
|
84
|
+
Completed 200 OK in 90ms (Views: 89.3ms | ActiveRecord: 0.0ms)
|
85
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
86
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
87
|
+
|
88
|
+
|
89
|
+
Started GET "/" for 127.0.0.1 at 2012-02-17 23:59:08 -0500
|
90
|
+
Processing by WelcomeController#index as HTML
|
91
|
+
Rendered welcome/index.html.erb within layouts/application (11.0ms)
|
92
|
+
Completed 200 OK in 87ms (Views: 86.4ms | ActiveRecord: 0.0ms)
|
93
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
94
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
95
|
+
|
96
|
+
|
97
|
+
Started GET "/" for 127.0.0.1 at 2012-02-17 23:59:18 -0500
|
98
|
+
Processing by WelcomeController#index as HTML
|
99
|
+
Rendered welcome/index.html.erb within layouts/application (54.5ms)
|
100
|
+
Completed 200 OK in 92ms (Views: 91.7ms | ActiveRecord: 0.0ms)
|
101
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
102
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
103
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
104
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
105
|
+
|
106
|
+
|
107
|
+
Started GET "/" for 127.0.0.1 at 2012-02-18 00:02:14 -0500
|
108
|
+
Processing by WelcomeController#index as HTML
|
109
|
+
Rendered welcome/index.html.erb within layouts/application (77.4ms)
|
110
|
+
Completed 200 OK in 134ms (Views: 133.3ms | ActiveRecord: 0.0ms)
|
111
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
112
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
113
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
114
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
115
|
+
|
116
|
+
|
117
|
+
Started GET "/" for 127.0.0.1 at 2012-02-18 15:40:44 -0500
|
118
|
+
Processing by WelcomeController#index as HTML
|
119
|
+
Rendered welcome/index.html.erb within layouts/application (56.5ms)
|
120
|
+
Completed 200 OK in 98ms (Views: 97.5ms | ActiveRecord: 0.0ms)
|
121
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
122
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
123
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
124
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
125
|
+
|
126
|
+
|
127
|
+
Started GET "/" for 127.0.0.1 at 2012-02-18 15:48:59 -0500
|
128
|
+
Processing by WelcomeController#index as HTML
|
129
|
+
Rendered welcome/index.html.erb within layouts/application (50.8ms)
|
130
|
+
Completed 200 OK in 86ms (Views: 85.2ms | ActiveRecord: 0.0ms)
|
131
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
132
|
+
|
133
|
+
|
134
|
+
Started GET "/" for 127.0.0.1 at 2012-02-18 15:50:26 -0500
|
135
|
+
Processing by WelcomeController#index as HTML
|
136
|
+
Rendered welcome/index.html.erb within layouts/application (13.4ms)
|
137
|
+
Completed 200 OK in 57ms (Views: 56.7ms | ActiveRecord: 0.0ms)
|
138
|
+
|
139
|
+
|
140
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2012-02-18 15:50:26 -0500
|
141
|
+
Compiled welcome.css (0ms) (pid 2463)
|
142
|
+
Compiled application.css (12ms) (pid 2463)
|
143
|
+
Served asset /application.css - 200 OK (32ms)
|
144
|
+
|
145
|
+
|
146
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2012-02-18 15:50:26 -0500
|
147
|
+
Compiled jquery.js (2ms) (pid 2463)
|
148
|
+
Compiled jquery_ujs.js (0ms) (pid 2463)
|
149
|
+
Compiled welcome.js (0ms) (pid 2463)
|
150
|
+
Compiled application.js (71ms) (pid 2463)
|
151
|
+
Served asset /application.js - 200 OK (88ms)
|
152
|
+
|
153
|
+
|
154
|
+
Started GET "/" for 127.0.0.1 at 2012-02-18 15:51:13 -0500
|
155
|
+
Processing by WelcomeController#index as HTML
|
156
|
+
Rendered welcome/index.html.erb within layouts/application (13.4ms)
|
157
|
+
Completed 200 OK in 54ms (Views: 53.2ms | ActiveRecord: 0.0ms)
|
158
|
+
|
159
|
+
|
160
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2012-02-18 15:51:13 -0500
|
161
|
+
Served asset /application.js - 200 OK (16ms)
|
162
|
+
|
163
|
+
|
164
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2012-02-18 15:51:13 -0500
|
165
|
+
Served asset /application.css - 200 OK (5ms)
|
166
|
+
|
167
|
+
|
168
|
+
Started GET "/" for 127.0.0.1 at 2012-02-18 15:51:51 -0500
|
169
|
+
Processing by WelcomeController#index as HTML
|
170
|
+
Rendered welcome/index.html.erb within layouts/application (14.2ms)
|
171
|
+
Completed 200 OK in 55ms (Views: 54.0ms | ActiveRecord: 0.0ms)
|
172
|
+
|
173
|
+
|
174
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2012-02-18 15:51:51 -0500
|
175
|
+
Served asset /application.css - 200 OK (10ms)
|
176
|
+
|
177
|
+
|
178
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2012-02-18 15:51:51 -0500
|
179
|
+
Compiled application.js (3ms) (pid 2602)
|
180
|
+
Served asset /application.js - 200 OK (18ms)
|
181
|
+
|
182
|
+
|
183
|
+
Started GET "/" for 127.0.0.1 at 2012-02-18 15:57:21 -0500
|
184
|
+
Processing by WelcomeController#index as HTML
|
185
|
+
Rendered welcome/index.html.erb within layouts/application (14.7ms)
|
186
|
+
Completed 200 OK in 58ms (Views: 57.0ms | ActiveRecord: 0.0ms)
|
187
|
+
|
188
|
+
|
189
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2012-02-18 15:57:21 -0500
|
190
|
+
Served asset /application.js - 200 OK (59ms)
|
191
|
+
|
192
|
+
|
193
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2012-02-18 15:57:21 -0500
|
194
|
+
Served asset /application.css - 200 OK (7ms)
|
195
|
+
|
196
|
+
|
197
|
+
Started GET "/" for 127.0.0.1 at 2012-02-18 15:59:26 -0500
|
198
|
+
Processing by WelcomeController#index as HTML
|
199
|
+
Rendered welcome/index.html.erb within layouts/application (13.6ms)
|
200
|
+
Completed 200 OK in 59ms (Views: 58.5ms | ActiveRecord: 0.0ms)
|
201
|
+
|
202
|
+
|
203
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2012-02-18 15:59:26 -0500
|
204
|
+
Served asset /application.css - 200 OK (9ms)
|
205
|
+
|
206
|
+
|
207
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2012-02-18 15:59:26 -0500
|
208
|
+
Served asset /application.js - 200 OK (8ms)
|
209
|
+
|
210
|
+
|
211
|
+
Started GET "/" for 127.0.0.1 at 2012-02-18 16:01:23 -0500
|
212
|
+
Processing by WelcomeController#index as HTML
|
213
|
+
Rendered welcome/index.html.erb within layouts/application (16.7ms)
|
214
|
+
Completed 200 OK in 63ms (Views: 62.2ms | ActiveRecord: 0.0ms)
|
215
|
+
|
216
|
+
|
217
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2012-02-18 16:01:23 -0500
|
218
|
+
Served asset /application.css - 200 OK (9ms)
|
219
|
+
|
220
|
+
|
221
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2012-02-18 16:01:23 -0500
|
222
|
+
Served asset /application.js - 200 OK (54ms)
|
223
|
+
|
224
|
+
|
225
|
+
Started GET "/" for 127.0.0.1 at 2012-02-18 17:10:38 -0500
|
226
|
+
Processing by WelcomeController#index as HTML
|
227
|
+
Rendered welcome/index.html.erb within layouts/application (13.8ms)
|
228
|
+
Completed 200 OK in 59ms (Views: 58.7ms | ActiveRecord: 0.0ms)
|
229
|
+
|
230
|
+
|
231
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2012-02-18 17:10:38 -0500
|
232
|
+
Served asset /application.css - 200 OK (6ms)
|
233
|
+
|
234
|
+
|
235
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2012-02-18 17:10:38 -0500
|
236
|
+
Served asset /application.js - 200 OK (9ms)
|
237
|
+
|
238
|
+
|
239
|
+
Started GET "/" for 127.0.0.1 at 2012-02-18 17:13:03 -0500
|
240
|
+
Processing by WelcomeController#index as HTML
|
241
|
+
Rendered welcome/index.html.erb within layouts/application (18.6ms)
|
242
|
+
Completed 200 OK in 74ms (Views: 73.2ms | ActiveRecord: 0.0ms)
|
243
|
+
|
244
|
+
|
245
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2012-02-18 17:13:03 -0500
|
246
|
+
Served asset /application.js - 200 OK (19ms)
|
247
|
+
|
248
|
+
|
249
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2012-02-18 17:13:03 -0500
|
250
|
+
Served asset /application.css - 200 OK (9ms)
|
251
|
+
|
252
|
+
|
253
|
+
Started GET "/" for 127.0.0.1 at 2012-02-18 17:14:09 -0500
|
254
|
+
Processing by WelcomeController#index as HTML
|
255
|
+
Rendered welcome/index.html.erb within layouts/application (20.1ms)
|
256
|
+
Completed 200 OK in 77ms (Views: 76.5ms | ActiveRecord: 0.0ms)
|
257
|
+
|
258
|
+
|
259
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2012-02-18 17:14:10 -0500
|
260
|
+
Served asset /application.js - 200 OK (16ms)
|
261
|
+
|
262
|
+
|
263
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2012-02-18 17:14:10 -0500
|
264
|
+
Served asset /application.css - 200 OK (11ms)
|
265
|
+
|
266
|
+
|
267
|
+
Started GET "/" for 127.0.0.1 at 2012-02-18 17:17:29 -0500
|
268
|
+
Processing by WelcomeController#index as HTML
|
269
|
+
Rendered welcome/index.html.erb within layouts/application (17.0ms)
|
270
|
+
Completed 200 OK in 131ms (Views: 130.2ms | ActiveRecord: 0.0ms)
|
271
|
+
|
272
|
+
|
273
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2012-02-18 17:17:29 -0500
|
274
|
+
Served asset /application.css - 200 OK (8ms)
|
275
|
+
|
276
|
+
|
277
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2012-02-18 17:17:29 -0500
|
278
|
+
Served asset /application.js - 200 OK (10ms)
|
279
|
+
|
280
|
+
|
281
|
+
Started GET "/" for 127.0.0.1 at 2012-02-18 17:18:07 -0500
|
282
|
+
Processing by WelcomeController#index as HTML
|
283
|
+
Rendered welcome/index.html.erb within layouts/application (16.4ms)
|
284
|
+
Completed 200 OK in 69ms (Views: 68.8ms | ActiveRecord: 0.0ms)
|
285
|
+
|
286
|
+
|
287
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2012-02-18 17:18:07 -0500
|
288
|
+
Served asset /application.js - 200 OK (12ms)
|
289
|
+
|
290
|
+
|
291
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2012-02-18 17:18:07 -0500
|
292
|
+
Served asset /application.css - 200 OK (7ms)
|
293
|
+
|
294
|
+
|
295
|
+
Started GET "/" for 127.0.0.1 at 2012-02-18 17:19:50 -0500
|
296
|
+
Processing by WelcomeController#index as HTML
|
297
|
+
Rendered welcome/index.html.erb within layouts/application (15.6ms)
|
298
|
+
Completed 200 OK in 65ms (Views: 64.9ms | ActiveRecord: 0.0ms)
|
299
|
+
|
300
|
+
|
301
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2012-02-18 17:19:51 -0500
|
302
|
+
Served asset /application.js - 200 OK (16ms)
|
303
|
+
|
304
|
+
|
305
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2012-02-18 17:19:51 -0500
|
306
|
+
Served asset /application.css - 200 OK (6ms)
|
307
|
+
|
308
|
+
|
309
|
+
Started GET "/" for 127.0.0.1 at 2012-02-18 17:20:29 -0500
|
310
|
+
Processing by WelcomeController#index as HTML
|
311
|
+
Rendered welcome/index.html.erb within layouts/application (15.4ms)
|
312
|
+
Completed 200 OK in 69ms (Views: 68.6ms | ActiveRecord: 0.0ms)
|
313
|
+
|
314
|
+
|
315
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2012-02-18 17:20:29 -0500
|
316
|
+
Served asset /application.css - 200 OK (8ms)
|
317
|
+
|
318
|
+
|
319
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2012-02-18 17:20:29 -0500
|
320
|
+
Served asset /application.js - 200 OK (10ms)
|
321
|
+
|
322
|
+
|
323
|
+
Started GET "/" for 127.0.0.1 at 2012-02-18 17:21:18 -0500
|
324
|
+
Processing by WelcomeController#index as HTML
|
325
|
+
Rendered welcome/index.html.erb within layouts/application (16.0ms)
|
326
|
+
Completed 200 OK in 71ms (Views: 68.9ms | ActiveRecord: 0.0ms)
|
327
|
+
|
328
|
+
|
329
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2012-02-18 17:21:18 -0500
|
330
|
+
Served asset /application.css - 200 OK (13ms)
|
331
|
+
|
332
|
+
|
333
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2012-02-18 17:21:18 -0500
|
334
|
+
Served asset /application.js - 200 OK (9ms)
|
335
|
+
|
336
|
+
|
337
|
+
Started GET "/" for 127.0.0.1 at 2012-02-18 17:21:35 -0500
|
338
|
+
Processing by WelcomeController#index as HTML
|
339
|
+
Rendered welcome/index.html.erb within layouts/application (16.9ms)
|
340
|
+
Completed 200 OK in 68ms (Views: 67.1ms | ActiveRecord: 0.0ms)
|
341
|
+
|
342
|
+
|
343
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2012-02-18 17:21:35 -0500
|
344
|
+
Served asset /application.js - 200 OK (12ms)
|
345
|
+
|
346
|
+
|
347
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2012-02-18 17:21:35 -0500
|
348
|
+
Served asset /application.css - 200 OK (6ms)
|
349
|
+
|
350
|
+
|
351
|
+
Started GET "/" for 127.0.0.1 at 2012-02-18 17:22:12 -0500
|
352
|
+
Processing by WelcomeController#index as HTML
|
353
|
+
Rendered welcome/index.html.erb within layouts/application (18.2ms)
|
354
|
+
Completed 200 OK in 71ms (Views: 70.9ms | ActiveRecord: 0.0ms)
|
355
|
+
|
356
|
+
|
357
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2012-02-18 17:22:12 -0500
|
358
|
+
Served asset /application.css - 200 OK (8ms)
|
359
|
+
|
360
|
+
|
361
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2012-02-18 17:22:12 -0500
|
362
|
+
Served asset /application.js - 200 OK (8ms)
|
363
|
+
|
364
|
+
|
365
|
+
Started GET "/" for 127.0.0.1 at 2012-02-18 17:22:38 -0500
|
366
|
+
Processing by WelcomeController#index as HTML
|
367
|
+
Rendered welcome/index.html.erb within layouts/application (19.2ms)
|
368
|
+
Completed 200 OK in 75ms (Views: 74.0ms | ActiveRecord: 0.0ms)
|
369
|
+
|
370
|
+
|
371
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2012-02-18 17:22:38 -0500
|
372
|
+
Served asset /application.css - 200 OK (16ms)
|
373
|
+
|
374
|
+
|
375
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2012-02-18 17:22:38 -0500
|
376
|
+
Served asset /application.js - 200 OK (9ms)
|
377
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
378
|
+
|
379
|
+
|
380
|
+
Started GET "/" for 127.0.0.1 at 2012-02-18 17:26:04 -0500
|
381
|
+
Processing by WelcomeController#index as HTML
|
382
|
+
Rendered welcome/index.html.erb within layouts/application (18.9ms)
|
383
|
+
Completed 200 OK in 132ms (Views: 132.0ms | ActiveRecord: 0.0ms)
|
384
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
385
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
386
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
387
|
+
|
388
|
+
|
389
|
+
Started GET "/" for 127.0.0.1 at 2012-02-18 17:26:13 -0500
|
390
|
+
Processing by WelcomeController#index as HTML
|
391
|
+
Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
|
392
|
+
|
393
|
+
|
394
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2012-02-18 17:26:13 -0500
|
395
|
+
Served asset /application.css - 200 OK (7ms)
|
396
|
+
|
397
|
+
|
398
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2012-02-18 17:26:13 -0500
|
399
|
+
Served asset /application.js - 200 OK (10ms)
|
400
|
+
|
401
|
+
|
402
|
+
Started GET "/" for 127.0.0.1 at 2012-02-18 17:26:16 -0500
|
403
|
+
Processing by WelcomeController#index as HTML
|
404
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
405
|
+
|
406
|
+
|
407
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2012-02-18 17:26:16 -0500
|
408
|
+
Served asset /application.css - 200 OK (0ms)
|
409
|
+
|
410
|
+
|
411
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2012-02-18 17:26:16 -0500
|
412
|
+
Served asset /application.js - 200 OK (0ms)
|
413
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
414
|
+
|
415
|
+
|
416
|
+
Started GET "/" for 127.0.0.1 at 2012-02-18 17:32:45 -0500
|
417
|
+
Processing by WelcomeController#index as HTML
|
418
|
+
Rendered welcome/index.html.erb within layouts/application (17.4ms)
|
419
|
+
Completed 200 OK in 107ms (Views: 106.5ms | ActiveRecord: 0.0ms)
|
420
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
421
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
422
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
423
|
+
|
424
|
+
|
425
|
+
Started GET "/" for 127.0.0.1 at 2012-02-18 17:32:53 -0500
|
426
|
+
Processing by WelcomeController#index as HTML
|
427
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
428
|
+
|
429
|
+
|
430
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2012-02-18 17:32:53 -0500
|
431
|
+
Served asset /application.js - 200 OK (11ms)
|
432
|
+
|
433
|
+
|
434
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2012-02-18 17:32:53 -0500
|
435
|
+
Served asset /application.css - 200 OK (6ms)
|
436
|
+
|
437
|
+
|
438
|
+
Started GET "/" for 127.0.0.1 at 2012-02-18 17:32:57 -0500
|
439
|
+
Processing by WelcomeController#index as HTML
|
440
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
441
|
+
|
442
|
+
|
443
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2012-02-18 17:32:57 -0500
|
444
|
+
Served asset /application.css - 200 OK (0ms)
|
445
|
+
|
446
|
+
|
447
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2012-02-18 17:32:57 -0500
|
448
|
+
Served asset /application.js - 200 OK (0ms)
|
449
|
+
[1m[36m (0.9ms)[0m [1mbegin transaction[0m
|
450
|
+
|
451
|
+
|
452
|
+
Started GET "/" for 127.0.0.1 at 2012-02-18 17:33:28 -0500
|
453
|
+
Processing by WelcomeController#index as HTML
|
454
|
+
Rendered welcome/index.html.erb within layouts/application (13.2ms)
|
455
|
+
Completed 200 OK in 106ms (Views: 105.0ms | ActiveRecord: 0.0ms)
|
456
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
457
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
458
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
459
|
+
|
460
|
+
|
461
|
+
Started GET "/" for 127.0.0.1 at 2012-02-18 17:33:36 -0500
|
462
|
+
Processing by WelcomeController#index as HTML
|
463
|
+
Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.0ms)
|
464
|
+
|
465
|
+
|
466
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2012-02-18 17:33:36 -0500
|
467
|
+
Served asset /application.css - 200 OK (7ms)
|
468
|
+
|
469
|
+
|
470
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2012-02-18 17:33:36 -0500
|
471
|
+
Served asset /application.js - 200 OK (67ms)
|
472
|
+
|
473
|
+
|
474
|
+
Started GET "/" for 127.0.0.1 at 2012-02-18 17:33:39 -0500
|
475
|
+
Processing by WelcomeController#index as HTML
|
476
|
+
Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
|
477
|
+
|
478
|
+
|
479
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2012-02-18 17:33:39 -0500
|
480
|
+
Served asset /application.css - 200 OK (0ms)
|
481
|
+
|
482
|
+
|
483
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2012-02-18 17:33:39 -0500
|
484
|
+
Served asset /application.js - 200 OK (0ms)
|
485
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
486
|
+
|
487
|
+
|
488
|
+
Started GET "/" for 127.0.0.1 at 2012-02-18 17:33:58 -0500
|
489
|
+
Processing by WelcomeController#index as HTML
|
490
|
+
Rendered welcome/index.html.erb within layouts/application (13.5ms)
|
491
|
+
Completed 200 OK in 106ms (Views: 105.4ms | ActiveRecord: 0.0ms)
|
492
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
493
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
494
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
495
|
+
|
496
|
+
|
497
|
+
Started GET "/" for 127.0.0.1 at 2012-02-18 17:34:06 -0500
|
498
|
+
Processing by WelcomeController#index as HTML
|
499
|
+
Completed 200 OK in 4ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
500
|
+
|
501
|
+
|
502
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2012-02-18 17:34:06 -0500
|
503
|
+
Served asset /application.js - 200 OK (66ms)
|
504
|
+
|
505
|
+
|
506
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2012-02-18 17:34:06 -0500
|
507
|
+
Served asset /application.css - 200 OK (8ms)
|
508
|
+
|
509
|
+
|
510
|
+
Started GET "/" for 127.0.0.1 at 2012-02-18 17:34:09 -0500
|
511
|
+
Processing by WelcomeController#index as HTML
|
512
|
+
Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
|
513
|
+
|
514
|
+
|
515
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2012-02-18 17:34:09 -0500
|
516
|
+
Served asset /application.css - 200 OK (0ms)
|
517
|
+
|
518
|
+
|
519
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2012-02-18 17:34:09 -0500
|
520
|
+
Served asset /application.js - 200 OK (0ms)
|
521
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
522
|
+
|
523
|
+
|
524
|
+
Started GET "/" for 127.0.0.1 at 2012-02-18 17:34:31 -0500
|
525
|
+
Processing by WelcomeController#index as HTML
|
526
|
+
Rendered welcome/index.html.erb within layouts/application (13.1ms)
|
527
|
+
Completed 200 OK in 102ms (Views: 101.5ms | ActiveRecord: 0.0ms)
|
528
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
529
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
530
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
531
|
+
|
532
|
+
|
533
|
+
Started GET "/" for 127.0.0.1 at 2012-02-18 17:34:37 -0500
|
534
|
+
Processing by WelcomeController#index as HTML
|
535
|
+
Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
|
536
|
+
|
537
|
+
|
538
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2012-02-18 17:34:38 -0500
|
539
|
+
Served asset /application.css - 200 OK (7ms)
|
540
|
+
|
541
|
+
|
542
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2012-02-18 17:34:38 -0500
|
543
|
+
Served asset /application.js - 200 OK (10ms)
|
544
|
+
|
545
|
+
|
546
|
+
Started GET "/" for 127.0.0.1 at 2012-02-18 17:34:41 -0500
|
547
|
+
Processing by WelcomeController#index as HTML
|
548
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
549
|
+
|
550
|
+
|
551
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2012-02-18 17:34:41 -0500
|
552
|
+
Served asset /application.css - 200 OK (0ms)
|
553
|
+
|
554
|
+
|
555
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2012-02-18 17:34:41 -0500
|
556
|
+
Served asset /application.js - 200 OK (3ms)
|
557
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
558
|
+
|
559
|
+
|
560
|
+
Started GET "/" for 127.0.0.1 at 2012-02-18 17:35:43 -0500
|
561
|
+
Processing by WelcomeController#index as HTML
|
562
|
+
Rendered welcome/index.html.erb within layouts/application (13.1ms)
|
563
|
+
Completed 200 OK in 99ms (Views: 98.0ms | ActiveRecord: 0.0ms)
|
564
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
565
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
566
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
567
|
+
|
568
|
+
|
569
|
+
Started GET "/" for 127.0.0.1 at 2012-02-18 17:35:50 -0500
|
570
|
+
Processing by WelcomeController#index as HTML
|
571
|
+
Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.0ms)
|
572
|
+
|
573
|
+
|
574
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2012-02-18 17:35:50 -0500
|
575
|
+
Served asset /application.css - 200 OK (10ms)
|
576
|
+
|
577
|
+
|
578
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2012-02-18 17:35:50 -0500
|
579
|
+
Served asset /application.js - 200 OK (10ms)
|
580
|
+
|
581
|
+
|
582
|
+
Started GET "/" for 127.0.0.1 at 2012-02-18 17:35:53 -0500
|
583
|
+
Processing by WelcomeController#index as HTML
|
584
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
585
|
+
|
586
|
+
|
587
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2012-02-18 17:35:53 -0500
|
588
|
+
Served asset /application.css - 200 OK (0ms)
|
589
|
+
|
590
|
+
|
591
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2012-02-18 17:35:53 -0500
|
592
|
+
Served asset /application.js - 200 OK (0ms)
|
593
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
594
|
+
|
595
|
+
|
596
|
+
Started GET "/" for 127.0.0.1 at 2012-02-18 17:36:35 -0500
|
597
|
+
Processing by WelcomeController#index as HTML
|
598
|
+
Rendered welcome/index.html.erb within layouts/application (13.6ms)
|
599
|
+
Completed 200 OK in 100ms (Views: 99.3ms | ActiveRecord: 0.0ms)
|
600
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
601
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
602
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
603
|
+
|
604
|
+
|
605
|
+
Started GET "/" for 127.0.0.1 at 2012-02-18 17:36:42 -0500
|
606
|
+
Processing by WelcomeController#index as HTML
|
607
|
+
Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
608
|
+
|
609
|
+
|
610
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2012-02-18 17:36:42 -0500
|
611
|
+
Served asset /application.js - 200 OK (13ms)
|
612
|
+
|
613
|
+
|
614
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2012-02-18 17:36:42 -0500
|
615
|
+
Served asset /application.css - 200 OK (7ms)
|
616
|
+
|
617
|
+
|
618
|
+
Started GET "/" for 127.0.0.1 at 2012-02-18 17:36:45 -0500
|
619
|
+
Processing by WelcomeController#index as HTML
|
620
|
+
Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
|
621
|
+
|
622
|
+
|
623
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2012-02-18 17:36:45 -0500
|
624
|
+
Served asset /application.css - 200 OK (0ms)
|
625
|
+
|
626
|
+
|
627
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2012-02-18 17:36:45 -0500
|
628
|
+
Served asset /application.js - 200 OK (0ms)
|