addressbook 0.0.6
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/MIT-LICENSE +20 -0
- data/Rakefile +21 -0
- data/app/assets/images/addressbook/default.png +0 -0
- data/app/assets/javascripts/addressbook/application.js +15 -0
- data/app/assets/stylesheets/addressbook/application.css +15 -0
- data/app/controllers/addressbook/application_controller.rb +11 -0
- data/app/controllers/addressbook/contacts_controller.rb +96 -0
- data/app/controllers/addressbook/groups_controller.rb +53 -0
- data/app/helpers/addressbook/application_helper.rb +25 -0
- data/app/models/concerns/addressbook_owner.rb +29 -0
- data/app/views/addressbook/contacts/_address.html.erb +35 -0
- data/app/views/addressbook/contacts/_email.html.erb +15 -0
- data/app/views/addressbook/contacts/_form.html.erb +97 -0
- data/app/views/addressbook/contacts/_phone.html.erb +19 -0
- data/app/views/addressbook/contacts/destroy.js.erb +1 -0
- data/app/views/addressbook/contacts/edit.html.erb +3 -0
- data/app/views/addressbook/contacts/index.html.erb +115 -0
- data/app/views/addressbook/contacts/new.html.erb +3 -0
- data/app/views/addressbook/groups/_form.html.erb +25 -0
- data/app/views/addressbook/groups/destroy.js.erb +1 -0
- data/app/views/addressbook/groups/edit.html.erb +3 -0
- data/app/views/addressbook/groups/index.html.erb +29 -0
- data/app/views/addressbook/groups/new.html.erb +3 -0
- data/app/views/layouts/addressbook/application.html.erb +24 -0
- data/config/initializers/addressbook.rb +1 -0
- data/config/locales/en.yml +73 -0
- data/config/routes.rb +10 -0
- data/db/migrate/20141110080715_add_addressbook_account_id_to_user_table.rb +11 -0
- data/lib/addressbook.rb +23 -0
- data/lib/addressbook/account.rb +27 -0
- data/lib/addressbook/base_uploader.rb +33 -0
- data/lib/addressbook/contact.rb +128 -0
- data/lib/addressbook/engine.rb +10 -0
- data/lib/addressbook/group.rb +18 -0
- data/lib/addressbook/import_file_uploader.rb +7 -0
- data/lib/addressbook/photo_uploader.rb +27 -0
- data/lib/addressbook/resource.rb +24 -0
- data/lib/addressbook/version.rb +3 -0
- data/lib/generators/addressbook/controllers/controllers_generator.rb +42 -0
- data/lib/generators/addressbook/initializer/initializer_generator.rb +9 -0
- data/lib/generators/addressbook/views/views_generator.rb +42 -0
- data/lib/tasks/addressbook_tasks.rake +4 -0
- data/spec/controllers/addressbook/contacts_controller_spec.rb +169 -0
- data/spec/controllers/addressbook/groups_controller_spec.rb +106 -0
- data/spec/dummy/README.rdoc +28 -0
- data/spec/dummy/Rakefile +6 -0
- data/spec/dummy/app/assets/javascripts/application.js +13 -0
- data/spec/dummy/app/assets/stylesheets/application.css +15 -0
- data/spec/dummy/app/controllers/application_controller.rb +5 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/models/account.rb +3 -0
- data/spec/dummy/app/views/layouts/application.html.erb +14 -0
- data/spec/dummy/bin/bundle +3 -0
- data/spec/dummy/bin/rails +4 -0
- data/spec/dummy/bin/rake +4 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/config/application.rb +29 -0
- data/spec/dummy/config/boot.rb +5 -0
- data/spec/dummy/config/database.yml +25 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +41 -0
- data/spec/dummy/config/environments/production.rb +78 -0
- data/spec/dummy/config/environments/test.rb +39 -0
- data/spec/dummy/config/initializers/addressbook.rb +8 -0
- data/spec/dummy/config/initializers/assets.rb +8 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/cookies_serializer.rb +3 -0
- data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/dummy/config/initializers/inflections.rb +16 -0
- data/spec/dummy/config/initializers/mime_types.rb +4 -0
- data/spec/dummy/config/initializers/session_store.rb +3 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy/config/locales/en.yml +23 -0
- data/spec/dummy/config/routes.rb +4 -0
- data/spec/dummy/config/secrets.yml +22 -0
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/migrate/20141119152457_create_accounts.rb +11 -0
- data/spec/dummy/db/migrate/20141119152801_add_addressbook_account_id_to_user_table.addressbook.rb +12 -0
- data/spec/dummy/db/schema.rb +27 -0
- data/spec/dummy/db/seeds.rb +1 -0
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/development.log +13510 -0
- data/spec/dummy/log/test.log +1468 -0
- data/spec/dummy/public/404.html +67 -0
- data/spec/dummy/public/422.html +67 -0
- data/spec/dummy/public/500.html +66 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/dummy/public/uploads/addressbook/contact/imported/test.csv +10 -0
- data/spec/dummy/public/uploads/addressbook/contact/imported/test.vcf +23 -0
- data/spec/dummy/spec/factories/accounts.rb +9 -0
- data/spec/dummy/spec/models/account_spec.rb +5 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/006961e21c4f6a44101d2e9587f863f4 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/032ca99c7bed652dbad8de691558648d +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/06b00b7743f1b8c8020fabbb5c63e13a +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/0765e86c020fb088284e8f45c584f8c6 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/1648d5d40aa02876f2cbb311ab2c4712 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/17405e31165e7d8129c846ceabaafec0 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/1dcb75c883fc0e57d08de7a76f0ada73 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/30f5fe3df78dce04aa1f998f6d790113 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/4b14ea7024b3a7934c5cf77c17cc92aa +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/604356b7aab9d373aa02548bf52b266b +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/69fcb234f5e891fcb7fbeb727a703968 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/6ec3857048c9b608a152271ff3991df6 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/786158650544be3da3cd56983ff6540f +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/790fb0d33aad92cb9a1745822d4668aa +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/7954e67edaec86854ad0d70dfdc1df99 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/816240bd34b73344a7ac901c29906f1d +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/8a8a4eebb0809e6e5a1d1dc83dafb50d +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/8e844acaef03b740a1d21aafa3030124 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/91d3ad598e6e79937286c98b2b259cee +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/98e43302695126215ff9abe4b05eda56 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/aa5e472ff34ac18d968ac316ca9caff2 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/aa9a9307e1b4596e0b92b403107a2cfb +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/aee3f8a82c799313c63b922ed8b0f975 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/c1f56035111b730c0c3807bf5ca35251 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/c497b90d7dd45d368ec4e83d97d0a2b9 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/d23b864a4a8239210d53e50644405687 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/dee437547d5fb5fab72af8a8d8582d4d +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/e9553c97dc4fe95dc10736ee0475dc45 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/ec3c091506a3d1ea73ac726b7ee9b3c2 +0 -0
- data/spec/fixtures/test.csv +10 -0
- data/spec/fixtures/test.vcf +23 -0
- data/spec/model/addressbook/account_spec.rb +33 -0
- data/spec/model/addressbook/contact_spec.rb +79 -0
- data/spec/model/addressbook/group_spec.rb +11 -0
- data/spec/model/addressbook/resource_spec.rb +10 -0
- data/spec/spec_helper.rb +65 -0
- metadata +517 -0
|
@@ -0,0 +1,1468 @@
|
|
|
1
|
+
[1m[36m (1.0ms)[0m [1mCREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "email" varchar(255), "created_at" datetime, "updated_at" datetime, "addressbook_account_id" integer) [0m
|
|
2
|
+
[1m[35m (0.4ms)[0m select sqlite_version(*)
|
|
3
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_accounts_on_addressbook_account_id" ON "accounts" ("addressbook_account_id")[0m
|
|
4
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
|
5
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
6
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
7
|
+
[1m[36m (0.7ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20141119152801')[0m
|
|
8
|
+
[1m[35m (0.7ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20141110080715')
|
|
9
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
10
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
11
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
12
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
13
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
14
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
15
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
16
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
17
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
18
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
19
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
20
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
21
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
22
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
23
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
24
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
25
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
26
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
27
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
28
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
29
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
30
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
31
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
32
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
33
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
34
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
35
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
36
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
37
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
38
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
39
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
40
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
41
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
42
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
43
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
44
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
45
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
46
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
47
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
48
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
49
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
50
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
51
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
52
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
53
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
54
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
55
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
56
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
|
57
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
58
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
59
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
60
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
61
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
62
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
63
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
64
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
65
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
66
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
67
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
68
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
69
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
70
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
71
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
72
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
73
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
74
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
75
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
76
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
77
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
78
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
79
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
80
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
81
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
82
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
83
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
84
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
85
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
86
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
87
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
88
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
89
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
90
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
91
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
92
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
93
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
94
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
95
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
96
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
97
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
98
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
99
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
100
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
101
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
102
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
103
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
104
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
105
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
106
|
+
[1m[35m (0.2ms)[0m begin transaction
|
|
107
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
108
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
109
|
+
[1m[35m (0.4ms)[0m begin transaction
|
|
110
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
111
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
112
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
113
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
114
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
115
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
116
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
117
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
118
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
119
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
120
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
121
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
122
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
123
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
124
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
125
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
126
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
127
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
128
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
129
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
130
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
131
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
132
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
133
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
134
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
135
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
136
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
137
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
138
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
139
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
140
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
141
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
142
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
143
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
144
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
145
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
146
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
147
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
148
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
149
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
150
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
151
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
152
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
153
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
154
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
155
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
|
156
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
157
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
158
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
159
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
160
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
161
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
162
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
163
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
164
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
165
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
166
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
167
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
168
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
169
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
170
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
171
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
172
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
173
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
174
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
175
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
176
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
177
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
178
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
179
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
180
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
181
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
182
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
183
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
184
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
185
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
186
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
187
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
188
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
189
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
190
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
191
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
192
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
193
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
194
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
195
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
196
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
197
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
198
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
199
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
200
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
201
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
202
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
203
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
204
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
205
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
206
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
207
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
208
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
209
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
210
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
211
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
212
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
213
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
214
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
215
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
216
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
217
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
218
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
219
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
220
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
221
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
222
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
223
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
224
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
225
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
226
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
227
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
228
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
229
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
230
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
231
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
232
|
+
[1m[35m (0.3ms)[0m begin transaction
|
|
233
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
234
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
235
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
236
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
237
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
238
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
239
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
240
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
241
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
242
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
243
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
244
|
+
[1m[35m (0.2ms)[0m begin transaction
|
|
245
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
|
246
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
247
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
248
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
249
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
250
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
251
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
252
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
253
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
254
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
255
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
256
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
257
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
258
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
259
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
260
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
261
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
262
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
263
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
264
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
265
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
266
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
267
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
268
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
269
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
270
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
271
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
272
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
273
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
274
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
275
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
276
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
277
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
278
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
279
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
280
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
281
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
282
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
283
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
284
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
285
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
286
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
287
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
288
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
289
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
290
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
291
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
292
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
293
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
294
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
295
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
296
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
297
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
298
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
299
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
300
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
301
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
302
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
303
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
304
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
305
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
306
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
307
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
308
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
309
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
310
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
311
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
312
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
313
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
314
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
315
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
316
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
317
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
318
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
319
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
320
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
321
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
322
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
323
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
324
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
325
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
326
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
327
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
328
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
329
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
330
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
331
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
332
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
333
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
334
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
335
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
336
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
337
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
338
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
339
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
340
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
341
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
342
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
343
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
344
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
345
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
346
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
347
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
348
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
349
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
350
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
351
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
352
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
353
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
354
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
355
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
356
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
357
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
358
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
359
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
360
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
361
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
362
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
363
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
364
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
365
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
366
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
367
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
368
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
369
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
370
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
371
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
372
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
373
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
374
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
375
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
376
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
377
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
378
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
379
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
380
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
381
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
382
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
383
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
384
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
385
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
386
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
387
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
388
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
389
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
390
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
391
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
392
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
393
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
394
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
395
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
396
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
397
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
398
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
399
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
400
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
401
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
402
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
403
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
404
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
405
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
406
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
407
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
408
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
409
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
410
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
411
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
412
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
413
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
414
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
415
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
416
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
417
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
418
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
419
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
420
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
421
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
422
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
423
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
424
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
425
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
426
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
427
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
428
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
429
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
430
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
431
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
432
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
433
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
434
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
435
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
436
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
437
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
438
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
439
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
440
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
441
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
442
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
443
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
444
|
+
[1m[36mActiveRecord::SchemaMigration Load (1.0ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
445
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
446
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
447
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
448
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
449
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
450
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
451
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
452
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
453
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
454
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
455
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
456
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
457
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
458
|
+
Processing by Addressbook::ContactsController#index as HTML
|
|
459
|
+
[1m[36mAccount Load (0.4ms)[0m [1mSELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
|
460
|
+
Completed 500 Internal Server Error in 5ms
|
|
461
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
462
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
463
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
464
|
+
Processing by Addressbook::ContactsController#index as HTML
|
|
465
|
+
[1m[36mAccount Load (0.4ms)[0m [1mSELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
|
466
|
+
Completed 500 Internal Server Error in 5ms
|
|
467
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
468
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
469
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
470
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
471
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
472
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
473
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
474
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
475
|
+
[1m[35m (0.4ms)[0m begin transaction
|
|
476
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
477
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
478
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
479
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
480
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
481
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
482
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
483
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
484
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
485
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
486
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
487
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
488
|
+
Processing by Addressbook::ContactsController#index as HTML
|
|
489
|
+
[1m[36mAccount Load (0.5ms)[0m [1mSELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
|
490
|
+
Completed 500 Internal Server Error in 8ms
|
|
491
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
492
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
493
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
494
|
+
[1m[36mSQL (2.5ms)[0m [1mINSERT INTO "accounts" ("created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", "2014-12-02 07:51:15.737021"], ["email", "test@test.com"], ["first_name", "Alexander"], ["last_name", "K."], ["updated_at", "2014-12-02 07:51:15.737021"]]
|
|
495
|
+
[1m[35m (0.8ms)[0m commit transaction
|
|
496
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
497
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
498
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "accounts" ("created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", "2014-12-02 07:51:26.502287"], ["email", "test@test.com"], ["first_name", "Alexander"], ["last_name", "K."], ["updated_at", "2014-12-02 07:51:26.502287"]]
|
|
499
|
+
[1m[35m (0.9ms)[0m commit transaction
|
|
500
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
501
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
502
|
+
Processing by Addressbook::ContactsController#index as HTML
|
|
503
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
|
504
|
+
Completed 500 Internal Server Error in 14ms
|
|
505
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
506
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
507
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
508
|
+
Processing by Addressbook::ContactsController#index as HTML
|
|
509
|
+
[1m[36mAccount Load (0.5ms)[0m [1mSELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
|
510
|
+
Completed 500 Internal Server Error in 13ms
|
|
511
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
512
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
513
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
514
|
+
Processing by Addressbook::ContactsController#index as HTML
|
|
515
|
+
[1m[36mAccount Load (0.4ms)[0m [1mSELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
|
516
|
+
Completed 500 Internal Server Error in 15ms
|
|
517
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
518
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
519
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
520
|
+
Processing by Addressbook::ContactsController#index as HTML
|
|
521
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
|
522
|
+
Completed 500 Internal Server Error in 12ms
|
|
523
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
524
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
525
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
526
|
+
Processing by Addressbook::ContactsController#index as HTML
|
|
527
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
|
528
|
+
Completed 500 Internal Server Error in 13ms
|
|
529
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
530
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
531
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
532
|
+
Processing by Addressbook::ContactsController#index as HTML
|
|
533
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
|
534
|
+
Completed 500 Internal Server Error in 11ms
|
|
535
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
536
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
537
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
538
|
+
Processing by Addressbook::ContactsController#index as HTML
|
|
539
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
|
540
|
+
Completed 500 Internal Server Error in 10ms
|
|
541
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
|
542
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
543
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
544
|
+
Processing by Addressbook::ContactsController#index as HTML
|
|
545
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
|
546
|
+
Completed 500 Internal Server Error in 14ms
|
|
547
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
548
|
+
[1m[36mAccount Load (10.6ms)[0m [1mSELECT "accounts".* FROM "accounts"[0m
|
|
549
|
+
[1m[35mAccount Load (0.2ms)[0m SELECT "accounts".* FROM "accounts" WHERE "accounts"."id" = ? LIMIT 1 [["id", 2]]
|
|
550
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
551
|
+
[1m[35mSQL (0.7ms)[0m DELETE FROM "accounts" WHERE "accounts"."id" = ? [["id", 2]]
|
|
552
|
+
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
|
|
553
|
+
[1m[35mAccount Load (0.2ms)[0m SELECT "accounts".* FROM "accounts"
|
|
554
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
555
|
+
[1m[35m (0.2ms)[0m begin transaction
|
|
556
|
+
Processing by Addressbook::ContactsController#index as HTML
|
|
557
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
|
558
|
+
Completed 500 Internal Server Error in 12ms
|
|
559
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
560
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
561
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
562
|
+
Processing by Addressbook::ContactsController#index as HTML
|
|
563
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
|
564
|
+
Completed 500 Internal Server Error in 12ms
|
|
565
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
566
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
567
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
568
|
+
Processing by Addressbook::ContactsController#index as HTML
|
|
569
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
|
570
|
+
Completed 500 Internal Server Error in 13ms
|
|
571
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
572
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
573
|
+
[1m[35m (0.3ms)[0m begin transaction
|
|
574
|
+
Processing by Addressbook::ContactsController#index as HTML
|
|
575
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
|
576
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
577
|
+
[1m[36mSQL (0.4ms)[0m [1mUPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1[0m [["addressbook_account_id", 1], ["updated_at", "2014-12-02 08:21:07.914995"]]
|
|
578
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
579
|
+
Completed 500 Internal Server Error in 28ms
|
|
580
|
+
[1m[36m (0.9ms)[0m [1mrollback transaction[0m
|
|
581
|
+
[1m[36mActiveRecord::SchemaMigration Load (2.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
582
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
583
|
+
Processing by Addressbook::ContactsController#index as HTML
|
|
584
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
|
585
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
586
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1[0m [["addressbook_account_id", 1], ["updated_at", "2014-12-02 08:22:18.441494"]]
|
|
587
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
588
|
+
Completed 500 Internal Server Error in 19ms
|
|
589
|
+
[1m[36m (1.1ms)[0m [1mrollback transaction[0m
|
|
590
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
591
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
592
|
+
Processing by Addressbook::ContactsController#index as HTML
|
|
593
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
|
594
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
595
|
+
[1m[36mSQL (1.1ms)[0m [1mUPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1[0m [["addressbook_account_id", 1], ["updated_at", "2014-12-02 08:23:29.648932"]]
|
|
596
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
597
|
+
Rendered /Users/jeonga/work/bonofa/addressbook/app/views/addressbook/contacts/index.html.erb within layouts/addressbook/application (1.1ms)
|
|
598
|
+
Completed 200 OK in 44ms (Views: 12.3ms | ActiveRecord: 1.8ms)
|
|
599
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
|
600
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
601
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
602
|
+
Processing by Addressbook::ContactsController#index as HTML
|
|
603
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
|
604
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
605
|
+
[1m[36mSQL (1.1ms)[0m [1mUPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1[0m [["addressbook_account_id", 1], ["updated_at", "2014-12-02 08:24:42.465278"]]
|
|
606
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
607
|
+
Rendered /Users/jeonga/work/bonofa/addressbook/app/views/addressbook/contacts/index.html.erb within layouts/addressbook/application (0.3ms)
|
|
608
|
+
Completed 200 OK in 26ms (Views: 6.3ms | ActiveRecord: 1.7ms)
|
|
609
|
+
[1m[36m (8.5ms)[0m [1mrollback transaction[0m
|
|
610
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
611
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
612
|
+
Processing by Addressbook::ContactsController#index as HTML
|
|
613
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
|
614
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
615
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1[0m [["addressbook_account_id", 1], ["updated_at", "2014-12-02 08:25:10.537084"]]
|
|
616
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
617
|
+
Rendered /Users/jeonga/work/bonofa/addressbook/app/views/addressbook/contacts/index.html.erb within layouts/addressbook/application (0.3ms)
|
|
618
|
+
Completed 200 OK in 25ms (Views: 6.3ms | ActiveRecord: 0.7ms)
|
|
619
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
|
620
|
+
[1m[35m (0.2ms)[0m begin transaction
|
|
621
|
+
Processing by Addressbook::ContactsController#new as HTML
|
|
622
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
|
623
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
624
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
625
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
626
|
+
Processing by Addressbook::ContactsController#index as HTML
|
|
627
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
|
628
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
629
|
+
[1m[36mSQL (0.4ms)[0m [1mUPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1[0m [["addressbook_account_id", 1], ["updated_at", "2014-12-02 08:25:32.980830"]]
|
|
630
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
631
|
+
Rendered /Users/jeonga/work/bonofa/addressbook/app/views/addressbook/contacts/index.html.erb within layouts/addressbook/application (0.3ms)
|
|
632
|
+
Completed 200 OK in 26ms (Views: 6.2ms | ActiveRecord: 0.9ms)
|
|
633
|
+
[1m[36m (8.0ms)[0m [1mrollback transaction[0m
|
|
634
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
635
|
+
Processing by Addressbook::ContactsController#new as HTML
|
|
636
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
|
637
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
638
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
639
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
640
|
+
Processing by Addressbook::ContactsController#create as HTML
|
|
641
|
+
[1m[36mAccount Load (0.3ms)[0m [1mSELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
|
642
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
643
|
+
[1m[36mSQL (0.7ms)[0m [1mUPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1[0m [["addressbook_account_id", 1], ["updated_at", "2014-12-02 08:27:12.651617"]]
|
|
644
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
645
|
+
Completed 500 Internal Server Error in 21ms
|
|
646
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
647
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
648
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
649
|
+
Processing by Addressbook::ContactsController#new as HTML
|
|
650
|
+
Rendered /Users/jeonga/work/bonofa/addressbook/app/views/addressbook/contacts/new.html.erb within layouts/addressbook/application (0.5ms)
|
|
651
|
+
Completed 200 OK in 19ms (Views: 18.8ms | ActiveRecord: 0.0ms)
|
|
652
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
|
653
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
654
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
655
|
+
Processing by Addressbook::ContactsController#create as HTML
|
|
656
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
|
657
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
658
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1[0m [["addressbook_account_id", 1], ["updated_at", "2014-12-02 08:28:28.617176"]]
|
|
659
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
660
|
+
Completed 500 Internal Server Error in 32ms
|
|
661
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
662
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
663
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
664
|
+
Processing by Addressbook::ContactsController#create as HTML
|
|
665
|
+
[1m[36mAccount Load (0.5ms)[0m [1mSELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
|
666
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
667
|
+
[1m[36mSQL (0.6ms)[0m [1mUPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1[0m [["addressbook_account_id", 1], ["updated_at", "2014-12-02 08:29:43.812423"]]
|
|
668
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
669
|
+
Completed 500 Internal Server Error in 25ms
|
|
670
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
|
671
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
672
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
673
|
+
Processing by Addressbook::ContactsController#create as HTML
|
|
674
|
+
[1m[36mAccount Load (0.4ms)[0m [1mSELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
|
675
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
676
|
+
[1m[36mSQL (0.8ms)[0m [1mUPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1[0m [["addressbook_account_id", 1], ["updated_at", "2014-12-02 08:31:30.962965"]]
|
|
677
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
678
|
+
Redirected to http://test.host/addressbook/contacts
|
|
679
|
+
Completed 302 Found in 41ms (ActiveRecord: 1.7ms)
|
|
680
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
681
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
682
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
683
|
+
Processing by Addressbook::ContactsController#create as HTML
|
|
684
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
|
685
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
686
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1[0m [["addressbook_account_id", 1], ["updated_at", "2014-12-02 08:31:54.071499"]]
|
|
687
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
688
|
+
Redirected to http://test.host/addressbook/contacts
|
|
689
|
+
Completed 302 Found in 34ms (ActiveRecord: 0.8ms)
|
|
690
|
+
[1m[36m (8.3ms)[0m [1mrollback transaction[0m
|
|
691
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
692
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
693
|
+
Processing by Addressbook::ContactsController#create as HTML
|
|
694
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
|
695
|
+
[1m[35m (0.3ms)[0m SAVEPOINT active_record_1
|
|
696
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1[0m [["addressbook_account_id", 1], ["updated_at", "2014-12-02 08:32:06.797560"]]
|
|
697
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
698
|
+
Redirected to http://test.host/addressbook/contacts
|
|
699
|
+
Completed 302 Found in 34ms (ActiveRecord: 1.0ms)
|
|
700
|
+
[1m[36m (8.3ms)[0m [1mrollback transaction[0m
|
|
701
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
702
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
703
|
+
Processing by Addressbook::ContactsController#create as HTML
|
|
704
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
|
705
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
706
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1[0m [["addressbook_account_id", 1], ["updated_at", "2014-12-02 08:32:47.873851"]]
|
|
707
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
708
|
+
Redirected to http://test.host/addressbook/contacts
|
|
709
|
+
Completed 302 Found in 31ms (ActiveRecord: 1.4ms)
|
|
710
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
711
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
712
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
713
|
+
Processing by Addressbook::ContactsController#create as HTML
|
|
714
|
+
[1m[36mAccount Load (0.4ms)[0m [1mSELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
|
715
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
716
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1[0m [["addressbook_account_id", 1], ["updated_at", "2014-12-02 08:33:01.028467"]]
|
|
717
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
718
|
+
Redirected to http://test.host/addressbook/contacts
|
|
719
|
+
Completed 302 Found in 35ms (ActiveRecord: 1.2ms)
|
|
720
|
+
[1m[36m (8.5ms)[0m [1mrollback transaction[0m
|
|
721
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
722
|
+
[1m[35m (0.2ms)[0m begin transaction
|
|
723
|
+
Processing by Addressbook::ContactsController#create as HTML
|
|
724
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
|
725
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
726
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1[0m [["addressbook_account_id", 1], ["updated_at", "2014-12-02 08:35:15.922272"]]
|
|
727
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
728
|
+
Redirected to http://test.host/addressbook/contacts
|
|
729
|
+
Completed 302 Found in 33ms (ActiveRecord: 0.8ms)
|
|
730
|
+
[1m[36m (8.0ms)[0m [1mrollback transaction[0m
|
|
731
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
732
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
733
|
+
Processing by Addressbook::ContactsController#create as HTML
|
|
734
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
|
735
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
736
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1[0m [["addressbook_account_id", 1], ["updated_at", "2014-12-02 08:35:39.624644"]]
|
|
737
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
738
|
+
Redirected to http://test.host/addressbook/contacts
|
|
739
|
+
Completed 302 Found in 31ms (ActiveRecord: 0.8ms)
|
|
740
|
+
[1m[36m (8.8ms)[0m [1mrollback transaction[0m
|
|
741
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
742
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
743
|
+
Processing by Addressbook::ContactsController#create as HTML
|
|
744
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
|
745
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
746
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1[0m [["addressbook_account_id", 1], ["updated_at", "2014-12-02 08:36:18.166899"]]
|
|
747
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
748
|
+
Rendered /Users/jeonga/work/bonofa/addressbook/app/views/addressbook/contacts/new.html.erb within layouts/addressbook/application (1.0ms)
|
|
749
|
+
Completed 200 OK in 47ms (Views: 21.9ms | ActiveRecord: 1.5ms)
|
|
750
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
|
751
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
752
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
753
|
+
Processing by Addressbook::ContactsController#index as HTML
|
|
754
|
+
[1m[36mAccount Load (0.2ms)[0m [1mSELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
|
755
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
756
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1[0m [["addressbook_account_id", 1], ["updated_at", "2014-12-02 08:36:28.497612"]]
|
|
757
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
758
|
+
Rendered /Users/jeonga/work/bonofa/addressbook/app/views/addressbook/contacts/index.html.erb within layouts/addressbook/application (0.3ms)
|
|
759
|
+
Completed 200 OK in 35ms (Views: 14.3ms | ActiveRecord: 1.1ms)
|
|
760
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
|
761
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
762
|
+
Processing by Addressbook::ContactsController#create as HTML
|
|
763
|
+
[1m[36mAccount Load (0.2ms)[0m [1mSELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
|
764
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
765
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1[0m [["addressbook_account_id", 1], ["updated_at", "2014-12-02 08:36:28.526134"]]
|
|
766
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
767
|
+
Redirected to http://test.host/addressbook/contacts
|
|
768
|
+
Completed 302 Found in 12ms (ActiveRecord: 0.5ms)
|
|
769
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
|
770
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
771
|
+
Processing by Addressbook::ContactsController#create as HTML
|
|
772
|
+
[1m[36mAccount Load (0.2ms)[0m [1mSELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
|
773
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
774
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1[0m [["addressbook_account_id", 1], ["updated_at", "2014-12-02 08:36:28.541590"]]
|
|
775
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
776
|
+
Completed 200 OK in 7ms (Views: 2.3ms | ActiveRecord: 0.6ms)
|
|
777
|
+
[1m[36m (0.9ms)[0m [1mrollback transaction[0m
|
|
778
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
779
|
+
Processing by Addressbook::ContactsController#new as HTML
|
|
780
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
|
781
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
782
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
783
|
+
[1m[35m (0.7ms)[0m begin transaction
|
|
784
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
785
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
786
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
787
|
+
Processing by Addressbook::ContactsController#edit as HTML
|
|
788
|
+
Parameters: {"id"=>"1001"}
|
|
789
|
+
Rendered /Users/jeonga/work/bonofa/addressbook/app/views/addressbook/contacts/edit.html.erb within layouts/addressbook/application (0.3ms)
|
|
790
|
+
Completed 200 OK in 20ms (Views: 19.3ms | ActiveRecord: 0.0ms)
|
|
791
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
|
792
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
793
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
794
|
+
Processing by Addressbook::ContactsController#index as HTML
|
|
795
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
|
796
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
797
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1[0m [["addressbook_account_id", 1], ["updated_at", "2014-12-02 08:42:11.676994"]]
|
|
798
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
799
|
+
Rendered /Users/jeonga/work/bonofa/addressbook/app/views/addressbook/contacts/index.html.erb within layouts/addressbook/application (0.3ms)
|
|
800
|
+
Completed 200 OK in 28ms (Views: 9.9ms | ActiveRecord: 0.8ms)
|
|
801
|
+
[1m[36m (8.1ms)[0m [1mrollback transaction[0m
|
|
802
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
803
|
+
Processing by Addressbook::ContactsController#create as HTML
|
|
804
|
+
[1m[36mAccount Load (0.2ms)[0m [1mSELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
|
805
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
806
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1[0m [["addressbook_account_id", 1], ["updated_at", "2014-12-02 08:42:11.710468"]]
|
|
807
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
808
|
+
Redirected to http://test.host/addressbook/contacts
|
|
809
|
+
Completed 302 Found in 9ms (ActiveRecord: 0.4ms)
|
|
810
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
811
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
812
|
+
Processing by Addressbook::ContactsController#create as HTML
|
|
813
|
+
[1m[36mAccount Load (0.2ms)[0m [1mSELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
|
814
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
815
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1[0m [["addressbook_account_id", 1], ["updated_at", "2014-12-02 08:42:11.726484"]]
|
|
816
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
817
|
+
Completed 200 OK in 5ms (Views: 1.7ms | ActiveRecord: 0.4ms)
|
|
818
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
|
819
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
820
|
+
Processing by Addressbook::ContactsController#edit as HTML
|
|
821
|
+
Parameters: {"id"=>"1001"}
|
|
822
|
+
Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
|
823
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
824
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
825
|
+
Processing by Addressbook::ContactsController#new as HTML
|
|
826
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
|
827
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
828
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
829
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
830
|
+
Processing by Addressbook::ContactsController#edit as HTML
|
|
831
|
+
Parameters: {"id"=>"1001"}
|
|
832
|
+
Rendered /Users/jeonga/work/bonofa/addressbook/app/views/addressbook/contacts/edit.html.erb within layouts/addressbook/application (0.3ms)
|
|
833
|
+
Completed 200 OK in 7ms (Views: 6.6ms | ActiveRecord: 0.0ms)
|
|
834
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
835
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
836
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
837
|
+
Processing by Addressbook::ContactsController#update as HTML
|
|
838
|
+
Parameters: {"id"=>"1001"}
|
|
839
|
+
Completed 500 Internal Server Error in 1ms
|
|
840
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
841
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
842
|
+
Processing by Addressbook::ContactsController#update as HTML
|
|
843
|
+
Parameters: {"id"=>"1002"}
|
|
844
|
+
Completed 500 Internal Server Error in 1ms
|
|
845
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
846
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
847
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
848
|
+
Processing by Addressbook::ContactsController#update as HTML
|
|
849
|
+
Parameters: {"id"=>"1001"}
|
|
850
|
+
Redirected to http://test.host/addressbook/contacts
|
|
851
|
+
Completed 302 Found in 6ms (ActiveRecord: 0.0ms)
|
|
852
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
853
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
854
|
+
Processing by Addressbook::ContactsController#update as HTML
|
|
855
|
+
Parameters: {"id"=>"1002"}
|
|
856
|
+
Completed 200 OK in 9ms (Views: 7.3ms | ActiveRecord: 0.0ms)
|
|
857
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
858
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
859
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
860
|
+
Processing by Addressbook::ContactsController#destroy as JS
|
|
861
|
+
Parameters: {"id"=>"1001"}
|
|
862
|
+
Rendered /Users/jeonga/work/bonofa/addressbook/app/views/addressbook/contacts/destroy.js.erb (0.3ms)
|
|
863
|
+
Completed 200 OK in 10ms (Views: 10.0ms | ActiveRecord: 0.0ms)
|
|
864
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
865
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
866
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
867
|
+
Processing by Addressbook::ContactsController#import_vcard as HTML
|
|
868
|
+
Parameters: {"vcard"=>#<ActionDispatch::Http::UploadedFile:0x0000010647dc70 @tempfile=#<File:spec/fixtures/test.vcf>, @original_filename=nil, @content_type="text/vcard", @headers=nil>}
|
|
869
|
+
Redirected to http://test.host/addressbook/contacts
|
|
870
|
+
Completed 302 Found in 9ms (ActiveRecord: 0.0ms)
|
|
871
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
872
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
873
|
+
[1m[35m (0.3ms)[0m begin transaction
|
|
874
|
+
Processing by Addressbook::ContactsController#import_vcard as HTML
|
|
875
|
+
Parameters: {"vcard"=>#<ActionDispatch::Http::UploadedFile:0x000001025d3588 @tempfile=#<File:spec/fixtures/test.vcf>, @original_filename=nil, @content_type="text/vcard", @headers=nil>}
|
|
876
|
+
Redirected to http://test.host/addressbook/contacts
|
|
877
|
+
Completed 302 Found in 5ms (ActiveRecord: 0.0ms)
|
|
878
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
879
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
880
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
881
|
+
Processing by Addressbook::ContactsController#import_vcard as HTML
|
|
882
|
+
Parameters: {"vcard"=>#<ActionDispatch::Http::UploadedFile:0x00000104ecdb28 @tempfile=#<File:spec/fixtures/test.vcf>, @original_filename=nil, @content_type="text/vcard", @headers=nil>}
|
|
883
|
+
Redirected to http://test.host/addressbook/contacts
|
|
884
|
+
Completed 302 Found in 10ms (ActiveRecord: 0.0ms)
|
|
885
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
886
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
887
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
888
|
+
Processing by Addressbook::ContactsController#import_vcard as HTML
|
|
889
|
+
Parameters: {"vcard"=>#<ActionDispatch::Http::UploadedFile:0x00000106317d90 @tempfile=#<File:spec/fixtures/test.vcf>, @original_filename=nil, @content_type="text/vcard", @headers=nil>}
|
|
890
|
+
Redirected to http://test.host/addressbook/contacts
|
|
891
|
+
Completed 302 Found in 6ms (ActiveRecord: 0.0ms)
|
|
892
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
893
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
894
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
895
|
+
Processing by Addressbook::ContactsController#import_vcard as HTML
|
|
896
|
+
Parameters: {"vcard"=>#<ActionDispatch::Http::UploadedFile:0x00000103cd0600 @tempfile=#<File:spec/fixtures/test.vcf>, @original_filename=nil, @content_type="text/vcard", @headers=nil>}
|
|
897
|
+
Redirected to http://test.host/addressbook/contacts
|
|
898
|
+
Completed 302 Found in 6ms (ActiveRecord: 0.0ms)
|
|
899
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
900
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
901
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
902
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
903
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
904
|
+
[1m[35m (0.4ms)[0m begin transaction
|
|
905
|
+
Processing by Addressbook::ContactsController#import_vcard as HTML
|
|
906
|
+
Parameters: {"vcard"=>#<ActionDispatch::Http::UploadedFile:0x00000105ad5c18 @tempfile=#<File:spec/fixtures/test.vcf>, @original_filename=nil, @content_type="text/vcard", @headers=nil>}
|
|
907
|
+
Redirected to http://test.host/addressbook/contacts
|
|
908
|
+
Completed 302 Found in 6ms (ActiveRecord: 0.0ms)
|
|
909
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
|
910
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
911
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
912
|
+
Processing by Addressbook::ContactsController#import_csv as HTML
|
|
913
|
+
Parameters: {"csv"=>#<ActionDispatch::Http::UploadedFile:0x000001054f5438 @tempfile=#<File:spec/fixtures/test.vcf>, @original_filename=nil, @content_type="text/csv", @headers=nil>}
|
|
914
|
+
Redirected to http://test.host/addressbook/contacts
|
|
915
|
+
Completed 302 Found in 6ms (ActiveRecord: 0.0ms)
|
|
916
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
917
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
918
|
+
Processing by Addressbook::ContactsController#import_csv as HTML
|
|
919
|
+
Parameters: {"csv"=>#<ActionDispatch::Http::UploadedFile:0x000001053eea58 @tempfile=#<File:spec/fixtures/test.vcf>, @original_filename=nil, @content_type="text/csv", @headers=nil>}
|
|
920
|
+
Redirected to http://test.host/addressbook/contacts
|
|
921
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
|
922
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
923
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
924
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
925
|
+
Processing by Addressbook::ContactsController#import_csv as HTML
|
|
926
|
+
Parameters: {"csv"=>#<ActionDispatch::Http::UploadedFile:0x000001052e80a0 @tempfile=#<File:spec/fixtures/test.vcf>, @original_filename=nil, @content_type="text/csv", @headers=nil>}
|
|
927
|
+
Redirected to http://test.host/addressbook/contacts
|
|
928
|
+
Completed 302 Found in 8ms (ActiveRecord: 0.0ms)
|
|
929
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
930
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
931
|
+
Processing by Addressbook::ContactsController#import_csv as HTML
|
|
932
|
+
Parameters: {"csv"=>#<ActionDispatch::Http::UploadedFile:0x000001027495c0 @tempfile=#<File:spec/fixtures/test.vcf>, @original_filename=nil, @content_type="text/csv", @headers=nil>}
|
|
933
|
+
Redirected to http://test.host/addressbook/contacts
|
|
934
|
+
Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
|
|
935
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
936
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
937
|
+
Processing by Addressbook::ContactsController#new as HTML
|
|
938
|
+
Completed 200 OK in 9ms (Views: 8.2ms | ActiveRecord: 0.0ms)
|
|
939
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
940
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
941
|
+
Processing by Addressbook::ContactsController#destroy as JS
|
|
942
|
+
Parameters: {"id"=>"1001"}
|
|
943
|
+
Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
|
|
944
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
945
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
946
|
+
Processing by Addressbook::ContactsController#edit as HTML
|
|
947
|
+
Parameters: {"id"=>"1002"}
|
|
948
|
+
Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.0ms)
|
|
949
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
950
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
951
|
+
Processing by Addressbook::ContactsController#update as HTML
|
|
952
|
+
Parameters: {"id"=>"1003"}
|
|
953
|
+
Redirected to http://test.host/addressbook/contacts
|
|
954
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
|
955
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
956
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
957
|
+
Processing by Addressbook::ContactsController#update as HTML
|
|
958
|
+
Parameters: {"id"=>"1004"}
|
|
959
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
|
960
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
961
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
962
|
+
Processing by Addressbook::ContactsController#create as HTML
|
|
963
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
|
964
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
965
|
+
[1m[36mSQL (0.5ms)[0m [1mUPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1[0m [["addressbook_account_id", 1], ["updated_at", "2014-12-02 08:58:19.936475"]]
|
|
966
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
967
|
+
Redirected to http://test.host/addressbook/contacts
|
|
968
|
+
Completed 302 Found in 26ms (ActiveRecord: 1.0ms)
|
|
969
|
+
[1m[36m (8.7ms)[0m [1mrollback transaction[0m
|
|
970
|
+
[1m[35m (0.2ms)[0m begin transaction
|
|
971
|
+
Processing by Addressbook::ContactsController#create as HTML
|
|
972
|
+
[1m[36mAccount Load (0.2ms)[0m [1mSELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
|
973
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
974
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1[0m [["addressbook_account_id", 1], ["updated_at", "2014-12-02 08:58:19.963015"]]
|
|
975
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
976
|
+
Completed 200 OK in 4ms (Views: 0.9ms | ActiveRecord: 0.4ms)
|
|
977
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
|
978
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
979
|
+
Processing by Addressbook::ContactsController#index as HTML
|
|
980
|
+
[1m[36mAccount Load (0.2ms)[0m [1mSELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
|
981
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
982
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1[0m [["addressbook_account_id", 1], ["updated_at", "2014-12-02 08:58:19.971511"]]
|
|
983
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
984
|
+
Completed 200 OK in 8ms (Views: 3.8ms | ActiveRecord: 0.6ms)
|
|
985
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
|
986
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
987
|
+
Processing by Addressbook::ContactsController#import_vcard as HTML
|
|
988
|
+
Parameters: {"vcard"=>#<ActionDispatch::Http::UploadedFile:0x000001049c0a40 @tempfile=#<File:spec/fixtures/test.vcf>, @original_filename=nil, @content_type="text/vcard", @headers=nil>}
|
|
989
|
+
Redirected to http://test.host/addressbook/contacts
|
|
990
|
+
Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
|
|
991
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
992
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
993
|
+
Processing by Addressbook::ContactsController#import_vcard as HTML
|
|
994
|
+
Parameters: {"vcard"=>#<ActionDispatch::Http::UploadedFile:0x00000104b25f48 @tempfile=#<File:spec/fixtures/test.vcf>, @original_filename=nil, @content_type="text/vcard", @headers=nil>}
|
|
995
|
+
Redirected to http://test.host/addressbook/contacts
|
|
996
|
+
Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
|
|
997
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
998
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
999
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
1000
|
+
Processing by Addressbook::GroupsController#new as HTML
|
|
1001
|
+
Rendered /Users/jeonga/work/bonofa/addressbook/app/views/addressbook/groups/new.html.erb within layouts/addressbook/application (0.9ms)
|
|
1002
|
+
Completed 200 OK in 10ms (Views: 9.4ms | ActiveRecord: 0.0ms)
|
|
1003
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
1004
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
1005
|
+
Processing by Addressbook::GroupsController#edit as HTML
|
|
1006
|
+
Parameters: {"id"=>"1001"}
|
|
1007
|
+
Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
|
|
1008
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
1009
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
1010
|
+
Processing by Addressbook::GroupsController#update as HTML
|
|
1011
|
+
Parameters: {"id"=>"1002"}
|
|
1012
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
|
1013
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
1014
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
1015
|
+
Processing by Addressbook::GroupsController#update as HTML
|
|
1016
|
+
Parameters: {"id"=>"1003"}
|
|
1017
|
+
Redirected to
|
|
1018
|
+
Completed 500 Internal Server Error in 5ms
|
|
1019
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
1020
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
1021
|
+
Processing by Addressbook::GroupsController#create as HTML
|
|
1022
|
+
[1m[36mAccount Load (0.2ms)[0m [1mSELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
|
1023
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1024
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1[0m [["addressbook_account_id", 1], ["updated_at", "2014-12-02 09:01:16.087204"]]
|
|
1025
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1026
|
+
Completed 200 OK in 21ms (Views: 1.2ms | ActiveRecord: 0.9ms)
|
|
1027
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
|
1028
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
1029
|
+
Processing by Addressbook::GroupsController#create as HTML
|
|
1030
|
+
[1m[36mAccount Load (0.2ms)[0m [1mSELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
|
1031
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1032
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1[0m [["addressbook_account_id", 1], ["updated_at", "2014-12-02 09:01:16.104988"]]
|
|
1033
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1034
|
+
Redirected to
|
|
1035
|
+
Completed 500 Internal Server Error in 4ms
|
|
1036
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
|
1037
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
1038
|
+
Processing by Addressbook::GroupsController#index as HTML
|
|
1039
|
+
[1m[36mAccount Load (0.6ms)[0m [1mSELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
|
1040
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1041
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1[0m [["addressbook_account_id", 1], ["updated_at", "2014-12-02 09:01:16.116046"]]
|
|
1042
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1043
|
+
Completed 200 OK in 7ms (Views: 1.7ms | ActiveRecord: 1.0ms)
|
|
1044
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
|
1045
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
1046
|
+
Processing by Addressbook::GroupsController#destroy as JS
|
|
1047
|
+
Parameters: {"id"=>"1004"}
|
|
1048
|
+
Completed 200 OK in 8ms (Views: 7.6ms | ActiveRecord: 0.0ms)
|
|
1049
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
1050
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
1051
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
1052
|
+
Processing by Addressbook::GroupsController#update as HTML
|
|
1053
|
+
Parameters: {"id"=>"1001"}
|
|
1054
|
+
Redirected to http://test.host/addressbook/
|
|
1055
|
+
Completed 302 Found in 10ms (ActiveRecord: 0.0ms)
|
|
1056
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
1057
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
1058
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
1059
|
+
Processing by Addressbook::GroupsController#create as HTML
|
|
1060
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
|
1061
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1062
|
+
[1m[36mSQL (0.4ms)[0m [1mUPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1[0m [["addressbook_account_id", 1], ["updated_at", "2014-12-02 09:04:11.438891"]]
|
|
1063
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1064
|
+
Redirected to http://test.host/addressbook/
|
|
1065
|
+
Completed 302 Found in 33ms (ActiveRecord: 0.9ms)
|
|
1066
|
+
[1m[36m (8.0ms)[0m [1mrollback transaction[0m
|
|
1067
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
1068
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
1069
|
+
Processing by Addressbook::GroupsController#edit as HTML
|
|
1070
|
+
Parameters: {"id"=>"1001"}
|
|
1071
|
+
Rendered /Users/jeonga/work/bonofa/addressbook/app/views/addressbook/groups/edit.html.erb within layouts/addressbook/application (0.3ms)
|
|
1072
|
+
Completed 200 OK in 10ms (Views: 9.8ms | ActiveRecord: 0.0ms)
|
|
1073
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
1074
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
1075
|
+
Processing by Addressbook::GroupsController#destroy as JS
|
|
1076
|
+
Parameters: {"id"=>"1002"}
|
|
1077
|
+
Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
|
1078
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
1079
|
+
[1m[35m (0.2ms)[0m begin transaction
|
|
1080
|
+
Processing by Addressbook::GroupsController#create as HTML
|
|
1081
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
|
1082
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1083
|
+
[1m[36mSQL (1.5ms)[0m [1mUPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1[0m [["addressbook_account_id", 1], ["updated_at", "2014-12-02 09:04:20.319406"]]
|
|
1084
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1085
|
+
Redirected to http://test.host/addressbook/
|
|
1086
|
+
Completed 302 Found in 24ms (ActiveRecord: 2.1ms)
|
|
1087
|
+
[1m[36m (7.8ms)[0m [1mrollback transaction[0m
|
|
1088
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
1089
|
+
Processing by Addressbook::GroupsController#create as HTML
|
|
1090
|
+
[1m[36mAccount Load (0.2ms)[0m [1mSELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
|
1091
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
1092
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1[0m [["addressbook_account_id", 1], ["updated_at", "2014-12-02 09:04:20.352598"]]
|
|
1093
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1094
|
+
Completed 200 OK in 9ms (Views: 4.0ms | ActiveRecord: 0.4ms)
|
|
1095
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
|
1096
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
1097
|
+
Processing by Addressbook::GroupsController#new as HTML
|
|
1098
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
|
1099
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
1100
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
1101
|
+
Processing by Addressbook::GroupsController#index as HTML
|
|
1102
|
+
[1m[36mAccount Load (0.2ms)[0m [1mSELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
|
1103
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
1104
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1[0m [["addressbook_account_id", 1], ["updated_at", "2014-12-02 09:04:20.369243"]]
|
|
1105
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1106
|
+
Completed 200 OK in 9ms (Views: 5.1ms | ActiveRecord: 0.7ms)
|
|
1107
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
|
1108
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
1109
|
+
Processing by Addressbook::GroupsController#update as HTML
|
|
1110
|
+
Parameters: {"id"=>"1003"}
|
|
1111
|
+
Redirected to http://test.host/addressbook/
|
|
1112
|
+
Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
|
|
1113
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
1114
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
1115
|
+
Processing by Addressbook::GroupsController#update as HTML
|
|
1116
|
+
Parameters: {"id"=>"1004"}
|
|
1117
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
|
1118
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
1119
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
1120
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
1121
|
+
Processing by Addressbook::ContactsController#index as HTML
|
|
1122
|
+
[1m[36mAccount Load (0.2ms)[0m [1mSELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
|
1123
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1124
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1[0m [["addressbook_account_id", 1], ["updated_at", "2014-12-02 09:04:31.037772"]]
|
|
1125
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1126
|
+
Rendered /Users/jeonga/work/bonofa/addressbook/app/views/addressbook/contacts/index.html.erb within layouts/addressbook/application (0.3ms)
|
|
1127
|
+
Completed 200 OK in 31ms (Views: 10.0ms | ActiveRecord: 1.4ms)
|
|
1128
|
+
[1m[36m (8.6ms)[0m [1mrollback transaction[0m
|
|
1129
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
1130
|
+
Processing by Addressbook::ContactsController#import_csv as HTML
|
|
1131
|
+
Parameters: {"csv"=>#<ActionDispatch::Http::UploadedFile:0x000001057e4068 @tempfile=#<File:spec/fixtures/test.vcf>, @original_filename=nil, @content_type="text/csv", @headers=nil>}
|
|
1132
|
+
Redirected to http://test.host/addressbook/contacts
|
|
1133
|
+
Completed 302 Found in 6ms (ActiveRecord: 0.0ms)
|
|
1134
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
1135
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
1136
|
+
Processing by Addressbook::ContactsController#import_csv as HTML
|
|
1137
|
+
Parameters: {"csv"=>#<ActionDispatch::Http::UploadedFile:0x00000102a25c30 @tempfile=#<File:spec/fixtures/test.vcf>, @original_filename=nil, @content_type="text/csv", @headers=nil>}
|
|
1138
|
+
Redirected to http://test.host/addressbook/contacts
|
|
1139
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
|
1140
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
1141
|
+
[1m[35m (0.2ms)[0m begin transaction
|
|
1142
|
+
Processing by Addressbook::ContactsController#create as HTML
|
|
1143
|
+
[1m[36mAccount Load (0.2ms)[0m [1mSELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
|
1144
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
1145
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1[0m [["addressbook_account_id", 1], ["updated_at", "2014-12-02 09:04:31.085255"]]
|
|
1146
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1147
|
+
Redirected to http://test.host/addressbook/contacts
|
|
1148
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.4ms)
|
|
1149
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
1150
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
1151
|
+
Processing by Addressbook::ContactsController#create as HTML
|
|
1152
|
+
[1m[36mAccount Load (0.2ms)[0m [1mSELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
|
1153
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
1154
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1[0m [["addressbook_account_id", 1], ["updated_at", "2014-12-02 09:04:31.091564"]]
|
|
1155
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1156
|
+
Completed 200 OK in 6ms (Views: 3.0ms | ActiveRecord: 0.4ms)
|
|
1157
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
|
1158
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
1159
|
+
Processing by Addressbook::ContactsController#new as HTML
|
|
1160
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
|
1161
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
1162
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
1163
|
+
Processing by Addressbook::ContactsController#edit as HTML
|
|
1164
|
+
Parameters: {"id"=>"1001"}
|
|
1165
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
|
1166
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
1167
|
+
[1m[35m (0.2ms)[0m begin transaction
|
|
1168
|
+
Processing by Addressbook::ContactsController#import_vcard as HTML
|
|
1169
|
+
Parameters: {"vcard"=>#<ActionDispatch::Http::UploadedFile:0x000001054c6390 @tempfile=#<File:spec/fixtures/test.vcf>, @original_filename=nil, @content_type="text/vcard", @headers=nil>}
|
|
1170
|
+
Redirected to http://test.host/addressbook/contacts
|
|
1171
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
|
1172
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
1173
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
1174
|
+
Processing by Addressbook::ContactsController#import_vcard as HTML
|
|
1175
|
+
Parameters: {"vcard"=>#<ActionDispatch::Http::UploadedFile:0x00000105465bd0 @tempfile=#<File:spec/fixtures/test.vcf>, @original_filename=nil, @content_type="text/vcard", @headers=nil>}
|
|
1176
|
+
Redirected to http://test.host/addressbook/contacts
|
|
1177
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
|
1178
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
|
1179
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
1180
|
+
Processing by Addressbook::ContactsController#update as HTML
|
|
1181
|
+
Parameters: {"id"=>"1002"}
|
|
1182
|
+
Redirected to http://test.host/addressbook/contacts
|
|
1183
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
|
1184
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
1185
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
1186
|
+
Processing by Addressbook::ContactsController#update as HTML
|
|
1187
|
+
Parameters: {"id"=>"1003"}
|
|
1188
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
|
1189
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
1190
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
1191
|
+
Processing by Addressbook::ContactsController#destroy as JS
|
|
1192
|
+
Parameters: {"id"=>"1004"}
|
|
1193
|
+
Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
|
|
1194
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
1195
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
1196
|
+
Processing by Addressbook::GroupsController#index as HTML
|
|
1197
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
|
1198
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
1199
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1[0m [["addressbook_account_id", 1], ["updated_at", "2014-12-02 09:04:31.154102"]]
|
|
1200
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1201
|
+
Completed 200 OK in 6ms (Views: 2.2ms | ActiveRecord: 0.4ms)
|
|
1202
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
1203
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
1204
|
+
Processing by Addressbook::GroupsController#create as HTML
|
|
1205
|
+
[1m[36mAccount Load (0.3ms)[0m [1mSELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
|
1206
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1207
|
+
[1m[36mSQL (0.6ms)[0m [1mUPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1[0m [["addressbook_account_id", 1], ["updated_at", "2014-12-02 09:04:31.166225"]]
|
|
1208
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1209
|
+
Redirected to http://test.host/addressbook/
|
|
1210
|
+
Completed 302 Found in 8ms (ActiveRecord: 1.1ms)
|
|
1211
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
|
1212
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
1213
|
+
Processing by Addressbook::GroupsController#create as HTML
|
|
1214
|
+
[1m[36mAccount Load (0.2ms)[0m [1mSELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
|
1215
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1216
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1[0m [["addressbook_account_id", 1], ["updated_at", "2014-12-02 09:04:31.176187"]]
|
|
1217
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1218
|
+
Completed 200 OK in 9ms (Views: 4.3ms | ActiveRecord: 0.7ms)
|
|
1219
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
|
1220
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
1221
|
+
Processing by Addressbook::GroupsController#edit as HTML
|
|
1222
|
+
Parameters: {"id"=>"1005"}
|
|
1223
|
+
Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
|
1224
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
1225
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
1226
|
+
Processing by Addressbook::GroupsController#new as HTML
|
|
1227
|
+
Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
|
|
1228
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
1229
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
1230
|
+
Processing by Addressbook::GroupsController#destroy as JS
|
|
1231
|
+
Parameters: {"id"=>"1006"}
|
|
1232
|
+
Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
|
1233
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
1234
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
1235
|
+
Processing by Addressbook::GroupsController#update as HTML
|
|
1236
|
+
Parameters: {"id"=>"1007"}
|
|
1237
|
+
Redirected to http://test.host/addressbook/
|
|
1238
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
|
1239
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
1240
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
1241
|
+
Processing by Addressbook::GroupsController#update as HTML
|
|
1242
|
+
Parameters: {"id"=>"1008"}
|
|
1243
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
|
1244
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
1245
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
1246
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
1247
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
1248
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
1249
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
1250
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
1251
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
1252
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
1253
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
1254
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
1255
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
1256
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
1257
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
1258
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
1259
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
1260
|
+
[1m[35m (0.2ms)[0m begin transaction
|
|
1261
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
1262
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
1263
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
1264
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
1265
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
1266
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
1267
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
1268
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
1269
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
1270
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
1271
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
1272
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
1273
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
1274
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
1275
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
1276
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
1277
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
1278
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
1279
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
1280
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
1281
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
1282
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
1283
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
1284
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
1285
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
1286
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
1287
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
1288
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
1289
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
1290
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
1291
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
1292
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
1293
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
1294
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
1295
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
1296
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
1297
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
1298
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
1299
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
1300
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
1301
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
1302
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
1303
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
1304
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
1305
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
1306
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
1307
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
1308
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
1309
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
1310
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
1311
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
1312
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
1313
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
1314
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
1315
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
1316
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
1317
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
1318
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
1319
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
1320
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
1321
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
1322
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
1323
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
1324
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
1325
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
1326
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
1327
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
1328
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
1329
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
1330
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
1331
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
1332
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
1333
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
1334
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
1335
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
1336
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
1337
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
1338
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
1339
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
1340
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
1341
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
1342
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
1343
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
1344
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
1345
|
+
Processing by Addressbook::ContactsController#edit as HTML
|
|
1346
|
+
Parameters: {"id"=>"1001"}
|
|
1347
|
+
Rendered /Users/jeonga/work/bonofa/addressbook/app/views/addressbook/contacts/edit.html.erb within layouts/addressbook/application (0.4ms)
|
|
1348
|
+
Completed 200 OK in 45ms (Views: 44.6ms | ActiveRecord: 0.0ms)
|
|
1349
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
1350
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
1351
|
+
Processing by Addressbook::ContactsController#create as HTML
|
|
1352
|
+
[1m[36mAccount Load (0.4ms)[0m [1mSELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
|
1353
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
1354
|
+
[1m[36mSQL (0.6ms)[0m [1mUPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1[0m [["addressbook_account_id", 1], ["updated_at", "2014-12-11 13:51:12.427708"]]
|
|
1355
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1356
|
+
Redirected to http://test.host/addressbook/contacts
|
|
1357
|
+
Completed 302 Found in 23ms (ActiveRecord: 1.4ms)
|
|
1358
|
+
[1m[36m (0.8ms)[0m [1mrollback transaction[0m
|
|
1359
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
1360
|
+
Processing by Addressbook::ContactsController#create as HTML
|
|
1361
|
+
[1m[36mAccount Load (0.2ms)[0m [1mSELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
|
1362
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
1363
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1[0m [["addressbook_account_id", 1], ["updated_at", "2014-12-11 13:51:12.445862"]]
|
|
1364
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1365
|
+
Completed 200 OK in 6ms (Views: 2.2ms | ActiveRecord: 0.4ms)
|
|
1366
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
|
1367
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
1368
|
+
Processing by Addressbook::ContactsController#import_vcard as HTML
|
|
1369
|
+
Parameters: {"vcard"=>#<ActionDispatch::Http::UploadedFile:0x00000102272ee8 @tempfile=#<File:spec/fixtures/test.vcf>, @original_filename=nil, @content_type="text/vcard", @headers=nil>}
|
|
1370
|
+
Redirected to http://test.host/addressbook/contacts
|
|
1371
|
+
Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
|
|
1372
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
1373
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
1374
|
+
Processing by Addressbook::ContactsController#import_vcard as HTML
|
|
1375
|
+
Parameters: {"vcard"=>#<ActionDispatch::Http::UploadedFile:0x00000103fa5178 @tempfile=#<File:spec/fixtures/test.vcf>, @original_filename=nil, @content_type="text/vcard", @headers=nil>}
|
|
1376
|
+
Redirected to http://test.host/addressbook/contacts
|
|
1377
|
+
Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
|
|
1378
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
1379
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
1380
|
+
Processing by Addressbook::ContactsController#index as HTML
|
|
1381
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
|
1382
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
1383
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1[0m [["addressbook_account_id", 1], ["updated_at", "2014-12-11 13:51:12.461299"]]
|
|
1384
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1385
|
+
Completed 200 OK in 5ms (Views: 2.0ms | ActiveRecord: 0.4ms)
|
|
1386
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
|
1387
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
1388
|
+
Processing by Addressbook::ContactsController#update as HTML
|
|
1389
|
+
Parameters: {"id"=>"1002"}
|
|
1390
|
+
Redirected to http://test.host/addressbook/contacts
|
|
1391
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
|
1392
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
1393
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
1394
|
+
Processing by Addressbook::ContactsController#update as HTML
|
|
1395
|
+
Parameters: {"id"=>"1003"}
|
|
1396
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
|
1397
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
1398
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
1399
|
+
Processing by Addressbook::ContactsController#new as HTML
|
|
1400
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
|
1401
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
1402
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
1403
|
+
Processing by Addressbook::ContactsController#destroy as JS
|
|
1404
|
+
Parameters: {"id"=>"1004"}
|
|
1405
|
+
Completed 200 OK in 4ms (Views: 4.2ms | ActiveRecord: 0.0ms)
|
|
1406
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
1407
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
1408
|
+
Processing by Addressbook::ContactsController#import_csv as HTML
|
|
1409
|
+
Parameters: {"csv"=>#<ActionDispatch::Http::UploadedFile:0x00000102168570 @tempfile=#<File:spec/fixtures/test.vcf>, @original_filename=nil, @content_type="text/csv", @headers=nil>}
|
|
1410
|
+
Redirected to http://test.host/addressbook/contacts
|
|
1411
|
+
Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
|
|
1412
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
1413
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
1414
|
+
Processing by Addressbook::ContactsController#import_csv as HTML
|
|
1415
|
+
Parameters: {"csv"=>#<ActionDispatch::Http::UploadedFile:0x000001020bed68 @tempfile=#<File:spec/fixtures/test.vcf>, @original_filename=nil, @content_type="text/csv", @headers=nil>}
|
|
1416
|
+
Redirected to http://test.host/addressbook/contacts
|
|
1417
|
+
Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
|
|
1418
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
1419
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
1420
|
+
Processing by Addressbook::GroupsController#edit as HTML
|
|
1421
|
+
Parameters: {"id"=>"1005"}
|
|
1422
|
+
Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
|
|
1423
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
1424
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
1425
|
+
Processing by Addressbook::GroupsController#create as HTML
|
|
1426
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
|
1427
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
1428
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1[0m [["addressbook_account_id", 1], ["updated_at", "2014-12-11 13:51:12.508914"]]
|
|
1429
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1430
|
+
Redirected to http://test.host/addressbook/
|
|
1431
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.4ms)
|
|
1432
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
|
1433
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
1434
|
+
Processing by Addressbook::GroupsController#create as HTML
|
|
1435
|
+
[1m[36mAccount Load (0.2ms)[0m [1mSELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
|
1436
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
1437
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1[0m [["addressbook_account_id", 1], ["updated_at", "2014-12-11 13:51:12.517763"]]
|
|
1438
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1439
|
+
Completed 200 OK in 6ms (Views: 2.2ms | ActiveRecord: 0.4ms)
|
|
1440
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
1441
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
1442
|
+
Processing by Addressbook::GroupsController#index as HTML
|
|
1443
|
+
[1m[36mAccount Load (0.2ms)[0m [1mSELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
|
1444
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
1445
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1[0m [["addressbook_account_id", 1], ["updated_at", "2014-12-11 13:51:12.527425"]]
|
|
1446
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
1447
|
+
Completed 200 OK in 5ms (Views: 2.1ms | ActiveRecord: 0.4ms)
|
|
1448
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
|
1449
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
1450
|
+
Processing by Addressbook::GroupsController#update as HTML
|
|
1451
|
+
Parameters: {"id"=>"1006"}
|
|
1452
|
+
Redirected to http://test.host/addressbook/
|
|
1453
|
+
Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
|
|
1454
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
1455
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
1456
|
+
Processing by Addressbook::GroupsController#update as HTML
|
|
1457
|
+
Parameters: {"id"=>"1007"}
|
|
1458
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
|
1459
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
1460
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
1461
|
+
Processing by Addressbook::GroupsController#new as HTML
|
|
1462
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
|
1463
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
1464
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
1465
|
+
Processing by Addressbook::GroupsController#destroy as JS
|
|
1466
|
+
Parameters: {"id"=>"1008"}
|
|
1467
|
+
Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
|
|
1468
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|