phonelib 0.2.7 → 0.2.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/Rakefile +22 -22
- data/data/PhoneNumberMetaData.xml +486 -373
- data/data/phone_data.dat +0 -0
- data/lib/phonelib/phone.rb +7 -2
- data/lib/phonelib/phone_analyzer.rb +10 -7
- data/lib/phonelib/version.rb +1 -1
- data/lib/tasks/phonelib_tasks.rake +8 -0
- metadata +33 -166
- data/test/dummy/README.rdoc +0 -261
- data/test/dummy/Rakefile +0 -8
- data/test/dummy/app/assets/javascripts/application.js +0 -13
- data/test/dummy/app/assets/javascripts/phones.js +0 -2
- data/test/dummy/app/assets/stylesheets/application.css +0 -13
- data/test/dummy/app/assets/stylesheets/phones.css +0 -4
- data/test/dummy/app/assets/stylesheets/scaffold.css +0 -56
- data/test/dummy/app/controllers/application_controller.rb +0 -3
- data/test/dummy/app/controllers/phones_controller.rb +0 -83
- data/test/dummy/app/helpers/application_helper.rb +0 -2
- data/test/dummy/app/helpers/phones_helper.rb +0 -2
- data/test/dummy/app/models/phone.rb +0 -6
- data/test/dummy/app/views/layouts/application.html.erb +0 -14
- data/test/dummy/app/views/phones/_form.html.erb +0 -25
- data/test/dummy/app/views/phones/edit.html.erb +0 -6
- data/test/dummy/app/views/phones/index.html.erb +0 -25
- data/test/dummy/app/views/phones/new.html.erb +0 -5
- data/test/dummy/app/views/phones/show.html.erb +0 -14
- data/test/dummy/config.ru +0 -4
- data/test/dummy/config/application.rb +0 -59
- data/test/dummy/config/boot.rb +0 -10
- data/test/dummy/config/database.yml +0 -25
- data/test/dummy/config/environment.rb +0 -5
- data/test/dummy/config/environments/development.rb +0 -37
- data/test/dummy/config/environments/production.rb +0 -67
- data/test/dummy/config/environments/test.rb +0 -37
- data/test/dummy/config/initializers/backtrace_silencers.rb +0 -7
- data/test/dummy/config/initializers/inflections.rb +0 -15
- data/test/dummy/config/initializers/mime_types.rb +0 -5
- data/test/dummy/config/initializers/secret_token.rb +0 -7
- data/test/dummy/config/initializers/session_store.rb +0 -8
- data/test/dummy/config/initializers/wrap_parameters.rb +0 -14
- data/test/dummy/config/locales/en.yml +0 -5
- data/test/dummy/config/routes.rb +0 -60
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/migrate/20130121173847_create_phones.rb +0 -9
- data/test/dummy/db/migrate/20130122075331_add_possible_number_to_phone.rb +0 -5
- data/test/dummy/db/schema.rb +0 -23
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +0 -19
- data/test/dummy/log/test.log +0 -2667
- data/test/dummy/public/404.html +0 -26
- data/test/dummy/public/422.html +0 -26
- data/test/dummy/public/500.html +0 -25
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/script/rails +0 -6
- data/test/dummy/test/fixtures/phones.yml +0 -16
- data/test/dummy/test/functional/phones_controller_test.rb +0 -51
- data/test/dummy/test/unit/helpers/phones_helper_test.rb +0 -4
- data/test/dummy/test/unit/phone_test.rb +0 -47
- data/test/phonelib_test.rb +0 -314
- data/test/test_helper.rb +0 -18
@@ -1,67 +0,0 @@
|
|
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
|
@@ -1,37 +0,0 @@
|
|
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
|
@@ -1,7 +0,0 @@
|
|
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!
|
@@ -1,15 +0,0 @@
|
|
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
|
@@ -1,7 +0,0 @@
|
|
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 = '987649ce7e68bb41ce9f429c289b9943a3e6689a542f54daee709bdb89a43d37ec87fa3534decec83997724f44ced25727e064f6fa917184b8fce2e382d9cff9'
|
@@ -1,8 +0,0 @@
|
|
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
|
@@ -1,14 +0,0 @@
|
|
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
|
data/test/dummy/config/routes.rb
DELETED
@@ -1,60 +0,0 @@
|
|
1
|
-
Dummy::Application.routes.draw do
|
2
|
-
resources :phones
|
3
|
-
|
4
|
-
# The priority is based upon order of creation:
|
5
|
-
# first created -> highest priority.
|
6
|
-
|
7
|
-
# Sample of regular route:
|
8
|
-
# match 'products/:id' => 'catalog#view'
|
9
|
-
# Keep in mind you can assign values other than :controller and :action
|
10
|
-
|
11
|
-
# Sample of named route:
|
12
|
-
# match 'products/:id/purchase' => 'catalog#purchase', :as => :purchase
|
13
|
-
# This route can be invoked with purchase_url(:id => product.id)
|
14
|
-
|
15
|
-
# Sample resource route (maps HTTP verbs to controller actions automatically):
|
16
|
-
# resources :products
|
17
|
-
|
18
|
-
# Sample resource route with options:
|
19
|
-
# resources :products do
|
20
|
-
# member do
|
21
|
-
# get 'short'
|
22
|
-
# post 'toggle'
|
23
|
-
# end
|
24
|
-
#
|
25
|
-
# collection do
|
26
|
-
# get 'sold'
|
27
|
-
# end
|
28
|
-
# end
|
29
|
-
|
30
|
-
# Sample resource route with sub-resources:
|
31
|
-
# resources :products do
|
32
|
-
# resources :comments, :sales
|
33
|
-
# resource :seller
|
34
|
-
# end
|
35
|
-
|
36
|
-
# Sample resource route with more complex sub-resources
|
37
|
-
# resources :products do
|
38
|
-
# resources :comments
|
39
|
-
# resources :sales do
|
40
|
-
# get 'recent', :on => :collection
|
41
|
-
# end
|
42
|
-
# end
|
43
|
-
|
44
|
-
# Sample resource route within a namespace:
|
45
|
-
# namespace :admin do
|
46
|
-
# # Directs /admin/products/* to Admin::ProductsController
|
47
|
-
# # (app/controllers/admin/products_controller.rb)
|
48
|
-
# resources :products
|
49
|
-
# end
|
50
|
-
|
51
|
-
# You can have the root of your site routed with "root"
|
52
|
-
# just remember to delete public/index.html.
|
53
|
-
# root :to => 'welcome#index'
|
54
|
-
|
55
|
-
# See how all your routes lay out with "rake routes"
|
56
|
-
|
57
|
-
# This is a legacy wild controller route that's not recommended for RESTful applications.
|
58
|
-
# Note: This route will make all actions in every controller accessible via GET requests.
|
59
|
-
# match ':controller(/:action(/:id))(.:format)'
|
60
|
-
end
|
Binary file
|
data/test/dummy/db/schema.rb
DELETED
@@ -1,23 +0,0 @@
|
|
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 => 20130122075331) do
|
15
|
-
|
16
|
-
create_table "phones", :force => true do |t|
|
17
|
-
t.string "number"
|
18
|
-
t.datetime "created_at", :null => false
|
19
|
-
t.datetime "updated_at", :null => false
|
20
|
-
t.string "possible_number"
|
21
|
-
end
|
22
|
-
|
23
|
-
end
|
data/test/dummy/db/test.sqlite3
DELETED
Binary file
|
@@ -1,19 +0,0 @@
|
|
1
|
-
Connecting to database specified by database.yml
|
2
|
-
[1m[36m (0.9ms)[0m [1mselect sqlite_version(*)[0m
|
3
|
-
[1m[35m (6.8ms)[0m CREATE TABLE "phones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "number" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "possible_number" varchar(255))
|
4
|
-
[1m[36m (1.4ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
5
|
-
[1m[35m (1.6ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
6
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
7
|
-
[1m[35m (3.2ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130122075331')
|
8
|
-
[1m[36m (1.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130121173847')[0m
|
9
|
-
[1m[35m (0.7ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
10
|
-
Connecting to database specified by database.yml
|
11
|
-
[1m[36m (0.6ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
12
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
13
|
-
[1m[36m (3.7ms)[0m [1mCREATE TABLE "phones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "number" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "possible_number" varchar(255)) [0m
|
14
|
-
[1m[35m (1.4ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
15
|
-
[1m[36m (1.7ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
16
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
17
|
-
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130122075331')[0m
|
18
|
-
[1m[35m (4.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130121173847')
|
19
|
-
Connecting to database specified by database.yml
|
data/test/dummy/log/test.log
DELETED
@@ -1,2667 +0,0 @@
|
|
1
|
-
Connecting to database specified by database.yml
|
2
|
-
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
3
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
4
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
6
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
8
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
9
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
10
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
12
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
13
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
14
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
15
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
16
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
17
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
18
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
19
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
20
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
21
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
22
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
23
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
24
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
25
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
26
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
27
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
28
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
29
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
30
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
31
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
32
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
33
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
34
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
35
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
36
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
37
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
38
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
39
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
40
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
41
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
42
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
43
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
44
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
45
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
46
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
47
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
48
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
49
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
50
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
51
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
52
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
53
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
54
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
55
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
56
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
57
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
58
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
59
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
60
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
61
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
62
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
63
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
64
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
65
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
66
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
67
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
68
|
-
Connecting to database specified by database.yml
|
69
|
-
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
70
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
71
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
72
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
73
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
74
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
75
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
76
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
77
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
78
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
79
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
80
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
81
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
82
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
83
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
84
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
85
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
86
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
87
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
88
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
89
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
90
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
91
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
92
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
93
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
94
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
95
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
96
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
97
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
98
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
99
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
100
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
101
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
102
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
103
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
104
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
105
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
106
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
107
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
108
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
109
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
110
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
111
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
112
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
113
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
114
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
115
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
116
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
117
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
118
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
119
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
120
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
121
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
122
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
123
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
124
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
125
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
126
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
127
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
128
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
129
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
130
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
131
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
132
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
133
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
134
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
135
|
-
Connecting to database specified by database.yml
|
136
|
-
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
137
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
138
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
139
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
140
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
141
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
142
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
143
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
144
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
145
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
146
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
147
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
148
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
149
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
150
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
151
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
152
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
153
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
154
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
155
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
156
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
157
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
158
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
159
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
160
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
161
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
162
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
163
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
164
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
165
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
166
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
167
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
168
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
169
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
170
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
171
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
172
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
173
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
174
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
175
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
176
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
177
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
178
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
179
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
180
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
181
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
182
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
183
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
184
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
185
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
186
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
187
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
188
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
189
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
190
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
191
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
192
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
193
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
194
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
195
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
196
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
197
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
198
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
199
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
200
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
201
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
202
|
-
Connecting to database specified by database.yml
|
203
|
-
[1m[36m (1.0ms)[0m [1mselect sqlite_version(*)[0m
|
204
|
-
[1m[35m (4.9ms)[0m DROP TABLE "phones"
|
205
|
-
[1m[36m (1.4ms)[0m [1mCREATE TABLE "phones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "number" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "possible_number" varchar(255)) [0m
|
206
|
-
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
207
|
-
[1m[36m (0.6ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
208
|
-
Connecting to database specified by database.yml
|
209
|
-
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
210
|
-
[1m[35mFixture Delete (0.1ms)[0m DELETE FROM "phones"
|
211
|
-
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "phones" ("number", "possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', '972541234567', '2013-02-12 07:51:15', '2013-02-12 07:51:15', 450723037)[0m
|
212
|
-
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "phones" ("number", "created_at", "updated_at", "id") VALUES ('wrong', '2013-02-12 07:51:15', '2013-02-12 07:51:15', 667262234)
|
213
|
-
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "phones" ("number", "created_at", "updated_at", "id") VALUES ('972541234567', '2013-02-12 07:51:15', '2013-02-12 07:51:15', 512636273)[0m
|
214
|
-
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "phones" ("possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', '2013-02-12 07:51:15', '2013-02-12 07:51:15', 23760034)
|
215
|
-
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "phones" ("number", "possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', 'wrong', '2013-02-12 07:51:15', '2013-02-12 07:51:15', 703612349)[0m
|
216
|
-
[1m[35m (7.0ms)[0m commit transaction
|
217
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
218
|
-
[1m[35mPhone Load (1.4ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 512636273]]
|
219
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
220
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
221
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
222
|
-
[1m[35m (0.0ms)[0m begin transaction
|
223
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
224
|
-
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
225
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
226
|
-
[1m[35m (0.0ms)[0m begin transaction
|
227
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
228
|
-
[1m[35mSQL (0.6ms)[0m INSERT INTO "phones" ("created_at", "number", "possible_number", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 12 Feb 2013 07:51:16 UTC +00:00], ["number", "972541234567"], ["possible_number", nil], ["updated_at", Tue, 12 Feb 2013 07:51:16 UTC +00:00]]
|
229
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
230
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
231
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
232
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
233
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
234
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
235
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
236
|
-
[1m[35m (0.0ms)[0m begin transaction
|
237
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 23760034]]
|
238
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
239
|
-
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
240
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
241
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
242
|
-
[1m[35mPhone Load (0.1ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 667262234]]
|
243
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
244
|
-
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
245
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
246
|
-
[1m[35m (0.0ms)[0m begin transaction
|
247
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 703612349]]
|
248
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
249
|
-
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
250
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
251
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
252
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
253
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
254
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
255
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
256
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
257
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
258
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
259
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
260
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
261
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
262
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
263
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
264
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
265
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
266
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
267
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
268
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
269
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
270
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
271
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
272
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
273
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
274
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
275
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
276
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
277
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
278
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
279
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
280
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
281
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
282
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
283
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
284
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
285
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
286
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
287
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
288
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
289
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
290
|
-
[1m[35mPhone Load (0.1ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
291
|
-
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "phones" [0m
|
292
|
-
Processing by PhonesController#create as HTML
|
293
|
-
Parameters: {"phone"=>{"number"=>"972541234567"}}
|
294
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
295
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "phones" ("created_at", "number", "possible_number", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 12 Feb 2013 07:51:16 UTC +00:00], ["number", "972541234567"], ["possible_number", nil], ["updated_at", Tue, 12 Feb 2013 07:51:16 UTC +00:00]]
|
296
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
297
|
-
Redirected to http://test.host/phones/703612350
|
298
|
-
Completed 302 Found in 3ms (ActiveRecord: 0.3ms)
|
299
|
-
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "phones" [0m
|
300
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
301
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
302
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
303
|
-
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "phones" [0m
|
304
|
-
Processing by PhonesController#destroy as HTML
|
305
|
-
Parameters: {"id"=>"450723037"}
|
306
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", "450723037"]]
|
307
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
308
|
-
[1m[35mSQL (0.1ms)[0m DELETE FROM "phones" WHERE "phones"."id" = ? [["id", 450723037]]
|
309
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
310
|
-
Redirected to http://test.host/phones
|
311
|
-
Completed 302 Found in 1ms (ActiveRecord: 0.2ms)
|
312
|
-
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "phones"
|
313
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
314
|
-
[1m[35m (0.0ms)[0m begin transaction
|
315
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
316
|
-
Processing by PhonesController#edit as HTML
|
317
|
-
Parameters: {"id"=>"450723037"}
|
318
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", "450723037"]]
|
319
|
-
Rendered phones/_form.html.erb (4.1ms)
|
320
|
-
Completed 200 OK in 28ms (Views: 27.4ms | ActiveRecord: 0.0ms)
|
321
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
322
|
-
[1m[35m (0.0ms)[0m begin transaction
|
323
|
-
[1m[36mPhone Load (0.1ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
324
|
-
Processing by PhonesController#index as HTML
|
325
|
-
[1m[35mPhone Load (0.1ms)[0m SELECT "phones".* FROM "phones"
|
326
|
-
Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.1ms)
|
327
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
328
|
-
[1m[35m (0.0ms)[0m begin transaction
|
329
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
330
|
-
Processing by PhonesController#new as HTML
|
331
|
-
Rendered phones/_form.html.erb (1.2ms)
|
332
|
-
Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
|
333
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
334
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
335
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
336
|
-
Processing by PhonesController#show as HTML
|
337
|
-
Parameters: {"id"=>"450723037"}
|
338
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", "450723037"]]
|
339
|
-
Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
340
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
341
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
342
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
343
|
-
Processing by PhonesController#update as HTML
|
344
|
-
Parameters: {"phone"=>{"number"=>"972541234567"}, "id"=>"450723037"}
|
345
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", "450723037"]]
|
346
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
347
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348
|
-
Redirected to http://test.host/phones/450723037
|
349
|
-
Completed 302 Found in 2ms (ActiveRecord: 0.1ms)
|
350
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
351
|
-
Connecting to database specified by database.yml
|
352
|
-
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
353
|
-
[1m[35mFixture Delete (0.2ms)[0m DELETE FROM "phones"
|
354
|
-
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "phones" ("number", "possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', '972541234567', '2013-05-30 07:57:45', '2013-05-30 07:57:45', 450723037)[0m
|
355
|
-
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "phones" ("number", "created_at", "updated_at", "id") VALUES ('wrong', '2013-05-30 07:57:45', '2013-05-30 07:57:45', 667262234)
|
356
|
-
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "phones" ("number", "created_at", "updated_at", "id") VALUES ('972541234567', '2013-05-30 07:57:45', '2013-05-30 07:57:45', 512636273)[0m
|
357
|
-
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "phones" ("possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', '2013-05-30 07:57:45', '2013-05-30 07:57:45', 23760034)
|
358
|
-
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "phones" ("number", "possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', 'wrong', '2013-05-30 07:57:45', '2013-05-30 07:57:45', 703612349)[0m
|
359
|
-
[1m[35m (3.6ms)[0m commit transaction
|
360
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
361
|
-
[1m[35mPhone Load (1.5ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 512636273]]
|
362
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
363
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
364
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
365
|
-
[1m[35m (0.0ms)[0m begin transaction
|
366
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
367
|
-
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
368
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
369
|
-
[1m[35m (0.0ms)[0m begin transaction
|
370
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
371
|
-
[1m[35mSQL (1.4ms)[0m INSERT INTO "phones" ("created_at", "number", "possible_number", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 30 May 2013 07:57:45 UTC +00:00], ["number", "972541234567"], ["possible_number", nil], ["updated_at", Thu, 30 May 2013 07:57:45 UTC +00:00]]
|
372
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
373
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
374
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
375
|
-
[1m[35mPhone Load (0.1ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
376
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
377
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
378
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
379
|
-
[1m[35m (0.0ms)[0m begin transaction
|
380
|
-
[1m[36mPhone Load (0.1ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 23760034]]
|
381
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
382
|
-
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
383
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
384
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
385
|
-
[1m[35mPhone Load (0.1ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 667262234]]
|
386
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
387
|
-
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
388
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
389
|
-
[1m[35m (0.0ms)[0m begin transaction
|
390
|
-
[1m[36mPhone Load (0.1ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 703612349]]
|
391
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
392
|
-
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
393
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
394
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
395
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
396
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
397
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
398
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
399
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
400
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
401
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
402
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
403
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
404
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
405
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
406
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
407
|
-
[1m[35m (0.2ms)[0m rollback transaction
|
408
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
409
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
410
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
411
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
412
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
413
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
414
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
415
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
416
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
417
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
418
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
419
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
420
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
421
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
422
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
423
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
424
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
425
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
426
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
427
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
428
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
429
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
430
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
431
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
432
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
433
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
434
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
435
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
436
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
437
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
438
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
439
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
440
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
441
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
442
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
443
|
-
[1m[35mPhone Load (0.1ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
444
|
-
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "phones" [0m
|
445
|
-
Processing by PhonesController#create as HTML
|
446
|
-
Parameters: {"phone"=>{"number"=>"972541234567"}}
|
447
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
448
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "phones" ("created_at", "number", "possible_number", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Thu, 30 May 2013 07:57:45 UTC +00:00], ["number", "972541234567"], ["possible_number", nil], ["updated_at", Thu, 30 May 2013 07:57:45 UTC +00:00]]
|
449
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
450
|
-
Redirected to http://test.host/phones/703612350
|
451
|
-
Completed 302 Found in 3ms (ActiveRecord: 0.3ms)
|
452
|
-
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "phones" [0m
|
453
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
454
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
455
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
456
|
-
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "phones" [0m
|
457
|
-
Processing by PhonesController#destroy as HTML
|
458
|
-
Parameters: {"id"=>"450723037"}
|
459
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", "450723037"]]
|
460
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
461
|
-
[1m[35mSQL (0.1ms)[0m DELETE FROM "phones" WHERE "phones"."id" = ? [["id", 450723037]]
|
462
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
463
|
-
Redirected to http://test.host/phones
|
464
|
-
Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
|
465
|
-
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "phones"
|
466
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
467
|
-
[1m[35m (0.0ms)[0m begin transaction
|
468
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
469
|
-
Processing by PhonesController#edit as HTML
|
470
|
-
Parameters: {"id"=>"450723037"}
|
471
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", "450723037"]]
|
472
|
-
Rendered phones/_form.html.erb (5.5ms)
|
473
|
-
Completed 200 OK in 34ms (Views: 32.9ms | ActiveRecord: 0.0ms)
|
474
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
475
|
-
[1m[35m (0.0ms)[0m begin transaction
|
476
|
-
[1m[36mPhone Load (0.1ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
477
|
-
Processing by PhonesController#index as HTML
|
478
|
-
[1m[35mPhone Load (0.1ms)[0m SELECT "phones".* FROM "phones"
|
479
|
-
Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.1ms)
|
480
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
481
|
-
[1m[35m (0.0ms)[0m begin transaction
|
482
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
483
|
-
Processing by PhonesController#new as HTML
|
484
|
-
Rendered phones/_form.html.erb (1.2ms)
|
485
|
-
Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
|
486
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
487
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
488
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
489
|
-
Processing by PhonesController#show as HTML
|
490
|
-
Parameters: {"id"=>"450723037"}
|
491
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", "450723037"]]
|
492
|
-
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
493
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
494
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
495
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
496
|
-
Processing by PhonesController#update as HTML
|
497
|
-
Parameters: {"phone"=>{"number"=>"972541234567"}, "id"=>"450723037"}
|
498
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", "450723037"]]
|
499
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
500
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
501
|
-
Redirected to http://test.host/phones/450723037
|
502
|
-
Completed 302 Found in 3ms (ActiveRecord: 0.1ms)
|
503
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
504
|
-
Connecting to database specified by database.yml
|
505
|
-
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
506
|
-
[1m[35mFixture Delete (0.1ms)[0m DELETE FROM "phones"
|
507
|
-
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "phones" ("number", "possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', '972541234567', '2013-06-04 11:25:00', '2013-06-04 11:25:00', 450723037)[0m
|
508
|
-
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "phones" ("number", "created_at", "updated_at", "id") VALUES ('wrong', '2013-06-04 11:25:00', '2013-06-04 11:25:00', 667262234)
|
509
|
-
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "phones" ("number", "created_at", "updated_at", "id") VALUES ('972541234567', '2013-06-04 11:25:00', '2013-06-04 11:25:00', 512636273)[0m
|
510
|
-
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "phones" ("possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', '2013-06-04 11:25:00', '2013-06-04 11:25:00', 23760034)
|
511
|
-
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "phones" ("number", "possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', 'wrong', '2013-06-04 11:25:00', '2013-06-04 11:25:00', 703612349)[0m
|
512
|
-
[1m[35m (8.0ms)[0m commit transaction
|
513
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
514
|
-
[1m[35mPhone Load (1.5ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 512636273]]
|
515
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
516
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
517
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
518
|
-
[1m[35m (0.0ms)[0m begin transaction
|
519
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
520
|
-
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
521
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
522
|
-
[1m[35m (0.0ms)[0m begin transaction
|
523
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
524
|
-
[1m[35mSQL (1.3ms)[0m INSERT INTO "phones" ("created_at", "number", "possible_number", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 04 Jun 2013 11:25:00 UTC +00:00], ["number", "972541234567"], ["possible_number", nil], ["updated_at", Tue, 04 Jun 2013 11:25:00 UTC +00:00]]
|
525
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
526
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
527
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
528
|
-
[1m[35mPhone Load (0.1ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
529
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
530
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
531
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
532
|
-
[1m[35m (0.0ms)[0m begin transaction
|
533
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 23760034]]
|
534
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
535
|
-
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
536
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
537
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
538
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 667262234]]
|
539
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
540
|
-
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
541
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
542
|
-
[1m[35m (0.0ms)[0m begin transaction
|
543
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 703612349]]
|
544
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
545
|
-
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
546
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
547
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
548
|
-
[1m[35mPhone Load (0.1ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
549
|
-
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "phones" [0m
|
550
|
-
Processing by PhonesController#create as HTML
|
551
|
-
Parameters: {"phone"=>{"number"=>"972541234567"}}
|
552
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
553
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "phones" ("created_at", "number", "possible_number", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 04 Jun 2013 11:25:00 UTC +00:00], ["number", "972541234567"], ["possible_number", nil], ["updated_at", Tue, 04 Jun 2013 11:25:00 UTC +00:00]]
|
554
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
555
|
-
Redirected to http://test.host/phones/703612350
|
556
|
-
Completed 302 Found in 3ms (ActiveRecord: 0.2ms)
|
557
|
-
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "phones" [0m
|
558
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
559
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
560
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
561
|
-
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "phones" [0m
|
562
|
-
Processing by PhonesController#destroy as HTML
|
563
|
-
Parameters: {"id"=>"450723037"}
|
564
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", "450723037"]]
|
565
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
566
|
-
[1m[35mSQL (0.1ms)[0m DELETE FROM "phones" WHERE "phones"."id" = ? [["id", 450723037]]
|
567
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
568
|
-
Redirected to http://test.host/phones
|
569
|
-
Completed 302 Found in 1ms (ActiveRecord: 0.2ms)
|
570
|
-
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "phones"
|
571
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
572
|
-
[1m[35m (0.0ms)[0m begin transaction
|
573
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
574
|
-
Processing by PhonesController#edit as HTML
|
575
|
-
Parameters: {"id"=>"450723037"}
|
576
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", "450723037"]]
|
577
|
-
Rendered phones/_form.html.erb (5.4ms)
|
578
|
-
Completed 200 OK in 50ms (Views: 49.2ms | ActiveRecord: 0.0ms)
|
579
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
580
|
-
[1m[35m (0.0ms)[0m begin transaction
|
581
|
-
[1m[36mPhone Load (0.1ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
582
|
-
Processing by PhonesController#index as HTML
|
583
|
-
[1m[35mPhone Load (0.1ms)[0m SELECT "phones".* FROM "phones"
|
584
|
-
Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.1ms)
|
585
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
586
|
-
[1m[35m (0.0ms)[0m begin transaction
|
587
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
588
|
-
Processing by PhonesController#new as HTML
|
589
|
-
Rendered phones/_form.html.erb (1.2ms)
|
590
|
-
Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
|
591
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
592
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
593
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
594
|
-
Processing by PhonesController#show as HTML
|
595
|
-
Parameters: {"id"=>"450723037"}
|
596
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", "450723037"]]
|
597
|
-
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
598
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
599
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
600
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
601
|
-
Processing by PhonesController#update as HTML
|
602
|
-
Parameters: {"phone"=>{"number"=>"972541234567"}, "id"=>"450723037"}
|
603
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", "450723037"]]
|
604
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
605
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
606
|
-
Redirected to http://test.host/phones/450723037
|
607
|
-
Completed 302 Found in 3ms (ActiveRecord: 0.1ms)
|
608
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
609
|
-
Connecting to database specified by database.yml
|
610
|
-
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
611
|
-
[1m[35mFixture Delete (0.1ms)[0m DELETE FROM "phones"
|
612
|
-
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "phones" ("number", "possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', '972541234567', '2013-06-04 11:25:09', '2013-06-04 11:25:09', 450723037)[0m
|
613
|
-
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "phones" ("number", "created_at", "updated_at", "id") VALUES ('wrong', '2013-06-04 11:25:09', '2013-06-04 11:25:09', 667262234)
|
614
|
-
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "phones" ("number", "created_at", "updated_at", "id") VALUES ('972541234567', '2013-06-04 11:25:09', '2013-06-04 11:25:09', 512636273)[0m
|
615
|
-
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "phones" ("possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', '2013-06-04 11:25:09', '2013-06-04 11:25:09', 23760034)
|
616
|
-
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "phones" ("number", "possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', 'wrong', '2013-06-04 11:25:09', '2013-06-04 11:25:09', 703612349)[0m
|
617
|
-
[1m[35m (3.2ms)[0m commit transaction
|
618
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
619
|
-
[1m[35mPhone Load (1.4ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 512636273]]
|
620
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
621
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
622
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
623
|
-
[1m[35m (0.0ms)[0m begin transaction
|
624
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
625
|
-
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
626
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
627
|
-
[1m[35m (0.0ms)[0m begin transaction
|
628
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
629
|
-
[1m[35mSQL (0.7ms)[0m INSERT INTO "phones" ("created_at", "number", "possible_number", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 04 Jun 2013 11:25:09 UTC +00:00], ["number", "972541234567"], ["possible_number", nil], ["updated_at", Tue, 04 Jun 2013 11:25:09 UTC +00:00]]
|
630
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
631
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
632
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
633
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
634
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
635
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
636
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
637
|
-
[1m[35m (0.0ms)[0m begin transaction
|
638
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 23760034]]
|
639
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
640
|
-
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
641
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
642
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
643
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 667262234]]
|
644
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
645
|
-
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
646
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
647
|
-
[1m[35m (0.0ms)[0m begin transaction
|
648
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 703612349]]
|
649
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
650
|
-
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
651
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
652
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
653
|
-
[1m[35mPhone Load (0.1ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
654
|
-
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "phones" [0m
|
655
|
-
Processing by PhonesController#create as HTML
|
656
|
-
Parameters: {"phone"=>{"number"=>"972541234567"}}
|
657
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
658
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "phones" ("created_at", "number", "possible_number", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 04 Jun 2013 11:25:09 UTC +00:00], ["number", "972541234567"], ["possible_number", nil], ["updated_at", Tue, 04 Jun 2013 11:25:09 UTC +00:00]]
|
659
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
660
|
-
Redirected to http://test.host/phones/703612350
|
661
|
-
Completed 302 Found in 3ms (ActiveRecord: 0.3ms)
|
662
|
-
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "phones" [0m
|
663
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
664
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
665
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
666
|
-
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "phones" [0m
|
667
|
-
Processing by PhonesController#destroy as HTML
|
668
|
-
Parameters: {"id"=>"450723037"}
|
669
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", "450723037"]]
|
670
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
671
|
-
[1m[35mSQL (0.1ms)[0m DELETE FROM "phones" WHERE "phones"."id" = ? [["id", 450723037]]
|
672
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
673
|
-
Redirected to http://test.host/phones
|
674
|
-
Completed 302 Found in 1ms (ActiveRecord: 0.2ms)
|
675
|
-
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "phones"
|
676
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
677
|
-
[1m[35m (0.0ms)[0m begin transaction
|
678
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
679
|
-
Processing by PhonesController#edit as HTML
|
680
|
-
Parameters: {"id"=>"450723037"}
|
681
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", "450723037"]]
|
682
|
-
Rendered phones/_form.html.erb (20.1ms)
|
683
|
-
Completed 200 OK in 47ms (Views: 46.1ms | ActiveRecord: 0.0ms)
|
684
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
685
|
-
[1m[35m (0.0ms)[0m begin transaction
|
686
|
-
[1m[36mPhone Load (0.1ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
687
|
-
Processing by PhonesController#index as HTML
|
688
|
-
[1m[35mPhone Load (0.1ms)[0m SELECT "phones".* FROM "phones"
|
689
|
-
Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.1ms)
|
690
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
691
|
-
[1m[35m (0.0ms)[0m begin transaction
|
692
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
693
|
-
Processing by PhonesController#new as HTML
|
694
|
-
Rendered phones/_form.html.erb (1.2ms)
|
695
|
-
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
696
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
697
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
698
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
699
|
-
Processing by PhonesController#show as HTML
|
700
|
-
Parameters: {"id"=>"450723037"}
|
701
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", "450723037"]]
|
702
|
-
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
703
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
704
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
705
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
706
|
-
Processing by PhonesController#update as HTML
|
707
|
-
Parameters: {"phone"=>{"number"=>"972541234567"}, "id"=>"450723037"}
|
708
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", "450723037"]]
|
709
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
710
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
711
|
-
Redirected to http://test.host/phones/450723037
|
712
|
-
Completed 302 Found in 3ms (ActiveRecord: 0.1ms)
|
713
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
714
|
-
Connecting to database specified by database.yml
|
715
|
-
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
716
|
-
[1m[35mFixture Delete (0.1ms)[0m DELETE FROM "phones"
|
717
|
-
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "phones" ("number", "possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', '972541234567', '2013-07-11 12:30:08', '2013-07-11 12:30:08', 450723037)[0m
|
718
|
-
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "phones" ("number", "created_at", "updated_at", "id") VALUES ('wrong', '2013-07-11 12:30:08', '2013-07-11 12:30:08', 667262234)
|
719
|
-
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "phones" ("number", "created_at", "updated_at", "id") VALUES ('972541234567', '2013-07-11 12:30:08', '2013-07-11 12:30:08', 512636273)[0m
|
720
|
-
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "phones" ("possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', '2013-07-11 12:30:08', '2013-07-11 12:30:08', 23760034)
|
721
|
-
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "phones" ("number", "possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', 'wrong', '2013-07-11 12:30:08', '2013-07-11 12:30:08', 703612349)[0m
|
722
|
-
[1m[35m (8.0ms)[0m commit transaction
|
723
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
724
|
-
[1m[35mPhone Load (1.5ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 512636273]]
|
725
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
726
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
727
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
728
|
-
[1m[35m (0.0ms)[0m begin transaction
|
729
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
730
|
-
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
731
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
732
|
-
[1m[35m (0.0ms)[0m begin transaction
|
733
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
734
|
-
[1m[35mSQL (1.4ms)[0m INSERT INTO "phones" ("created_at", "number", "possible_number", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 11 Jul 2013 12:30:08 UTC +00:00], ["number", "972541234567"], ["possible_number", nil], ["updated_at", Thu, 11 Jul 2013 12:30:08 UTC +00:00]]
|
735
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
736
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
737
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
738
|
-
[1m[35mPhone Load (0.1ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
739
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
740
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
741
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
742
|
-
[1m[35m (0.0ms)[0m begin transaction
|
743
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 23760034]]
|
744
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
745
|
-
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
746
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
747
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
748
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 667262234]]
|
749
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
750
|
-
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
751
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
752
|
-
[1m[35m (0.0ms)[0m begin transaction
|
753
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 703612349]]
|
754
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
755
|
-
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
756
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
757
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
758
|
-
[1m[35mPhone Load (0.1ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
759
|
-
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "phones" [0m
|
760
|
-
Processing by PhonesController#create as HTML
|
761
|
-
Parameters: {"phone"=>{"number"=>"972541234567"}}
|
762
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
763
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "phones" ("created_at", "number", "possible_number", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Thu, 11 Jul 2013 12:30:09 UTC +00:00], ["number", "972541234567"], ["possible_number", nil], ["updated_at", Thu, 11 Jul 2013 12:30:09 UTC +00:00]]
|
764
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
765
|
-
Redirected to http://test.host/phones/703612350
|
766
|
-
Completed 302 Found in 3ms (ActiveRecord: 0.3ms)
|
767
|
-
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "phones" [0m
|
768
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
769
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
770
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
771
|
-
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "phones" [0m
|
772
|
-
Processing by PhonesController#destroy as HTML
|
773
|
-
Parameters: {"id"=>"450723037"}
|
774
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", "450723037"]]
|
775
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
776
|
-
[1m[35mSQL (0.1ms)[0m DELETE FROM "phones" WHERE "phones"."id" = ? [["id", 450723037]]
|
777
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
778
|
-
Redirected to http://test.host/phones
|
779
|
-
Completed 302 Found in 1ms (ActiveRecord: 0.2ms)
|
780
|
-
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "phones"
|
781
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
782
|
-
[1m[35m (0.0ms)[0m begin transaction
|
783
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
784
|
-
Processing by PhonesController#edit as HTML
|
785
|
-
Parameters: {"id"=>"450723037"}
|
786
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", "450723037"]]
|
787
|
-
Rendered phones/_form.html.erb (4.9ms)
|
788
|
-
Completed 200 OK in 31ms (Views: 30.1ms | ActiveRecord: 0.0ms)
|
789
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
790
|
-
[1m[35m (0.0ms)[0m begin transaction
|
791
|
-
[1m[36mPhone Load (0.1ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
792
|
-
Processing by PhonesController#index as HTML
|
793
|
-
[1m[35mPhone Load (0.1ms)[0m SELECT "phones".* FROM "phones"
|
794
|
-
Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.1ms)
|
795
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
796
|
-
[1m[35m (0.0ms)[0m begin transaction
|
797
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
798
|
-
Processing by PhonesController#new as HTML
|
799
|
-
Rendered phones/_form.html.erb (1.2ms)
|
800
|
-
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
801
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
802
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
803
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
804
|
-
Processing by PhonesController#show as HTML
|
805
|
-
Parameters: {"id"=>"450723037"}
|
806
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", "450723037"]]
|
807
|
-
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
808
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
809
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
810
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
811
|
-
Processing by PhonesController#update as HTML
|
812
|
-
Parameters: {"phone"=>{"number"=>"972541234567"}, "id"=>"450723037"}
|
813
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", "450723037"]]
|
814
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
815
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
816
|
-
Redirected to http://test.host/phones/450723037
|
817
|
-
Completed 302 Found in 3ms (ActiveRecord: 0.1ms)
|
818
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
819
|
-
Connecting to database specified by database.yml
|
820
|
-
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
821
|
-
[1m[35mFixture Delete (0.1ms)[0m DELETE FROM "phones"
|
822
|
-
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "phones" ("number", "possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', '972541234567', '2013-08-21 13:42:22', '2013-08-21 13:42:22', 450723037)[0m
|
823
|
-
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "phones" ("number", "created_at", "updated_at", "id") VALUES ('wrong', '2013-08-21 13:42:22', '2013-08-21 13:42:22', 667262234)
|
824
|
-
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "phones" ("number", "created_at", "updated_at", "id") VALUES ('972541234567', '2013-08-21 13:42:22', '2013-08-21 13:42:22', 512636273)[0m
|
825
|
-
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "phones" ("possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', '2013-08-21 13:42:22', '2013-08-21 13:42:22', 23760034)
|
826
|
-
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "phones" ("number", "possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', 'wrong', '2013-08-21 13:42:22', '2013-08-21 13:42:22', 703612349)[0m
|
827
|
-
[1m[35m (4.4ms)[0m commit transaction
|
828
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
829
|
-
[1m[35mPhone Load (1.4ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 512636273]]
|
830
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
831
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
832
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
833
|
-
[1m[35m (0.0ms)[0m begin transaction
|
834
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
835
|
-
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
836
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
837
|
-
[1m[35m (0.0ms)[0m begin transaction
|
838
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
839
|
-
[1m[35mSQL (1.1ms)[0m INSERT INTO "phones" ("created_at", "number", "possible_number", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 21 Aug 2013 13:42:22 UTC +00:00], ["number", "972541234567"], ["possible_number", nil], ["updated_at", Wed, 21 Aug 2013 13:42:22 UTC +00:00]]
|
840
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
841
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
842
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
843
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
844
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
845
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
846
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
847
|
-
[1m[35m (0.0ms)[0m begin transaction
|
848
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 23760034]]
|
849
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
850
|
-
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
851
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
852
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
853
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 667262234]]
|
854
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
855
|
-
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
856
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
857
|
-
[1m[35m (0.0ms)[0m begin transaction
|
858
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 703612349]]
|
859
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
860
|
-
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
861
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
862
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
863
|
-
[1m[35mPhone Load (0.1ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
864
|
-
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "phones" [0m
|
865
|
-
Processing by PhonesController#create as HTML
|
866
|
-
Parameters: {"phone"=>{"number"=>"972541234567"}}
|
867
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
868
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "phones" ("created_at", "number", "possible_number", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Wed, 21 Aug 2013 13:42:22 UTC +00:00], ["number", "972541234567"], ["possible_number", nil], ["updated_at", Wed, 21 Aug 2013 13:42:22 UTC +00:00]]
|
869
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
870
|
-
Redirected to http://test.host/phones/703612350
|
871
|
-
Completed 302 Found in 3ms (ActiveRecord: 0.3ms)
|
872
|
-
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "phones" [0m
|
873
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
874
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
875
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
876
|
-
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "phones" [0m
|
877
|
-
Processing by PhonesController#destroy as HTML
|
878
|
-
Parameters: {"id"=>"450723037"}
|
879
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", "450723037"]]
|
880
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
881
|
-
[1m[35mSQL (0.1ms)[0m DELETE FROM "phones" WHERE "phones"."id" = ? [["id", 450723037]]
|
882
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
883
|
-
Redirected to http://test.host/phones
|
884
|
-
Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
|
885
|
-
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "phones"
|
886
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
887
|
-
[1m[35m (0.0ms)[0m begin transaction
|
888
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
889
|
-
Processing by PhonesController#edit as HTML
|
890
|
-
Parameters: {"id"=>"450723037"}
|
891
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", "450723037"]]
|
892
|
-
Rendered phones/_form.html.erb (1.9ms)
|
893
|
-
Completed 200 OK in 28ms (Views: 27.2ms | ActiveRecord: 0.0ms)
|
894
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
895
|
-
[1m[35m (0.0ms)[0m begin transaction
|
896
|
-
[1m[36mPhone Load (0.1ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
897
|
-
Processing by PhonesController#index as HTML
|
898
|
-
[1m[35mPhone Load (0.1ms)[0m SELECT "phones".* FROM "phones"
|
899
|
-
Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.1ms)
|
900
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
901
|
-
[1m[35m (0.0ms)[0m begin transaction
|
902
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
903
|
-
Processing by PhonesController#new as HTML
|
904
|
-
Rendered phones/_form.html.erb (1.2ms)
|
905
|
-
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
906
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
907
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
908
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
909
|
-
Processing by PhonesController#show as HTML
|
910
|
-
Parameters: {"id"=>"450723037"}
|
911
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", "450723037"]]
|
912
|
-
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
913
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
914
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
915
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
916
|
-
Processing by PhonesController#update as HTML
|
917
|
-
Parameters: {"phone"=>{"number"=>"972541234567"}, "id"=>"450723037"}
|
918
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", "450723037"]]
|
919
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
920
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
921
|
-
Redirected to http://test.host/phones/450723037
|
922
|
-
Completed 302 Found in 3ms (ActiveRecord: 0.1ms)
|
923
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
924
|
-
Connecting to database specified by database.yml
|
925
|
-
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
926
|
-
[1m[35mFixture Delete (0.1ms)[0m DELETE FROM "phones"
|
927
|
-
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "phones" ("number", "possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', '972541234567', '2013-08-21 13:43:19', '2013-08-21 13:43:19', 450723037)[0m
|
928
|
-
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "phones" ("number", "created_at", "updated_at", "id") VALUES ('wrong', '2013-08-21 13:43:19', '2013-08-21 13:43:19', 667262234)
|
929
|
-
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "phones" ("number", "created_at", "updated_at", "id") VALUES ('972541234567', '2013-08-21 13:43:19', '2013-08-21 13:43:19', 512636273)[0m
|
930
|
-
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "phones" ("possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', '2013-08-21 13:43:19', '2013-08-21 13:43:19', 23760034)
|
931
|
-
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "phones" ("number", "possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', 'wrong', '2013-08-21 13:43:19', '2013-08-21 13:43:19', 703612349)[0m
|
932
|
-
[1m[35m (3.5ms)[0m commit transaction
|
933
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
934
|
-
[1m[35mPhone Load (0.8ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 512636273]]
|
935
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
936
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
937
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
938
|
-
[1m[35m (0.0ms)[0m begin transaction
|
939
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
940
|
-
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
941
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
942
|
-
[1m[35m (0.0ms)[0m begin transaction
|
943
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
944
|
-
[1m[35mSQL (0.7ms)[0m INSERT INTO "phones" ("created_at", "number", "possible_number", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 21 Aug 2013 13:43:19 UTC +00:00], ["number", "972541234567"], ["possible_number", nil], ["updated_at", Wed, 21 Aug 2013 13:43:19 UTC +00:00]]
|
945
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
946
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
947
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
948
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
949
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
950
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
951
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
952
|
-
[1m[35m (0.0ms)[0m begin transaction
|
953
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 23760034]]
|
954
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
955
|
-
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
956
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
957
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
958
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 667262234]]
|
959
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
960
|
-
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
961
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
962
|
-
[1m[35m (0.0ms)[0m begin transaction
|
963
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 703612349]]
|
964
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
965
|
-
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
966
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
967
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
968
|
-
[1m[35mPhone Load (0.1ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
969
|
-
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "phones" [0m
|
970
|
-
Processing by PhonesController#create as HTML
|
971
|
-
Parameters: {"phone"=>{"number"=>"972541234567"}}
|
972
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
973
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "phones" ("created_at", "number", "possible_number", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Wed, 21 Aug 2013 13:43:19 UTC +00:00], ["number", "972541234567"], ["possible_number", nil], ["updated_at", Wed, 21 Aug 2013 13:43:19 UTC +00:00]]
|
974
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
975
|
-
Redirected to http://test.host/phones/703612350
|
976
|
-
Completed 302 Found in 3ms (ActiveRecord: 0.3ms)
|
977
|
-
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "phones" [0m
|
978
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
979
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
980
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
981
|
-
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "phones" [0m
|
982
|
-
Processing by PhonesController#destroy as HTML
|
983
|
-
Parameters: {"id"=>"450723037"}
|
984
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", "450723037"]]
|
985
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
986
|
-
[1m[35mSQL (0.1ms)[0m DELETE FROM "phones" WHERE "phones"."id" = ? [["id", 450723037]]
|
987
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
988
|
-
Redirected to http://test.host/phones
|
989
|
-
Completed 302 Found in 1ms (ActiveRecord: 0.2ms)
|
990
|
-
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "phones"
|
991
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
992
|
-
[1m[35m (0.0ms)[0m begin transaction
|
993
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
994
|
-
Processing by PhonesController#edit as HTML
|
995
|
-
Parameters: {"id"=>"450723037"}
|
996
|
-
[1m[35mPhone Load (0.1ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", "450723037"]]
|
997
|
-
Rendered phones/_form.html.erb (2.0ms)
|
998
|
-
Completed 200 OK in 28ms (Views: 26.7ms | ActiveRecord: 0.1ms)
|
999
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1000
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1001
|
-
[1m[36mPhone Load (0.1ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
1002
|
-
Processing by PhonesController#index as HTML
|
1003
|
-
[1m[35mPhone Load (0.1ms)[0m SELECT "phones".* FROM "phones"
|
1004
|
-
Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.1ms)
|
1005
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1006
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1007
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
1008
|
-
Processing by PhonesController#new as HTML
|
1009
|
-
Rendered phones/_form.html.erb (1.1ms)
|
1010
|
-
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
1011
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
1012
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1013
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
1014
|
-
Processing by PhonesController#show as HTML
|
1015
|
-
Parameters: {"id"=>"450723037"}
|
1016
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", "450723037"]]
|
1017
|
-
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
1018
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
1019
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1020
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
1021
|
-
Processing by PhonesController#update as HTML
|
1022
|
-
Parameters: {"phone"=>{"number"=>"972541234567"}, "id"=>"450723037"}
|
1023
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", "450723037"]]
|
1024
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1025
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1026
|
-
Redirected to http://test.host/phones/450723037
|
1027
|
-
Completed 302 Found in 3ms (ActiveRecord: 0.1ms)
|
1028
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
1029
|
-
Connecting to database specified by database.yml
|
1030
|
-
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
1031
|
-
[1m[35mFixture Delete (0.1ms)[0m DELETE FROM "phones"
|
1032
|
-
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "phones" ("number", "possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', '972541234567', '2013-09-12 12:14:50', '2013-09-12 12:14:50', 450723037)[0m
|
1033
|
-
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "phones" ("number", "created_at", "updated_at", "id") VALUES ('wrong', '2013-09-12 12:14:50', '2013-09-12 12:14:50', 667262234)
|
1034
|
-
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "phones" ("number", "created_at", "updated_at", "id") VALUES ('972541234567', '2013-09-12 12:14:50', '2013-09-12 12:14:50', 512636273)[0m
|
1035
|
-
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "phones" ("possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', '2013-09-12 12:14:50', '2013-09-12 12:14:50', 23760034)
|
1036
|
-
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "phones" ("number", "possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', 'wrong', '2013-09-12 12:14:50', '2013-09-12 12:14:50', 703612349)[0m
|
1037
|
-
[1m[35m (9.4ms)[0m commit transaction
|
1038
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1039
|
-
[1m[35mPhone Load (1.6ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 512636273]]
|
1040
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1041
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1042
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1043
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1044
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1045
|
-
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1046
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1047
|
-
[1m[35m (0.1ms)[0m begin transaction
|
1048
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1049
|
-
[1m[35mSQL (1.1ms)[0m INSERT INTO "phones" ("created_at", "number", "possible_number", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 12 Sep 2013 12:14:50 UTC +00:00], ["number", "972541234567"], ["possible_number", nil], ["updated_at", Thu, 12 Sep 2013 12:14:50 UTC +00:00]]
|
1050
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1051
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1052
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1053
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
1054
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1055
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1056
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1057
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1058
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 23760034]]
|
1059
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1060
|
-
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1061
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
1062
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1063
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 667262234]]
|
1064
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1065
|
-
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1066
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1067
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1068
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 703612349]]
|
1069
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1070
|
-
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1071
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
1072
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1073
|
-
[1m[35mPhone Load (0.1ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
1074
|
-
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "phones" [0m
|
1075
|
-
Processing by PhonesController#create as HTML
|
1076
|
-
Parameters: {"phone"=>{"number"=>"972541234567"}}
|
1077
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1078
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "phones" ("created_at", "number", "possible_number", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Thu, 12 Sep 2013 12:14:50 UTC +00:00], ["number", "972541234567"], ["possible_number", nil], ["updated_at", Thu, 12 Sep 2013 12:14:50 UTC +00:00]]
|
1079
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1080
|
-
Redirected to http://test.host/phones/703612350
|
1081
|
-
Completed 302 Found in 3ms (ActiveRecord: 0.3ms)
|
1082
|
-
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "phones" [0m
|
1083
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1084
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1085
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
1086
|
-
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "phones" [0m
|
1087
|
-
Processing by PhonesController#destroy as HTML
|
1088
|
-
Parameters: {"id"=>"450723037"}
|
1089
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", "450723037"]]
|
1090
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1091
|
-
[1m[35mSQL (0.1ms)[0m DELETE FROM "phones" WHERE "phones"."id" = ? [["id", 450723037]]
|
1092
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1093
|
-
Redirected to http://test.host/phones
|
1094
|
-
Completed 302 Found in 1ms (ActiveRecord: 0.2ms)
|
1095
|
-
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "phones"
|
1096
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1097
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1098
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
1099
|
-
Processing by PhonesController#edit as HTML
|
1100
|
-
Parameters: {"id"=>"450723037"}
|
1101
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", "450723037"]]
|
1102
|
-
Rendered phones/_form.html.erb (2.0ms)
|
1103
|
-
Completed 200 OK in 30ms (Views: 29.8ms | ActiveRecord: 0.0ms)
|
1104
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1105
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1106
|
-
[1m[36mPhone Load (0.1ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
1107
|
-
Processing by PhonesController#index as HTML
|
1108
|
-
[1m[35mPhone Load (0.1ms)[0m SELECT "phones".* FROM "phones"
|
1109
|
-
Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.1ms)
|
1110
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1111
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1112
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
1113
|
-
Processing by PhonesController#new as HTML
|
1114
|
-
Rendered phones/_form.html.erb (1.3ms)
|
1115
|
-
Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
|
1116
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
1117
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1118
|
-
[1m[35mPhone Load (0.1ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
1119
|
-
Processing by PhonesController#show as HTML
|
1120
|
-
Parameters: {"id"=>"450723037"}
|
1121
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", "450723037"]]
|
1122
|
-
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
1123
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
1124
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1125
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
1126
|
-
Processing by PhonesController#update as HTML
|
1127
|
-
Parameters: {"phone"=>{"number"=>"972541234567"}, "id"=>"450723037"}
|
1128
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", "450723037"]]
|
1129
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1130
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1131
|
-
Redirected to http://test.host/phones/450723037
|
1132
|
-
Completed 302 Found in 3ms (ActiveRecord: 0.1ms)
|
1133
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
1134
|
-
Connecting to database specified by database.yml
|
1135
|
-
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1136
|
-
[1m[35mFixture Delete (0.1ms)[0m DELETE FROM "phones"
|
1137
|
-
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "phones" ("number", "possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', '972541234567', '2013-09-12 12:16:12', '2013-09-12 12:16:12', 450723037)[0m
|
1138
|
-
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "phones" ("number", "created_at", "updated_at", "id") VALUES ('wrong', '2013-09-12 12:16:12', '2013-09-12 12:16:12', 667262234)
|
1139
|
-
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "phones" ("number", "created_at", "updated_at", "id") VALUES ('972541234567', '2013-09-12 12:16:12', '2013-09-12 12:16:12', 512636273)[0m
|
1140
|
-
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "phones" ("possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', '2013-09-12 12:16:12', '2013-09-12 12:16:12', 23760034)
|
1141
|
-
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "phones" ("number", "possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', 'wrong', '2013-09-12 12:16:12', '2013-09-12 12:16:12', 703612349)[0m
|
1142
|
-
[1m[35m (4.2ms)[0m commit transaction
|
1143
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1144
|
-
[1m[35mPhone Load (0.8ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 512636273]]
|
1145
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1146
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1147
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1148
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1149
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1150
|
-
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1151
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1152
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1153
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1154
|
-
[1m[35mSQL (0.8ms)[0m INSERT INTO "phones" ("created_at", "number", "possible_number", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 12 Sep 2013 12:16:12 UTC +00:00], ["number", "972541234567"], ["possible_number", nil], ["updated_at", Thu, 12 Sep 2013 12:16:12 UTC +00:00]]
|
1155
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1156
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1157
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1158
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
1159
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1160
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1161
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1162
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1163
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 23760034]]
|
1164
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1165
|
-
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1166
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
1167
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1168
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 667262234]]
|
1169
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1170
|
-
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1171
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1172
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1173
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 703612349]]
|
1174
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1175
|
-
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1176
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
1177
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1178
|
-
[1m[35mPhone Load (0.1ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
1179
|
-
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "phones" [0m
|
1180
|
-
Processing by PhonesController#create as HTML
|
1181
|
-
Parameters: {"phone"=>{"number"=>"972541234567"}}
|
1182
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1183
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "phones" ("created_at", "number", "possible_number", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Thu, 12 Sep 2013 12:16:12 UTC +00:00], ["number", "972541234567"], ["possible_number", nil], ["updated_at", Thu, 12 Sep 2013 12:16:12 UTC +00:00]]
|
1184
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1185
|
-
Redirected to http://test.host/phones/703612350
|
1186
|
-
Completed 302 Found in 3ms (ActiveRecord: 0.3ms)
|
1187
|
-
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "phones" [0m
|
1188
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1189
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1190
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
1191
|
-
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "phones" [0m
|
1192
|
-
Processing by PhonesController#destroy as HTML
|
1193
|
-
Parameters: {"id"=>"450723037"}
|
1194
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", "450723037"]]
|
1195
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1196
|
-
[1m[35mSQL (0.1ms)[0m DELETE FROM "phones" WHERE "phones"."id" = ? [["id", 450723037]]
|
1197
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1198
|
-
Redirected to http://test.host/phones
|
1199
|
-
Completed 302 Found in 1ms (ActiveRecord: 0.2ms)
|
1200
|
-
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "phones"
|
1201
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1202
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1203
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
1204
|
-
Processing by PhonesController#edit as HTML
|
1205
|
-
Parameters: {"id"=>"450723037"}
|
1206
|
-
[1m[35mPhone Load (0.1ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", "450723037"]]
|
1207
|
-
Rendered phones/_form.html.erb (1.9ms)
|
1208
|
-
Completed 200 OK in 29ms (Views: 27.5ms | ActiveRecord: 0.1ms)
|
1209
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1210
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1211
|
-
[1m[36mPhone Load (0.1ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
1212
|
-
Processing by PhonesController#index as HTML
|
1213
|
-
[1m[35mPhone Load (0.1ms)[0m SELECT "phones".* FROM "phones"
|
1214
|
-
Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.1ms)
|
1215
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1216
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1217
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
1218
|
-
Processing by PhonesController#new as HTML
|
1219
|
-
Rendered phones/_form.html.erb (1.2ms)
|
1220
|
-
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
1221
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
1222
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1223
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
1224
|
-
Processing by PhonesController#show as HTML
|
1225
|
-
Parameters: {"id"=>"450723037"}
|
1226
|
-
[1m[36mPhone Load (0.1ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", "450723037"]]
|
1227
|
-
Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.1ms)
|
1228
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1229
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1230
|
-
[1m[35mPhone Load (0.1ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
1231
|
-
Processing by PhonesController#update as HTML
|
1232
|
-
Parameters: {"phone"=>{"number"=>"972541234567"}, "id"=>"450723037"}
|
1233
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", "450723037"]]
|
1234
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1235
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1236
|
-
Redirected to http://test.host/phones/450723037
|
1237
|
-
Completed 302 Found in 3ms (ActiveRecord: 0.1ms)
|
1238
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
1239
|
-
Connecting to database specified by database.yml
|
1240
|
-
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1241
|
-
[1m[35mFixture Delete (0.1ms)[0m DELETE FROM "phones"
|
1242
|
-
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "phones" ("number", "possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', '972541234567', '2013-09-24 08:40:08', '2013-09-24 08:40:08', 450723037)[0m
|
1243
|
-
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "phones" ("number", "created_at", "updated_at", "id") VALUES ('wrong', '2013-09-24 08:40:08', '2013-09-24 08:40:08', 667262234)
|
1244
|
-
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "phones" ("number", "created_at", "updated_at", "id") VALUES ('972541234567', '2013-09-24 08:40:08', '2013-09-24 08:40:08', 512636273)[0m
|
1245
|
-
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "phones" ("possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', '2013-09-24 08:40:08', '2013-09-24 08:40:08', 23760034)
|
1246
|
-
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "phones" ("number", "possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', 'wrong', '2013-09-24 08:40:08', '2013-09-24 08:40:08', 703612349)[0m
|
1247
|
-
[1m[35m (5.5ms)[0m commit transaction
|
1248
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1249
|
-
[1m[35mPhone Load (1.4ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 512636273]]
|
1250
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1251
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1252
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1253
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1254
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1255
|
-
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1256
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1257
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1258
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1259
|
-
[1m[35mSQL (0.8ms)[0m INSERT INTO "phones" ("created_at", "number", "possible_number", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Sep 2013 08:40:08 UTC +00:00], ["number", "972541234567"], ["possible_number", nil], ["updated_at", Tue, 24 Sep 2013 08:40:08 UTC +00:00]]
|
1260
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1261
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1262
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1263
|
-
[1m[35mPhone Load (0.1ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
1264
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1265
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1266
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1267
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1268
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 23760034]]
|
1269
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1270
|
-
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1271
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
1272
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1273
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 667262234]]
|
1274
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1275
|
-
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1276
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1277
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1278
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 703612349]]
|
1279
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1280
|
-
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1281
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
1282
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1283
|
-
[1m[35mPhone Load (0.1ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
1284
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1285
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1286
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
1287
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
1288
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1289
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
1290
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1291
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1292
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
1293
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
1294
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1295
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
1296
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1297
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1298
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
1299
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
1300
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1301
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
1302
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1303
|
-
Connecting to database specified by database.yml
|
1304
|
-
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
1305
|
-
[1m[35mFixture Delete (0.2ms)[0m DELETE FROM "phones"
|
1306
|
-
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "phones" ("number", "possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', '972541234567', '2013-09-24 08:40:33', '2013-09-24 08:40:33', 450723037)[0m
|
1307
|
-
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "phones" ("number", "created_at", "updated_at", "id") VALUES ('wrong', '2013-09-24 08:40:33', '2013-09-24 08:40:33', 667262234)
|
1308
|
-
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "phones" ("number", "created_at", "updated_at", "id") VALUES ('972541234567', '2013-09-24 08:40:33', '2013-09-24 08:40:33', 512636273)[0m
|
1309
|
-
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "phones" ("possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', '2013-09-24 08:40:33', '2013-09-24 08:40:33', 23760034)
|
1310
|
-
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "phones" ("number", "possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', 'wrong', '2013-09-24 08:40:33', '2013-09-24 08:40:33', 703612349)[0m
|
1311
|
-
[1m[35m (3.4ms)[0m commit transaction
|
1312
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1313
|
-
[1m[35mPhone Load (0.7ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 512636273]]
|
1314
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1315
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1316
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1317
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1318
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1319
|
-
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1320
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1321
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1322
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1323
|
-
[1m[35mSQL (0.7ms)[0m INSERT INTO "phones" ("created_at", "number", "possible_number", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Sep 2013 08:40:33 UTC +00:00], ["number", "972541234567"], ["possible_number", nil], ["updated_at", Tue, 24 Sep 2013 08:40:33 UTC +00:00]]
|
1324
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1325
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1326
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1327
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
1328
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1329
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1330
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1331
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1332
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 23760034]]
|
1333
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1334
|
-
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1335
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
1336
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1337
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 667262234]]
|
1338
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1339
|
-
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1340
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1341
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1342
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 703612349]]
|
1343
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1344
|
-
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1345
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
1346
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1347
|
-
[1m[35mPhone Load (0.1ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
1348
|
-
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "phones" [0m
|
1349
|
-
Processing by PhonesController#create as HTML
|
1350
|
-
Parameters: {"phone"=>{"number"=>"972541234567"}}
|
1351
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1352
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "phones" ("created_at", "number", "possible_number", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 24 Sep 2013 08:40:33 UTC +00:00], ["number", "972541234567"], ["possible_number", nil], ["updated_at", Tue, 24 Sep 2013 08:40:33 UTC +00:00]]
|
1353
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1354
|
-
Redirected to http://test.host/phones/703612350
|
1355
|
-
Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
|
1356
|
-
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "phones" [0m
|
1357
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1358
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1359
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
1360
|
-
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "phones" [0m
|
1361
|
-
Processing by PhonesController#destroy as HTML
|
1362
|
-
Parameters: {"id"=>"450723037"}
|
1363
|
-
[1m[35mPhone Load (0.1ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", "450723037"]]
|
1364
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1365
|
-
[1m[35mSQL (0.1ms)[0m DELETE FROM "phones" WHERE "phones"."id" = ? [["id", 450723037]]
|
1366
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1367
|
-
Redirected to http://test.host/phones
|
1368
|
-
Completed 302 Found in 2ms (ActiveRecord: 0.3ms)
|
1369
|
-
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "phones"
|
1370
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1371
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1372
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
1373
|
-
Processing by PhonesController#edit as HTML
|
1374
|
-
Parameters: {"id"=>"450723037"}
|
1375
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", "450723037"]]
|
1376
|
-
Rendered phones/_form.html.erb (2.1ms)
|
1377
|
-
Completed 200 OK in 27ms (Views: 26.1ms | ActiveRecord: 0.0ms)
|
1378
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1379
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1380
|
-
[1m[36mPhone Load (0.1ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
1381
|
-
Processing by PhonesController#index as HTML
|
1382
|
-
[1m[35mPhone Load (0.1ms)[0m SELECT "phones".* FROM "phones"
|
1383
|
-
Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.1ms)
|
1384
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1385
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1386
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
1387
|
-
Processing by PhonesController#new as HTML
|
1388
|
-
Rendered phones/_form.html.erb (1.2ms)
|
1389
|
-
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
1390
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
1391
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1392
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
1393
|
-
Processing by PhonesController#show as HTML
|
1394
|
-
Parameters: {"id"=>"450723037"}
|
1395
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", "450723037"]]
|
1396
|
-
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
1397
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
1398
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1399
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
1400
|
-
Processing by PhonesController#update as HTML
|
1401
|
-
Parameters: {"phone"=>{"number"=>"972541234567"}, "id"=>"450723037"}
|
1402
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", "450723037"]]
|
1403
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1404
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1405
|
-
Redirected to http://test.host/phones/450723037
|
1406
|
-
Completed 302 Found in 3ms (ActiveRecord: 0.1ms)
|
1407
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
1408
|
-
Connecting to database specified by database.yml
|
1409
|
-
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1410
|
-
[1m[35mFixture Delete (0.1ms)[0m DELETE FROM "phones"
|
1411
|
-
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "phones" ("number", "possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', '972541234567', '2013-09-24 08:44:07', '2013-09-24 08:44:07', 450723037)[0m
|
1412
|
-
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "phones" ("number", "created_at", "updated_at", "id") VALUES ('wrong', '2013-09-24 08:44:07', '2013-09-24 08:44:07', 667262234)
|
1413
|
-
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "phones" ("number", "created_at", "updated_at", "id") VALUES ('972541234567', '2013-09-24 08:44:07', '2013-09-24 08:44:07', 512636273)[0m
|
1414
|
-
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "phones" ("possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', '2013-09-24 08:44:07', '2013-09-24 08:44:07', 23760034)
|
1415
|
-
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "phones" ("number", "possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', 'wrong', '2013-09-24 08:44:07', '2013-09-24 08:44:07', 703612349)[0m
|
1416
|
-
[1m[35m (4.2ms)[0m commit transaction
|
1417
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1418
|
-
[1m[35mPhone Load (1.4ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 512636273]]
|
1419
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1420
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1421
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1422
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1423
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1424
|
-
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1425
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1426
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1427
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1428
|
-
[1m[35mSQL (0.7ms)[0m INSERT INTO "phones" ("created_at", "number", "possible_number", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 24 Sep 2013 08:44:08 UTC +00:00], ["number", "972541234567"], ["possible_number", nil], ["updated_at", Tue, 24 Sep 2013 08:44:08 UTC +00:00]]
|
1429
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1430
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1431
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1432
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
1433
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1434
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1435
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1436
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1437
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 23760034]]
|
1438
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1439
|
-
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1440
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
1441
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1442
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 667262234]]
|
1443
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1444
|
-
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1445
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1446
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1447
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 703612349]]
|
1448
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1449
|
-
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1450
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
1451
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1452
|
-
[1m[35mPhone Load (0.1ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
1453
|
-
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "phones" [0m
|
1454
|
-
Processing by PhonesController#create as HTML
|
1455
|
-
Parameters: {"phone"=>{"number"=>"972541234567"}}
|
1456
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1457
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "phones" ("created_at", "number", "possible_number", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 24 Sep 2013 08:44:08 UTC +00:00], ["number", "972541234567"], ["possible_number", nil], ["updated_at", Tue, 24 Sep 2013 08:44:08 UTC +00:00]]
|
1458
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1459
|
-
Redirected to http://test.host/phones/703612350
|
1460
|
-
Completed 302 Found in 2ms (ActiveRecord: 0.3ms)
|
1461
|
-
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "phones" [0m
|
1462
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1463
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1464
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
1465
|
-
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "phones" [0m
|
1466
|
-
Processing by PhonesController#destroy as HTML
|
1467
|
-
Parameters: {"id"=>"450723037"}
|
1468
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", "450723037"]]
|
1469
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1470
|
-
[1m[35mSQL (0.1ms)[0m DELETE FROM "phones" WHERE "phones"."id" = ? [["id", 450723037]]
|
1471
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1472
|
-
Redirected to http://test.host/phones
|
1473
|
-
Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
|
1474
|
-
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "phones"
|
1475
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1476
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1477
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
1478
|
-
Processing by PhonesController#edit as HTML
|
1479
|
-
Parameters: {"id"=>"450723037"}
|
1480
|
-
[1m[35mPhone Load (0.1ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", "450723037"]]
|
1481
|
-
Rendered phones/_form.html.erb (1.8ms)
|
1482
|
-
Completed 200 OK in 29ms (Views: 27.7ms | ActiveRecord: 0.1ms)
|
1483
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1484
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1485
|
-
[1m[36mPhone Load (0.1ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
1486
|
-
Processing by PhonesController#index as HTML
|
1487
|
-
[1m[35mPhone Load (0.1ms)[0m SELECT "phones".* FROM "phones"
|
1488
|
-
Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.1ms)
|
1489
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1490
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1491
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
1492
|
-
Processing by PhonesController#new as HTML
|
1493
|
-
Rendered phones/_form.html.erb (1.2ms)
|
1494
|
-
Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
|
1495
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
1496
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1497
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
1498
|
-
Processing by PhonesController#show as HTML
|
1499
|
-
Parameters: {"id"=>"450723037"}
|
1500
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", "450723037"]]
|
1501
|
-
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
1502
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
1503
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1504
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
1505
|
-
Processing by PhonesController#update as HTML
|
1506
|
-
Parameters: {"phone"=>{"number"=>"972541234567"}, "id"=>"450723037"}
|
1507
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", "450723037"]]
|
1508
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1509
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1510
|
-
Redirected to http://test.host/phones/450723037
|
1511
|
-
Completed 302 Found in 3ms (ActiveRecord: 0.1ms)
|
1512
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
1513
|
-
Connecting to database specified by database.yml
|
1514
|
-
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1515
|
-
[1m[35mFixture Delete (0.1ms)[0m DELETE FROM "phones"
|
1516
|
-
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "phones" ("number", "possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', '972541234567', '2013-10-01 06:36:26', '2013-10-01 06:36:26', 450723037)[0m
|
1517
|
-
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "phones" ("number", "created_at", "updated_at", "id") VALUES ('wrong', '2013-10-01 06:36:26', '2013-10-01 06:36:26', 667262234)
|
1518
|
-
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "phones" ("number", "created_at", "updated_at", "id") VALUES ('972541234567', '2013-10-01 06:36:26', '2013-10-01 06:36:26', 512636273)[0m
|
1519
|
-
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "phones" ("possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', '2013-10-01 06:36:26', '2013-10-01 06:36:26', 23760034)
|
1520
|
-
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "phones" ("number", "possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', 'wrong', '2013-10-01 06:36:26', '2013-10-01 06:36:26', 703612349)[0m
|
1521
|
-
[1m[35m (8.2ms)[0m commit transaction
|
1522
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1523
|
-
[1m[35mPhone Load (1.5ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 512636273]]
|
1524
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1525
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1526
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1527
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1528
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1529
|
-
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1530
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1531
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1532
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1533
|
-
[1m[35mSQL (0.7ms)[0m INSERT INTO "phones" ("created_at", "number", "possible_number", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 01 Oct 2013 06:36:26 UTC +00:00], ["number", "972541234567"], ["possible_number", nil], ["updated_at", Tue, 01 Oct 2013 06:36:26 UTC +00:00]]
|
1534
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1535
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1536
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1537
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
1538
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1539
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1540
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1541
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1542
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 23760034]]
|
1543
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1544
|
-
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1545
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
1546
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1547
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 667262234]]
|
1548
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1549
|
-
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1550
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1551
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1552
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 703612349]]
|
1553
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1554
|
-
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1555
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
1556
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1557
|
-
[1m[35mPhone Load (0.1ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
1558
|
-
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "phones" [0m
|
1559
|
-
Processing by PhonesController#create as HTML
|
1560
|
-
Parameters: {"phone"=>{"number"=>"972541234567"}}
|
1561
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1562
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "phones" ("created_at", "number", "possible_number", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 01 Oct 2013 06:36:26 UTC +00:00], ["number", "972541234567"], ["possible_number", nil], ["updated_at", Tue, 01 Oct 2013 06:36:26 UTC +00:00]]
|
1563
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1564
|
-
Redirected to http://test.host/phones/703612350
|
1565
|
-
Completed 302 Found in 3ms (ActiveRecord: 0.3ms)
|
1566
|
-
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "phones" [0m
|
1567
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1568
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1569
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
1570
|
-
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "phones" [0m
|
1571
|
-
Processing by PhonesController#destroy as HTML
|
1572
|
-
Parameters: {"id"=>"450723037"}
|
1573
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", "450723037"]]
|
1574
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1575
|
-
[1m[35mSQL (0.1ms)[0m DELETE FROM "phones" WHERE "phones"."id" = ? [["id", 450723037]]
|
1576
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1577
|
-
Redirected to http://test.host/phones
|
1578
|
-
Completed 302 Found in 1ms (ActiveRecord: 0.2ms)
|
1579
|
-
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "phones"
|
1580
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1581
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1582
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
1583
|
-
Processing by PhonesController#edit as HTML
|
1584
|
-
Parameters: {"id"=>"450723037"}
|
1585
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", "450723037"]]
|
1586
|
-
Rendered phones/_form.html.erb (1.8ms)
|
1587
|
-
Completed 200 OK in 27ms (Views: 26.5ms | ActiveRecord: 0.0ms)
|
1588
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1589
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1590
|
-
[1m[36mPhone Load (0.1ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
1591
|
-
Processing by PhonesController#index as HTML
|
1592
|
-
[1m[35mPhone Load (0.1ms)[0m SELECT "phones".* FROM "phones"
|
1593
|
-
Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.1ms)
|
1594
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1595
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1596
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
1597
|
-
Processing by PhonesController#new as HTML
|
1598
|
-
Rendered phones/_form.html.erb (1.1ms)
|
1599
|
-
Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
|
1600
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
1601
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1602
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
1603
|
-
Processing by PhonesController#show as HTML
|
1604
|
-
Parameters: {"id"=>"450723037"}
|
1605
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", "450723037"]]
|
1606
|
-
Completed 200 OK in 18ms (Views: 17.3ms | ActiveRecord: 0.0ms)
|
1607
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1608
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1609
|
-
[1m[35mPhone Load (0.1ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
1610
|
-
Processing by PhonesController#update as HTML
|
1611
|
-
Parameters: {"phone"=>{"number"=>"972541234567"}, "id"=>"450723037"}
|
1612
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", "450723037"]]
|
1613
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1614
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1615
|
-
Redirected to http://test.host/phones/450723037
|
1616
|
-
Completed 302 Found in 3ms (ActiveRecord: 0.1ms)
|
1617
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
1618
|
-
Connecting to database specified by database.yml
|
1619
|
-
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1620
|
-
[1m[35mFixture Delete (0.1ms)[0m DELETE FROM "phones"
|
1621
|
-
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "phones" ("number", "possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', '972541234567', '2013-10-01 06:37:20', '2013-10-01 06:37:20', 450723037)[0m
|
1622
|
-
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "phones" ("number", "created_at", "updated_at", "id") VALUES ('wrong', '2013-10-01 06:37:20', '2013-10-01 06:37:20', 667262234)
|
1623
|
-
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "phones" ("number", "created_at", "updated_at", "id") VALUES ('972541234567', '2013-10-01 06:37:20', '2013-10-01 06:37:20', 512636273)[0m
|
1624
|
-
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "phones" ("possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', '2013-10-01 06:37:20', '2013-10-01 06:37:20', 23760034)
|
1625
|
-
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "phones" ("number", "possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', 'wrong', '2013-10-01 06:37:20', '2013-10-01 06:37:20', 703612349)[0m
|
1626
|
-
[1m[35m (6.2ms)[0m commit transaction
|
1627
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1628
|
-
[1m[35mPhone Load (0.7ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 512636273]]
|
1629
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1630
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1631
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1632
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1633
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1634
|
-
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1635
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1636
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1637
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1638
|
-
[1m[35mSQL (0.8ms)[0m INSERT INTO "phones" ("created_at", "number", "possible_number", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 01 Oct 2013 06:37:21 UTC +00:00], ["number", "972541234567"], ["possible_number", nil], ["updated_at", Tue, 01 Oct 2013 06:37:21 UTC +00:00]]
|
1639
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1640
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1641
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1642
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
1643
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1644
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1645
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1646
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1647
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 23760034]]
|
1648
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1649
|
-
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1650
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
1651
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1652
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 667262234]]
|
1653
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1654
|
-
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1655
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1656
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1657
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 703612349]]
|
1658
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1659
|
-
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1660
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
1661
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1662
|
-
[1m[35mPhone Load (0.1ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
1663
|
-
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "phones" [0m
|
1664
|
-
Processing by PhonesController#create as HTML
|
1665
|
-
Parameters: {"phone"=>{"number"=>"972541234567"}}
|
1666
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1667
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "phones" ("created_at", "number", "possible_number", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 01 Oct 2013 06:37:21 UTC +00:00], ["number", "972541234567"], ["possible_number", nil], ["updated_at", Tue, 01 Oct 2013 06:37:21 UTC +00:00]]
|
1668
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1669
|
-
Redirected to http://test.host/phones/703612350
|
1670
|
-
Completed 302 Found in 3ms (ActiveRecord: 0.3ms)
|
1671
|
-
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "phones" [0m
|
1672
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1673
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1674
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
1675
|
-
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "phones" [0m
|
1676
|
-
Processing by PhonesController#destroy as HTML
|
1677
|
-
Parameters: {"id"=>"450723037"}
|
1678
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", "450723037"]]
|
1679
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1680
|
-
[1m[35mSQL (0.1ms)[0m DELETE FROM "phones" WHERE "phones"."id" = ? [["id", 450723037]]
|
1681
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1682
|
-
Redirected to http://test.host/phones
|
1683
|
-
Completed 302 Found in 1ms (ActiveRecord: 0.2ms)
|
1684
|
-
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "phones"
|
1685
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1686
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1687
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
1688
|
-
Processing by PhonesController#edit as HTML
|
1689
|
-
Parameters: {"id"=>"450723037"}
|
1690
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", "450723037"]]
|
1691
|
-
Rendered phones/_form.html.erb (1.9ms)
|
1692
|
-
Completed 200 OK in 29ms (Views: 28.7ms | ActiveRecord: 0.0ms)
|
1693
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1694
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1695
|
-
[1m[36mPhone Load (0.1ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
1696
|
-
Processing by PhonesController#index as HTML
|
1697
|
-
[1m[35mPhone Load (0.1ms)[0m SELECT "phones".* FROM "phones"
|
1698
|
-
Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.1ms)
|
1699
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1700
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1701
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
1702
|
-
Processing by PhonesController#new as HTML
|
1703
|
-
Rendered phones/_form.html.erb (1.1ms)
|
1704
|
-
Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
|
1705
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
1706
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1707
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
1708
|
-
Processing by PhonesController#show as HTML
|
1709
|
-
Parameters: {"id"=>"450723037"}
|
1710
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", "450723037"]]
|
1711
|
-
Completed 200 OK in 18ms (Views: 17.4ms | ActiveRecord: 0.0ms)
|
1712
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1713
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1714
|
-
[1m[35mPhone Load (0.1ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
1715
|
-
Processing by PhonesController#update as HTML
|
1716
|
-
Parameters: {"phone"=>{"number"=>"972541234567"}, "id"=>"450723037"}
|
1717
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", "450723037"]]
|
1718
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1719
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1720
|
-
Redirected to http://test.host/phones/450723037
|
1721
|
-
Completed 302 Found in 3ms (ActiveRecord: 0.1ms)
|
1722
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
1723
|
-
Connecting to database specified by database.yml
|
1724
|
-
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1725
|
-
[1m[35mFixture Delete (0.1ms)[0m DELETE FROM "phones"
|
1726
|
-
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "phones" ("number", "possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', '972541234567', '2013-10-01 06:37:55', '2013-10-01 06:37:55', 450723037)[0m
|
1727
|
-
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "phones" ("number", "created_at", "updated_at", "id") VALUES ('wrong', '2013-10-01 06:37:55', '2013-10-01 06:37:55', 667262234)
|
1728
|
-
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "phones" ("number", "created_at", "updated_at", "id") VALUES ('972541234567', '2013-10-01 06:37:55', '2013-10-01 06:37:55', 512636273)[0m
|
1729
|
-
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "phones" ("possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', '2013-10-01 06:37:55', '2013-10-01 06:37:55', 23760034)
|
1730
|
-
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "phones" ("number", "possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', 'wrong', '2013-10-01 06:37:55', '2013-10-01 06:37:55', 703612349)[0m
|
1731
|
-
[1m[35m (4.1ms)[0m commit transaction
|
1732
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1733
|
-
[1m[35mPhone Load (1.4ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 512636273]]
|
1734
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1735
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1736
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1737
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1738
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1739
|
-
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1740
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1741
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1742
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1743
|
-
[1m[35mSQL (0.7ms)[0m INSERT INTO "phones" ("created_at", "number", "possible_number", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 01 Oct 2013 06:37:55 UTC +00:00], ["number", "972541234567"], ["possible_number", nil], ["updated_at", Tue, 01 Oct 2013 06:37:55 UTC +00:00]]
|
1744
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1745
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1746
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1747
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
1748
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1749
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1750
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1751
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1752
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 23760034]]
|
1753
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1754
|
-
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1755
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
1756
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1757
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 667262234]]
|
1758
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1759
|
-
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1760
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1761
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1762
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 703612349]]
|
1763
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1764
|
-
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1765
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
1766
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1767
|
-
[1m[35mPhone Load (0.1ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
1768
|
-
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "phones" [0m
|
1769
|
-
Processing by PhonesController#create as HTML
|
1770
|
-
Parameters: {"phone"=>{"number"=>"972541234567"}}
|
1771
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1772
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "phones" ("created_at", "number", "possible_number", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 01 Oct 2013 06:37:55 UTC +00:00], ["number", "972541234567"], ["possible_number", nil], ["updated_at", Tue, 01 Oct 2013 06:37:55 UTC +00:00]]
|
1773
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1774
|
-
Redirected to http://test.host/phones/703612350
|
1775
|
-
Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
|
1776
|
-
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "phones" [0m
|
1777
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1778
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1779
|
-
[1m[35mPhone Load (0.1ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
1780
|
-
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "phones" [0m
|
1781
|
-
Processing by PhonesController#destroy as HTML
|
1782
|
-
Parameters: {"id"=>"450723037"}
|
1783
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", "450723037"]]
|
1784
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1785
|
-
[1m[35mSQL (0.1ms)[0m DELETE FROM "phones" WHERE "phones"."id" = ? [["id", 450723037]]
|
1786
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1787
|
-
Redirected to http://test.host/phones
|
1788
|
-
Completed 302 Found in 1ms (ActiveRecord: 0.2ms)
|
1789
|
-
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "phones"
|
1790
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1791
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1792
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
1793
|
-
Processing by PhonesController#edit as HTML
|
1794
|
-
Parameters: {"id"=>"450723037"}
|
1795
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", "450723037"]]
|
1796
|
-
Rendered phones/_form.html.erb (1.9ms)
|
1797
|
-
Completed 200 OK in 27ms (Views: 26.3ms | ActiveRecord: 0.0ms)
|
1798
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1799
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1800
|
-
[1m[36mPhone Load (0.1ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
1801
|
-
Processing by PhonesController#index as HTML
|
1802
|
-
[1m[35mPhone Load (0.1ms)[0m SELECT "phones".* FROM "phones"
|
1803
|
-
Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.1ms)
|
1804
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1805
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1806
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
1807
|
-
Processing by PhonesController#new as HTML
|
1808
|
-
Rendered phones/_form.html.erb (1.1ms)
|
1809
|
-
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
1810
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
1811
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1812
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
1813
|
-
Processing by PhonesController#show as HTML
|
1814
|
-
Parameters: {"id"=>"450723037"}
|
1815
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", "450723037"]]
|
1816
|
-
Completed 200 OK in 19ms (Views: 18.4ms | ActiveRecord: 0.0ms)
|
1817
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1818
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1819
|
-
[1m[35mPhone Load (0.1ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
1820
|
-
Processing by PhonesController#update as HTML
|
1821
|
-
Parameters: {"phone"=>{"number"=>"972541234567"}, "id"=>"450723037"}
|
1822
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", "450723037"]]
|
1823
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1824
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1825
|
-
Redirected to http://test.host/phones/450723037
|
1826
|
-
Completed 302 Found in 3ms (ActiveRecord: 0.1ms)
|
1827
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
1828
|
-
Connecting to database specified by database.yml
|
1829
|
-
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1830
|
-
[1m[35mFixture Delete (0.1ms)[0m DELETE FROM "phones"
|
1831
|
-
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "phones" ("number", "possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', '972541234567', '2013-10-01 06:38:36', '2013-10-01 06:38:36', 450723037)[0m
|
1832
|
-
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "phones" ("number", "created_at", "updated_at", "id") VALUES ('wrong', '2013-10-01 06:38:36', '2013-10-01 06:38:36', 667262234)
|
1833
|
-
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "phones" ("number", "created_at", "updated_at", "id") VALUES ('972541234567', '2013-10-01 06:38:36', '2013-10-01 06:38:36', 512636273)[0m
|
1834
|
-
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "phones" ("possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', '2013-10-01 06:38:36', '2013-10-01 06:38:36', 23760034)
|
1835
|
-
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "phones" ("number", "possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', 'wrong', '2013-10-01 06:38:36', '2013-10-01 06:38:36', 703612349)[0m
|
1836
|
-
[1m[35m (2.6ms)[0m commit transaction
|
1837
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1838
|
-
[1m[35mPhone Load (1.5ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 512636273]]
|
1839
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1840
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1841
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1842
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1843
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1844
|
-
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1845
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1846
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1847
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1848
|
-
[1m[35mSQL (0.7ms)[0m INSERT INTO "phones" ("created_at", "number", "possible_number", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 01 Oct 2013 06:38:37 UTC +00:00], ["number", "972541234567"], ["possible_number", nil], ["updated_at", Tue, 01 Oct 2013 06:38:37 UTC +00:00]]
|
1849
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1850
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1851
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1852
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
1853
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1854
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1855
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1856
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1857
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 23760034]]
|
1858
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1859
|
-
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1860
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
1861
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1862
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 667262234]]
|
1863
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1864
|
-
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1865
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1866
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1867
|
-
[1m[36mPhone Load (0.1ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 703612349]]
|
1868
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1869
|
-
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1870
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
1871
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1872
|
-
[1m[35mPhone Load (0.1ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
1873
|
-
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "phones" [0m
|
1874
|
-
Processing by PhonesController#create as HTML
|
1875
|
-
Parameters: {"phone"=>{"number"=>"972541234567"}}
|
1876
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1877
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "phones" ("created_at", "number", "possible_number", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 01 Oct 2013 06:38:37 UTC +00:00], ["number", "972541234567"], ["possible_number", nil], ["updated_at", Tue, 01 Oct 2013 06:38:37 UTC +00:00]]
|
1878
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1879
|
-
Redirected to http://test.host/phones/703612350
|
1880
|
-
Completed 302 Found in 3ms (ActiveRecord: 0.3ms)
|
1881
|
-
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "phones" [0m
|
1882
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1883
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1884
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
1885
|
-
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "phones" [0m
|
1886
|
-
Processing by PhonesController#destroy as HTML
|
1887
|
-
Parameters: {"id"=>"450723037"}
|
1888
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", "450723037"]]
|
1889
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1890
|
-
[1m[35mSQL (0.1ms)[0m DELETE FROM "phones" WHERE "phones"."id" = ? [["id", 450723037]]
|
1891
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1892
|
-
Redirected to http://test.host/phones
|
1893
|
-
Completed 302 Found in 1ms (ActiveRecord: 0.2ms)
|
1894
|
-
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "phones"
|
1895
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1896
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1897
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
1898
|
-
Processing by PhonesController#edit as HTML
|
1899
|
-
Parameters: {"id"=>"450723037"}
|
1900
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", "450723037"]]
|
1901
|
-
Rendered phones/_form.html.erb (1.9ms)
|
1902
|
-
Completed 200 OK in 27ms (Views: 26.5ms | ActiveRecord: 0.0ms)
|
1903
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1904
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1905
|
-
[1m[36mPhone Load (0.1ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
1906
|
-
Processing by PhonesController#index as HTML
|
1907
|
-
[1m[35mPhone Load (0.1ms)[0m SELECT "phones".* FROM "phones"
|
1908
|
-
Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.1ms)
|
1909
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1910
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1911
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
1912
|
-
Processing by PhonesController#new as HTML
|
1913
|
-
Rendered phones/_form.html.erb (1.1ms)
|
1914
|
-
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
1915
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
1916
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1917
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
1918
|
-
Processing by PhonesController#show as HTML
|
1919
|
-
Parameters: {"id"=>"450723037"}
|
1920
|
-
[1m[36mPhone Load (0.1ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", "450723037"]]
|
1921
|
-
Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.1ms)
|
1922
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1923
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1924
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
1925
|
-
Processing by PhonesController#update as HTML
|
1926
|
-
Parameters: {"phone"=>{"number"=>"972541234567"}, "id"=>"450723037"}
|
1927
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", "450723037"]]
|
1928
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1929
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1930
|
-
Redirected to http://test.host/phones/450723037
|
1931
|
-
Completed 302 Found in 3ms (ActiveRecord: 0.1ms)
|
1932
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
1933
|
-
Connecting to database specified by database.yml
|
1934
|
-
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1935
|
-
[1m[35mFixture Delete (0.1ms)[0m DELETE FROM "phones"
|
1936
|
-
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "phones" ("number", "possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', '972541234567', '2013-10-01 06:39:48', '2013-10-01 06:39:48', 450723037)[0m
|
1937
|
-
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "phones" ("number", "created_at", "updated_at", "id") VALUES ('wrong', '2013-10-01 06:39:48', '2013-10-01 06:39:48', 667262234)
|
1938
|
-
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "phones" ("number", "created_at", "updated_at", "id") VALUES ('972541234567', '2013-10-01 06:39:48', '2013-10-01 06:39:48', 512636273)[0m
|
1939
|
-
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "phones" ("possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', '2013-10-01 06:39:48', '2013-10-01 06:39:48', 23760034)
|
1940
|
-
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "phones" ("number", "possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', 'wrong', '2013-10-01 06:39:48', '2013-10-01 06:39:48', 703612349)[0m
|
1941
|
-
[1m[35m (10.4ms)[0m commit transaction
|
1942
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1943
|
-
[1m[35mPhone Load (1.5ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 512636273]]
|
1944
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1945
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1946
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1947
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1948
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1949
|
-
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1950
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1951
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1952
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1953
|
-
[1m[35mSQL (0.7ms)[0m INSERT INTO "phones" ("created_at", "number", "possible_number", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 01 Oct 2013 06:39:48 UTC +00:00], ["number", "972541234567"], ["possible_number", nil], ["updated_at", Tue, 01 Oct 2013 06:39:48 UTC +00:00]]
|
1954
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1955
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1956
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1957
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
1958
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1959
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1960
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1961
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1962
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 23760034]]
|
1963
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1964
|
-
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1965
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
1966
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1967
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 667262234]]
|
1968
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1969
|
-
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1970
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1971
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1972
|
-
[1m[36mPhone Load (0.1ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 703612349]]
|
1973
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1974
|
-
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1975
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
1976
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1977
|
-
[1m[35mPhone Load (0.1ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
1978
|
-
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "phones" [0m
|
1979
|
-
Processing by PhonesController#create as HTML
|
1980
|
-
Parameters: {"phone"=>{"number"=>"972541234567"}}
|
1981
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1982
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "phones" ("created_at", "number", "possible_number", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 01 Oct 2013 06:39:48 UTC +00:00], ["number", "972541234567"], ["possible_number", nil], ["updated_at", Tue, 01 Oct 2013 06:39:48 UTC +00:00]]
|
1983
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1984
|
-
Redirected to http://test.host/phones/703612350
|
1985
|
-
Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
|
1986
|
-
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "phones" [0m
|
1987
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1988
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1989
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
1990
|
-
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "phones" [0m
|
1991
|
-
Processing by PhonesController#destroy as HTML
|
1992
|
-
Parameters: {"id"=>"450723037"}
|
1993
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", "450723037"]]
|
1994
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1995
|
-
[1m[35mSQL (0.1ms)[0m DELETE FROM "phones" WHERE "phones"."id" = ? [["id", 450723037]]
|
1996
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1997
|
-
Redirected to http://test.host/phones
|
1998
|
-
Completed 302 Found in 1ms (ActiveRecord: 0.2ms)
|
1999
|
-
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "phones"
|
2000
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2001
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2002
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
2003
|
-
Processing by PhonesController#edit as HTML
|
2004
|
-
Parameters: {"id"=>"450723037"}
|
2005
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", "450723037"]]
|
2006
|
-
Rendered phones/_form.html.erb (1.9ms)
|
2007
|
-
Completed 200 OK in 28ms (Views: 27.0ms | ActiveRecord: 0.0ms)
|
2008
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2009
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2010
|
-
[1m[36mPhone Load (0.1ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
2011
|
-
Processing by PhonesController#index as HTML
|
2012
|
-
[1m[35mPhone Load (0.1ms)[0m SELECT "phones".* FROM "phones"
|
2013
|
-
Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.1ms)
|
2014
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2015
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2016
|
-
[1m[36mPhone Load (0.1ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
2017
|
-
Processing by PhonesController#new as HTML
|
2018
|
-
Rendered phones/_form.html.erb (1.2ms)
|
2019
|
-
Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
|
2020
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
2021
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2022
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
2023
|
-
Processing by PhonesController#show as HTML
|
2024
|
-
Parameters: {"id"=>"450723037"}
|
2025
|
-
[1m[36mPhone Load (0.1ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", "450723037"]]
|
2026
|
-
Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.1ms)
|
2027
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
2028
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2029
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
2030
|
-
Processing by PhonesController#update as HTML
|
2031
|
-
Parameters: {"phone"=>{"number"=>"972541234567"}, "id"=>"450723037"}
|
2032
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", "450723037"]]
|
2033
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2034
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2035
|
-
Redirected to http://test.host/phones/450723037
|
2036
|
-
Completed 302 Found in 3ms (ActiveRecord: 0.1ms)
|
2037
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
2038
|
-
Connecting to database specified by database.yml
|
2039
|
-
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
2040
|
-
[1m[35mFixture Delete (0.1ms)[0m DELETE FROM "phones"
|
2041
|
-
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "phones" ("number", "possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', '972541234567', '2013-10-01 06:41:13', '2013-10-01 06:41:13', 450723037)[0m
|
2042
|
-
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "phones" ("number", "created_at", "updated_at", "id") VALUES ('wrong', '2013-10-01 06:41:13', '2013-10-01 06:41:13', 667262234)
|
2043
|
-
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "phones" ("number", "created_at", "updated_at", "id") VALUES ('972541234567', '2013-10-01 06:41:13', '2013-10-01 06:41:13', 512636273)[0m
|
2044
|
-
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "phones" ("possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', '2013-10-01 06:41:13', '2013-10-01 06:41:13', 23760034)
|
2045
|
-
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "phones" ("number", "possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', 'wrong', '2013-10-01 06:41:13', '2013-10-01 06:41:13', 703612349)[0m
|
2046
|
-
[1m[35m (6.4ms)[0m commit transaction
|
2047
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2048
|
-
[1m[35mPhone Load (1.5ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 512636273]]
|
2049
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2050
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2051
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2052
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2053
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2054
|
-
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
2055
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2056
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2057
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2058
|
-
[1m[35mSQL (0.7ms)[0m INSERT INTO "phones" ("created_at", "number", "possible_number", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 01 Oct 2013 06:41:13 UTC +00:00], ["number", "972541234567"], ["possible_number", nil], ["updated_at", Tue, 01 Oct 2013 06:41:13 UTC +00:00]]
|
2059
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2060
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
2061
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2062
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
2063
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2064
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2065
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2066
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2067
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 23760034]]
|
2068
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2069
|
-
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
2070
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
2071
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2072
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 667262234]]
|
2073
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2074
|
-
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
2075
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2076
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2077
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 703612349]]
|
2078
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2079
|
-
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
2080
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
2081
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2082
|
-
[1m[35mPhone Load (0.1ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
2083
|
-
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "phones" [0m
|
2084
|
-
Processing by PhonesController#create as HTML
|
2085
|
-
Parameters: {"phone"=>{"number"=>"972541234567"}}
|
2086
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2087
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "phones" ("created_at", "number", "possible_number", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 01 Oct 2013 06:41:13 UTC +00:00], ["number", "972541234567"], ["possible_number", nil], ["updated_at", Tue, 01 Oct 2013 06:41:13 UTC +00:00]]
|
2088
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2089
|
-
Redirected to http://test.host/phones/703612350
|
2090
|
-
Completed 302 Found in 2ms (ActiveRecord: 0.3ms)
|
2091
|
-
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "phones" [0m
|
2092
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
2093
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2094
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
2095
|
-
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "phones" [0m
|
2096
|
-
Processing by PhonesController#destroy as HTML
|
2097
|
-
Parameters: {"id"=>"450723037"}
|
2098
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", "450723037"]]
|
2099
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2100
|
-
[1m[35mSQL (0.1ms)[0m DELETE FROM "phones" WHERE "phones"."id" = ? [["id", 450723037]]
|
2101
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2102
|
-
Redirected to http://test.host/phones
|
2103
|
-
Completed 302 Found in 1ms (ActiveRecord: 0.2ms)
|
2104
|
-
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "phones"
|
2105
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2106
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2107
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
2108
|
-
Processing by PhonesController#edit as HTML
|
2109
|
-
Parameters: {"id"=>"450723037"}
|
2110
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", "450723037"]]
|
2111
|
-
Rendered phones/_form.html.erb (2.0ms)
|
2112
|
-
Completed 200 OK in 27ms (Views: 26.4ms | ActiveRecord: 0.0ms)
|
2113
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2114
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2115
|
-
[1m[36mPhone Load (0.1ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
2116
|
-
Processing by PhonesController#index as HTML
|
2117
|
-
[1m[35mPhone Load (0.1ms)[0m SELECT "phones".* FROM "phones"
|
2118
|
-
Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.1ms)
|
2119
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2120
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2121
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
2122
|
-
Processing by PhonesController#new as HTML
|
2123
|
-
Rendered phones/_form.html.erb (1.2ms)
|
2124
|
-
Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
|
2125
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
2126
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2127
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
2128
|
-
Processing by PhonesController#show as HTML
|
2129
|
-
Parameters: {"id"=>"450723037"}
|
2130
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", "450723037"]]
|
2131
|
-
Completed 200 OK in 18ms (Views: 17.3ms | ActiveRecord: 0.0ms)
|
2132
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
2133
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2134
|
-
[1m[35mPhone Load (0.1ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
2135
|
-
Processing by PhonesController#update as HTML
|
2136
|
-
Parameters: {"phone"=>{"number"=>"972541234567"}, "id"=>"450723037"}
|
2137
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", "450723037"]]
|
2138
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2139
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2140
|
-
Redirected to http://test.host/phones/450723037
|
2141
|
-
Completed 302 Found in 3ms (ActiveRecord: 0.1ms)
|
2142
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
2143
|
-
Connecting to database specified by database.yml
|
2144
|
-
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
2145
|
-
[1m[35mFixture Delete (0.1ms)[0m DELETE FROM "phones"
|
2146
|
-
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "phones" ("number", "possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', '972541234567', '2013-10-14 10:43:04', '2013-10-14 10:43:04', 450723037)[0m
|
2147
|
-
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "phones" ("number", "created_at", "updated_at", "id") VALUES ('wrong', '2013-10-14 10:43:04', '2013-10-14 10:43:04', 667262234)
|
2148
|
-
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "phones" ("number", "created_at", "updated_at", "id") VALUES ('972541234567', '2013-10-14 10:43:04', '2013-10-14 10:43:04', 512636273)[0m
|
2149
|
-
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "phones" ("possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', '2013-10-14 10:43:04', '2013-10-14 10:43:04', 23760034)
|
2150
|
-
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "phones" ("number", "possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', 'wrong', '2013-10-14 10:43:04', '2013-10-14 10:43:04', 703612349)[0m
|
2151
|
-
[1m[35m (6.0ms)[0m commit transaction
|
2152
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2153
|
-
[1m[35mPhone Load (1.5ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 512636273]]
|
2154
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2155
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2156
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2157
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2158
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2159
|
-
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
2160
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2161
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2162
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2163
|
-
[1m[35mSQL (2.6ms)[0m INSERT INTO "phones" ("created_at", "number", "possible_number", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 14 Oct 2013 10:43:05 UTC +00:00], ["number", "972541234567"], ["possible_number", nil], ["updated_at", Mon, 14 Oct 2013 10:43:05 UTC +00:00]]
|
2164
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2165
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
2166
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2167
|
-
[1m[35mPhone Load (0.1ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
2168
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2169
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2170
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2171
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2172
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 23760034]]
|
2173
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2174
|
-
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
2175
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
2176
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2177
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 667262234]]
|
2178
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2179
|
-
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
2180
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2181
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2182
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 703612349]]
|
2183
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2184
|
-
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
2185
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
2186
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2187
|
-
[1m[35mPhone Load (0.1ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
2188
|
-
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "phones" [0m
|
2189
|
-
Processing by PhonesController#create as HTML
|
2190
|
-
Parameters: {"phone"=>{"number"=>"972541234567"}}
|
2191
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2192
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "phones" ("created_at", "number", "possible_number", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Mon, 14 Oct 2013 10:43:05 UTC +00:00], ["number", "972541234567"], ["possible_number", nil], ["updated_at", Mon, 14 Oct 2013 10:43:05 UTC +00:00]]
|
2193
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2194
|
-
Redirected to http://test.host/phones/703612350
|
2195
|
-
Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
|
2196
|
-
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "phones" [0m
|
2197
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
2198
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2199
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
2200
|
-
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "phones" [0m
|
2201
|
-
Processing by PhonesController#destroy as HTML
|
2202
|
-
Parameters: {"id"=>"450723037"}
|
2203
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", "450723037"]]
|
2204
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2205
|
-
[1m[35mSQL (0.1ms)[0m DELETE FROM "phones" WHERE "phones"."id" = ? [["id", 450723037]]
|
2206
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2207
|
-
Redirected to http://test.host/phones
|
2208
|
-
Completed 302 Found in 1ms (ActiveRecord: 0.2ms)
|
2209
|
-
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "phones"
|
2210
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2211
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2212
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
2213
|
-
Processing by PhonesController#edit as HTML
|
2214
|
-
Parameters: {"id"=>"450723037"}
|
2215
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", "450723037"]]
|
2216
|
-
Rendered phones/_form.html.erb (1.9ms)
|
2217
|
-
Completed 200 OK in 29ms (Views: 28.8ms | ActiveRecord: 0.0ms)
|
2218
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2219
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2220
|
-
[1m[36mPhone Load (0.1ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
2221
|
-
Processing by PhonesController#index as HTML
|
2222
|
-
[1m[35mPhone Load (0.1ms)[0m SELECT "phones".* FROM "phones"
|
2223
|
-
Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.1ms)
|
2224
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2225
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2226
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
2227
|
-
Processing by PhonesController#new as HTML
|
2228
|
-
Rendered phones/_form.html.erb (1.1ms)
|
2229
|
-
Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
|
2230
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
2231
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2232
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
2233
|
-
Processing by PhonesController#show as HTML
|
2234
|
-
Parameters: {"id"=>"450723037"}
|
2235
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", "450723037"]]
|
2236
|
-
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
2237
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
2238
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2239
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
2240
|
-
Processing by PhonesController#update as HTML
|
2241
|
-
Parameters: {"phone"=>{"number"=>"972541234567"}, "id"=>"450723037"}
|
2242
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", "450723037"]]
|
2243
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2244
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2245
|
-
Redirected to http://test.host/phones/450723037
|
2246
|
-
Completed 302 Found in 3ms (ActiveRecord: 0.1ms)
|
2247
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
2248
|
-
Connecting to database specified by database.yml
|
2249
|
-
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
2250
|
-
[1m[35mFixture Delete (0.1ms)[0m DELETE FROM "phones"
|
2251
|
-
[1m[36mFixture Insert (0.2ms)[0m [1mINSERT INTO "phones" ("number", "possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', '972541234567', '2013-10-15 05:54:11', '2013-10-15 05:54:11', 450723037)[0m
|
2252
|
-
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "phones" ("number", "created_at", "updated_at", "id") VALUES ('wrong', '2013-10-15 05:54:11', '2013-10-15 05:54:11', 667262234)
|
2253
|
-
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "phones" ("number", "created_at", "updated_at", "id") VALUES ('972541234567', '2013-10-15 05:54:11', '2013-10-15 05:54:11', 512636273)[0m
|
2254
|
-
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "phones" ("possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', '2013-10-15 05:54:11', '2013-10-15 05:54:11', 23760034)
|
2255
|
-
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "phones" ("number", "possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', 'wrong', '2013-10-15 05:54:11', '2013-10-15 05:54:11', 703612349)[0m
|
2256
|
-
[1m[35m (6.5ms)[0m commit transaction
|
2257
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2258
|
-
[1m[35mPhone Load (0.8ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 512636273]]
|
2259
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2260
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2261
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2262
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2263
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2264
|
-
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
2265
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2266
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2267
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2268
|
-
[1m[35mSQL (0.7ms)[0m INSERT INTO "phones" ("created_at", "number", "possible_number", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 15 Oct 2013 05:54:11 UTC +00:00], ["number", "972541234567"], ["possible_number", nil], ["updated_at", Tue, 15 Oct 2013 05:54:11 UTC +00:00]]
|
2269
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2270
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
2271
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2272
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
2273
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2274
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2275
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2276
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2277
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 23760034]]
|
2278
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2279
|
-
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
2280
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
2281
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2282
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 667262234]]
|
2283
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2284
|
-
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
2285
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2286
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2287
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 703612349]]
|
2288
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2289
|
-
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
2290
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
2291
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2292
|
-
[1m[35mPhone Load (0.1ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
2293
|
-
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "phones" [0m
|
2294
|
-
Processing by PhonesController#create as HTML
|
2295
|
-
Parameters: {"phone"=>{"number"=>"972541234567"}}
|
2296
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2297
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "phones" ("created_at", "number", "possible_number", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 15 Oct 2013 05:54:11 UTC +00:00], ["number", "972541234567"], ["possible_number", nil], ["updated_at", Tue, 15 Oct 2013 05:54:11 UTC +00:00]]
|
2298
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2299
|
-
Redirected to http://test.host/phones/703612350
|
2300
|
-
Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
|
2301
|
-
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "phones" [0m
|
2302
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
2303
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2304
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
2305
|
-
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "phones" [0m
|
2306
|
-
Processing by PhonesController#destroy as HTML
|
2307
|
-
Parameters: {"id"=>"450723037"}
|
2308
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", "450723037"]]
|
2309
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2310
|
-
[1m[35mSQL (0.1ms)[0m DELETE FROM "phones" WHERE "phones"."id" = ? [["id", 450723037]]
|
2311
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2312
|
-
Redirected to http://test.host/phones
|
2313
|
-
Completed 302 Found in 1ms (ActiveRecord: 0.2ms)
|
2314
|
-
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "phones"
|
2315
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2316
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2317
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
2318
|
-
Processing by PhonesController#edit as HTML
|
2319
|
-
Parameters: {"id"=>"450723037"}
|
2320
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", "450723037"]]
|
2321
|
-
Rendered phones/_form.html.erb (1.8ms)
|
2322
|
-
Completed 200 OK in 26ms (Views: 25.8ms | ActiveRecord: 0.0ms)
|
2323
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2324
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2325
|
-
[1m[36mPhone Load (0.1ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
2326
|
-
Processing by PhonesController#index as HTML
|
2327
|
-
[1m[35mPhone Load (0.1ms)[0m SELECT "phones".* FROM "phones"
|
2328
|
-
Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.1ms)
|
2329
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2330
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2331
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
2332
|
-
Processing by PhonesController#new as HTML
|
2333
|
-
Rendered phones/_form.html.erb (1.1ms)
|
2334
|
-
Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
|
2335
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
2336
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2337
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
2338
|
-
Processing by PhonesController#show as HTML
|
2339
|
-
Parameters: {"id"=>"450723037"}
|
2340
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", "450723037"]]
|
2341
|
-
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
2342
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
2343
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2344
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
2345
|
-
Processing by PhonesController#update as HTML
|
2346
|
-
Parameters: {"phone"=>{"number"=>"972541234567"}, "id"=>"450723037"}
|
2347
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", "450723037"]]
|
2348
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2349
|
-
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2350
|
-
Redirected to http://test.host/phones/450723037
|
2351
|
-
Completed 302 Found in 19ms (ActiveRecord: 0.2ms)
|
2352
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
2353
|
-
Connecting to database specified by database.yml
|
2354
|
-
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
2355
|
-
[1m[35mFixture Delete (0.1ms)[0m DELETE FROM "phones"
|
2356
|
-
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "phones" ("number", "possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', '972541234567', '2013-11-25 07:00:09', '2013-11-25 07:00:09', 450723037)[0m
|
2357
|
-
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "phones" ("number", "created_at", "updated_at", "id") VALUES ('wrong', '2013-11-25 07:00:09', '2013-11-25 07:00:09', 667262234)
|
2358
|
-
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "phones" ("number", "created_at", "updated_at", "id") VALUES ('972541234567', '2013-11-25 07:00:09', '2013-11-25 07:00:09', 512636273)[0m
|
2359
|
-
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "phones" ("possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', '2013-11-25 07:00:09', '2013-11-25 07:00:09', 23760034)
|
2360
|
-
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "phones" ("number", "possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', 'wrong', '2013-11-25 07:00:09', '2013-11-25 07:00:09', 703612349)[0m
|
2361
|
-
[1m[35m (5.1ms)[0m commit transaction
|
2362
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2363
|
-
[1m[35mPhone Load (0.7ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 512636273]]
|
2364
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2365
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2366
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2367
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2368
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2369
|
-
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
2370
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2371
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2372
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2373
|
-
[1m[35mSQL (1.6ms)[0m INSERT INTO "phones" ("created_at", "number", "possible_number", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 25 Nov 2013 07:00:10 UTC +00:00], ["number", "972541234567"], ["possible_number", nil], ["updated_at", Mon, 25 Nov 2013 07:00:10 UTC +00:00]]
|
2374
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2375
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
2376
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2377
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
2378
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2379
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2380
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2381
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2382
|
-
[1m[36mPhone Load (0.1ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 23760034]]
|
2383
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2384
|
-
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
2385
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
2386
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2387
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 667262234]]
|
2388
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2389
|
-
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
2390
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2391
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2392
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 703612349]]
|
2393
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2394
|
-
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
2395
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
2396
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2397
|
-
[1m[35mPhone Load (0.1ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
2398
|
-
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "phones" [0m
|
2399
|
-
Processing by PhonesController#create as HTML
|
2400
|
-
Parameters: {"phone"=>{"number"=>"972541234567"}}
|
2401
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2402
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "phones" ("created_at", "number", "possible_number", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Mon, 25 Nov 2013 07:00:10 UTC +00:00], ["number", "972541234567"], ["possible_number", nil], ["updated_at", Mon, 25 Nov 2013 07:00:10 UTC +00:00]]
|
2403
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2404
|
-
Redirected to http://test.host/phones/703612350
|
2405
|
-
Completed 302 Found in 3ms (ActiveRecord: 0.3ms)
|
2406
|
-
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "phones" [0m
|
2407
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
2408
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2409
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
2410
|
-
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "phones" [0m
|
2411
|
-
Processing by PhonesController#destroy as HTML
|
2412
|
-
Parameters: {"id"=>"450723037"}
|
2413
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", "450723037"]]
|
2414
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2415
|
-
[1m[35mSQL (0.1ms)[0m DELETE FROM "phones" WHERE "phones"."id" = ? [["id", 450723037]]
|
2416
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2417
|
-
Redirected to http://test.host/phones
|
2418
|
-
Completed 302 Found in 1ms (ActiveRecord: 0.2ms)
|
2419
|
-
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "phones"
|
2420
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2421
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2422
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
2423
|
-
Processing by PhonesController#edit as HTML
|
2424
|
-
Parameters: {"id"=>"450723037"}
|
2425
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", "450723037"]]
|
2426
|
-
Rendered phones/_form.html.erb (2.0ms)
|
2427
|
-
Completed 200 OK in 31ms (Views: 29.9ms | ActiveRecord: 0.0ms)
|
2428
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2429
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2430
|
-
[1m[36mPhone Load (0.1ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
2431
|
-
Processing by PhonesController#index as HTML
|
2432
|
-
[1m[35mPhone Load (0.1ms)[0m SELECT "phones".* FROM "phones"
|
2433
|
-
Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.1ms)
|
2434
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2435
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2436
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
2437
|
-
Processing by PhonesController#new as HTML
|
2438
|
-
Rendered phones/_form.html.erb (1.2ms)
|
2439
|
-
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
2440
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
2441
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2442
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
2443
|
-
Processing by PhonesController#show as HTML
|
2444
|
-
Parameters: {"id"=>"450723037"}
|
2445
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", "450723037"]]
|
2446
|
-
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
2447
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
2448
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2449
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
2450
|
-
Processing by PhonesController#update as HTML
|
2451
|
-
Parameters: {"phone"=>{"number"=>"972541234567"}, "id"=>"450723037"}
|
2452
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", "450723037"]]
|
2453
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2454
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2455
|
-
Redirected to http://test.host/phones/450723037
|
2456
|
-
Completed 302 Found in 3ms (ActiveRecord: 0.1ms)
|
2457
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
2458
|
-
Connecting to database specified by database.yml
|
2459
|
-
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
2460
|
-
[1m[35mFixture Delete (0.1ms)[0m DELETE FROM "phones"
|
2461
|
-
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "phones" ("number", "possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', '972541234567', '2013-12-29 07:22:22', '2013-12-29 07:22:22', 450723037)[0m
|
2462
|
-
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "phones" ("number", "created_at", "updated_at", "id") VALUES ('wrong', '2013-12-29 07:22:22', '2013-12-29 07:22:22', 667262234)
|
2463
|
-
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "phones" ("number", "created_at", "updated_at", "id") VALUES ('972541234567', '2013-12-29 07:22:22', '2013-12-29 07:22:22', 512636273)[0m
|
2464
|
-
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "phones" ("possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', '2013-12-29 07:22:22', '2013-12-29 07:22:22', 23760034)
|
2465
|
-
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "phones" ("number", "possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', 'wrong', '2013-12-29 07:22:22', '2013-12-29 07:22:22', 703612349)[0m
|
2466
|
-
[1m[35m (5.9ms)[0m commit transaction
|
2467
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2468
|
-
[1m[35mPhone Load (1.5ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 512636273]]
|
2469
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2470
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2471
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2472
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2473
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2474
|
-
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
2475
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2476
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2477
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2478
|
-
[1m[35mSQL (0.9ms)[0m INSERT INTO "phones" ("created_at", "number", "possible_number", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 29 Dec 2013 07:22:23 UTC +00:00], ["number", "972541234567"], ["possible_number", nil], ["updated_at", Sun, 29 Dec 2013 07:22:23 UTC +00:00]]
|
2479
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2480
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
2481
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2482
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
2483
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2484
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2485
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2486
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2487
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 23760034]]
|
2488
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2489
|
-
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
2490
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
2491
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2492
|
-
[1m[35mPhone Load (0.1ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 667262234]]
|
2493
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2494
|
-
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
2495
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2496
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2497
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 703612349]]
|
2498
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2499
|
-
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
2500
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
2501
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2502
|
-
[1m[35mPhone Load (0.1ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
2503
|
-
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "phones" [0m
|
2504
|
-
Processing by PhonesController#create as HTML
|
2505
|
-
Parameters: {"phone"=>{"number"=>"972541234567"}}
|
2506
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2507
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "phones" ("created_at", "number", "possible_number", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 29 Dec 2013 07:22:24 UTC +00:00], ["number", "972541234567"], ["possible_number", nil], ["updated_at", Sun, 29 Dec 2013 07:22:24 UTC +00:00]]
|
2508
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2509
|
-
Redirected to http://test.host/phones/703612350
|
2510
|
-
Completed 302 Found in 3ms (ActiveRecord: 0.3ms)
|
2511
|
-
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "phones" [0m
|
2512
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
2513
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2514
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
2515
|
-
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "phones" [0m
|
2516
|
-
Processing by PhonesController#destroy as HTML
|
2517
|
-
Parameters: {"id"=>"450723037"}
|
2518
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", "450723037"]]
|
2519
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2520
|
-
[1m[35mSQL (0.1ms)[0m DELETE FROM "phones" WHERE "phones"."id" = ? [["id", 450723037]]
|
2521
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2522
|
-
Redirected to http://test.host/phones
|
2523
|
-
Completed 302 Found in 1ms (ActiveRecord: 0.2ms)
|
2524
|
-
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "phones"
|
2525
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2526
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2527
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
2528
|
-
Processing by PhonesController#edit as HTML
|
2529
|
-
Parameters: {"id"=>"450723037"}
|
2530
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", "450723037"]]
|
2531
|
-
Rendered phones/_form.html.erb (1.8ms)
|
2532
|
-
Completed 200 OK in 26ms (Views: 25.5ms | ActiveRecord: 0.0ms)
|
2533
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2534
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2535
|
-
[1m[36mPhone Load (0.1ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
2536
|
-
Processing by PhonesController#index as HTML
|
2537
|
-
[1m[35mPhone Load (0.1ms)[0m SELECT "phones".* FROM "phones"
|
2538
|
-
Completed 200 OK in 4ms (Views: 3.2ms | ActiveRecord: 0.1ms)
|
2539
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2540
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2541
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
2542
|
-
Processing by PhonesController#new as HTML
|
2543
|
-
Rendered phones/_form.html.erb (1.1ms)
|
2544
|
-
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
2545
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
2546
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2547
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
2548
|
-
Processing by PhonesController#show as HTML
|
2549
|
-
Parameters: {"id"=>"450723037"}
|
2550
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", "450723037"]]
|
2551
|
-
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
2552
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
2553
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2554
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
2555
|
-
Processing by PhonesController#update as HTML
|
2556
|
-
Parameters: {"phone"=>{"number"=>"972541234567"}, "id"=>"450723037"}
|
2557
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", "450723037"]]
|
2558
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2559
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2560
|
-
Redirected to http://test.host/phones/450723037
|
2561
|
-
Completed 302 Found in 4ms (ActiveRecord: 0.1ms)
|
2562
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
2563
|
-
Connecting to database specified by database.yml
|
2564
|
-
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
2565
|
-
[1m[35mFixture Delete (0.1ms)[0m DELETE FROM "phones"
|
2566
|
-
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT INTO "phones" ("number", "possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', '972541234567', '2014-01-09 06:45:42', '2014-01-09 06:45:42', 450723037)[0m
|
2567
|
-
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "phones" ("number", "created_at", "updated_at", "id") VALUES ('wrong', '2014-01-09 06:45:42', '2014-01-09 06:45:42', 667262234)
|
2568
|
-
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "phones" ("number", "created_at", "updated_at", "id") VALUES ('972541234567', '2014-01-09 06:45:42', '2014-01-09 06:45:42', 512636273)[0m
|
2569
|
-
[1m[35mFixture Insert (0.0ms)[0m INSERT INTO "phones" ("possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', '2014-01-09 06:45:42', '2014-01-09 06:45:42', 23760034)
|
2570
|
-
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT INTO "phones" ("number", "possible_number", "created_at", "updated_at", "id") VALUES ('972541234567', 'wrong', '2014-01-09 06:45:42', '2014-01-09 06:45:42', 703612349)[0m
|
2571
|
-
[1m[35m (9.9ms)[0m commit transaction
|
2572
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2573
|
-
[1m[35mPhone Load (1.5ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 512636273]]
|
2574
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2575
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2576
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2577
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2578
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2579
|
-
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
2580
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2581
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2582
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2583
|
-
[1m[35mSQL (0.6ms)[0m INSERT INTO "phones" ("created_at", "number", "possible_number", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 06:45:42 UTC +00:00], ["number", "972541234567"], ["possible_number", nil], ["updated_at", Thu, 09 Jan 2014 06:45:42 UTC +00:00]]
|
2584
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2585
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
2586
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2587
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
2588
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2589
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2590
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2591
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2592
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 23760034]]
|
2593
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2594
|
-
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
2595
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
2596
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2597
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 667262234]]
|
2598
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2599
|
-
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
2600
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2601
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2602
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 703612349]]
|
2603
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2604
|
-
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
2605
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
2606
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2607
|
-
[1m[35mPhone Load (0.1ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
2608
|
-
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "phones" [0m
|
2609
|
-
Processing by PhonesController#create as HTML
|
2610
|
-
Parameters: {"phone"=>{"number"=>"972541234567"}}
|
2611
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2612
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "phones" ("created_at", "number", "possible_number", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Thu, 09 Jan 2014 06:45:43 UTC +00:00], ["number", "972541234567"], ["possible_number", nil], ["updated_at", Thu, 09 Jan 2014 06:45:43 UTC +00:00]]
|
2613
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2614
|
-
Redirected to http://test.host/phones/703612350
|
2615
|
-
Completed 302 Found in 3ms (ActiveRecord: 0.2ms)
|
2616
|
-
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "phones" [0m
|
2617
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
2618
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2619
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
2620
|
-
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "phones" [0m
|
2621
|
-
Processing by PhonesController#destroy as HTML
|
2622
|
-
Parameters: {"id"=>"450723037"}
|
2623
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", "450723037"]]
|
2624
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2625
|
-
[1m[35mSQL (0.1ms)[0m DELETE FROM "phones" WHERE "phones"."id" = ? [["id", 450723037]]
|
2626
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2627
|
-
Redirected to http://test.host/phones
|
2628
|
-
Completed 302 Found in 1ms (ActiveRecord: 0.2ms)
|
2629
|
-
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "phones"
|
2630
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2631
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2632
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
2633
|
-
Processing by PhonesController#edit as HTML
|
2634
|
-
Parameters: {"id"=>"450723037"}
|
2635
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", "450723037"]]
|
2636
|
-
Rendered phones/_form.html.erb (1.8ms)
|
2637
|
-
Completed 200 OK in 26ms (Views: 25.2ms | ActiveRecord: 0.0ms)
|
2638
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2639
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2640
|
-
[1m[36mPhone Load (0.1ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
2641
|
-
Processing by PhonesController#index as HTML
|
2642
|
-
[1m[35mPhone Load (0.1ms)[0m SELECT "phones".* FROM "phones"
|
2643
|
-
Completed 200 OK in 4ms (Views: 3.2ms | ActiveRecord: 0.1ms)
|
2644
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2645
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2646
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", 450723037]]
|
2647
|
-
Processing by PhonesController#new as HTML
|
2648
|
-
Rendered phones/_form.html.erb (1.1ms)
|
2649
|
-
Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
|
2650
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
2651
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2652
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
2653
|
-
Processing by PhonesController#show as HTML
|
2654
|
-
Parameters: {"id"=>"450723037"}
|
2655
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", "450723037"]]
|
2656
|
-
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
2657
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
2658
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2659
|
-
[1m[35mPhone Load (0.0ms)[0m SELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1 [["id", 450723037]]
|
2660
|
-
Processing by PhonesController#update as HTML
|
2661
|
-
Parameters: {"phone"=>{"number"=>"972541234567"}, "id"=>"450723037"}
|
2662
|
-
[1m[36mPhone Load (0.0ms)[0m [1mSELECT "phones".* FROM "phones" WHERE "phones"."id" = ? LIMIT 1[0m [["id", "450723037"]]
|
2663
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2664
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2665
|
-
Redirected to http://test.host/phones/450723037
|
2666
|
-
Completed 302 Found in 4ms (ActiveRecord: 0.1ms)
|
2667
|
-
[1m[35m (0.0ms)[0m rollback transaction
|