addressbook 0.0.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (129) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/Rakefile +21 -0
  4. data/app/assets/images/addressbook/default.png +0 -0
  5. data/app/assets/javascripts/addressbook/application.js +15 -0
  6. data/app/assets/stylesheets/addressbook/application.css +15 -0
  7. data/app/controllers/addressbook/application_controller.rb +11 -0
  8. data/app/controllers/addressbook/contacts_controller.rb +96 -0
  9. data/app/controllers/addressbook/groups_controller.rb +53 -0
  10. data/app/helpers/addressbook/application_helper.rb +25 -0
  11. data/app/models/concerns/addressbook_owner.rb +29 -0
  12. data/app/views/addressbook/contacts/_address.html.erb +35 -0
  13. data/app/views/addressbook/contacts/_email.html.erb +15 -0
  14. data/app/views/addressbook/contacts/_form.html.erb +97 -0
  15. data/app/views/addressbook/contacts/_phone.html.erb +19 -0
  16. data/app/views/addressbook/contacts/destroy.js.erb +1 -0
  17. data/app/views/addressbook/contacts/edit.html.erb +3 -0
  18. data/app/views/addressbook/contacts/index.html.erb +115 -0
  19. data/app/views/addressbook/contacts/new.html.erb +3 -0
  20. data/app/views/addressbook/groups/_form.html.erb +25 -0
  21. data/app/views/addressbook/groups/destroy.js.erb +1 -0
  22. data/app/views/addressbook/groups/edit.html.erb +3 -0
  23. data/app/views/addressbook/groups/index.html.erb +29 -0
  24. data/app/views/addressbook/groups/new.html.erb +3 -0
  25. data/app/views/layouts/addressbook/application.html.erb +24 -0
  26. data/config/initializers/addressbook.rb +1 -0
  27. data/config/locales/en.yml +73 -0
  28. data/config/routes.rb +10 -0
  29. data/db/migrate/20141110080715_add_addressbook_account_id_to_user_table.rb +11 -0
  30. data/lib/addressbook.rb +23 -0
  31. data/lib/addressbook/account.rb +27 -0
  32. data/lib/addressbook/base_uploader.rb +33 -0
  33. data/lib/addressbook/contact.rb +128 -0
  34. data/lib/addressbook/engine.rb +10 -0
  35. data/lib/addressbook/group.rb +18 -0
  36. data/lib/addressbook/import_file_uploader.rb +7 -0
  37. data/lib/addressbook/photo_uploader.rb +27 -0
  38. data/lib/addressbook/resource.rb +24 -0
  39. data/lib/addressbook/version.rb +3 -0
  40. data/lib/generators/addressbook/controllers/controllers_generator.rb +42 -0
  41. data/lib/generators/addressbook/initializer/initializer_generator.rb +9 -0
  42. data/lib/generators/addressbook/views/views_generator.rb +42 -0
  43. data/lib/tasks/addressbook_tasks.rake +4 -0
  44. data/spec/controllers/addressbook/contacts_controller_spec.rb +169 -0
  45. data/spec/controllers/addressbook/groups_controller_spec.rb +106 -0
  46. data/spec/dummy/README.rdoc +28 -0
  47. data/spec/dummy/Rakefile +6 -0
  48. data/spec/dummy/app/assets/javascripts/application.js +13 -0
  49. data/spec/dummy/app/assets/stylesheets/application.css +15 -0
  50. data/spec/dummy/app/controllers/application_controller.rb +5 -0
  51. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  52. data/spec/dummy/app/models/account.rb +3 -0
  53. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  54. data/spec/dummy/bin/bundle +3 -0
  55. data/spec/dummy/bin/rails +4 -0
  56. data/spec/dummy/bin/rake +4 -0
  57. data/spec/dummy/config.ru +4 -0
  58. data/spec/dummy/config/application.rb +29 -0
  59. data/spec/dummy/config/boot.rb +5 -0
  60. data/spec/dummy/config/database.yml +25 -0
  61. data/spec/dummy/config/environment.rb +5 -0
  62. data/spec/dummy/config/environments/development.rb +41 -0
  63. data/spec/dummy/config/environments/production.rb +78 -0
  64. data/spec/dummy/config/environments/test.rb +39 -0
  65. data/spec/dummy/config/initializers/addressbook.rb +8 -0
  66. data/spec/dummy/config/initializers/assets.rb +8 -0
  67. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  68. data/spec/dummy/config/initializers/cookies_serializer.rb +3 -0
  69. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  70. data/spec/dummy/config/initializers/inflections.rb +16 -0
  71. data/spec/dummy/config/initializers/mime_types.rb +4 -0
  72. data/spec/dummy/config/initializers/session_store.rb +3 -0
  73. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  74. data/spec/dummy/config/locales/en.yml +23 -0
  75. data/spec/dummy/config/routes.rb +4 -0
  76. data/spec/dummy/config/secrets.yml +22 -0
  77. data/spec/dummy/db/development.sqlite3 +0 -0
  78. data/spec/dummy/db/migrate/20141119152457_create_accounts.rb +11 -0
  79. data/spec/dummy/db/migrate/20141119152801_add_addressbook_account_id_to_user_table.addressbook.rb +12 -0
  80. data/spec/dummy/db/schema.rb +27 -0
  81. data/spec/dummy/db/seeds.rb +1 -0
  82. data/spec/dummy/db/test.sqlite3 +0 -0
  83. data/spec/dummy/log/development.log +13510 -0
  84. data/spec/dummy/log/test.log +1468 -0
  85. data/spec/dummy/public/404.html +67 -0
  86. data/spec/dummy/public/422.html +67 -0
  87. data/spec/dummy/public/500.html +66 -0
  88. data/spec/dummy/public/favicon.ico +0 -0
  89. data/spec/dummy/public/uploads/addressbook/contact/imported/test.csv +10 -0
  90. data/spec/dummy/public/uploads/addressbook/contact/imported/test.vcf +23 -0
  91. data/spec/dummy/spec/factories/accounts.rb +9 -0
  92. data/spec/dummy/spec/models/account_spec.rb +5 -0
  93. data/spec/dummy/tmp/cache/assets/development/sprockets/006961e21c4f6a44101d2e9587f863f4 +0 -0
  94. data/spec/dummy/tmp/cache/assets/development/sprockets/032ca99c7bed652dbad8de691558648d +0 -0
  95. data/spec/dummy/tmp/cache/assets/development/sprockets/06b00b7743f1b8c8020fabbb5c63e13a +0 -0
  96. data/spec/dummy/tmp/cache/assets/development/sprockets/0765e86c020fb088284e8f45c584f8c6 +0 -0
  97. data/spec/dummy/tmp/cache/assets/development/sprockets/1648d5d40aa02876f2cbb311ab2c4712 +0 -0
  98. data/spec/dummy/tmp/cache/assets/development/sprockets/17405e31165e7d8129c846ceabaafec0 +0 -0
  99. data/spec/dummy/tmp/cache/assets/development/sprockets/1dcb75c883fc0e57d08de7a76f0ada73 +0 -0
  100. data/spec/dummy/tmp/cache/assets/development/sprockets/30f5fe3df78dce04aa1f998f6d790113 +0 -0
  101. data/spec/dummy/tmp/cache/assets/development/sprockets/4b14ea7024b3a7934c5cf77c17cc92aa +0 -0
  102. data/spec/dummy/tmp/cache/assets/development/sprockets/604356b7aab9d373aa02548bf52b266b +0 -0
  103. data/spec/dummy/tmp/cache/assets/development/sprockets/69fcb234f5e891fcb7fbeb727a703968 +0 -0
  104. data/spec/dummy/tmp/cache/assets/development/sprockets/6ec3857048c9b608a152271ff3991df6 +0 -0
  105. data/spec/dummy/tmp/cache/assets/development/sprockets/786158650544be3da3cd56983ff6540f +0 -0
  106. data/spec/dummy/tmp/cache/assets/development/sprockets/790fb0d33aad92cb9a1745822d4668aa +0 -0
  107. data/spec/dummy/tmp/cache/assets/development/sprockets/7954e67edaec86854ad0d70dfdc1df99 +0 -0
  108. data/spec/dummy/tmp/cache/assets/development/sprockets/816240bd34b73344a7ac901c29906f1d +0 -0
  109. data/spec/dummy/tmp/cache/assets/development/sprockets/8a8a4eebb0809e6e5a1d1dc83dafb50d +0 -0
  110. data/spec/dummy/tmp/cache/assets/development/sprockets/8e844acaef03b740a1d21aafa3030124 +0 -0
  111. data/spec/dummy/tmp/cache/assets/development/sprockets/91d3ad598e6e79937286c98b2b259cee +0 -0
  112. data/spec/dummy/tmp/cache/assets/development/sprockets/98e43302695126215ff9abe4b05eda56 +0 -0
  113. data/spec/dummy/tmp/cache/assets/development/sprockets/aa5e472ff34ac18d968ac316ca9caff2 +0 -0
  114. data/spec/dummy/tmp/cache/assets/development/sprockets/aa9a9307e1b4596e0b92b403107a2cfb +0 -0
  115. data/spec/dummy/tmp/cache/assets/development/sprockets/aee3f8a82c799313c63b922ed8b0f975 +0 -0
  116. data/spec/dummy/tmp/cache/assets/development/sprockets/c1f56035111b730c0c3807bf5ca35251 +0 -0
  117. data/spec/dummy/tmp/cache/assets/development/sprockets/c497b90d7dd45d368ec4e83d97d0a2b9 +0 -0
  118. data/spec/dummy/tmp/cache/assets/development/sprockets/d23b864a4a8239210d53e50644405687 +0 -0
  119. data/spec/dummy/tmp/cache/assets/development/sprockets/dee437547d5fb5fab72af8a8d8582d4d +0 -0
  120. data/spec/dummy/tmp/cache/assets/development/sprockets/e9553c97dc4fe95dc10736ee0475dc45 +0 -0
  121. data/spec/dummy/tmp/cache/assets/development/sprockets/ec3c091506a3d1ea73ac726b7ee9b3c2 +0 -0
  122. data/spec/fixtures/test.csv +10 -0
  123. data/spec/fixtures/test.vcf +23 -0
  124. data/spec/model/addressbook/account_spec.rb +33 -0
  125. data/spec/model/addressbook/contact_spec.rb +79 -0
  126. data/spec/model/addressbook/group_spec.rb +11 -0
  127. data/spec/model/addressbook/resource_spec.rb +10 -0
  128. data/spec/spec_helper.rb +65 -0
  129. metadata +517 -0
@@ -0,0 +1,1468 @@
1
+  (1.0ms) CREATE 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) 
2
+  (0.4ms) select sqlite_version(*)
3
+  (0.8ms) CREATE INDEX "index_accounts_on_addressbook_account_id" ON "accounts" ("addressbook_account_id")
4
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
5
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
6
+  (0.1ms) SELECT version FROM "schema_migrations"
7
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20141119152801')
8
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20141110080715')
9
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
10
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
11
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
12
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
13
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
14
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
15
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
16
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
17
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
18
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
19
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
20
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
21
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
22
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
23
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
24
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
25
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
26
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
27
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
28
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
29
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
30
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
31
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
32
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
33
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
34
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
35
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
36
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
37
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
38
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
39
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
40
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
41
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
42
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
43
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
44
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
45
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
46
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
47
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
48
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
49
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
50
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
51
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
52
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
53
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
54
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
55
+  (0.1ms) begin transaction
56
+  (0.2ms) rollback transaction
57
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
58
+  (0.1ms) begin transaction
59
+  (0.1ms) rollback transaction
60
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
61
+  (0.1ms) begin transaction
62
+  (0.1ms) rollback transaction
63
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
64
+  (0.1ms) begin transaction
65
+  (0.1ms) rollback transaction
66
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
67
+  (0.1ms) begin transaction
68
+  (0.1ms) rollback transaction
69
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
70
+  (0.1ms) begin transaction
71
+  (0.1ms) rollback transaction
72
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
73
+  (0.1ms) begin transaction
74
+  (0.1ms) rollback transaction
75
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
76
+  (0.1ms) begin transaction
77
+  (0.1ms) rollback transaction
78
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
79
+  (0.1ms) begin transaction
80
+  (0.1ms) rollback transaction
81
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
82
+  (0.1ms) begin transaction
83
+  (0.1ms) rollback transaction
84
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
85
+  (0.1ms) begin transaction
86
+  (0.1ms) rollback transaction
87
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
88
+  (0.1ms) begin transaction
89
+  (0.1ms) rollback transaction
90
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
91
+  (0.1ms) begin transaction
92
+  (0.1ms) rollback transaction
93
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
94
+  (0.1ms) begin transaction
95
+  (0.1ms) rollback transaction
96
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
97
+  (0.1ms) begin transaction
98
+  (0.1ms) rollback transaction
99
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
100
+  (0.1ms) begin transaction
101
+  (0.1ms) rollback transaction
102
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
103
+  (0.1ms) begin transaction
104
+  (0.1ms) rollback transaction
105
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
106
+  (0.2ms) begin transaction
107
+  (0.1ms) rollback transaction
108
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
109
+  (0.4ms) begin transaction
110
+  (0.1ms) rollback transaction
111
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
112
+  (0.1ms) begin transaction
113
+  (0.1ms) rollback transaction
114
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
115
+  (0.1ms) begin transaction
116
+  (0.1ms) rollback transaction
117
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
118
+  (0.1ms) begin transaction
119
+  (0.1ms) rollback transaction
120
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
121
+  (0.1ms) begin transaction
122
+  (0.1ms) rollback transaction
123
+  (0.0ms) begin transaction
124
+  (0.0ms) rollback transaction
125
+  (0.0ms) begin transaction
126
+  (0.0ms) rollback transaction
127
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
128
+  (0.1ms) begin transaction
129
+  (0.0ms) rollback transaction
130
+  (0.1ms) begin transaction
131
+  (0.0ms) rollback transaction
132
+  (0.0ms) begin transaction
133
+  (0.0ms) rollback transaction
134
+  (0.0ms) begin transaction
135
+  (0.1ms) rollback transaction
136
+  (0.0ms) begin transaction
137
+  (0.0ms) rollback transaction
138
+  (0.0ms) begin transaction
139
+  (0.1ms) rollback transaction
140
+  (0.0ms) begin transaction
141
+  (0.0ms) rollback transaction
142
+  (0.0ms) begin transaction
143
+  (0.1ms) rollback transaction
144
+  (0.0ms) begin transaction
145
+  (0.0ms) rollback transaction
146
+  (0.0ms) begin transaction
147
+  (0.0ms) rollback transaction
148
+  (0.0ms) begin transaction
149
+  (0.0ms) rollback transaction
150
+  (0.0ms) begin transaction
151
+  (0.0ms) rollback transaction
152
+  (0.0ms) begin transaction
153
+  (0.0ms) rollback transaction
154
+  (0.1ms) begin transaction
155
+  (0.2ms) rollback transaction
156
+  (0.1ms) begin transaction
157
+  (0.1ms) rollback transaction
158
+  (0.1ms) begin transaction
159
+  (0.1ms) rollback transaction
160
+  (0.1ms) begin transaction
161
+  (0.0ms) rollback transaction
162
+  (0.0ms) begin transaction
163
+  (0.1ms) rollback transaction
164
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
165
+  (0.1ms) begin transaction
166
+  (0.1ms) rollback transaction
167
+  (0.0ms) begin transaction
168
+  (0.0ms) rollback transaction
169
+  (0.0ms) begin transaction
170
+  (0.0ms) rollback transaction
171
+  (0.0ms) begin transaction
172
+  (0.1ms) rollback transaction
173
+  (0.0ms) begin transaction
174
+  (0.0ms) rollback transaction
175
+  (0.0ms) begin transaction
176
+  (0.1ms) rollback transaction
177
+  (0.1ms) begin transaction
178
+  (0.0ms) rollback transaction
179
+  (0.0ms) begin transaction
180
+  (0.0ms) rollback transaction
181
+  (0.0ms) begin transaction
182
+  (0.1ms) rollback transaction
183
+  (0.1ms) begin transaction
184
+  (0.1ms) rollback transaction
185
+  (0.0ms) begin transaction
186
+  (0.0ms) rollback transaction
187
+  (0.0ms) begin transaction
188
+  (0.0ms) rollback transaction
189
+  (0.0ms) begin transaction
190
+  (0.0ms) rollback transaction
191
+  (0.0ms) begin transaction
192
+  (0.1ms) rollback transaction
193
+  (0.1ms) begin transaction
194
+  (0.0ms) rollback transaction
195
+  (0.0ms) begin transaction
196
+  (0.0ms) rollback transaction
197
+  (0.0ms) begin transaction
198
+  (0.0ms) rollback transaction
199
+  (0.0ms) begin transaction
200
+  (0.0ms) rollback transaction
201
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
202
+  (0.1ms) begin transaction
203
+  (0.1ms) rollback transaction
204
+  (0.0ms) begin transaction
205
+  (0.1ms) rollback transaction
206
+  (0.0ms) begin transaction
207
+  (0.1ms) rollback transaction
208
+  (0.0ms) begin transaction
209
+  (0.0ms) rollback transaction
210
+  (0.0ms) begin transaction
211
+  (0.0ms) rollback transaction
212
+  (0.0ms) begin transaction
213
+  (0.0ms) rollback transaction
214
+  (0.0ms) begin transaction
215
+  (0.0ms) rollback transaction
216
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
217
+  (0.1ms) begin transaction
218
+  (0.1ms) rollback transaction
219
+  (0.0ms) begin transaction
220
+  (0.0ms) rollback transaction
221
+  (0.0ms) begin transaction
222
+  (0.1ms) rollback transaction
223
+  (0.1ms) begin transaction
224
+  (0.1ms) rollback transaction
225
+  (0.0ms) begin transaction
226
+  (0.0ms) rollback transaction
227
+  (0.1ms) begin transaction
228
+  (0.0ms) rollback transaction
229
+  (0.0ms) begin transaction
230
+  (0.0ms) rollback transaction
231
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
232
+  (0.3ms) begin transaction
233
+  (0.1ms) rollback transaction
234
+  (0.0ms) begin transaction
235
+  (0.0ms) rollback transaction
236
+  (0.0ms) begin transaction
237
+  (0.0ms) rollback transaction
238
+  (0.0ms) begin transaction
239
+  (0.0ms) rollback transaction
240
+  (0.0ms) begin transaction
241
+  (0.1ms) rollback transaction
242
+  (0.0ms) begin transaction
243
+  (0.1ms) rollback transaction
244
+  (0.2ms) begin transaction
245
+  (0.2ms) rollback transaction
246
+  (0.1ms) begin transaction
247
+  (0.0ms) rollback transaction
248
+  (0.0ms) begin transaction
249
+  (0.0ms) rollback transaction
250
+  (0.0ms) begin transaction
251
+  (0.0ms) rollback transaction
252
+  (0.0ms) begin transaction
253
+  (0.0ms) rollback transaction
254
+  (0.0ms) begin transaction
255
+  (0.1ms) rollback transaction
256
+  (0.0ms) begin transaction
257
+  (0.1ms) rollback transaction
258
+  (0.0ms) begin transaction
259
+  (0.0ms) rollback transaction
260
+  (0.0ms) begin transaction
261
+  (0.0ms) rollback transaction
262
+  (0.0ms) begin transaction
263
+  (0.0ms) rollback transaction
264
+  (0.0ms) begin transaction
265
+  (0.0ms) rollback transaction
266
+  (0.0ms) begin transaction
267
+  (0.0ms) rollback transaction
268
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
269
+  (0.1ms) begin transaction
270
+  (0.1ms) rollback transaction
271
+  (0.1ms) begin transaction
272
+  (0.0ms) rollback transaction
273
+  (0.1ms) begin transaction
274
+  (0.0ms) rollback transaction
275
+  (0.0ms) begin transaction
276
+  (0.0ms) rollback transaction
277
+  (0.0ms) begin transaction
278
+  (0.0ms) rollback transaction
279
+  (0.0ms) begin transaction
280
+  (0.1ms) rollback transaction
281
+  (0.0ms) begin transaction
282
+  (0.0ms) rollback transaction
283
+  (0.1ms) begin transaction
284
+  (0.1ms) rollback transaction
285
+  (0.1ms) begin transaction
286
+  (0.1ms) rollback transaction
287
+  (0.0ms) begin transaction
288
+  (0.0ms) rollback transaction
289
+  (0.0ms) begin transaction
290
+  (0.0ms) rollback transaction
291
+  (0.0ms) begin transaction
292
+  (0.0ms) rollback transaction
293
+  (0.0ms) begin transaction
294
+  (0.1ms) rollback transaction
295
+  (0.0ms) begin transaction
296
+  (0.0ms) rollback transaction
297
+  (0.0ms) begin transaction
298
+  (0.0ms) rollback transaction
299
+  (0.0ms) begin transaction
300
+  (0.0ms) rollback transaction
301
+  (0.0ms) begin transaction
302
+  (0.1ms) rollback transaction
303
+  (0.1ms) begin transaction
304
+  (0.0ms) rollback transaction
305
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
306
+  (0.1ms) begin transaction
307
+  (0.1ms) rollback transaction
308
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
309
+  (0.1ms) begin transaction
310
+  (0.1ms) rollback transaction
311
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
312
+  (0.1ms) begin transaction
313
+  (0.1ms) rollback transaction
314
+  (0.1ms) begin transaction
315
+  (0.1ms) rollback transaction
316
+  (0.1ms) begin transaction
317
+  (0.1ms) rollback transaction
318
+  (0.1ms) begin transaction
319
+  (0.1ms) rollback transaction
320
+  (0.1ms) begin transaction
321
+  (0.1ms) rollback transaction
322
+  (0.1ms) begin transaction
323
+  (0.1ms) rollback transaction
324
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
325
+  (0.1ms) begin transaction
326
+  (0.1ms) rollback transaction
327
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
328
+  (0.1ms) begin transaction
329
+  (0.1ms) rollback transaction
330
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
331
+  (0.1ms) begin transaction
332
+  (0.1ms) rollback transaction
333
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
334
+  (0.1ms) begin transaction
335
+  (0.1ms) rollback transaction
336
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
337
+  (0.1ms) begin transaction
338
+  (0.1ms) rollback transaction
339
+  (0.0ms) begin transaction
340
+  (0.0ms) rollback transaction
341
+  (0.0ms) begin transaction
342
+  (0.1ms) rollback transaction
343
+  (0.0ms) begin transaction
344
+  (0.1ms) rollback transaction
345
+  (0.0ms) begin transaction
346
+  (0.0ms) rollback transaction
347
+  (0.1ms) begin transaction
348
+  (0.0ms) rollback transaction
349
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
350
+  (0.1ms) begin transaction
351
+  (0.1ms) rollback transaction
352
+  (0.1ms) begin transaction
353
+  (0.0ms) rollback transaction
354
+  (0.0ms) begin transaction
355
+  (0.1ms) rollback transaction
356
+  (0.1ms) begin transaction
357
+  (0.0ms) rollback transaction
358
+  (0.0ms) begin transaction
359
+  (0.0ms) rollback transaction
360
+  (0.0ms) begin transaction
361
+  (0.0ms) rollback transaction
362
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
363
+  (0.1ms) begin transaction
364
+  (0.1ms) rollback transaction
365
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
366
+  (0.1ms) begin transaction
367
+  (0.1ms) rollback transaction
368
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
369
+  (0.1ms) begin transaction
370
+  (0.1ms) rollback transaction
371
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
372
+  (0.1ms) begin transaction
373
+  (0.1ms) rollback transaction
374
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
375
+  (0.1ms) begin transaction
376
+  (0.0ms) rollback transaction
377
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
378
+  (0.1ms) begin transaction
379
+  (0.1ms) rollback transaction
380
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
381
+  (0.1ms) begin transaction
382
+  (0.1ms) rollback transaction
383
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
384
+  (0.1ms) begin transaction
385
+  (0.0ms) rollback transaction
386
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
387
+  (0.1ms) begin transaction
388
+  (0.1ms) rollback transaction
389
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
390
+  (0.1ms) begin transaction
391
+  (0.1ms) rollback transaction
392
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
393
+  (0.1ms) begin transaction
394
+  (0.1ms) rollback transaction
395
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
396
+  (0.1ms) begin transaction
397
+  (0.1ms) rollback transaction
398
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
399
+  (0.1ms) begin transaction
400
+  (0.1ms) rollback transaction
401
+  (0.1ms) begin transaction
402
+  (0.1ms) rollback transaction
403
+  (0.0ms) begin transaction
404
+  (0.0ms) rollback transaction
405
+  (0.0ms) begin transaction
406
+  (0.0ms) rollback transaction
407
+  (0.0ms) begin transaction
408
+  (0.0ms) rollback transaction
409
+  (0.0ms) begin transaction
410
+  (0.0ms) rollback transaction
411
+  (0.0ms) begin transaction
412
+  (0.0ms) rollback transaction
413
+  (0.0ms) begin transaction
414
+  (0.0ms) rollback transaction
415
+  (0.0ms) begin transaction
416
+  (0.0ms) rollback transaction
417
+  (0.0ms) begin transaction
418
+  (0.1ms) rollback transaction
419
+  (0.1ms) begin transaction
420
+  (0.0ms) rollback transaction
421
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
422
+  (0.1ms) begin transaction
423
+  (0.1ms) rollback transaction
424
+  (0.1ms) begin transaction
425
+  (0.1ms) rollback transaction
426
+  (0.0ms) begin transaction
427
+  (0.0ms) rollback transaction
428
+  (0.0ms) begin transaction
429
+  (0.1ms) rollback transaction
430
+  (0.0ms) begin transaction
431
+  (0.1ms) rollback transaction
432
+  (0.0ms) begin transaction
433
+  (0.1ms) rollback transaction
434
+  (0.1ms) begin transaction
435
+  (0.0ms) rollback transaction
436
+  (0.1ms) begin transaction
437
+  (0.0ms) rollback transaction
438
+  (0.0ms) begin transaction
439
+  (0.0ms) rollback transaction
440
+  (0.0ms) begin transaction
441
+  (0.0ms) rollback transaction
442
+  (0.0ms) begin transaction
443
+  (0.0ms) rollback transaction
444
+ ActiveRecord::SchemaMigration Load (1.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
445
+  (0.1ms) begin transaction
446
+  (0.1ms) rollback transaction
447
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
448
+  (0.1ms) begin transaction
449
+  (0.1ms) rollback transaction
450
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
451
+  (0.1ms) begin transaction
452
+  (0.1ms) rollback transaction
453
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
454
+  (0.1ms) begin transaction
455
+  (0.1ms) rollback transaction
456
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
457
+  (0.1ms) begin transaction
458
+ Processing by Addressbook::ContactsController#index as HTML
459
+ Account Load (0.4ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
460
+ Completed 500 Internal Server Error in 5ms
461
+  (0.1ms) rollback transaction
462
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
463
+  (0.1ms) begin transaction
464
+ Processing by Addressbook::ContactsController#index as HTML
465
+ Account Load (0.4ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
466
+ Completed 500 Internal Server Error in 5ms
467
+  (0.1ms) rollback transaction
468
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
469
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
470
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
471
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
472
+  (0.1ms) begin transaction
473
+  (0.1ms) rollback transaction
474
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
475
+  (0.4ms) begin transaction
476
+  (0.1ms) rollback transaction
477
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
478
+  (0.1ms) begin transaction
479
+  (0.1ms) rollback transaction
480
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
481
+  (0.1ms) begin transaction
482
+  (0.1ms) rollback transaction
483
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
484
+  (0.1ms) begin transaction
485
+  (0.1ms) rollback transaction
486
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
487
+  (0.1ms) begin transaction
488
+ Processing by Addressbook::ContactsController#index as HTML
489
+ Account Load (0.5ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
490
+ Completed 500 Internal Server Error in 8ms
491
+  (0.1ms) rollback transaction
492
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
493
+  (0.1ms) begin transaction
494
+ SQL (2.5ms) INSERT INTO "accounts" ("created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?) [["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
+  (0.8ms) commit transaction
496
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
497
+  (0.1ms) begin transaction
498
+ SQL (0.4ms) INSERT INTO "accounts" ("created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?) [["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
+  (0.9ms) commit transaction
500
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
501
+  (0.1ms) begin transaction
502
+ Processing by Addressbook::ContactsController#index as HTML
503
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
504
+ Completed 500 Internal Server Error in 14ms
505
+  (0.1ms) rollback transaction
506
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
507
+  (0.1ms) begin transaction
508
+ Processing by Addressbook::ContactsController#index as HTML
509
+ Account Load (0.5ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
510
+ Completed 500 Internal Server Error in 13ms
511
+  (0.1ms) rollback transaction
512
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
513
+  (0.1ms) begin transaction
514
+ Processing by Addressbook::ContactsController#index as HTML
515
+ Account Load (0.4ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
516
+ Completed 500 Internal Server Error in 15ms
517
+  (0.1ms) rollback transaction
518
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
519
+  (0.1ms) begin transaction
520
+ Processing by Addressbook::ContactsController#index as HTML
521
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
522
+ Completed 500 Internal Server Error in 12ms
523
+  (0.1ms) rollback transaction
524
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
525
+  (0.1ms) begin transaction
526
+ Processing by Addressbook::ContactsController#index as HTML
527
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
528
+ Completed 500 Internal Server Error in 13ms
529
+  (0.1ms) rollback transaction
530
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
531
+  (0.1ms) begin transaction
532
+ Processing by Addressbook::ContactsController#index as HTML
533
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
534
+ Completed 500 Internal Server Error in 11ms
535
+  (0.1ms) rollback transaction
536
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
537
+  (0.1ms) begin transaction
538
+ Processing by Addressbook::ContactsController#index as HTML
539
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
540
+ Completed 500 Internal Server Error in 10ms
541
+  (0.3ms) rollback transaction
542
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
543
+  (0.1ms) begin transaction
544
+ Processing by Addressbook::ContactsController#index as HTML
545
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
546
+ Completed 500 Internal Server Error in 14ms
547
+  (0.1ms) rollback transaction
548
+ Account Load (10.6ms) SELECT "accounts".* FROM "accounts"
549
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."id" = ? LIMIT 1 [["id", 2]]
550
+  (0.1ms) begin transaction
551
+ SQL (0.7ms) DELETE FROM "accounts" WHERE "accounts"."id" = ? [["id", 2]]
552
+  (0.7ms) commit transaction
553
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts"
554
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
555
+  (0.2ms) begin transaction
556
+ Processing by Addressbook::ContactsController#index as HTML
557
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
558
+ Completed 500 Internal Server Error in 12ms
559
+  (0.1ms) rollback transaction
560
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
561
+  (0.1ms) begin transaction
562
+ Processing by Addressbook::ContactsController#index as HTML
563
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
564
+ Completed 500 Internal Server Error in 12ms
565
+  (0.1ms) rollback transaction
566
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
567
+  (0.1ms) begin transaction
568
+ Processing by Addressbook::ContactsController#index as HTML
569
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
570
+ Completed 500 Internal Server Error in 13ms
571
+  (0.1ms) rollback transaction
572
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
573
+  (0.3ms) begin transaction
574
+ Processing by Addressbook::ContactsController#index as HTML
575
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
576
+  (0.1ms) SAVEPOINT active_record_1
577
+ SQL (0.4ms) UPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1 [["addressbook_account_id", 1], ["updated_at", "2014-12-02 08:21:07.914995"]]
578
+  (0.1ms) RELEASE SAVEPOINT active_record_1
579
+ Completed 500 Internal Server Error in 28ms
580
+  (0.9ms) rollback transaction
581
+ ActiveRecord::SchemaMigration Load (2.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
582
+  (0.1ms) begin transaction
583
+ Processing by Addressbook::ContactsController#index as HTML
584
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
585
+  (0.1ms) SAVEPOINT active_record_1
586
+ SQL (0.3ms) UPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1 [["addressbook_account_id", 1], ["updated_at", "2014-12-02 08:22:18.441494"]]
587
+  (0.0ms) RELEASE SAVEPOINT active_record_1
588
+ Completed 500 Internal Server Error in 19ms
589
+  (1.1ms) rollback transaction
590
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
591
+  (0.1ms) begin transaction
592
+ Processing by Addressbook::ContactsController#index as HTML
593
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
594
+  (0.1ms) SAVEPOINT active_record_1
595
+ SQL (1.1ms) UPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1 [["addressbook_account_id", 1], ["updated_at", "2014-12-02 08:23:29.648932"]]
596
+  (0.2ms) 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
+  (0.5ms) rollback transaction
600
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
601
+  (0.1ms) begin transaction
602
+ Processing by Addressbook::ContactsController#index as HTML
603
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
604
+  (0.1ms) SAVEPOINT active_record_1
605
+ SQL (1.1ms) UPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1 [["addressbook_account_id", 1], ["updated_at", "2014-12-02 08:24:42.465278"]]
606
+  (0.2ms) 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
+  (8.5ms) rollback transaction
610
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
611
+  (0.1ms) begin transaction
612
+ Processing by Addressbook::ContactsController#index as HTML
613
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
614
+  (0.1ms) SAVEPOINT active_record_1
615
+ SQL (0.3ms) UPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1 [["addressbook_account_id", 1], ["updated_at", "2014-12-02 08:25:10.537084"]]
616
+  (0.0ms) 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
+  (0.5ms) rollback transaction
620
+  (0.2ms) begin transaction
621
+ Processing by Addressbook::ContactsController#new as HTML
622
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
623
+  (0.1ms) rollback transaction
624
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
625
+  (0.1ms) begin transaction
626
+ Processing by Addressbook::ContactsController#index as HTML
627
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
628
+  (0.1ms) SAVEPOINT active_record_1
629
+ SQL (0.4ms) UPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1 [["addressbook_account_id", 1], ["updated_at", "2014-12-02 08:25:32.980830"]]
630
+  (0.0ms) 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
+  (8.0ms) rollback transaction
634
+  (0.1ms) begin transaction
635
+ Processing by Addressbook::ContactsController#new as HTML
636
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
637
+  (0.1ms) rollback transaction
638
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
639
+  (0.1ms) begin transaction
640
+ Processing by Addressbook::ContactsController#create as HTML
641
+ Account Load (0.3ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
642
+  (0.1ms) SAVEPOINT active_record_1
643
+ SQL (0.7ms) UPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1 [["addressbook_account_id", 1], ["updated_at", "2014-12-02 08:27:12.651617"]]
644
+  (0.1ms) RELEASE SAVEPOINT active_record_1
645
+ Completed 500 Internal Server Error in 21ms
646
+  (0.3ms) rollback transaction
647
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
648
+  (0.1ms) 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
+  (0.4ms) rollback transaction
653
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
654
+  (0.1ms) begin transaction
655
+ Processing by Addressbook::ContactsController#create as HTML
656
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
657
+  (0.1ms) SAVEPOINT active_record_1
658
+ SQL (0.3ms) UPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1 [["addressbook_account_id", 1], ["updated_at", "2014-12-02 08:28:28.617176"]]
659
+  (0.0ms) RELEASE SAVEPOINT active_record_1
660
+ Completed 500 Internal Server Error in 32ms
661
+  (0.3ms) rollback transaction
662
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
663
+  (0.1ms) begin transaction
664
+ Processing by Addressbook::ContactsController#create as HTML
665
+ Account Load (0.5ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
666
+  (0.1ms) SAVEPOINT active_record_1
667
+ SQL (0.6ms) UPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1 [["addressbook_account_id", 1], ["updated_at", "2014-12-02 08:29:43.812423"]]
668
+  (0.1ms) RELEASE SAVEPOINT active_record_1
669
+ Completed 500 Internal Server Error in 25ms
670
+  (0.4ms) rollback transaction
671
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
672
+  (0.1ms) begin transaction
673
+ Processing by Addressbook::ContactsController#create as HTML
674
+ Account Load (0.4ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
675
+  (0.1ms) SAVEPOINT active_record_1
676
+ SQL (0.8ms) UPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1 [["addressbook_account_id", 1], ["updated_at", "2014-12-02 08:31:30.962965"]]
677
+  (0.1ms) RELEASE SAVEPOINT active_record_1
678
+ Redirected to http://test.host/addressbook/contacts
679
+ Completed 302 Found in 41ms (ActiveRecord: 1.7ms)
680
+  (0.3ms) rollback transaction
681
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
682
+  (0.1ms) begin transaction
683
+ Processing by Addressbook::ContactsController#create as HTML
684
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
685
+  (0.1ms) SAVEPOINT active_record_1
686
+ SQL (0.3ms) UPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1 [["addressbook_account_id", 1], ["updated_at", "2014-12-02 08:31:54.071499"]]
687
+  (0.0ms) RELEASE SAVEPOINT active_record_1
688
+ Redirected to http://test.host/addressbook/contacts
689
+ Completed 302 Found in 34ms (ActiveRecord: 0.8ms)
690
+  (8.3ms) rollback transaction
691
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
692
+  (0.1ms) begin transaction
693
+ Processing by Addressbook::ContactsController#create as HTML
694
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
695
+  (0.3ms) SAVEPOINT active_record_1
696
+ SQL (0.3ms) UPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1 [["addressbook_account_id", 1], ["updated_at", "2014-12-02 08:32:06.797560"]]
697
+  (0.0ms) RELEASE SAVEPOINT active_record_1
698
+ Redirected to http://test.host/addressbook/contacts
699
+ Completed 302 Found in 34ms (ActiveRecord: 1.0ms)
700
+  (8.3ms) rollback transaction
701
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
702
+  (0.1ms) begin transaction
703
+ Processing by Addressbook::ContactsController#create as HTML
704
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
705
+  (0.1ms) SAVEPOINT active_record_1
706
+ SQL (0.3ms) UPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1 [["addressbook_account_id", 1], ["updated_at", "2014-12-02 08:32:47.873851"]]
707
+  (0.0ms) RELEASE SAVEPOINT active_record_1
708
+ Redirected to http://test.host/addressbook/contacts
709
+ Completed 302 Found in 31ms (ActiveRecord: 1.4ms)
710
+  (0.3ms) rollback transaction
711
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
712
+  (0.1ms) begin transaction
713
+ Processing by Addressbook::ContactsController#create as HTML
714
+ Account Load (0.4ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
715
+  (0.1ms) SAVEPOINT active_record_1
716
+ SQL (0.3ms) UPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1 [["addressbook_account_id", 1], ["updated_at", "2014-12-02 08:33:01.028467"]]
717
+  (0.0ms) RELEASE SAVEPOINT active_record_1
718
+ Redirected to http://test.host/addressbook/contacts
719
+ Completed 302 Found in 35ms (ActiveRecord: 1.2ms)
720
+  (8.5ms) rollback transaction
721
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
722
+  (0.2ms) begin transaction
723
+ Processing by Addressbook::ContactsController#create as HTML
724
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
725
+  (0.1ms) SAVEPOINT active_record_1
726
+ SQL (0.3ms) UPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1 [["addressbook_account_id", 1], ["updated_at", "2014-12-02 08:35:15.922272"]]
727
+  (0.0ms) RELEASE SAVEPOINT active_record_1
728
+ Redirected to http://test.host/addressbook/contacts
729
+ Completed 302 Found in 33ms (ActiveRecord: 0.8ms)
730
+  (8.0ms) rollback transaction
731
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
732
+  (0.1ms) begin transaction
733
+ Processing by Addressbook::ContactsController#create as HTML
734
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
735
+  (0.1ms) SAVEPOINT active_record_1
736
+ SQL (0.3ms) UPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1 [["addressbook_account_id", 1], ["updated_at", "2014-12-02 08:35:39.624644"]]
737
+  (0.0ms) RELEASE SAVEPOINT active_record_1
738
+ Redirected to http://test.host/addressbook/contacts
739
+ Completed 302 Found in 31ms (ActiveRecord: 0.8ms)
740
+  (8.8ms) rollback transaction
741
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
742
+  (0.1ms) begin transaction
743
+ Processing by Addressbook::ContactsController#create as HTML
744
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
745
+  (0.1ms) SAVEPOINT active_record_1
746
+ SQL (0.3ms) UPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1 [["addressbook_account_id", 1], ["updated_at", "2014-12-02 08:36:18.166899"]]
747
+  (0.1ms) 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
+  (0.4ms) rollback transaction
751
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
752
+  (0.1ms) begin transaction
753
+ Processing by Addressbook::ContactsController#index as HTML
754
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
755
+  (0.2ms) SAVEPOINT active_record_1
756
+ SQL (0.3ms) UPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1 [["addressbook_account_id", 1], ["updated_at", "2014-12-02 08:36:28.497612"]]
757
+  (0.0ms) 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
+  (0.4ms) rollback transaction
761
+  (0.1ms) begin transaction
762
+ Processing by Addressbook::ContactsController#create as HTML
763
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
764
+  (0.0ms) SAVEPOINT active_record_1
765
+ SQL (0.2ms) UPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1 [["addressbook_account_id", 1], ["updated_at", "2014-12-02 08:36:28.526134"]]
766
+  (0.0ms) RELEASE SAVEPOINT active_record_1
767
+ Redirected to http://test.host/addressbook/contacts
768
+ Completed 302 Found in 12ms (ActiveRecord: 0.5ms)
769
+  (0.4ms) rollback transaction
770
+  (0.1ms) begin transaction
771
+ Processing by Addressbook::ContactsController#create as HTML
772
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
773
+  (0.1ms) SAVEPOINT active_record_1
774
+ SQL (0.3ms) UPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1 [["addressbook_account_id", 1], ["updated_at", "2014-12-02 08:36:28.541590"]]
775
+  (0.1ms) RELEASE SAVEPOINT active_record_1
776
+ Completed 200 OK in 7ms (Views: 2.3ms | ActiveRecord: 0.6ms)
777
+  (0.9ms) rollback transaction
778
+  (0.1ms) begin transaction
779
+ Processing by Addressbook::ContactsController#new as HTML
780
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
781
+  (0.1ms) rollback transaction
782
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
783
+  (0.7ms) begin transaction
784
+  (0.1ms) rollback transaction
785
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
786
+  (0.1ms) 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
+  (0.2ms) rollback transaction
792
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
793
+  (0.1ms) begin transaction
794
+ Processing by Addressbook::ContactsController#index as HTML
795
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
796
+  (0.1ms) SAVEPOINT active_record_1
797
+ SQL (0.3ms) UPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1 [["addressbook_account_id", 1], ["updated_at", "2014-12-02 08:42:11.676994"]]
798
+  (0.0ms) 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
+  (8.1ms) rollback transaction
802
+  (0.1ms) begin transaction
803
+ Processing by Addressbook::ContactsController#create as HTML
804
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
805
+  (0.0ms) SAVEPOINT active_record_1
806
+ SQL (0.2ms) UPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1 [["addressbook_account_id", 1], ["updated_at", "2014-12-02 08:42:11.710468"]]
807
+  (0.0ms) RELEASE SAVEPOINT active_record_1
808
+ Redirected to http://test.host/addressbook/contacts
809
+ Completed 302 Found in 9ms (ActiveRecord: 0.4ms)
810
+  (0.3ms) rollback transaction
811
+  (0.1ms) begin transaction
812
+ Processing by Addressbook::ContactsController#create as HTML
813
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
814
+  (0.0ms) SAVEPOINT active_record_1
815
+ SQL (0.2ms) UPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1 [["addressbook_account_id", 1], ["updated_at", "2014-12-02 08:42:11.726484"]]
816
+  (0.0ms) RELEASE SAVEPOINT active_record_1
817
+ Completed 200 OK in 5ms (Views: 1.7ms | ActiveRecord: 0.4ms)
818
+  (0.4ms) rollback transaction
819
+  (0.0ms) 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
+  (0.3ms) rollback transaction
824
+  (0.1ms) begin transaction
825
+ Processing by Addressbook::ContactsController#new as HTML
826
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
827
+  (0.1ms) rollback transaction
828
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
829
+  (0.1ms) 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
+  (0.1ms) rollback transaction
835
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
836
+  (0.1ms) begin transaction
837
+ Processing by Addressbook::ContactsController#update as HTML
838
+ Parameters: {"id"=>"1001"}
839
+ Completed 500 Internal Server Error in 1ms
840
+  (0.1ms) rollback transaction
841
+  (0.0ms) begin transaction
842
+ Processing by Addressbook::ContactsController#update as HTML
843
+ Parameters: {"id"=>"1002"}
844
+ Completed 500 Internal Server Error in 1ms
845
+  (0.1ms) rollback transaction
846
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
847
+  (0.1ms) 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
+  (0.1ms) rollback transaction
853
+  (0.0ms) 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
+  (0.1ms) rollback transaction
858
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
859
+  (0.1ms) 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
+  (0.1ms) rollback transaction
865
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
866
+  (0.1ms) 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
+  (0.1ms) rollback transaction
872
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
873
+  (0.3ms) 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
+  (0.1ms) rollback transaction
879
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
880
+  (0.1ms) 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
+  (0.1ms) rollback transaction
886
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
887
+  (0.1ms) 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
+  (0.1ms) rollback transaction
893
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
894
+  (0.1ms) 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
+  (0.1ms) rollback transaction
900
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
901
+  (0.1ms) begin transaction
902
+  (0.1ms) rollback transaction
903
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
904
+  (0.4ms) 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
+  (0.2ms) rollback transaction
910
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
911
+  (0.1ms) 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
+  (0.1ms) rollback transaction
917
+  (0.0ms) 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
+  (0.3ms) rollback transaction
923
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
924
+  (0.1ms) 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
+  (0.1ms) rollback transaction
930
+  (0.0ms) 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
+  (0.0ms) rollback transaction
936
+  (0.0ms) begin transaction
937
+ Processing by Addressbook::ContactsController#new as HTML
938
+ Completed 200 OK in 9ms (Views: 8.2ms | ActiveRecord: 0.0ms)
939
+  (0.3ms) rollback transaction
940
+  (0.1ms) 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
+  (0.1ms) rollback transaction
945
+  (0.0ms) 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
+  (0.1ms) rollback transaction
950
+  (0.1ms) 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
+  (0.1ms) rollback transaction
956
+  (0.0ms) 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
+  (0.1ms) rollback transaction
961
+  (0.0ms) begin transaction
962
+ Processing by Addressbook::ContactsController#create as HTML
963
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
964
+  (0.1ms) SAVEPOINT active_record_1
965
+ SQL (0.5ms) UPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1 [["addressbook_account_id", 1], ["updated_at", "2014-12-02 08:58:19.936475"]]
966
+  (0.1ms) RELEASE SAVEPOINT active_record_1
967
+ Redirected to http://test.host/addressbook/contacts
968
+ Completed 302 Found in 26ms (ActiveRecord: 1.0ms)
969
+  (8.7ms) rollback transaction
970
+  (0.2ms) begin transaction
971
+ Processing by Addressbook::ContactsController#create as HTML
972
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
973
+  (0.0ms) SAVEPOINT active_record_1
974
+ SQL (0.2ms) UPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1 [["addressbook_account_id", 1], ["updated_at", "2014-12-02 08:58:19.963015"]]
975
+  (0.0ms) RELEASE SAVEPOINT active_record_1
976
+ Completed 200 OK in 4ms (Views: 0.9ms | ActiveRecord: 0.4ms)
977
+  (0.4ms) rollback transaction
978
+  (0.0ms) begin transaction
979
+ Processing by Addressbook::ContactsController#index as HTML
980
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
981
+  (0.1ms) SAVEPOINT active_record_1
982
+ SQL (0.3ms) UPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1 [["addressbook_account_id", 1], ["updated_at", "2014-12-02 08:58:19.971511"]]
983
+  (0.1ms) RELEASE SAVEPOINT active_record_1
984
+ Completed 200 OK in 8ms (Views: 3.8ms | ActiveRecord: 0.6ms)
985
+  (0.4ms) rollback transaction
986
+  (0.1ms) 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
+  (0.1ms) rollback transaction
992
+  (0.0ms) 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
+  (0.0ms) rollback transaction
998
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
999
+  (0.1ms) 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
+  (0.1ms) rollback transaction
1004
+  (0.0ms) 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
+  (0.1ms) rollback transaction
1009
+  (0.0ms) 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
+  (0.1ms) rollback transaction
1014
+  (0.1ms) 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
+  (0.1ms) rollback transaction
1020
+  (0.0ms) begin transaction
1021
+ Processing by Addressbook::GroupsController#create as HTML
1022
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
1023
+  (0.1ms) SAVEPOINT active_record_1
1024
+ SQL (0.3ms) UPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1 [["addressbook_account_id", 1], ["updated_at", "2014-12-02 09:01:16.087204"]]
1025
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1026
+ Completed 200 OK in 21ms (Views: 1.2ms | ActiveRecord: 0.9ms)
1027
+  (0.5ms) rollback transaction
1028
+  (0.1ms) begin transaction
1029
+ Processing by Addressbook::GroupsController#create as HTML
1030
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
1031
+  (0.1ms) SAVEPOINT active_record_1
1032
+ SQL (0.2ms) UPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1 [["addressbook_account_id", 1], ["updated_at", "2014-12-02 09:01:16.104988"]]
1033
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1034
+ Redirected to
1035
+ Completed 500 Internal Server Error in 4ms
1036
+  (0.4ms) rollback transaction
1037
+  (0.0ms) begin transaction
1038
+ Processing by Addressbook::GroupsController#index as HTML
1039
+ Account Load (0.6ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
1040
+  (0.1ms) SAVEPOINT active_record_1
1041
+ SQL (0.3ms) UPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1 [["addressbook_account_id", 1], ["updated_at", "2014-12-02 09:01:16.116046"]]
1042
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1043
+ Completed 200 OK in 7ms (Views: 1.7ms | ActiveRecord: 1.0ms)
1044
+  (0.4ms) rollback transaction
1045
+  (0.0ms) 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
+  (0.1ms) rollback transaction
1050
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1051
+  (0.1ms) 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
+  (0.1ms) rollback transaction
1057
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1058
+  (0.1ms) begin transaction
1059
+ Processing by Addressbook::GroupsController#create as HTML
1060
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
1061
+  (0.1ms) SAVEPOINT active_record_1
1062
+ SQL (0.4ms) UPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1 [["addressbook_account_id", 1], ["updated_at", "2014-12-02 09:04:11.438891"]]
1063
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1064
+ Redirected to http://test.host/addressbook/
1065
+ Completed 302 Found in 33ms (ActiveRecord: 0.9ms)
1066
+  (8.0ms) rollback transaction
1067
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1068
+  (0.1ms) 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
+  (0.1ms) rollback transaction
1074
+  (0.0ms) 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
+  (0.1ms) rollback transaction
1079
+  (0.2ms) begin transaction
1080
+ Processing by Addressbook::GroupsController#create as HTML
1081
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
1082
+  (0.1ms) SAVEPOINT active_record_1
1083
+ SQL (1.5ms) UPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1 [["addressbook_account_id", 1], ["updated_at", "2014-12-02 09:04:20.319406"]]
1084
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1085
+ Redirected to http://test.host/addressbook/
1086
+ Completed 302 Found in 24ms (ActiveRecord: 2.1ms)
1087
+  (7.8ms) rollback transaction
1088
+  (0.1ms) begin transaction
1089
+ Processing by Addressbook::GroupsController#create as HTML
1090
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
1091
+  (0.0ms) SAVEPOINT active_record_1
1092
+ SQL (0.2ms) UPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1 [["addressbook_account_id", 1], ["updated_at", "2014-12-02 09:04:20.352598"]]
1093
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1094
+ Completed 200 OK in 9ms (Views: 4.0ms | ActiveRecord: 0.4ms)
1095
+  (0.4ms) rollback transaction
1096
+  (0.0ms) begin transaction
1097
+ Processing by Addressbook::GroupsController#new as HTML
1098
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1099
+  (0.1ms) rollback transaction
1100
+  (0.0ms) begin transaction
1101
+ Processing by Addressbook::GroupsController#index as HTML
1102
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
1103
+  (0.0ms) SAVEPOINT active_record_1
1104
+ SQL (0.3ms) UPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1 [["addressbook_account_id", 1], ["updated_at", "2014-12-02 09:04:20.369243"]]
1105
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1106
+ Completed 200 OK in 9ms (Views: 5.1ms | ActiveRecord: 0.7ms)
1107
+  (0.4ms) rollback transaction
1108
+  (0.1ms) 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
+  (0.1ms) rollback transaction
1114
+  (0.1ms) 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
+  (0.1ms) rollback transaction
1119
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1120
+  (0.1ms) begin transaction
1121
+ Processing by Addressbook::ContactsController#index as HTML
1122
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
1123
+  (0.1ms) SAVEPOINT active_record_1
1124
+ SQL (0.3ms) UPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1 [["addressbook_account_id", 1], ["updated_at", "2014-12-02 09:04:31.037772"]]
1125
+  (0.0ms) 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
+  (8.6ms) rollback transaction
1129
+  (0.1ms) 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
+  (0.1ms) rollback transaction
1135
+  (0.0ms) 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
+  (0.1ms) rollback transaction
1141
+  (0.2ms) begin transaction
1142
+ Processing by Addressbook::ContactsController#create as HTML
1143
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
1144
+  (0.0ms) SAVEPOINT active_record_1
1145
+ SQL (0.2ms) UPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1 [["addressbook_account_id", 1], ["updated_at", "2014-12-02 09:04:31.085255"]]
1146
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1147
+ Redirected to http://test.host/addressbook/contacts
1148
+ Completed 302 Found in 4ms (ActiveRecord: 0.4ms)
1149
+  (0.3ms) rollback transaction
1150
+  (0.0ms) begin transaction
1151
+ Processing by Addressbook::ContactsController#create as HTML
1152
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
1153
+  (0.0ms) SAVEPOINT active_record_1
1154
+ SQL (0.2ms) UPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1 [["addressbook_account_id", 1], ["updated_at", "2014-12-02 09:04:31.091564"]]
1155
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1156
+ Completed 200 OK in 6ms (Views: 3.0ms | ActiveRecord: 0.4ms)
1157
+  (0.6ms) rollback transaction
1158
+  (0.1ms) begin transaction
1159
+ Processing by Addressbook::ContactsController#new as HTML
1160
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
1161
+  (0.1ms) rollback transaction
1162
+  (0.0ms) 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
+  (0.1ms) rollback transaction
1167
+  (0.2ms) 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
+  (0.1ms) rollback transaction
1173
+  (0.1ms) 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
+  (0.2ms) rollback transaction
1179
+  (0.1ms) 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
+  (0.1ms) rollback transaction
1185
+  (0.0ms) 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
+  (0.1ms) rollback transaction
1190
+  (0.0ms) 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
+  (0.1ms) rollback transaction
1195
+  (0.0ms) begin transaction
1196
+ Processing by Addressbook::GroupsController#index as HTML
1197
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
1198
+  (0.0ms) SAVEPOINT active_record_1
1199
+ SQL (0.2ms) UPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1 [["addressbook_account_id", 1], ["updated_at", "2014-12-02 09:04:31.154102"]]
1200
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1201
+ Completed 200 OK in 6ms (Views: 2.2ms | ActiveRecord: 0.4ms)
1202
+  (0.3ms) rollback transaction
1203
+  (0.1ms) begin transaction
1204
+ Processing by Addressbook::GroupsController#create as HTML
1205
+ Account Load (0.3ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
1206
+  (0.1ms) SAVEPOINT active_record_1
1207
+ SQL (0.6ms) UPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1 [["addressbook_account_id", 1], ["updated_at", "2014-12-02 09:04:31.166225"]]
1208
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1209
+ Redirected to http://test.host/addressbook/
1210
+ Completed 302 Found in 8ms (ActiveRecord: 1.1ms)
1211
+  (0.4ms) rollback transaction
1212
+  (0.0ms) begin transaction
1213
+ Processing by Addressbook::GroupsController#create as HTML
1214
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
1215
+  (0.1ms) SAVEPOINT active_record_1
1216
+ SQL (0.3ms) UPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1 [["addressbook_account_id", 1], ["updated_at", "2014-12-02 09:04:31.176187"]]
1217
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1218
+ Completed 200 OK in 9ms (Views: 4.3ms | ActiveRecord: 0.7ms)
1219
+  (0.6ms) rollback transaction
1220
+  (0.1ms) 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
+  (0.1ms) rollback transaction
1225
+  (0.0ms) begin transaction
1226
+ Processing by Addressbook::GroupsController#new as HTML
1227
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
1228
+  (0.1ms) rollback transaction
1229
+  (0.0ms) 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
+  (0.1ms) rollback transaction
1234
+  (0.0ms) 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
+  (0.1ms) rollback transaction
1240
+  (0.0ms) 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
+  (0.1ms) rollback transaction
1245
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
1246
+  (0.1ms) begin transaction
1247
+  (0.1ms) rollback transaction
1248
+  (0.1ms) begin transaction
1249
+  (0.0ms) rollback transaction
1250
+  (0.0ms) begin transaction
1251
+  (0.0ms) rollback transaction
1252
+  (0.0ms) begin transaction
1253
+  (0.0ms) rollback transaction
1254
+  (0.0ms) begin transaction
1255
+  (0.0ms) rollback transaction
1256
+  (0.0ms) begin transaction
1257
+  (0.1ms) rollback transaction
1258
+  (0.1ms) begin transaction
1259
+  (0.1ms) rollback transaction
1260
+  (0.2ms) begin transaction
1261
+  (0.1ms) rollback transaction
1262
+  (0.1ms) begin transaction
1263
+  (0.0ms) rollback transaction
1264
+  (0.0ms) begin transaction
1265
+  (0.0ms) rollback transaction
1266
+  (0.0ms) begin transaction
1267
+  (0.1ms) rollback transaction
1268
+  (0.0ms) begin transaction
1269
+  (0.0ms) rollback transaction
1270
+  (0.1ms) begin transaction
1271
+  (0.1ms) rollback transaction
1272
+  (0.0ms) begin transaction
1273
+  (0.1ms) rollback transaction
1274
+  (0.1ms) begin transaction
1275
+  (0.0ms) rollback transaction
1276
+  (0.0ms) begin transaction
1277
+  (0.0ms) rollback transaction
1278
+  (0.1ms) begin transaction
1279
+  (0.0ms) rollback transaction
1280
+  (0.0ms) begin transaction
1281
+  (0.0ms) rollback transaction
1282
+  (0.0ms) begin transaction
1283
+  (0.0ms) rollback transaction
1284
+  (0.0ms) begin transaction
1285
+  (0.0ms) rollback transaction
1286
+  (0.0ms) begin transaction
1287
+  (0.0ms) rollback transaction
1288
+  (0.0ms) begin transaction
1289
+  (0.1ms) rollback transaction
1290
+  (0.0ms) begin transaction
1291
+  (0.0ms) rollback transaction
1292
+  (0.0ms) begin transaction
1293
+  (0.1ms) rollback transaction
1294
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1295
+  (0.1ms) begin transaction
1296
+  (0.1ms) rollback transaction
1297
+  (0.0ms) begin transaction
1298
+  (0.0ms) rollback transaction
1299
+  (0.0ms) begin transaction
1300
+  (0.0ms) rollback transaction
1301
+  (0.0ms) begin transaction
1302
+  (0.0ms) rollback transaction
1303
+  (0.0ms) begin transaction
1304
+  (0.1ms) rollback transaction
1305
+  (0.0ms) begin transaction
1306
+  (0.1ms) rollback transaction
1307
+  (0.1ms) begin transaction
1308
+  (0.1ms) rollback transaction
1309
+  (0.1ms) begin transaction
1310
+  (0.1ms) rollback transaction
1311
+  (0.1ms) begin transaction
1312
+  (0.1ms) rollback transaction
1313
+  (0.1ms) begin transaction
1314
+  (0.1ms) rollback transaction
1315
+  (0.1ms) begin transaction
1316
+  (0.0ms) rollback transaction
1317
+  (0.0ms) begin transaction
1318
+  (0.0ms) rollback transaction
1319
+  (0.0ms) begin transaction
1320
+  (0.0ms) rollback transaction
1321
+  (0.0ms) begin transaction
1322
+  (0.0ms) rollback transaction
1323
+  (0.0ms) begin transaction
1324
+  (0.0ms) rollback transaction
1325
+  (0.0ms) begin transaction
1326
+  (0.0ms) rollback transaction
1327
+  (0.0ms) begin transaction
1328
+  (0.1ms) rollback transaction
1329
+  (0.0ms) begin transaction
1330
+  (0.1ms) rollback transaction
1331
+  (0.0ms) begin transaction
1332
+  (0.0ms) rollback transaction
1333
+  (0.1ms) begin transaction
1334
+  (0.0ms) rollback transaction
1335
+  (0.0ms) begin transaction
1336
+  (0.0ms) rollback transaction
1337
+  (0.0ms) begin transaction
1338
+  (0.0ms) rollback transaction
1339
+  (0.0ms) begin transaction
1340
+  (0.0ms) rollback transaction
1341
+  (0.0ms) begin transaction
1342
+  (0.0ms) rollback transaction
1343
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1344
+  (0.1ms) 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
+  (0.1ms) rollback transaction
1350
+  (0.0ms) begin transaction
1351
+ Processing by Addressbook::ContactsController#create as HTML
1352
+ Account Load (0.4ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
1353
+  (0.1ms) SAVEPOINT active_record_1
1354
+ SQL (0.6ms) UPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1 [["addressbook_account_id", 1], ["updated_at", "2014-12-11 13:51:12.427708"]]
1355
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1356
+ Redirected to http://test.host/addressbook/contacts
1357
+ Completed 302 Found in 23ms (ActiveRecord: 1.4ms)
1358
+  (0.8ms) rollback transaction
1359
+  (0.1ms) begin transaction
1360
+ Processing by Addressbook::ContactsController#create as HTML
1361
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
1362
+  (0.0ms) SAVEPOINT active_record_1
1363
+ SQL (0.2ms) UPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1 [["addressbook_account_id", 1], ["updated_at", "2014-12-11 13:51:12.445862"]]
1364
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1365
+ Completed 200 OK in 6ms (Views: 2.2ms | ActiveRecord: 0.4ms)
1366
+  (0.4ms) rollback transaction
1367
+  (0.0ms) 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
+  (0.0ms) rollback transaction
1373
+  (0.0ms) 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
+  (0.0ms) rollback transaction
1379
+  (0.1ms) begin transaction
1380
+ Processing by Addressbook::ContactsController#index as HTML
1381
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
1382
+  (0.0ms) SAVEPOINT active_record_1
1383
+ SQL (0.2ms) UPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1 [["addressbook_account_id", 1], ["updated_at", "2014-12-11 13:51:12.461299"]]
1384
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1385
+ Completed 200 OK in 5ms (Views: 2.0ms | ActiveRecord: 0.4ms)
1386
+  (0.4ms) rollback transaction
1387
+  (0.1ms) 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
+  (0.1ms) rollback transaction
1393
+  (0.1ms) 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
+  (0.1ms) rollback transaction
1398
+  (0.0ms) begin transaction
1399
+ Processing by Addressbook::ContactsController#new as HTML
1400
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1401
+  (0.0ms) rollback transaction
1402
+  (0.0ms) 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
+  (0.1ms) rollback transaction
1407
+  (0.0ms) 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
+  (0.1ms) rollback transaction
1413
+  (0.0ms) 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
+  (0.0ms) rollback transaction
1419
+  (0.1ms) 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
+  (0.1ms) rollback transaction
1424
+  (0.0ms) begin transaction
1425
+ Processing by Addressbook::GroupsController#create as HTML
1426
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
1427
+  (0.0ms) SAVEPOINT active_record_1
1428
+ SQL (0.2ms) UPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1 [["addressbook_account_id", 1], ["updated_at", "2014-12-11 13:51:12.508914"]]
1429
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1430
+ Redirected to http://test.host/addressbook/
1431
+ Completed 302 Found in 4ms (ActiveRecord: 0.4ms)
1432
+  (0.4ms) rollback transaction
1433
+  (0.1ms) begin transaction
1434
+ Processing by Addressbook::GroupsController#create as HTML
1435
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
1436
+  (0.0ms) SAVEPOINT active_record_1
1437
+ SQL (0.2ms) UPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1 [["addressbook_account_id", 1], ["updated_at", "2014-12-11 13:51:12.517763"]]
1438
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1439
+ Completed 200 OK in 6ms (Views: 2.2ms | ActiveRecord: 0.4ms)
1440
+  (0.3ms) rollback transaction
1441
+  (0.1ms) begin transaction
1442
+ Processing by Addressbook::GroupsController#index as HTML
1443
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" ORDER BY "accounts"."id" ASC LIMIT 1
1444
+  (0.0ms) SAVEPOINT active_record_1
1445
+ SQL (0.2ms) UPDATE "accounts" SET "addressbook_account_id" = ?, "updated_at" = ? WHERE "accounts"."id" = 1 [["addressbook_account_id", 1], ["updated_at", "2014-12-11 13:51:12.527425"]]
1446
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1447
+ Completed 200 OK in 5ms (Views: 2.1ms | ActiveRecord: 0.4ms)
1448
+  (0.4ms) rollback transaction
1449
+  (0.0ms) 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
+  (0.1ms) rollback transaction
1455
+  (0.0ms) 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
+  (0.1ms) rollback transaction
1460
+  (0.0ms) begin transaction
1461
+ Processing by Addressbook::GroupsController#new as HTML
1462
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1463
+  (0.1ms) rollback transaction
1464
+  (0.1ms) 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
+  (0.1ms) rollback transaction