customer_vault 1.2.2 → 1.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -14,8 +14,8 @@ module CustomerVault
|
|
|
14
14
|
(direction == :asc) ? get_index_people.sort_by(&:name)
|
|
15
15
|
: get_index_people.sort_by(&:name).reverse
|
|
16
16
|
when 'zip'
|
|
17
|
-
(direction == :asc) ? get_index_people.sort_by{ |p| p.address.zip }
|
|
18
|
-
: get_index_people.sort_by{ |p| p.address.zip }.reverse
|
|
17
|
+
(direction == :asc) ? get_index_people.sort_by{ |p| p.address.zip.to_s }
|
|
18
|
+
: get_index_people.sort_by{ |p| p.address.zip.to_s }.reverse
|
|
19
19
|
else
|
|
20
20
|
get_index_people.sort_by(&:name)
|
|
21
21
|
end
|
|
Binary file
|
data/spec/dummy/db/test.sqlite3
CHANGED
|
Binary file
|
|
@@ -19114,3 +19114,189 @@ Processing by CustomerVault::CorporationsController#show as HTML
|
|
|
19114
19114
|
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_show.html.slim (40.5ms)
|
|
19115
19115
|
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/show.html.slim within layouts/application (44.5ms)
|
|
19116
19116
|
Completed 200 OK in 63ms (Views: 60.0ms | ActiveRecord: 1.4ms)
|
|
19117
|
+
|
|
19118
|
+
|
|
19119
|
+
Started GET "/" for 127.0.0.1 at 2015-03-30 17:57:47 +0200
|
|
19120
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.8ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
19121
|
+
Processing by Rails::WelcomeController#index as HTML
|
|
19122
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/railties-4.0.13/lib/rails/templates/rails/welcome/index.html.erb (4.7ms)
|
|
19123
|
+
Completed 200 OK in 50ms (Views: 22.6ms | ActiveRecord: 0.0ms)
|
|
19124
|
+
|
|
19125
|
+
|
|
19126
|
+
Started GET "/customer_vault/people" for 127.0.0.1 at 2015-03-30 17:57:49 +0200
|
|
19127
|
+
Processing by CustomerVault::PeopleController#index as HTML
|
|
19128
|
+
[1m[35mCustomerVault::Individual Load (0.6ms)[0m SELECT "customer_vault_individuals".* FROM "customer_vault_individuals"
|
|
19129
|
+
[1m[36mCustomerVault::Corporation Load (0.7ms)[0m [1mSELECT "customer_vault_corporations".* FROM "customer_vault_corporations"[0m
|
|
19130
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/_list_details.html.slim (8.4ms)
|
|
19131
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/_list_details.html.slim (0.7ms)
|
|
19132
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/_list_details.html.slim (0.5ms)
|
|
19133
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/_list_details.html.slim (0.5ms)
|
|
19134
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/individuals/_list_details.html.slim (6.8ms)
|
|
19135
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/_list_details.html.slim (0.6ms)
|
|
19136
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/individuals/_list_details.html.slim (0.5ms)
|
|
19137
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/_list_details.html.slim (0.5ms)
|
|
19138
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_contextual.html.slim (4.1ms)
|
|
19139
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/index.html.slim within layouts/application (86.8ms)
|
|
19140
|
+
Completed 200 OK in 373ms (Views: 296.1ms | ActiveRecord: 2.1ms)
|
|
19141
|
+
|
|
19142
|
+
|
|
19143
|
+
Started GET "/customer_vault/people?page=1&sort=zip" for 127.0.0.1 at 2015-03-30 17:57:56 +0200
|
|
19144
|
+
Processing by CustomerVault::PeopleController#index as HTML
|
|
19145
|
+
Parameters: {"page"=>"1", "sort"=>"zip"}
|
|
19146
|
+
[1m[35mCustomerVault::Individual Load (0.2ms)[0m SELECT "customer_vault_individuals".* FROM "customer_vault_individuals"
|
|
19147
|
+
[1m[36mCustomerVault::Corporation Load (0.1ms)[0m [1mSELECT "customer_vault_corporations".* FROM "customer_vault_corporations"[0m
|
|
19148
|
+
[1m[35mDorsale::Address Load (5.5ms)[0m SELECT "dorsale_addresses".* FROM "dorsale_addresses" WHERE "dorsale_addresses"."addressable_id" = ? AND "dorsale_addresses"."addressable_type" = ? LIMIT 1 [["addressable_id", 1], ["addressable_type", "CustomerVault::Individual"]]
|
|
19149
|
+
[1m[36mDorsale::Address Load (0.2ms)[0m [1mSELECT "dorsale_addresses".* FROM "dorsale_addresses" WHERE "dorsale_addresses"."addressable_id" = ? AND "dorsale_addresses"."addressable_type" = ? LIMIT 1[0m [["addressable_id", 2], ["addressable_type", "CustomerVault::Individual"]]
|
|
19150
|
+
[1m[35mDorsale::Address Load (0.1ms)[0m SELECT "dorsale_addresses".* FROM "dorsale_addresses" WHERE "dorsale_addresses"."addressable_id" = ? AND "dorsale_addresses"."addressable_type" = ? LIMIT 1 [["addressable_id", 1], ["addressable_type", "CustomerVault::Corporation"]]
|
|
19151
|
+
[1m[36mDorsale::Address Load (0.1ms)[0m [1mSELECT "dorsale_addresses".* FROM "dorsale_addresses" WHERE "dorsale_addresses"."addressable_id" = ? AND "dorsale_addresses"."addressable_type" = ? LIMIT 1[0m [["addressable_id", 2], ["addressable_type", "CustomerVault::Corporation"]]
|
|
19152
|
+
[1m[35mDorsale::Address Load (0.1ms)[0m SELECT "dorsale_addresses".* FROM "dorsale_addresses" WHERE "dorsale_addresses"."addressable_id" = ? AND "dorsale_addresses"."addressable_type" = ? LIMIT 1 [["addressable_id", 3], ["addressable_type", "CustomerVault::Corporation"]]
|
|
19153
|
+
[1m[36mDorsale::Address Load (0.1ms)[0m [1mSELECT "dorsale_addresses".* FROM "dorsale_addresses" WHERE "dorsale_addresses"."addressable_id" = ? AND "dorsale_addresses"."addressable_type" = ? LIMIT 1[0m [["addressable_id", 4], ["addressable_type", "CustomerVault::Corporation"]]
|
|
19154
|
+
[1m[35mDorsale::Address Load (0.2ms)[0m SELECT "dorsale_addresses".* FROM "dorsale_addresses" WHERE "dorsale_addresses"."addressable_id" = ? AND "dorsale_addresses"."addressable_type" = ? LIMIT 1 [["addressable_id", 5], ["addressable_type", "CustomerVault::Corporation"]]
|
|
19155
|
+
[1m[36mDorsale::Address Load (0.1ms)[0m [1mSELECT "dorsale_addresses".* FROM "dorsale_addresses" WHERE "dorsale_addresses"."addressable_id" = ? AND "dorsale_addresses"."addressable_type" = ? LIMIT 1[0m [["addressable_id", 6], ["addressable_type", "CustomerVault::Corporation"]]
|
|
19156
|
+
[1m[35mDorsale::Address Load (0.1ms)[0m SELECT "dorsale_addresses".* FROM "dorsale_addresses" WHERE "dorsale_addresses"."addressable_id" = ? AND "dorsale_addresses"."addressable_type" = ? LIMIT 1 [["addressable_id", 7], ["addressable_type", "CustomerVault::Corporation"]]
|
|
19157
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/_list_details.html.slim (5.3ms)
|
|
19158
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/_list_details.html.slim (0.5ms)
|
|
19159
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/_list_details.html.slim (0.4ms)
|
|
19160
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/_list_details.html.slim (0.5ms)
|
|
19161
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/_list_details.html.slim (0.5ms)
|
|
19162
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/_list_details.html.slim (0.4ms)
|
|
19163
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/_list_details.html.slim (0.5ms)
|
|
19164
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/individuals/_list_details.html.slim (6.3ms)
|
|
19165
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_contextual.html.slim (3.9ms)
|
|
19166
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/index.html.slim within layouts/application (57.2ms)
|
|
19167
|
+
Completed 200 OK in 153ms (Views: 69.5ms | ActiveRecord: 7.1ms)
|
|
19168
|
+
[1m[36mCustomerVault::Corporation Load (4.2ms)[0m [1mSELECT "customer_vault_corporations".* FROM "customer_vault_corporations" WHERE "customer_vault_corporations"."id" = ? LIMIT 1[0m [["id", 3]]
|
|
19169
|
+
[1m[35mDorsale::Address Load (0.3ms)[0m SELECT "dorsale_addresses".* FROM "dorsale_addresses" WHERE "dorsale_addresses"."addressable_id" = ? AND "dorsale_addresses"."addressable_type" = ? LIMIT 1 [["addressable_id", 3], ["addressable_type", "CustomerVault::Corporation"]]
|
|
19170
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
19171
|
+
[1m[35mSQL (3.3ms)[0m UPDATE "dorsale_addresses" SET "zip" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 8 [["zip", nil], ["updated_at", Mon, 30 Mar 2015 15:58:19 UTC +00:00]]
|
|
19172
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
|
19173
|
+
|
|
19174
|
+
|
|
19175
|
+
Started GET "/customer_vault/people?page=1&sort=zip" for 127.0.0.1 at 2015-03-30 17:58:21 +0200
|
|
19176
|
+
Processing by CustomerVault::PeopleController#index as HTML
|
|
19177
|
+
Parameters: {"page"=>"1", "sort"=>"zip"}
|
|
19178
|
+
[1m[36mCustomerVault::Individual Load (0.2ms)[0m [1mSELECT "customer_vault_individuals".* FROM "customer_vault_individuals"[0m
|
|
19179
|
+
[1m[35mCustomerVault::Corporation Load (0.2ms)[0m SELECT "customer_vault_corporations".* FROM "customer_vault_corporations"
|
|
19180
|
+
[1m[36mDorsale::Address Load (0.2ms)[0m [1mSELECT "dorsale_addresses".* FROM "dorsale_addresses" WHERE "dorsale_addresses"."addressable_id" = ? AND "dorsale_addresses"."addressable_type" = ? LIMIT 1[0m [["addressable_id", 1], ["addressable_type", "CustomerVault::Individual"]]
|
|
19181
|
+
[1m[35mDorsale::Address Load (0.3ms)[0m SELECT "dorsale_addresses".* FROM "dorsale_addresses" WHERE "dorsale_addresses"."addressable_id" = ? AND "dorsale_addresses"."addressable_type" = ? LIMIT 1 [["addressable_id", 2], ["addressable_type", "CustomerVault::Individual"]]
|
|
19182
|
+
[1m[36mDorsale::Address Load (0.2ms)[0m [1mSELECT "dorsale_addresses".* FROM "dorsale_addresses" WHERE "dorsale_addresses"."addressable_id" = ? AND "dorsale_addresses"."addressable_type" = ? LIMIT 1[0m [["addressable_id", 1], ["addressable_type", "CustomerVault::Corporation"]]
|
|
19183
|
+
[1m[35mDorsale::Address Load (0.1ms)[0m SELECT "dorsale_addresses".* FROM "dorsale_addresses" WHERE "dorsale_addresses"."addressable_id" = ? AND "dorsale_addresses"."addressable_type" = ? LIMIT 1 [["addressable_id", 2], ["addressable_type", "CustomerVault::Corporation"]]
|
|
19184
|
+
[1m[36mDorsale::Address Load (0.1ms)[0m [1mSELECT "dorsale_addresses".* FROM "dorsale_addresses" WHERE "dorsale_addresses"."addressable_id" = ? AND "dorsale_addresses"."addressable_type" = ? LIMIT 1[0m [["addressable_id", 3], ["addressable_type", "CustomerVault::Corporation"]]
|
|
19185
|
+
[1m[35mDorsale::Address Load (0.1ms)[0m SELECT "dorsale_addresses".* FROM "dorsale_addresses" WHERE "dorsale_addresses"."addressable_id" = ? AND "dorsale_addresses"."addressable_type" = ? LIMIT 1 [["addressable_id", 4], ["addressable_type", "CustomerVault::Corporation"]]
|
|
19186
|
+
[1m[36mDorsale::Address Load (0.1ms)[0m [1mSELECT "dorsale_addresses".* FROM "dorsale_addresses" WHERE "dorsale_addresses"."addressable_id" = ? AND "dorsale_addresses"."addressable_type" = ? LIMIT 1[0m [["addressable_id", 5], ["addressable_type", "CustomerVault::Corporation"]]
|
|
19187
|
+
[1m[35mDorsale::Address Load (0.1ms)[0m SELECT "dorsale_addresses".* FROM "dorsale_addresses" WHERE "dorsale_addresses"."addressable_id" = ? AND "dorsale_addresses"."addressable_type" = ? LIMIT 1 [["addressable_id", 6], ["addressable_type", "CustomerVault::Corporation"]]
|
|
19188
|
+
[1m[36mDorsale::Address Load (0.1ms)[0m [1mSELECT "dorsale_addresses".* FROM "dorsale_addresses" WHERE "dorsale_addresses"."addressable_id" = ? AND "dorsale_addresses"."addressable_type" = ? LIMIT 1[0m [["addressable_id", 7], ["addressable_type", "CustomerVault::Corporation"]]
|
|
19189
|
+
Completed 500 Internal Server Error in 12ms
|
|
19190
|
+
|
|
19191
|
+
ArgumentError (comparison of String with nil failed):
|
|
19192
|
+
/Users/benoit/www/agilidee/customer_vault/app/controllers/customer_vault/people_controller.rb:17:in `sort_by'
|
|
19193
|
+
/Users/benoit/www/agilidee/customer_vault/app/controllers/customer_vault/people_controller.rb:17:in `block in index'
|
|
19194
|
+
handles_sortable_columns (0.1.4) lib/handles/sortable_columns.rb:270:in `sortable_column_order'
|
|
19195
|
+
/Users/benoit/www/agilidee/customer_vault/app/controllers/customer_vault/people_controller.rb:11:in `index'
|
|
19196
|
+
actionpack (4.0.13) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
|
19197
|
+
actionpack (4.0.13) lib/abstract_controller/base.rb:189:in `process_action'
|
|
19198
|
+
actionpack (4.0.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
|
19199
|
+
actionpack (4.0.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
|
19200
|
+
activesupport (4.0.13) lib/active_support/callbacks.rb:413:in `_run__4416880288409381497__process_action__callbacks'
|
|
19201
|
+
activesupport (4.0.13) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
|
19202
|
+
actionpack (4.0.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
|
19203
|
+
actionpack (4.0.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
|
19204
|
+
actionpack (4.0.13) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
|
19205
|
+
activesupport (4.0.13) lib/active_support/notifications.rb:159:in `block in instrument'
|
|
19206
|
+
activesupport (4.0.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
|
19207
|
+
activesupport (4.0.13) lib/active_support/notifications.rb:159:in `instrument'
|
|
19208
|
+
actionpack (4.0.13) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
|
19209
|
+
actionpack (4.0.13) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
|
|
19210
|
+
activerecord (4.0.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
|
19211
|
+
actionpack (4.0.13) lib/abstract_controller/base.rb:136:in `process'
|
|
19212
|
+
actionpack (4.0.13) lib/abstract_controller/rendering.rb:44:in `process'
|
|
19213
|
+
actionpack (4.0.13) lib/action_controller/metal.rb:195:in `dispatch'
|
|
19214
|
+
actionpack (4.0.13) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
|
19215
|
+
actionpack (4.0.13) lib/action_controller/metal.rb:231:in `block in action'
|
|
19216
|
+
actionpack (4.0.13) lib/action_dispatch/routing/route_set.rb:82:in `call'
|
|
19217
|
+
actionpack (4.0.13) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
|
|
19218
|
+
actionpack (4.0.13) lib/action_dispatch/routing/route_set.rb:50:in `call'
|
|
19219
|
+
actionpack (4.0.13) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
|
19220
|
+
actionpack (4.0.13) lib/action_dispatch/journey/router.rb:59:in `each'
|
|
19221
|
+
actionpack (4.0.13) lib/action_dispatch/journey/router.rb:59:in `call'
|
|
19222
|
+
actionpack (4.0.13) lib/action_dispatch/routing/route_set.rb:676:in `call'
|
|
19223
|
+
railties (4.0.13) lib/rails/engine.rb:511:in `call'
|
|
19224
|
+
railties (4.0.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
|
19225
|
+
actionpack (4.0.13) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
|
19226
|
+
actionpack (4.0.13) lib/action_dispatch/journey/router.rb:59:in `each'
|
|
19227
|
+
actionpack (4.0.13) lib/action_dispatch/journey/router.rb:59:in `call'
|
|
19228
|
+
actionpack (4.0.13) lib/action_dispatch/routing/route_set.rb:676:in `call'
|
|
19229
|
+
rack (1.5.2) lib/rack/etag.rb:23:in `call'
|
|
19230
|
+
rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
|
|
19231
|
+
rack (1.5.2) lib/rack/head.rb:11:in `call'
|
|
19232
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
|
19233
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/flash.rb:241:in `call'
|
|
19234
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
|
|
19235
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
|
|
19236
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/cookies.rb:486:in `call'
|
|
19237
|
+
activerecord (4.0.13) lib/active_record/query_cache.rb:36:in `call'
|
|
19238
|
+
activerecord (4.0.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
|
|
19239
|
+
activerecord (4.0.13) lib/active_record/migration.rb:373:in `call'
|
|
19240
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
|
19241
|
+
activesupport (4.0.13) lib/active_support/callbacks.rb:373:in `_run__3321937862000843534__call__callbacks'
|
|
19242
|
+
activesupport (4.0.13) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
|
19243
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
|
19244
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/reloader.rb:64:in `call'
|
|
19245
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
|
19246
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
|
19247
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
|
19248
|
+
railties (4.0.13) lib/rails/rack/logger.rb:38:in `call_app'
|
|
19249
|
+
railties (4.0.13) lib/rails/rack/logger.rb:20:in `block in call'
|
|
19250
|
+
activesupport (4.0.13) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
|
19251
|
+
activesupport (4.0.13) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
19252
|
+
activesupport (4.0.13) lib/active_support/tagged_logging.rb:68:in `tagged'
|
|
19253
|
+
railties (4.0.13) lib/rails/rack/logger.rb:20:in `call'
|
|
19254
|
+
quiet_assets (1.0.3) lib/quiet_assets.rb:23:in `call_with_quiet_assets'
|
|
19255
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
|
19256
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
|
19257
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
|
19258
|
+
activesupport (4.0.13) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
|
|
19259
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
|
19260
|
+
actionpack (4.0.13) lib/action_dispatch/middleware/static.rb:84:in `call'
|
|
19261
|
+
rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
|
|
19262
|
+
railties (4.0.13) lib/rails/engine.rb:511:in `call'
|
|
19263
|
+
railties (4.0.13) lib/rails/application.rb:97:in `call'
|
|
19264
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
|
19265
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
|
19266
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
|
19267
|
+
/Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
|
19268
|
+
/Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
|
19269
|
+
/Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
|
19270
|
+
|
|
19271
|
+
|
|
19272
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/actionpack-4.0.13/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.7ms)
|
|
19273
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/actionpack-4.0.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
|
|
19274
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/actionpack-4.0.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
|
|
19275
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/actionpack-4.0.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (20.4ms)
|
|
19276
|
+
|
|
19277
|
+
|
|
19278
|
+
Started GET "/customer_vault/people?page=1&sort=zip" for 127.0.0.1 at 2015-03-30 17:58:34 +0200
|
|
19279
|
+
Processing by CustomerVault::PeopleController#index as HTML
|
|
19280
|
+
Parameters: {"page"=>"1", "sort"=>"zip"}
|
|
19281
|
+
[1m[35mCustomerVault::Individual Load (0.1ms)[0m SELECT "customer_vault_individuals".* FROM "customer_vault_individuals"
|
|
19282
|
+
[1m[36mCustomerVault::Corporation Load (0.2ms)[0m [1mSELECT "customer_vault_corporations".* FROM "customer_vault_corporations"[0m
|
|
19283
|
+
[1m[35mDorsale::Address Load (0.2ms)[0m SELECT "dorsale_addresses".* FROM "dorsale_addresses" WHERE "dorsale_addresses"."addressable_id" = ? AND "dorsale_addresses"."addressable_type" = ? LIMIT 1 [["addressable_id", 1], ["addressable_type", "CustomerVault::Individual"]]
|
|
19284
|
+
[1m[36mDorsale::Address Load (0.2ms)[0m [1mSELECT "dorsale_addresses".* FROM "dorsale_addresses" WHERE "dorsale_addresses"."addressable_id" = ? AND "dorsale_addresses"."addressable_type" = ? LIMIT 1[0m [["addressable_id", 2], ["addressable_type", "CustomerVault::Individual"]]
|
|
19285
|
+
[1m[35mDorsale::Address Load (0.1ms)[0m SELECT "dorsale_addresses".* FROM "dorsale_addresses" WHERE "dorsale_addresses"."addressable_id" = ? AND "dorsale_addresses"."addressable_type" = ? LIMIT 1 [["addressable_id", 1], ["addressable_type", "CustomerVault::Corporation"]]
|
|
19286
|
+
[1m[36mDorsale::Address Load (0.1ms)[0m [1mSELECT "dorsale_addresses".* FROM "dorsale_addresses" WHERE "dorsale_addresses"."addressable_id" = ? AND "dorsale_addresses"."addressable_type" = ? LIMIT 1[0m [["addressable_id", 2], ["addressable_type", "CustomerVault::Corporation"]]
|
|
19287
|
+
[1m[35mDorsale::Address Load (0.1ms)[0m SELECT "dorsale_addresses".* FROM "dorsale_addresses" WHERE "dorsale_addresses"."addressable_id" = ? AND "dorsale_addresses"."addressable_type" = ? LIMIT 1 [["addressable_id", 3], ["addressable_type", "CustomerVault::Corporation"]]
|
|
19288
|
+
[1m[36mDorsale::Address Load (0.1ms)[0m [1mSELECT "dorsale_addresses".* FROM "dorsale_addresses" WHERE "dorsale_addresses"."addressable_id" = ? AND "dorsale_addresses"."addressable_type" = ? LIMIT 1[0m [["addressable_id", 4], ["addressable_type", "CustomerVault::Corporation"]]
|
|
19289
|
+
[1m[35mDorsale::Address Load (0.1ms)[0m SELECT "dorsale_addresses".* FROM "dorsale_addresses" WHERE "dorsale_addresses"."addressable_id" = ? AND "dorsale_addresses"."addressable_type" = ? LIMIT 1 [["addressable_id", 5], ["addressable_type", "CustomerVault::Corporation"]]
|
|
19290
|
+
[1m[36mDorsale::Address Load (0.1ms)[0m [1mSELECT "dorsale_addresses".* FROM "dorsale_addresses" WHERE "dorsale_addresses"."addressable_id" = ? AND "dorsale_addresses"."addressable_type" = ? LIMIT 1[0m [["addressable_id", 6], ["addressable_type", "CustomerVault::Corporation"]]
|
|
19291
|
+
[1m[35mDorsale::Address Load (0.1ms)[0m SELECT "dorsale_addresses".* FROM "dorsale_addresses" WHERE "dorsale_addresses"."addressable_id" = ? AND "dorsale_addresses"."addressable_type" = ? LIMIT 1 [["addressable_id", 7], ["addressable_type", "CustomerVault::Corporation"]]
|
|
19292
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/_list_details.html.slim (1.1ms)
|
|
19293
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/_list_details.html.slim (0.4ms)
|
|
19294
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/_list_details.html.slim (0.4ms)
|
|
19295
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/_list_details.html.slim (0.4ms)
|
|
19296
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/_list_details.html.slim (0.4ms)
|
|
19297
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/_list_details.html.slim (0.4ms)
|
|
19298
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/_list_details.html.slim (0.5ms)
|
|
19299
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/individuals/_list_details.html.slim (0.9ms)
|
|
19300
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_contextual.html.slim (0.5ms)
|
|
19301
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/index.html.slim within layouts/application (30.2ms)
|
|
19302
|
+
Completed 200 OK in 121ms (Views: 44.5ms | ActiveRecord: 2.7ms)
|
data/spec/dummy/log/test.log
CHANGED
|
@@ -51684,3 +51684,1932 @@ Completed 200 OK in 7ms (Views: 3.3ms | ActiveRecord: 0.5ms)
|
|
|
51684
51684
|
[1m[36m (0.9ms)[0m [1mDELETE FROM "dorsale_comments";[0m
|
|
51685
51685
|
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
|
51686
51686
|
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'dorsale_comments';[0m
|
|
51687
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.7ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
51688
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
51689
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
51690
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
51691
|
+
[1m[35mSQL (8.1ms)[0m INSERT INTO "customer_vault_corporations" ("created_at", "email", "fax", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00], ["email", "onie@strosinwatsica.name"], ["fax", "09xxxxxxx"], ["name", "Runte Corp"], ["phone", "06xxxxxxxx"], ["updated_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00]]
|
|
51692
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
51693
|
+
Processing by CustomerVault::CorporationsController#show as HTML
|
|
51694
|
+
Parameters: {"id"=>"1"}
|
|
51695
|
+
[1m[35mCustomerVault::Corporation Load (0.3ms)[0m SELECT "customer_vault_corporations".* FROM "customer_vault_corporations" WHERE "customer_vault_corporations"."id" = ? LIMIT 1 [["id", "1"]]
|
|
51696
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/show.html.slim within layouts/application (0.3ms)
|
|
51697
|
+
Completed 200 OK in 62ms (Views: 57.0ms | ActiveRecord: 0.3ms)
|
|
51698
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
|
51699
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
51700
|
+
Processing by CustomerVault::CorporationsController#new as HTML
|
|
51701
|
+
Completed 200 OK in 33ms (Views: 2.9ms | ActiveRecord: 0.3ms)
|
|
51702
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
51703
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
51704
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
51705
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "customer_vault_corporations" ("created_at", "email", "fax", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00], ["email", "uriah@wiza.biz"], ["fax", "09xxxxxxx"], ["name", "Kuvalis Corp"], ["phone", "06xxxxxxxx"], ["updated_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00]]
|
|
51706
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
51707
|
+
Processing by CustomerVault::CorporationsController#edit as HTML
|
|
51708
|
+
Parameters: {"id"=>"1"}
|
|
51709
|
+
[1m[35mCustomerVault::Corporation Load (0.1ms)[0m SELECT "customer_vault_corporations".* FROM "customer_vault_corporations" WHERE "customer_vault_corporations"."id" = ? LIMIT 1 [["id", "1"]]
|
|
51710
|
+
[1m[36mDorsale::Address Load (0.6ms)[0m [1mSELECT "dorsale_addresses".* FROM "dorsale_addresses" WHERE "dorsale_addresses"."addressable_id" = ? AND "dorsale_addresses"."addressable_type" = ? LIMIT 1[0m [["addressable_id", 1], ["addressable_type", "CustomerVault::Corporation"]]
|
|
51711
|
+
Completed 200 OK in 6ms (Views: 2.8ms | ActiveRecord: 0.7ms)
|
|
51712
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
|
51713
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
51714
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "customer_vault_corporations"
|
|
51715
|
+
Processing by CustomerVault::CorporationsController#create as HTML
|
|
51716
|
+
Parameters: {"corporation"=>{"name"=>"Turner Corp", "email"=>"briana_mcdermott@cole.org", "phone"=>"06xxxxxxxx", "fax"=>"09xxxxxxx"}}
|
|
51717
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
51718
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "customer_vault_corporations" ("created_at", "email", "fax", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00], ["email", "briana_mcdermott@cole.org"], ["fax", "09xxxxxxx"], ["name", "Turner Corp"], ["phone", "06xxxxxxxx"], ["updated_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00]]
|
|
51719
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
51720
|
+
Redirected to http://test.host/customer_vault/corporations/1
|
|
51721
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
|
|
51722
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "customer_vault_corporations"
|
|
51723
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
|
51724
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
51725
|
+
Processing by CustomerVault::CorporationsController#create as HTML
|
|
51726
|
+
Parameters: {"corporation"=>{"name"=>"Harber Corp", "email"=>"marianna.schaden@heidenreich.com", "phone"=>"06xxxxxxxx", "fax"=>"09xxxxxxx"}}
|
|
51727
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
51728
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "customer_vault_corporations" ("created_at", "email", "fax", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00], ["email", "marianna.schaden@heidenreich.com"], ["fax", "09xxxxxxx"], ["name", "Harber Corp"], ["phone", "06xxxxxxxx"], ["updated_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00]]
|
|
51729
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
51730
|
+
Redirected to http://test.host/customer_vault/corporations/1
|
|
51731
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
|
|
51732
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
|
51733
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
51734
|
+
Processing by CustomerVault::CorporationsController#create as HTML
|
|
51735
|
+
Parameters: {"corporation"=>{"name"=>"Kuphal Corp", "email"=>"sigrid.homenick@botsford.org", "phone"=>"06xxxxxxxx", "fax"=>"09xxxxxxx"}}
|
|
51736
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
51737
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "customer_vault_corporations" ("created_at", "email", "fax", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["created_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00], ["email", "sigrid.homenick@botsford.org"], ["fax", "09xxxxxxx"], ["name", "Kuphal Corp"], ["phone", "06xxxxxxxx"], ["updated_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00]]
|
|
51738
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
51739
|
+
Redirected to http://test.host/customer_vault/corporations/1
|
|
51740
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
|
|
51741
|
+
[1m[36mCustomerVault::Corporation Load (0.1ms)[0m [1mSELECT "customer_vault_corporations".* FROM "customer_vault_corporations" ORDER BY "customer_vault_corporations"."id" DESC LIMIT 1[0m
|
|
51742
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
|
51743
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
51744
|
+
Processing by CustomerVault::CorporationsController#create as HTML
|
|
51745
|
+
Parameters: {"corporation"=>{"name"=>""}}
|
|
51746
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
51747
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
51748
|
+
Completed 200 OK in 3ms (Views: 0.8ms | ActiveRecord: 0.1ms)
|
|
51749
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
51750
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
51751
|
+
Processing by CustomerVault::CorporationsController#create as HTML
|
|
51752
|
+
Parameters: {"corporation"=>{"name"=>""}}
|
|
51753
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
51754
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
51755
|
+
Completed 200 OK in 3ms (Views: 1.0ms | ActiveRecord: 0.1ms)
|
|
51756
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
51757
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
51758
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
51759
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "customer_vault_corporations" ("created_at", "email", "fax", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["created_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00], ["email", "nicklaus@zboncak.net"], ["fax", "09xxxxxxx"], ["name", "Kilback Corp"], ["phone", "06xxxxxxxx"], ["updated_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00]]
|
|
51760
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
51761
|
+
Processing by CustomerVault::CorporationsController#update as HTML
|
|
51762
|
+
Parameters: {"corporation"=>{"name"=>"New name"}, "id"=>"1"}
|
|
51763
|
+
[1m[36mCustomerVault::Corporation Load (0.1ms)[0m [1mSELECT "customer_vault_corporations".* FROM "customer_vault_corporations" WHERE "customer_vault_corporations"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
51764
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
51765
|
+
[1m[36mSQL (1.3ms)[0m [1mUPDATE "customer_vault_corporations" SET "name" = ?, "updated_at" = ? WHERE "customer_vault_corporations"."id" = 1[0m [["name", "New name"], ["updated_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00]]
|
|
51766
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
51767
|
+
Redirected to http://test.host/customer_vault/corporations/1
|
|
51768
|
+
Completed 302 Found in 5ms (ActiveRecord: 1.5ms)
|
|
51769
|
+
[1m[36mCustomerVault::Corporation Load (0.1ms)[0m [1mSELECT "customer_vault_corporations".* FROM "customer_vault_corporations" WHERE "customer_vault_corporations"."id" = ? LIMIT 1[0m [["id", 1]]
|
|
51770
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
|
51771
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
51772
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
51773
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "customer_vault_corporations" ("created_at", "email", "fax", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["created_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00], ["email", "muhammad@hammes.org"], ["fax", "09xxxxxxx"], ["name", "McLaughlin Corp"], ["phone", "06xxxxxxxx"], ["updated_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00]]
|
|
51774
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
51775
|
+
Processing by CustomerVault::CorporationsController#update as HTML
|
|
51776
|
+
Parameters: {"corporation"=>{"name"=>"McLaughlin Corp", "email"=>"muhammad@hammes.org", "phone"=>"06xxxxxxxx", "fax"=>"09xxxxxxx"}, "id"=>"1"}
|
|
51777
|
+
[1m[36mCustomerVault::Corporation Load (0.1ms)[0m [1mSELECT "customer_vault_corporations".* FROM "customer_vault_corporations" WHERE "customer_vault_corporations"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
51778
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
51779
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
51780
|
+
Redirected to http://test.host/customer_vault/corporations/1
|
|
51781
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
|
|
51782
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
|
51783
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
51784
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
51785
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "customer_vault_corporations" ("created_at", "email", "fax", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["created_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00], ["email", "bettie.mills@simonis.info"], ["fax", "09xxxxxxx"], ["name", "D'Amore Corp"], ["phone", "06xxxxxxxx"], ["updated_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00]]
|
|
51786
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
51787
|
+
Processing by CustomerVault::CorporationsController#update as HTML
|
|
51788
|
+
Parameters: {"corporation"=>{"name"=>"D'Amore Corp", "email"=>"bettie.mills@simonis.info", "phone"=>"06xxxxxxxx", "fax"=>"09xxxxxxx"}, "id"=>"1"}
|
|
51789
|
+
[1m[36mCustomerVault::Corporation Load (0.1ms)[0m [1mSELECT "customer_vault_corporations".* FROM "customer_vault_corporations" WHERE "customer_vault_corporations"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
51790
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
51791
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
51792
|
+
Redirected to http://test.host/customer_vault/corporations/1
|
|
51793
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.2ms)
|
|
51794
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
|
51795
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
51796
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
51797
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "customer_vault_corporations" ("created_at", "email", "fax", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["created_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00], ["email", "jena@corwin.biz"], ["fax", "09xxxxxxx"], ["name", "Borer Corp"], ["phone", "06xxxxxxxx"], ["updated_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00]]
|
|
51798
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
51799
|
+
Processing by CustomerVault::CorporationsController#update as HTML
|
|
51800
|
+
Parameters: {"corporation"=>{"name"=>""}, "id"=>"1"}
|
|
51801
|
+
[1m[36mCustomerVault::Corporation Load (0.1ms)[0m [1mSELECT "customer_vault_corporations".* FROM "customer_vault_corporations" WHERE "customer_vault_corporations"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
51802
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
51803
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
51804
|
+
Completed 200 OK in 3ms (Views: 0.8ms | ActiveRecord: 0.1ms)
|
|
51805
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
|
51806
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
51807
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
51808
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "customer_vault_corporations" ("created_at", "email", "fax", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["created_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00], ["email", "breana@weinat.com"], ["fax", "09xxxxxxx"], ["name", "Rodriguez Corp"], ["phone", "06xxxxxxxx"], ["updated_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00]]
|
|
51809
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
51810
|
+
Processing by CustomerVault::CorporationsController#update as HTML
|
|
51811
|
+
Parameters: {"corporation"=>{"name"=>""}, "id"=>"1"}
|
|
51812
|
+
[1m[36mCustomerVault::Corporation Load (0.1ms)[0m [1mSELECT "customer_vault_corporations".* FROM "customer_vault_corporations" WHERE "customer_vault_corporations"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
51813
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
51814
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
51815
|
+
Completed 200 OK in 3ms (Views: 0.8ms | ActiveRecord: 0.2ms)
|
|
51816
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
|
51817
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
51818
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
51819
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "customer_vault_corporations" ("created_at", "email", "fax", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["created_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00], ["email", "prince@bechtelar.info"], ["fax", "09xxxxxxx"], ["name", "O'Keefe Corp"], ["phone", "06xxxxxxxx"], ["updated_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00]]
|
|
51820
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
51821
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "customer_vault_corporations"[0m
|
|
51822
|
+
Processing by CustomerVault::CorporationsController#destroy as HTML
|
|
51823
|
+
Parameters: {"id"=>"1"}
|
|
51824
|
+
[1m[35mCustomerVault::Corporation Load (0.1ms)[0m SELECT "customer_vault_corporations".* FROM "customer_vault_corporations" WHERE "customer_vault_corporations"."id" = ? LIMIT 1 [["id", "1"]]
|
|
51825
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
51826
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "customer_vault_corporations" WHERE "customer_vault_corporations"."id" = ? [["id", 1]]
|
|
51827
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
51828
|
+
Redirected to http://test.host/customer_vault/people
|
|
51829
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.5ms)
|
|
51830
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "customer_vault_corporations"
|
|
51831
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
|
51832
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
51833
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
51834
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "customer_vault_corporations" ("created_at", "email", "fax", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00], ["email", "mervin.howe@kuhn.biz"], ["fax", "09xxxxxxx"], ["name", "Bashirian Corp"], ["phone", "06xxxxxxxx"], ["updated_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00]]
|
|
51835
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
51836
|
+
Processing by CustomerVault::CorporationsController#destroy as HTML
|
|
51837
|
+
Parameters: {"id"=>"1"}
|
|
51838
|
+
[1m[35mCustomerVault::Corporation Load (0.1ms)[0m SELECT "customer_vault_corporations".* FROM "customer_vault_corporations" WHERE "customer_vault_corporations"."id" = ? LIMIT 1 [["id", "1"]]
|
|
51839
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
51840
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "customer_vault_corporations" WHERE "customer_vault_corporations"."id" = ? [["id", 1]]
|
|
51841
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
51842
|
+
Redirected to http://test.host/customer_vault/people
|
|
51843
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.4ms)
|
|
51844
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
|
51845
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
51846
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
51847
|
+
[1m[36mSQL (1.1ms)[0m [1mINSERT INTO "customer_vault_individuals" ("context", "created_at", "email", "fax", "first_name", "last_name", "mobile", "phone", "title", "twitter", "updated_at", "www") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["context", "MyText"], ["created_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00], ["email", "MyString"], ["fax", "MyString"], ["first_name", "MyString"], ["last_name", "MyString"], ["mobile", "MyString"], ["phone", "MyString"], ["title", "MyString"], ["twitter", "MyString"], ["updated_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00], ["www", "MyString"]]
|
|
51848
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
51849
|
+
Processing by CustomerVault::IndividualsController#show as HTML
|
|
51850
|
+
Parameters: {"id"=>"1"}
|
|
51851
|
+
[1m[36mCustomerVault::Individual Load (0.2ms)[0m [1mSELECT "customer_vault_individuals".* FROM "customer_vault_individuals" WHERE "customer_vault_individuals"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
51852
|
+
Completed 200 OK in 8ms (Views: 5.6ms | ActiveRecord: 0.2ms)
|
|
51853
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
|
51854
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
51855
|
+
Processing by CustomerVault::IndividualsController#new as HTML
|
|
51856
|
+
Completed 200 OK in 4ms (Views: 2.8ms | ActiveRecord: 0.0ms)
|
|
51857
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
51858
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
51859
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
51860
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "customer_vault_individuals" ("context", "created_at", "email", "fax", "first_name", "last_name", "mobile", "phone", "title", "twitter", "updated_at", "www") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["context", "MyText"], ["created_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00], ["email", "MyString"], ["fax", "MyString"], ["first_name", "MyString"], ["last_name", "MyString"], ["mobile", "MyString"], ["phone", "MyString"], ["title", "MyString"], ["twitter", "MyString"], ["updated_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00], ["www", "MyString"]]
|
|
51861
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
51862
|
+
Processing by CustomerVault::IndividualsController#edit as HTML
|
|
51863
|
+
Parameters: {"id"=>"1"}
|
|
51864
|
+
[1m[36mCustomerVault::Individual Load (0.1ms)[0m [1mSELECT "customer_vault_individuals".* FROM "customer_vault_individuals" WHERE "customer_vault_individuals"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
51865
|
+
[1m[35mDorsale::Address Load (0.1ms)[0m SELECT "dorsale_addresses".* FROM "dorsale_addresses" WHERE "dorsale_addresses"."addressable_id" = ? AND "dorsale_addresses"."addressable_type" = ? LIMIT 1 [["addressable_id", 1], ["addressable_type", "CustomerVault::Individual"]]
|
|
51866
|
+
Completed 200 OK in 5ms (Views: 2.8ms | ActiveRecord: 0.1ms)
|
|
51867
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
|
51868
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
51869
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "customer_vault_individuals"[0m
|
|
51870
|
+
Processing by CustomerVault::IndividualsController#create as HTML
|
|
51871
|
+
Parameters: {"individual"=>{"first_name"=>"MyString", "last_name"=>"MyString", "email"=>"MyString", "title"=>"MyString", "twitter"=>"MyString", "www"=>"MyString", "context"=>"MyText", "phone"=>"MyString", "fax"=>"MyString", "mobile"=>"MyString"}}
|
|
51872
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
51873
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "customer_vault_individuals" ("context", "created_at", "email", "fax", "first_name", "last_name", "mobile", "phone", "title", "twitter", "updated_at", "www") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["context", "MyText"], ["created_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00], ["email", "MyString"], ["fax", "MyString"], ["first_name", "MyString"], ["last_name", "MyString"], ["mobile", "MyString"], ["phone", "MyString"], ["title", "MyString"], ["twitter", "MyString"], ["updated_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00], ["www", "MyString"]]
|
|
51874
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
51875
|
+
Redirected to http://test.host/customer_vault/individuals/1
|
|
51876
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.5ms)
|
|
51877
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "customer_vault_individuals"[0m
|
|
51878
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
|
51879
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
51880
|
+
Processing by CustomerVault::IndividualsController#create as HTML
|
|
51881
|
+
Parameters: {"individual"=>{"first_name"=>"MyString", "last_name"=>"MyString", "email"=>"MyString", "title"=>"MyString", "twitter"=>"MyString", "www"=>"MyString", "context"=>"MyText", "phone"=>"MyString", "fax"=>"MyString", "mobile"=>"MyString"}}
|
|
51882
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
51883
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "customer_vault_individuals" ("context", "created_at", "email", "fax", "first_name", "last_name", "mobile", "phone", "title", "twitter", "updated_at", "www") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["context", "MyText"], ["created_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00], ["email", "MyString"], ["fax", "MyString"], ["first_name", "MyString"], ["last_name", "MyString"], ["mobile", "MyString"], ["phone", "MyString"], ["title", "MyString"], ["twitter", "MyString"], ["updated_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00], ["www", "MyString"]]
|
|
51884
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
51885
|
+
Redirected to http://test.host/customer_vault/individuals/1
|
|
51886
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
|
|
51887
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
|
51888
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
51889
|
+
Processing by CustomerVault::IndividualsController#create as HTML
|
|
51890
|
+
Parameters: {"individual"=>{"first_name"=>"MyString", "last_name"=>"MyString", "email"=>"MyString", "title"=>"MyString", "twitter"=>"MyString", "www"=>"MyString", "context"=>"MyText", "phone"=>"MyString", "fax"=>"MyString", "mobile"=>"MyString"}}
|
|
51891
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
51892
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "customer_vault_individuals" ("context", "created_at", "email", "fax", "first_name", "last_name", "mobile", "phone", "title", "twitter", "updated_at", "www") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["context", "MyText"], ["created_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00], ["email", "MyString"], ["fax", "MyString"], ["first_name", "MyString"], ["last_name", "MyString"], ["mobile", "MyString"], ["phone", "MyString"], ["title", "MyString"], ["twitter", "MyString"], ["updated_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00], ["www", "MyString"]]
|
|
51893
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
51894
|
+
Redirected to http://test.host/customer_vault/individuals/1
|
|
51895
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.6ms)
|
|
51896
|
+
[1m[35mCustomerVault::Individual Load (0.1ms)[0m SELECT "customer_vault_individuals".* FROM "customer_vault_individuals" ORDER BY "customer_vault_individuals"."id" DESC LIMIT 1
|
|
51897
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
|
51898
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
51899
|
+
Processing by CustomerVault::IndividualsController#create as HTML
|
|
51900
|
+
Parameters: {"individual"=>{"last_name"=>""}}
|
|
51901
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
51902
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
|
51903
|
+
Completed 200 OK in 3ms (Views: 0.8ms | ActiveRecord: 0.1ms)
|
|
51904
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
51905
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
51906
|
+
Processing by CustomerVault::IndividualsController#create as HTML
|
|
51907
|
+
Parameters: {"individual"=>{"last_name"=>""}}
|
|
51908
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
51909
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
|
51910
|
+
Completed 200 OK in 4ms (Views: 1.0ms | ActiveRecord: 0.1ms)
|
|
51911
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
51912
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
51913
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
51914
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "customer_vault_individuals" ("context", "created_at", "email", "fax", "first_name", "last_name", "mobile", "phone", "title", "twitter", "updated_at", "www") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["context", "MyText"], ["created_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00], ["email", "MyString"], ["fax", "MyString"], ["first_name", "MyString"], ["last_name", "MyString"], ["mobile", "MyString"], ["phone", "MyString"], ["title", "MyString"], ["twitter", "MyString"], ["updated_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00], ["www", "MyString"]]
|
|
51915
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
51916
|
+
Processing by CustomerVault::IndividualsController#update as HTML
|
|
51917
|
+
Parameters: {"individual"=>{"first_name"=>"Stroumph"}, "id"=>"1"}
|
|
51918
|
+
[1m[35mCustomerVault::Individual Load (0.1ms)[0m SELECT "customer_vault_individuals".* FROM "customer_vault_individuals" WHERE "customer_vault_individuals"."id" = ? LIMIT 1 [["id", "1"]]
|
|
51919
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
51920
|
+
[1m[35mSQL (0.4ms)[0m UPDATE "customer_vault_individuals" SET "first_name" = ?, "updated_at" = ? WHERE "customer_vault_individuals"."id" = 1 [["first_name", "Stroumph"], ["updated_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00]]
|
|
51921
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
51922
|
+
Redirected to http://test.host/customer_vault/individuals/1
|
|
51923
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.6ms)
|
|
51924
|
+
[1m[35mCustomerVault::Individual Load (0.1ms)[0m SELECT "customer_vault_individuals".* FROM "customer_vault_individuals" WHERE "customer_vault_individuals"."id" = ? LIMIT 1 [["id", 1]]
|
|
51925
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
|
51926
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
51927
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
51928
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "customer_vault_individuals" ("context", "created_at", "email", "fax", "first_name", "last_name", "mobile", "phone", "title", "twitter", "updated_at", "www") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["context", "MyText"], ["created_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00], ["email", "MyString"], ["fax", "MyString"], ["first_name", "MyString"], ["last_name", "MyString"], ["mobile", "MyString"], ["phone", "MyString"], ["title", "MyString"], ["twitter", "MyString"], ["updated_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00], ["www", "MyString"]]
|
|
51929
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
51930
|
+
Processing by CustomerVault::IndividualsController#update as HTML
|
|
51931
|
+
Parameters: {"individual"=>{"first_name"=>"MyString", "last_name"=>"MyString", "email"=>"MyString", "title"=>"MyString", "twitter"=>"MyString", "www"=>"MyString", "context"=>"MyText", "phone"=>"MyString", "fax"=>"MyString", "mobile"=>"MyString"}, "id"=>"1"}
|
|
51932
|
+
[1m[35mCustomerVault::Individual Load (0.1ms)[0m SELECT "customer_vault_individuals".* FROM "customer_vault_individuals" WHERE "customer_vault_individuals"."id" = ? LIMIT 1 [["id", "1"]]
|
|
51933
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
51934
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
51935
|
+
Redirected to http://test.host/customer_vault/individuals/1
|
|
51936
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.2ms)
|
|
51937
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
|
51938
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
51939
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
51940
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "customer_vault_individuals" ("context", "created_at", "email", "fax", "first_name", "last_name", "mobile", "phone", "title", "twitter", "updated_at", "www") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["context", "MyText"], ["created_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00], ["email", "MyString"], ["fax", "MyString"], ["first_name", "MyString"], ["last_name", "MyString"], ["mobile", "MyString"], ["phone", "MyString"], ["title", "MyString"], ["twitter", "MyString"], ["updated_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00], ["www", "MyString"]]
|
|
51941
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
51942
|
+
Processing by CustomerVault::IndividualsController#update as HTML
|
|
51943
|
+
Parameters: {"individual"=>{"first_name"=>"MyString", "last_name"=>"MyString", "email"=>"MyString", "title"=>"MyString", "twitter"=>"MyString", "www"=>"MyString", "context"=>"MyText", "phone"=>"MyString", "fax"=>"MyString", "mobile"=>"MyString"}, "id"=>"1"}
|
|
51944
|
+
[1m[35mCustomerVault::Individual Load (0.1ms)[0m SELECT "customer_vault_individuals".* FROM "customer_vault_individuals" WHERE "customer_vault_individuals"."id" = ? LIMIT 1 [["id", "1"]]
|
|
51945
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
51946
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
51947
|
+
Redirected to http://test.host/customer_vault/individuals/1
|
|
51948
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.2ms)
|
|
51949
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
|
51950
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
51951
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
51952
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "customer_vault_individuals" ("context", "created_at", "email", "fax", "first_name", "last_name", "mobile", "phone", "title", "twitter", "updated_at", "www") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["context", "MyText"], ["created_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00], ["email", "MyString"], ["fax", "MyString"], ["first_name", "MyString"], ["last_name", "MyString"], ["mobile", "MyString"], ["phone", "MyString"], ["title", "MyString"], ["twitter", "MyString"], ["updated_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00], ["www", "MyString"]]
|
|
51953
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
51954
|
+
Processing by CustomerVault::IndividualsController#update as HTML
|
|
51955
|
+
Parameters: {"individual"=>{"last_name"=>""}, "id"=>"1"}
|
|
51956
|
+
[1m[35mCustomerVault::Individual Load (0.1ms)[0m SELECT "customer_vault_individuals".* FROM "customer_vault_individuals" WHERE "customer_vault_individuals"."id" = ? LIMIT 1 [["id", "1"]]
|
|
51957
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
51958
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
|
51959
|
+
Completed 200 OK in 4ms (Views: 1.2ms | ActiveRecord: 0.2ms)
|
|
51960
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
|
51961
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
51962
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
51963
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "customer_vault_individuals" ("context", "created_at", "email", "fax", "first_name", "last_name", "mobile", "phone", "title", "twitter", "updated_at", "www") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["context", "MyText"], ["created_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00], ["email", "MyString"], ["fax", "MyString"], ["first_name", "MyString"], ["last_name", "MyString"], ["mobile", "MyString"], ["phone", "MyString"], ["title", "MyString"], ["twitter", "MyString"], ["updated_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00], ["www", "MyString"]]
|
|
51964
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
51965
|
+
Processing by CustomerVault::IndividualsController#update as HTML
|
|
51966
|
+
Parameters: {"individual"=>{"last_name"=>""}, "id"=>"1"}
|
|
51967
|
+
[1m[35mCustomerVault::Individual Load (0.1ms)[0m SELECT "customer_vault_individuals".* FROM "customer_vault_individuals" WHERE "customer_vault_individuals"."id" = ? LIMIT 1 [["id", "1"]]
|
|
51968
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
51969
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
|
51970
|
+
Completed 200 OK in 3ms (Views: 0.8ms | ActiveRecord: 0.2ms)
|
|
51971
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
|
51972
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
51973
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
51974
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "customer_vault_individuals" ("context", "created_at", "email", "fax", "first_name", "last_name", "mobile", "phone", "title", "twitter", "updated_at", "www") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["context", "MyText"], ["created_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00], ["email", "MyString"], ["fax", "MyString"], ["first_name", "MyString"], ["last_name", "MyString"], ["mobile", "MyString"], ["phone", "MyString"], ["title", "MyString"], ["twitter", "MyString"], ["updated_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00], ["www", "MyString"]]
|
|
51975
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
51976
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "customer_vault_individuals"
|
|
51977
|
+
Processing by CustomerVault::IndividualsController#destroy as HTML
|
|
51978
|
+
Parameters: {"id"=>"1"}
|
|
51979
|
+
[1m[36mCustomerVault::Individual Load (0.1ms)[0m [1mSELECT "customer_vault_individuals".* FROM "customer_vault_individuals" WHERE "customer_vault_individuals"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
51980
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
51981
|
+
[1m[36mSQL (0.4ms)[0m [1mDELETE FROM "customer_vault_individuals" WHERE "customer_vault_individuals"."id" = ?[0m [["id", 1]]
|
|
51982
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
51983
|
+
Redirected to http://test.host/customer_vault/people
|
|
51984
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
|
|
51985
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "customer_vault_individuals"[0m
|
|
51986
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
|
51987
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
51988
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
51989
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "customer_vault_individuals" ("context", "created_at", "email", "fax", "first_name", "last_name", "mobile", "phone", "title", "twitter", "updated_at", "www") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["context", "MyText"], ["created_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00], ["email", "MyString"], ["fax", "MyString"], ["first_name", "MyString"], ["last_name", "MyString"], ["mobile", "MyString"], ["phone", "MyString"], ["title", "MyString"], ["twitter", "MyString"], ["updated_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00], ["www", "MyString"]]
|
|
51990
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
51991
|
+
Processing by CustomerVault::IndividualsController#destroy as HTML
|
|
51992
|
+
Parameters: {"id"=>"1"}
|
|
51993
|
+
[1m[36mCustomerVault::Individual Load (0.1ms)[0m [1mSELECT "customer_vault_individuals".* FROM "customer_vault_individuals" WHERE "customer_vault_individuals"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
51994
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
51995
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM "customer_vault_individuals" WHERE "customer_vault_individuals"."id" = ?[0m [["id", 1]]
|
|
51996
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
51997
|
+
Redirected to http://test.host/customer_vault/people
|
|
51998
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
|
|
51999
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
|
52000
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
52001
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
52002
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "dorsale_addresses" ("city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?) [["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", "L'atelier"], ["updated_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00], ["zip", "13004"]]
|
|
52003
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
52004
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
52005
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "customer_vault_individuals" ("context", "created_at", "email", "fax", "first_name", "last_name", "mobile", "phone", "title", "twitter", "updated_at", "www") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["context", "MyText"], ["created_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00], ["email", "MyString"], ["fax", "MyString"], ["first_name", "Alice"], ["last_name", "Zarston"], ["mobile", "MyString"], ["phone", "MyString"], ["title", "MyString"], ["twitter", "MyString"], ["updated_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00], ["www", "MyString"]]
|
|
52006
|
+
[1m[35mSQL (0.3ms)[0m UPDATE "dorsale_addresses" SET "addressable_type" = ?, "addressable_id" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 1 [["addressable_type", "CustomerVault::Individual"], ["addressable_id", 1], ["updated_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00]]
|
|
52007
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
52008
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
52009
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "dorsale_addresses" ("city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", "L'atelier"], ["updated_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00], ["zip", "13004"]]
|
|
52010
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
52011
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
52012
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "customer_vault_individuals" ("context", "created_at", "email", "fax", "first_name", "last_name", "mobile", "phone", "title", "twitter", "updated_at", "www") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["context", "MyText"], ["created_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00], ["email", "MyString"], ["fax", "MyString"], ["first_name", "Bob"], ["last_name", "Tilan"], ["mobile", "MyString"], ["phone", "MyString"], ["title", "MyString"], ["twitter", "MyString"], ["updated_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00], ["www", "MyString"]]
|
|
52013
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "dorsale_addresses" SET "addressable_type" = ?, "addressable_id" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 2[0m [["addressable_type", "CustomerVault::Individual"], ["addressable_id", 2], ["updated_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00]]
|
|
52014
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
52015
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
52016
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "dorsale_addresses" ("city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?) [["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", "L'atelier"], ["updated_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00], ["zip", "13004"]]
|
|
52017
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
52018
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
52019
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "customer_vault_corporations" ("created_at", "email", "fax", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["created_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00], ["email", "randall.keeling@parker.org"], ["fax", "09xxxxxxx"], ["name", "Zorg Corp"], ["phone", "06xxxxxxxx"], ["updated_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00]]
|
|
52020
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "dorsale_addresses" SET "addressable_type" = ?, "addressable_id" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 3 [["addressable_type", "CustomerVault::Corporation"], ["addressable_id", 1], ["updated_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00]]
|
|
52021
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
52022
|
+
Processing by CustomerVault::PeopleController#index as HTML
|
|
52023
|
+
[1m[35mCustomerVault::Individual Load (0.1ms)[0m SELECT "customer_vault_individuals".* FROM "customer_vault_individuals"
|
|
52024
|
+
[1m[36mCustomerVault::Corporation Load (0.1ms)[0m [1mSELECT "customer_vault_corporations".* FROM "customer_vault_corporations"[0m
|
|
52025
|
+
Completed 200 OK in 11ms (Views: 3.9ms | ActiveRecord: 0.2ms)
|
|
52026
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
|
52027
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
52028
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
52029
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "dorsale_addresses" ("city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", "L'atelier"], ["updated_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00], ["zip", "13004"]]
|
|
52030
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
52031
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
52032
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "customer_vault_individuals" ("context", "created_at", "email", "fax", "first_name", "last_name", "mobile", "phone", "title", "twitter", "updated_at", "www") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["context", "MyText"], ["created_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00], ["email", "MyString"], ["fax", "MyString"], ["first_name", "Alice"], ["last_name", "Zarston"], ["mobile", "MyString"], ["phone", "MyString"], ["title", "MyString"], ["twitter", "MyString"], ["updated_at", Mon, 30 Mar 2015 15:59:03 UTC +00:00], ["www", "MyString"]]
|
|
52033
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "dorsale_addresses" SET "addressable_type" = ?, "addressable_id" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 1[0m [["addressable_type", "CustomerVault::Individual"], ["addressable_id", 1], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00]]
|
|
52034
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
52035
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
52036
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "dorsale_addresses" ("city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?) [["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", "L'atelier"], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["zip", "13004"]]
|
|
52037
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
52038
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
52039
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "customer_vault_individuals" ("context", "created_at", "email", "fax", "first_name", "last_name", "mobile", "phone", "title", "twitter", "updated_at", "www") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["context", "MyText"], ["created_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["email", "MyString"], ["fax", "MyString"], ["first_name", "Bob"], ["last_name", "Tilan"], ["mobile", "MyString"], ["phone", "MyString"], ["title", "MyString"], ["twitter", "MyString"], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["www", "MyString"]]
|
|
52040
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "dorsale_addresses" SET "addressable_type" = ?, "addressable_id" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 2 [["addressable_type", "CustomerVault::Individual"], ["addressable_id", 2], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00]]
|
|
52041
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
52042
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
52043
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "dorsale_addresses" ("city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", "L'atelier"], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["zip", "13004"]]
|
|
52044
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
52045
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
52046
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "customer_vault_corporations" ("created_at", "email", "fax", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["email", "mariano@hamill.name"], ["fax", "09xxxxxxx"], ["name", "Zorg Corp"], ["phone", "06xxxxxxxx"], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00]]
|
|
52047
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "dorsale_addresses" SET "addressable_type" = ?, "addressable_id" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 3[0m [["addressable_type", "CustomerVault::Corporation"], ["addressable_id", 1], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00]]
|
|
52048
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
52049
|
+
Processing by CustomerVault::PeopleController#index as HTML
|
|
52050
|
+
Parameters: {"sort"=>"name"}
|
|
52051
|
+
[1m[36mCustomerVault::Individual Load (0.2ms)[0m [1mSELECT "customer_vault_individuals".* FROM "customer_vault_individuals"[0m
|
|
52052
|
+
[1m[35mCustomerVault::Corporation Load (0.1ms)[0m SELECT "customer_vault_corporations".* FROM "customer_vault_corporations"
|
|
52053
|
+
Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 0.2ms)
|
|
52054
|
+
[1m[36m (0.8ms)[0m [1mrollback transaction[0m
|
|
52055
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
52056
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
52057
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "dorsale_addresses" ("city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?) [["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", "L'atelier"], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["zip", "13004"]]
|
|
52058
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
52059
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
52060
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "customer_vault_individuals" ("context", "created_at", "email", "fax", "first_name", "last_name", "mobile", "phone", "title", "twitter", "updated_at", "www") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["context", "MyText"], ["created_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["email", "MyString"], ["fax", "MyString"], ["first_name", "Alice"], ["last_name", "Zarston"], ["mobile", "MyString"], ["phone", "MyString"], ["title", "MyString"], ["twitter", "MyString"], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["www", "MyString"]]
|
|
52061
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "dorsale_addresses" SET "addressable_type" = ?, "addressable_id" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 1 [["addressable_type", "CustomerVault::Individual"], ["addressable_id", 1], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00]]
|
|
52062
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
52063
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
52064
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "dorsale_addresses" ("city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", "L'atelier"], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["zip", "13004"]]
|
|
52065
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
52066
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
52067
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "customer_vault_individuals" ("context", "created_at", "email", "fax", "first_name", "last_name", "mobile", "phone", "title", "twitter", "updated_at", "www") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["context", "MyText"], ["created_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["email", "MyString"], ["fax", "MyString"], ["first_name", "Bob"], ["last_name", "Tilan"], ["mobile", "MyString"], ["phone", "MyString"], ["title", "MyString"], ["twitter", "MyString"], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["www", "MyString"]]
|
|
52068
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "dorsale_addresses" SET "addressable_type" = ?, "addressable_id" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 2[0m [["addressable_type", "CustomerVault::Individual"], ["addressable_id", 2], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00]]
|
|
52069
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
52070
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
52071
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "dorsale_addresses" ("city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?) [["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", "L'atelier"], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["zip", "13004"]]
|
|
52072
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
52073
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
52074
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "customer_vault_corporations" ("created_at", "email", "fax", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["created_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["email", "leonie@nader.com"], ["fax", "09xxxxxxx"], ["name", "Zorg Corp"], ["phone", "06xxxxxxxx"], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00]]
|
|
52075
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "dorsale_addresses" SET "addressable_type" = ?, "addressable_id" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 3 [["addressable_type", "CustomerVault::Corporation"], ["addressable_id", 1], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00]]
|
|
52076
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
52077
|
+
Processing by CustomerVault::PeopleController#index as HTML
|
|
52078
|
+
Parameters: {"sort"=>"-name"}
|
|
52079
|
+
[1m[35mCustomerVault::Individual Load (0.1ms)[0m SELECT "customer_vault_individuals".* FROM "customer_vault_individuals"
|
|
52080
|
+
[1m[36mCustomerVault::Corporation Load (0.1ms)[0m [1mSELECT "customer_vault_corporations".* FROM "customer_vault_corporations"[0m
|
|
52081
|
+
Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.2ms)
|
|
52082
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
|
52083
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
52084
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
52085
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "dorsale_addresses" ("city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", "L'atelier"], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["zip", "13004"]]
|
|
52086
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
52087
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
52088
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "customer_vault_individuals" ("context", "created_at", "email", "fax", "first_name", "last_name", "mobile", "phone", "title", "twitter", "updated_at", "www") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["context", "MyText"], ["created_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["email", "MyString"], ["fax", "MyString"], ["first_name", "Alice"], ["last_name", "Zarston"], ["mobile", "MyString"], ["phone", "MyString"], ["title", "MyString"], ["twitter", "MyString"], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["www", "MyString"]]
|
|
52089
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "dorsale_addresses" SET "addressable_type" = ?, "addressable_id" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 1[0m [["addressable_type", "CustomerVault::Individual"], ["addressable_id", 1], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00]]
|
|
52090
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
52091
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
52092
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "dorsale_addresses" ("city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?) [["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", "L'atelier"], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["zip", "13004"]]
|
|
52093
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
52094
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
52095
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "customer_vault_individuals" ("context", "created_at", "email", "fax", "first_name", "last_name", "mobile", "phone", "title", "twitter", "updated_at", "www") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["context", "MyText"], ["created_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["email", "MyString"], ["fax", "MyString"], ["first_name", "Bob"], ["last_name", "Tilan"], ["mobile", "MyString"], ["phone", "MyString"], ["title", "MyString"], ["twitter", "MyString"], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["www", "MyString"]]
|
|
52096
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "dorsale_addresses" SET "addressable_type" = ?, "addressable_id" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 2 [["addressable_type", "CustomerVault::Individual"], ["addressable_id", 2], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00]]
|
|
52097
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
52098
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
52099
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "dorsale_addresses" ("city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", "L'atelier"], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["zip", "13004"]]
|
|
52100
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
52101
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
52102
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "customer_vault_corporations" ("created_at", "email", "fax", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["email", "fern@wintheisermorar.net"], ["fax", "09xxxxxxx"], ["name", "Zorg Corp"], ["phone", "06xxxxxxxx"], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00]]
|
|
52103
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "dorsale_addresses" SET "addressable_type" = ?, "addressable_id" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 3[0m [["addressable_type", "CustomerVault::Corporation"], ["addressable_id", 1], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00]]
|
|
52104
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
52105
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
52106
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "dorsale_addresses" SET "zip" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 1 [["zip", "c123"], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00]]
|
|
52107
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
52108
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
52109
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "dorsale_addresses" SET "zip" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 2[0m [["zip", "b123"], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00]]
|
|
52110
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
52111
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
52112
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "dorsale_addresses" SET "zip" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 3 [["zip", "a123"], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00]]
|
|
52113
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
52114
|
+
Processing by CustomerVault::PeopleController#index as HTML
|
|
52115
|
+
Parameters: {"sort"=>"zip"}
|
|
52116
|
+
[1m[35mCustomerVault::Individual Load (0.1ms)[0m SELECT "customer_vault_individuals".* FROM "customer_vault_individuals"
|
|
52117
|
+
[1m[36mCustomerVault::Corporation Load (0.1ms)[0m [1mSELECT "customer_vault_corporations".* FROM "customer_vault_corporations"[0m
|
|
52118
|
+
[1m[35mDorsale::Address Load (0.1ms)[0m SELECT "dorsale_addresses".* FROM "dorsale_addresses" WHERE "dorsale_addresses"."addressable_id" = ? AND "dorsale_addresses"."addressable_type" = ? LIMIT 1 [["addressable_id", 1], ["addressable_type", "CustomerVault::Individual"]]
|
|
52119
|
+
[1m[36mDorsale::Address Load (0.1ms)[0m [1mSELECT "dorsale_addresses".* FROM "dorsale_addresses" WHERE "dorsale_addresses"."addressable_id" = ? AND "dorsale_addresses"."addressable_type" = ? LIMIT 1[0m [["addressable_id", 2], ["addressable_type", "CustomerVault::Individual"]]
|
|
52120
|
+
[1m[35mDorsale::Address Load (0.0ms)[0m SELECT "dorsale_addresses".* FROM "dorsale_addresses" WHERE "dorsale_addresses"."addressable_id" = ? AND "dorsale_addresses"."addressable_type" = ? LIMIT 1 [["addressable_id", 1], ["addressable_type", "CustomerVault::Corporation"]]
|
|
52121
|
+
Completed 200 OK in 5ms (Views: 0.8ms | ActiveRecord: 0.3ms)
|
|
52122
|
+
[1m[36m (0.8ms)[0m [1mrollback transaction[0m
|
|
52123
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
52124
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
52125
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "dorsale_addresses" ("city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?) [["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", "L'atelier"], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["zip", "13004"]]
|
|
52126
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
52127
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
52128
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "customer_vault_individuals" ("context", "created_at", "email", "fax", "first_name", "last_name", "mobile", "phone", "title", "twitter", "updated_at", "www") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["context", "MyText"], ["created_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["email", "MyString"], ["fax", "MyString"], ["first_name", "Alice"], ["last_name", "Zarston"], ["mobile", "MyString"], ["phone", "MyString"], ["title", "MyString"], ["twitter", "MyString"], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["www", "MyString"]]
|
|
52129
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "dorsale_addresses" SET "addressable_type" = ?, "addressable_id" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 1 [["addressable_type", "CustomerVault::Individual"], ["addressable_id", 1], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00]]
|
|
52130
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
52131
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
52132
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "dorsale_addresses" ("city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", "L'atelier"], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["zip", "13004"]]
|
|
52133
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
52134
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
52135
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "customer_vault_individuals" ("context", "created_at", "email", "fax", "first_name", "last_name", "mobile", "phone", "title", "twitter", "updated_at", "www") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["context", "MyText"], ["created_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["email", "MyString"], ["fax", "MyString"], ["first_name", "Bob"], ["last_name", "Tilan"], ["mobile", "MyString"], ["phone", "MyString"], ["title", "MyString"], ["twitter", "MyString"], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["www", "MyString"]]
|
|
52136
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "dorsale_addresses" SET "addressable_type" = ?, "addressable_id" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 2[0m [["addressable_type", "CustomerVault::Individual"], ["addressable_id", 2], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00]]
|
|
52137
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
52138
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
52139
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "dorsale_addresses" ("city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?) [["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", "L'atelier"], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["zip", "13004"]]
|
|
52140
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
52141
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
52142
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "customer_vault_corporations" ("created_at", "email", "fax", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["created_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["email", "rusty.nolan@okon.org"], ["fax", "09xxxxxxx"], ["name", "Zorg Corp"], ["phone", "06xxxxxxxx"], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00]]
|
|
52143
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "dorsale_addresses" SET "addressable_type" = ?, "addressable_id" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 3 [["addressable_type", "CustomerVault::Corporation"], ["addressable_id", 1], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00]]
|
|
52144
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
52145
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
52146
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "dorsale_addresses" SET "zip" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 1[0m [["zip", "c123"], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00]]
|
|
52147
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
52148
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
52149
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "dorsale_addresses" SET "zip" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 2 [["zip", "b123"], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00]]
|
|
52150
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
52151
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
52152
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "dorsale_addresses" SET "zip" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 3[0m [["zip", "a123"], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00]]
|
|
52153
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
52154
|
+
Processing by CustomerVault::PeopleController#index as HTML
|
|
52155
|
+
Parameters: {"sort"=>"-zip"}
|
|
52156
|
+
[1m[36mCustomerVault::Individual Load (0.1ms)[0m [1mSELECT "customer_vault_individuals".* FROM "customer_vault_individuals"[0m
|
|
52157
|
+
[1m[35mCustomerVault::Corporation Load (0.1ms)[0m SELECT "customer_vault_corporations".* FROM "customer_vault_corporations"
|
|
52158
|
+
[1m[36mDorsale::Address Load (0.1ms)[0m [1mSELECT "dorsale_addresses".* FROM "dorsale_addresses" WHERE "dorsale_addresses"."addressable_id" = ? AND "dorsale_addresses"."addressable_type" = ? LIMIT 1[0m [["addressable_id", 1], ["addressable_type", "CustomerVault::Individual"]]
|
|
52159
|
+
[1m[35mDorsale::Address Load (0.0ms)[0m SELECT "dorsale_addresses".* FROM "dorsale_addresses" WHERE "dorsale_addresses"."addressable_id" = ? AND "dorsale_addresses"."addressable_type" = ? LIMIT 1 [["addressable_id", 2], ["addressable_type", "CustomerVault::Individual"]]
|
|
52160
|
+
[1m[36mDorsale::Address Load (0.0ms)[0m [1mSELECT "dorsale_addresses".* FROM "dorsale_addresses" WHERE "dorsale_addresses"."addressable_id" = ? AND "dorsale_addresses"."addressable_type" = ? LIMIT 1[0m [["addressable_id", 1], ["addressable_type", "CustomerVault::Corporation"]]
|
|
52161
|
+
Completed 200 OK in 4ms (Views: 0.9ms | ActiveRecord: 0.3ms)
|
|
52162
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
|
52163
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
52164
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
52165
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
52166
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
52167
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
52168
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
52169
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
52170
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
52171
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "dorsale_addresses" ("city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", "L'atelier"], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["zip", "13004"]]
|
|
52172
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
52173
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
|
52174
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
52175
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
52176
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
52177
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
52178
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
52179
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
52180
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
52181
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
52182
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
52183
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
52184
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "dorsale_addresses" ("city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?) [["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", "L'atelier"], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["zip", "13004"]]
|
|
52185
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
52186
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
52187
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "customer_vault_individuals" ("context", "created_at", "email", "fax", "first_name", "last_name", "mobile", "phone", "title", "twitter", "updated_at", "www") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["context", "MyText"], ["created_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["email", "MyString"], ["fax", "MyString"], ["first_name", "MyString"], ["last_name", "MyString"], ["mobile", "MyString"], ["phone", "MyString"], ["title", "MyString"], ["twitter", "MyString"], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["www", "MyString"]]
|
|
52188
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "dorsale_addresses" SET "addressable_type" = ?, "addressable_id" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 1 [["addressable_type", "CustomerVault::Individual"], ["addressable_id", 1], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00]]
|
|
52189
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
52190
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
52191
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "dorsale_addresses" ("city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", "L'atelier"], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["zip", "13004"]]
|
|
52192
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
52193
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
52194
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "customer_vault_corporations" ("created_at", "email", "fax", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["email", "stephania@monahan.name"], ["fax", "09xxxxxxx"], ["name", "Macejkovic Corp"], ["phone", "06xxxxxxxx"], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00]]
|
|
52195
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "dorsale_addresses" SET "addressable_type" = ?, "addressable_id" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 2[0m [["addressable_type", "CustomerVault::Corporation"], ["addressable_id", 1], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00]]
|
|
52196
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
52197
|
+
[1m[36m (0.8ms)[0m [1mrollback transaction[0m
|
|
52198
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
52199
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
52200
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
52201
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
52202
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
52203
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
52204
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "dorsale_addresses" ("city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?) [["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", "L'atelier"], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["zip", "13004"]]
|
|
52205
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
52206
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
52207
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "customer_vault_corporations" ("created_at", "email", "fax", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["created_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["email", "elza@schmelerhansen.com"], ["fax", "09xxxxxxx"], ["name", "Sawayn Corp"], ["phone", "06xxxxxxxx"], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00]]
|
|
52208
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "dorsale_addresses" SET "addressable_type" = ?, "addressable_id" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 1 [["addressable_type", "CustomerVault::Corporation"], ["addressable_id", 1], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00]]
|
|
52209
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
52210
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
52211
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "dorsale_addresses" ("city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", "L'atelier"], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["zip", "13004"]]
|
|
52212
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
52213
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
52214
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "customer_vault_corporations" ("created_at", "email", "fax", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["email", "reyna@stoltenberg.com"], ["fax", "09xxxxxxx"], ["name", "Christiansen Corp"], ["phone", "06xxxxxxxx"], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00]]
|
|
52215
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "dorsale_addresses" SET "addressable_type" = ?, "addressable_id" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 2[0m [["addressable_type", "CustomerVault::Corporation"], ["addressable_id", 2], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00]]
|
|
52216
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
52217
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
52218
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "customer_vault_links" ("alice_id", "alice_type", "bob_id", "bob_type", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["alice_id", 1], ["alice_type", "CustomerVault::Corporation"], ["bob_id", 2], ["bob_type", "CustomerVault::Corporation"], ["created_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["title", "h"], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00]]
|
|
52219
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
52220
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
52221
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "dorsale_addresses" ("city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", "L'atelier"], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["zip", "13004"]]
|
|
52222
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
52223
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
52224
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "customer_vault_individuals" ("context", "created_at", "email", "fax", "first_name", "last_name", "mobile", "phone", "title", "twitter", "updated_at", "www") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["context", "MyText"], ["created_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["email", "MyString"], ["fax", "MyString"], ["first_name", "MyString"], ["last_name", "MyString"], ["mobile", "MyString"], ["phone", "MyString"], ["title", "MyString"], ["twitter", "MyString"], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["www", "MyString"]]
|
|
52225
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "dorsale_addresses" SET "addressable_type" = ?, "addressable_id" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 3[0m [["addressable_type", "CustomerVault::Individual"], ["addressable_id", 1], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00]]
|
|
52226
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
52227
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
52228
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "customer_vault_links" ("alice_id", "alice_type", "bob_id", "bob_type", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["alice_id", 1], ["alice_type", "CustomerVault::Individual"], ["bob_id", 1], ["bob_type", "CustomerVault::Corporation"], ["created_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["title", "m"], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00]]
|
|
52229
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
52230
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
52231
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "dorsale_addresses" ("city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", "L'atelier"], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["zip", "13004"]]
|
|
52232
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
52233
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
52234
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "customer_vault_individuals" ("context", "created_at", "email", "fax", "first_name", "last_name", "mobile", "phone", "title", "twitter", "updated_at", "www") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["context", "MyText"], ["created_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["email", "MyString"], ["fax", "MyString"], ["first_name", "MyString"], ["last_name", "MyString"], ["mobile", "MyString"], ["phone", "MyString"], ["title", "MyString"], ["twitter", "MyString"], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["www", "MyString"]]
|
|
52235
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "dorsale_addresses" SET "addressable_type" = ?, "addressable_id" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 4[0m [["addressable_type", "CustomerVault::Individual"], ["addressable_id", 2], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00]]
|
|
52236
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
52237
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
52238
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "customer_vault_links" ("alice_id", "alice_type", "bob_id", "bob_type", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["alice_id", 2], ["alice_type", "CustomerVault::Individual"], ["bob_id", 1], ["bob_type", "CustomerVault::Individual"], ["created_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["title", "p"], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00]]
|
|
52239
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
52240
|
+
[1m[35mCustomerVault::Link Load (0.2ms)[0m SELECT "customer_vault_links".* FROM "customer_vault_links" WHERE "customer_vault_links"."alice_id" = 1 AND "customer_vault_links"."alice_type" = 'CustomerVault::Corporation'
|
|
52241
|
+
[1m[36mCustomerVault::Corporation Load (0.1ms)[0m [1mSELECT "customer_vault_corporations".* FROM "customer_vault_corporations" WHERE "customer_vault_corporations"."id" = ? LIMIT 1[0m [["id", 2]]
|
|
52242
|
+
[1m[35mCustomerVault::Link Load (0.1ms)[0m SELECT "customer_vault_links".* FROM "customer_vault_links" WHERE "customer_vault_links"."bob_id" = 1 AND "customer_vault_links"."bob_type" = 'CustomerVault::Corporation'
|
|
52243
|
+
[1m[36mCustomerVault::Individual Load (0.1ms)[0m [1mSELECT "customer_vault_individuals".* FROM "customer_vault_individuals" WHERE "customer_vault_individuals"."id" = ? LIMIT 1[0m [["id", 1]]
|
|
52244
|
+
[1m[35mCustomerVault::Link Load (0.2ms)[0m SELECT "customer_vault_links".* FROM "customer_vault_links" WHERE "customer_vault_links"."alice_id" = 1 AND "customer_vault_links"."alice_type" = 'CustomerVault::Corporation'
|
|
52245
|
+
[1m[36mCustomerVault::Corporation Load (0.1ms)[0m [1mSELECT "customer_vault_corporations".* FROM "customer_vault_corporations" WHERE "customer_vault_corporations"."id" = ? LIMIT 1[0m [["id", 2]]
|
|
52246
|
+
[1m[35mCustomerVault::Link Load (0.1ms)[0m SELECT "customer_vault_links".* FROM "customer_vault_links" WHERE "customer_vault_links"."bob_id" = 1 AND "customer_vault_links"."bob_type" = 'CustomerVault::Corporation'
|
|
52247
|
+
[1m[36mCustomerVault::Individual Load (0.1ms)[0m [1mSELECT "customer_vault_individuals".* FROM "customer_vault_individuals" WHERE "customer_vault_individuals"."id" = ? LIMIT 1[0m [["id", 1]]
|
|
52248
|
+
[1m[35mCustomerVault::Link Load (0.1ms)[0m SELECT "customer_vault_links".* FROM "customer_vault_links" WHERE "customer_vault_links"."alice_id" = 2 AND "customer_vault_links"."alice_type" = 'CustomerVault::Corporation'
|
|
52249
|
+
[1m[36mCustomerVault::Link Load (0.1ms)[0m [1mSELECT "customer_vault_links".* FROM "customer_vault_links" WHERE "customer_vault_links"."bob_id" = 2 AND "customer_vault_links"."bob_type" = 'CustomerVault::Corporation'[0m
|
|
52250
|
+
[1m[35mCustomerVault::Corporation Load (0.0ms)[0m SELECT "customer_vault_corporations".* FROM "customer_vault_corporations" WHERE "customer_vault_corporations"."id" = ? LIMIT 1 [["id", 1]]
|
|
52251
|
+
[1m[36m (0.8ms)[0m [1mrollback transaction[0m
|
|
52252
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
52253
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
52254
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "dorsale_addresses" ("city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?) [["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", "L'atelier"], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["zip", "13004"]]
|
|
52255
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
52256
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
52257
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "customer_vault_corporations" ("created_at", "email", "fax", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["created_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["email", "flavie@hilll.info"], ["fax", "09xxxxxxx"], ["name", "Harber Corp"], ["phone", "06xxxxxxxx"], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00]]
|
|
52258
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "dorsale_addresses" SET "addressable_type" = ?, "addressable_id" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 1 [["addressable_type", "CustomerVault::Corporation"], ["addressable_id", 1], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00]]
|
|
52259
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
52260
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
52261
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "dorsale_addresses" ("city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", "L'atelier"], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["zip", "13004"]]
|
|
52262
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
52263
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
52264
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "customer_vault_corporations" ("created_at", "email", "fax", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["email", "river@schaefer.net"], ["fax", "09xxxxxxx"], ["name", "Powlowski Corp"], ["phone", "06xxxxxxxx"], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00]]
|
|
52265
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "dorsale_addresses" SET "addressable_type" = ?, "addressable_id" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 2[0m [["addressable_type", "CustomerVault::Corporation"], ["addressable_id", 2], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00]]
|
|
52266
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
52267
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
52268
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "customer_vault_links" ("alice_id", "alice_type", "bob_id", "bob_type", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["alice_id", 1], ["alice_type", "CustomerVault::Corporation"], ["bob_id", 2], ["bob_type", "CustomerVault::Corporation"], ["created_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["title", "h"], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00]]
|
|
52269
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
52270
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
52271
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "dorsale_addresses" ("city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", "L'atelier"], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["zip", "13004"]]
|
|
52272
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
52273
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
52274
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "customer_vault_individuals" ("context", "created_at", "email", "fax", "first_name", "last_name", "mobile", "phone", "title", "twitter", "updated_at", "www") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["context", "MyText"], ["created_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["email", "MyString"], ["fax", "MyString"], ["first_name", "MyString"], ["last_name", "MyString"], ["mobile", "MyString"], ["phone", "MyString"], ["title", "MyString"], ["twitter", "MyString"], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["www", "MyString"]]
|
|
52275
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "dorsale_addresses" SET "addressable_type" = ?, "addressable_id" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 3[0m [["addressable_type", "CustomerVault::Individual"], ["addressable_id", 1], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00]]
|
|
52276
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
52277
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
52278
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "customer_vault_links" ("alice_id", "alice_type", "bob_id", "bob_type", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["alice_id", 1], ["alice_type", "CustomerVault::Individual"], ["bob_id", 1], ["bob_type", "CustomerVault::Corporation"], ["created_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["title", "m"], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00]]
|
|
52279
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
52280
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
52281
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "dorsale_addresses" ("city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", "L'atelier"], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["zip", "13004"]]
|
|
52282
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
52283
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
52284
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "customer_vault_individuals" ("context", "created_at", "email", "fax", "first_name", "last_name", "mobile", "phone", "title", "twitter", "updated_at", "www") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["context", "MyText"], ["created_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["email", "MyString"], ["fax", "MyString"], ["first_name", "MyString"], ["last_name", "MyString"], ["mobile", "MyString"], ["phone", "MyString"], ["title", "MyString"], ["twitter", "MyString"], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["www", "MyString"]]
|
|
52285
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "dorsale_addresses" SET "addressable_type" = ?, "addressable_id" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 4[0m [["addressable_type", "CustomerVault::Individual"], ["addressable_id", 2], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00]]
|
|
52286
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
52287
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
52288
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "customer_vault_links" ("alice_id", "alice_type", "bob_id", "bob_type", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["alice_id", 2], ["alice_type", "CustomerVault::Individual"], ["bob_id", 1], ["bob_type", "CustomerVault::Individual"], ["created_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["title", "p"], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00]]
|
|
52289
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
52290
|
+
[1m[35mCustomerVault::Link Load (0.1ms)[0m SELECT "customer_vault_links".* FROM "customer_vault_links" WHERE "customer_vault_links"."alice_id" = 1 AND "customer_vault_links"."alice_type" = 'CustomerVault::Individual'
|
|
52291
|
+
[1m[36mCustomerVault::Corporation Load (0.0ms)[0m [1mSELECT "customer_vault_corporations".* FROM "customer_vault_corporations" WHERE "customer_vault_corporations"."id" = ? LIMIT 1[0m [["id", 1]]
|
|
52292
|
+
[1m[35mCustomerVault::Link Load (0.1ms)[0m SELECT "customer_vault_links".* FROM "customer_vault_links" WHERE "customer_vault_links"."bob_id" = 1 AND "customer_vault_links"."bob_type" = 'CustomerVault::Individual'
|
|
52293
|
+
[1m[36mCustomerVault::Individual Load (0.0ms)[0m [1mSELECT "customer_vault_individuals".* FROM "customer_vault_individuals" WHERE "customer_vault_individuals"."id" = ? LIMIT 1[0m [["id", 2]]
|
|
52294
|
+
[1m[35mCustomerVault::Link Load (0.1ms)[0m SELECT "customer_vault_links".* FROM "customer_vault_links" WHERE "customer_vault_links"."alice_id" = 1 AND "customer_vault_links"."alice_type" = 'CustomerVault::Individual'
|
|
52295
|
+
[1m[36mCustomerVault::Corporation Load (0.0ms)[0m [1mSELECT "customer_vault_corporations".* FROM "customer_vault_corporations" WHERE "customer_vault_corporations"."id" = ? LIMIT 1[0m [["id", 1]]
|
|
52296
|
+
[1m[35mCustomerVault::Link Load (0.1ms)[0m SELECT "customer_vault_links".* FROM "customer_vault_links" WHERE "customer_vault_links"."bob_id" = 1 AND "customer_vault_links"."bob_type" = 'CustomerVault::Individual'
|
|
52297
|
+
[1m[36mCustomerVault::Individual Load (0.0ms)[0m [1mSELECT "customer_vault_individuals".* FROM "customer_vault_individuals" WHERE "customer_vault_individuals"."id" = ? LIMIT 1[0m [["id", 2]]
|
|
52298
|
+
[1m[35mCustomerVault::Link Load (0.1ms)[0m SELECT "customer_vault_links".* FROM "customer_vault_links" WHERE "customer_vault_links"."alice_id" = 2 AND "customer_vault_links"."alice_type" = 'CustomerVault::Individual'
|
|
52299
|
+
[1m[36mCustomerVault::Individual Load (0.0ms)[0m [1mSELECT "customer_vault_individuals".* FROM "customer_vault_individuals" WHERE "customer_vault_individuals"."id" = ? LIMIT 1[0m [["id", 1]]
|
|
52300
|
+
[1m[35mCustomerVault::Link Load (0.1ms)[0m SELECT "customer_vault_links".* FROM "customer_vault_links" WHERE "customer_vault_links"."bob_id" = 2 AND "customer_vault_links"."bob_type" = 'CustomerVault::Individual'
|
|
52301
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
|
52302
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
52303
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
52304
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
52305
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
52306
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
52307
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
52308
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
52309
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
52310
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
52311
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
52312
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
52313
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
52314
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
52315
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
52316
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
52317
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
52318
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
52319
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
52320
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
52321
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
52322
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
52323
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
52324
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
52325
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
52326
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
52327
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
52328
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
52329
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
52330
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
52331
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
52332
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
52333
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
52334
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
52335
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
52336
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
52337
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
52338
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
52339
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
52340
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
52341
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
52342
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
52343
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
52344
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
52345
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
52346
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
52347
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
52348
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
52349
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
52350
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "customer_vault_corporations" ("created_at", "email", "fax", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["email", "MyString"], ["fax", "MyString"], ["name", "MyString"], ["phone", "MyString"], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00]]
|
|
52351
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
52352
|
+
[1m[35mDorsale::Address Load (0.1ms)[0m SELECT "dorsale_addresses".* FROM "dorsale_addresses" WHERE "dorsale_addresses"."addressable_id" = ? AND "dorsale_addresses"."addressable_type" = ? LIMIT 1 [["addressable_id", 1], ["addressable_type", "CustomerVault::Corporation"]]
|
|
52353
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/_form.html.slim (212.8ms)
|
|
52354
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_contextual.html.slim (4.4ms)
|
|
52355
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
|
52356
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
52357
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/_form.html.slim (11.2ms)
|
|
52358
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_contextual.html.slim (3.1ms)
|
|
52359
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
52360
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
52361
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
52362
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "customer_vault_corporations" ("created_at", "email", "fax", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00], ["email", "Email"], ["fax", "Fax"], ["name", "Name"], ["phone", "Phone"], ["updated_at", Mon, 30 Mar 2015 15:59:04 UTC +00:00]]
|
|
52363
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
52364
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_actions.html.slim (6.5ms)
|
|
52365
|
+
[1m[35mDorsale::Address Load (0.1ms)[0m SELECT "dorsale_addresses".* FROM "dorsale_addresses" WHERE "dorsale_addresses"."addressable_id" = ? AND "dorsale_addresses"."addressable_type" = ? LIMIT 1 [["addressable_id", 1], ["addressable_type", "CustomerVault::Corporation"]]
|
|
52366
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/_show_details.html.slim (62.8ms)
|
|
52367
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_show_details.html.slim (78.7ms)
|
|
52368
|
+
[1m[36mCustomerVault::Link Load (0.2ms)[0m [1mSELECT "customer_vault_links".* FROM "customer_vault_links" WHERE "customer_vault_links"."alice_id" = 1 AND "customer_vault_links"."alice_type" = 'CustomerVault::Corporation'[0m
|
|
52369
|
+
[1m[35mCustomerVault::Link Load (0.1ms)[0m SELECT "customer_vault_links".* FROM "customer_vault_links" WHERE "customer_vault_links"."bob_id" = 1 AND "customer_vault_links"."bob_type" = 'CustomerVault::Corporation'
|
|
52370
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_links_tab.html.slim (5.4ms)
|
|
52371
|
+
[1m[36mDorsale::Comment Load (0.7ms)[0m [1mSELECT "dorsale_comments".* FROM "dorsale_comments" WHERE "dorsale_comments"."commentable_id" = ? AND "dorsale_comments"."commentable_type" = ?[0m [["commentable_id", 1], ["commentable_type", "CustomerVault::Corporation"]]
|
|
52372
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/dorsale-1.0.4/app/views/dorsale/comments/_comments.html.slim (15.5ms)
|
|
52373
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/dorsale-1.0.4/app/views/dorsale/comments/_form.html.slim (24.5ms)
|
|
52374
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_history_tab.html.slim (55.2ms)
|
|
52375
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_todos_tab.html.slim (3.9ms)
|
|
52376
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_contextual.html.slim (3.0ms)
|
|
52377
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_show.html.slim (216.5ms)
|
|
52378
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
|
52379
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
52380
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
52381
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "customer_vault_individuals" ("context", "created_at", "email", "fax", "first_name", "last_name", "mobile", "phone", "title", "twitter", "updated_at", "www") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["context", "MyText"], ["created_at", Mon, 30 Mar 2015 15:59:05 UTC +00:00], ["email", "MyString"], ["fax", "MyString"], ["first_name", "MyString"], ["last_name", "MyString"], ["mobile", "MyString"], ["phone", "MyString"], ["title", "MyString"], ["twitter", "MyString"], ["updated_at", Mon, 30 Mar 2015 15:59:05 UTC +00:00], ["www", "MyString"]]
|
|
52382
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
52383
|
+
[1m[36mDorsale::Address Load (0.1ms)[0m [1mSELECT "dorsale_addresses".* FROM "dorsale_addresses" WHERE "dorsale_addresses"."addressable_id" = ? AND "dorsale_addresses"."addressable_type" = ? LIMIT 1[0m [["addressable_id", 1], ["addressable_type", "CustomerVault::Individual"]]
|
|
52384
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/individuals/_form.html.slim (22.0ms)
|
|
52385
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_contextual.html.slim (4.2ms)
|
|
52386
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
|
52387
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
52388
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/individuals/_form.html.slim (23.8ms)
|
|
52389
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_contextual.html.slim (3.2ms)
|
|
52390
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
52391
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
52392
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
52393
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "customer_vault_individuals" ("context", "created_at", "email", "fax", "first_name", "last_name", "mobile", "phone", "title", "twitter", "updated_at", "www") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["context", "MyText"], ["created_at", Mon, 30 Mar 2015 15:59:05 UTC +00:00], ["email", "Email"], ["fax", "Fax"], ["first_name", "First Name"], ["last_name", "Last Name"], ["mobile", "Mobile"], ["phone", "Phone"], ["title", "Title"], ["twitter", "Twitter"], ["updated_at", Mon, 30 Mar 2015 15:59:05 UTC +00:00], ["www", "Www"]]
|
|
52394
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
52395
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_actions.html.slim (8.2ms)
|
|
52396
|
+
[1m[36mDorsale::Address Load (0.1ms)[0m [1mSELECT "dorsale_addresses".* FROM "dorsale_addresses" WHERE "dorsale_addresses"."addressable_id" = ? AND "dorsale_addresses"."addressable_type" = ? LIMIT 1[0m [["addressable_id", 1], ["addressable_type", "CustomerVault::Individual"]]
|
|
52397
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/individuals/_show_details.html.slim (29.8ms)
|
|
52398
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_show_details.html.slim (49.5ms)
|
|
52399
|
+
[1m[35mCustomerVault::Link Load (0.2ms)[0m SELECT "customer_vault_links".* FROM "customer_vault_links" WHERE "customer_vault_links"."alice_id" = 1 AND "customer_vault_links"."alice_type" = 'CustomerVault::Individual'
|
|
52400
|
+
[1m[36mCustomerVault::Link Load (0.1ms)[0m [1mSELECT "customer_vault_links".* FROM "customer_vault_links" WHERE "customer_vault_links"."bob_id" = 1 AND "customer_vault_links"."bob_type" = 'CustomerVault::Individual'[0m
|
|
52401
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_links_tab.html.slim (6.9ms)
|
|
52402
|
+
[1m[35mDorsale::Comment Load (0.1ms)[0m SELECT "dorsale_comments".* FROM "dorsale_comments" WHERE "dorsale_comments"."commentable_id" = ? AND "dorsale_comments"."commentable_type" = ? [["commentable_id", 1], ["commentable_type", "CustomerVault::Individual"]]
|
|
52403
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/dorsale-1.0.4/app/views/dorsale/comments/_comments.html.slim (6.0ms)
|
|
52404
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/dorsale-1.0.4/app/views/dorsale/comments/_form.html.slim (9.9ms)
|
|
52405
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_history_tab.html.slim (29.2ms)
|
|
52406
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_todos_tab.html.slim (2.9ms)
|
|
52407
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_contextual.html.slim (3.5ms)
|
|
52408
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_show.html.slim (165.6ms)
|
|
52409
|
+
[1m[36m (2.1ms)[0m [1mrollback transaction[0m
|
|
52410
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
52411
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
52412
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "customer_vault_corporations" ("created_at", "email", "fax", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 30 Mar 2015 15:59:05 UTC +00:00], ["email", "Corporation_Email"], ["fax", "Corporation_Fax"], ["name", "Corporation_Name"], ["phone", "Corporation_Phone"], ["updated_at", Mon, 30 Mar 2015 15:59:05 UTC +00:00]]
|
|
52413
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
52414
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/_list_details.html.slim (4.5ms)
|
|
52415
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/individuals/_list_details.html.slim (4.9ms)
|
|
52416
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_contextual.html.slim (3.0ms)
|
|
52417
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
|
52418
|
+
Started GET "/customer_vault/corporations/new" for 127.0.0.1 at 2015-03-30 17:59:17 +0200
|
|
52419
|
+
Processing by CustomerVault::CorporationsController#new as HTML
|
|
52420
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/_form.html.slim (1989.5ms)
|
|
52421
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_contextual.html.slim (3.2ms)
|
|
52422
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/new.html.slim within layouts/application (2018.7ms)
|
|
52423
|
+
Completed 200 OK in 2279ms (Views: 2177.8ms | ActiveRecord: 4.1ms)
|
|
52424
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2015-03-30 17:59:19 +0200
|
|
52425
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2015-03-30 17:59:19 +0200
|
|
52426
|
+
Started GET "/assets/font-awesome/fontawesome-webfont.woff" for 127.0.0.1 at 2015-03-30 17:59:19 +0200
|
|
52427
|
+
Started POST "/customer_vault/corporations" for 127.0.0.1 at 2015-03-30 17:59:21 +0200
|
|
52428
|
+
Processing by CustomerVault::CorporationsController#create as HTML
|
|
52429
|
+
Parameters: {"utf8"=>"✓", "corporation"=>{"name"=>"AGILiDEE", "email"=>"", "phone"=>"", "fax"=>"", "address_attributes"=>{"street"=>"3 Rue Marx Dormoy", "street_bis"=>"", "zip"=>"13004", "city"=>"Marseille", "country"=>"France"}}}
|
|
52430
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
52431
|
+
[1m[35mSQL (8.9ms)[0m INSERT INTO "customer_vault_corporations" ("created_at", "email", "fax", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00], ["email", ""], ["fax", ""], ["name", "AGILiDEE"], ["phone", ""], ["updated_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00]]
|
|
52432
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "dorsale_addresses" ("addressable_id", "addressable_type", "city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["addressable_id", 1], ["addressable_type", "CustomerVault::Corporation"], ["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", ""], ["updated_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00], ["zip", "13004"]]
|
|
52433
|
+
[1m[35m (0.9ms)[0m commit transaction
|
|
52434
|
+
Redirected to http://127.0.0.1:56902/customer_vault/corporations/1
|
|
52435
|
+
Completed 302 Found in 18ms (ActiveRecord: 10.2ms)
|
|
52436
|
+
Started GET "/customer_vault/corporations/1" for 127.0.0.1 at 2015-03-30 17:59:21 +0200
|
|
52437
|
+
Processing by CustomerVault::CorporationsController#show as HTML
|
|
52438
|
+
Parameters: {"id"=>"1"}
|
|
52439
|
+
[1m[36mCustomerVault::Corporation Load (0.2ms)[0m [1mSELECT "customer_vault_corporations".* FROM "customer_vault_corporations" WHERE "customer_vault_corporations"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
52440
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_actions.html.slim (5.3ms)
|
|
52441
|
+
[1m[35mDorsale::Address Load (0.2ms)[0m SELECT "dorsale_addresses".* FROM "dorsale_addresses" WHERE "dorsale_addresses"."addressable_id" = ? AND "dorsale_addresses"."addressable_type" = ? LIMIT 1 [["addressable_id", 1], ["addressable_type", "CustomerVault::Corporation"]]
|
|
52442
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/_show_details.html.slim (12.5ms)
|
|
52443
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_show_details.html.slim (59.2ms)
|
|
52444
|
+
[1m[36mCustomerVault::Link Load (0.1ms)[0m [1mSELECT "customer_vault_links".* FROM "customer_vault_links" WHERE "customer_vault_links"."alice_id" = 1 AND "customer_vault_links"."alice_type" = 'CustomerVault::Corporation'[0m
|
|
52445
|
+
[1m[35mCustomerVault::Link Load (0.1ms)[0m SELECT "customer_vault_links".* FROM "customer_vault_links" WHERE "customer_vault_links"."bob_id" = 1 AND "customer_vault_links"."bob_type" = 'CustomerVault::Corporation'
|
|
52446
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_links_tab.html.slim (10.6ms)
|
|
52447
|
+
[1m[36mDorsale::Comment Load (0.2ms)[0m [1mSELECT "dorsale_comments".* FROM "dorsale_comments" WHERE "dorsale_comments"."commentable_id" = ? AND "dorsale_comments"."commentable_type" = ?[0m [["commentable_id", 1], ["commentable_type", "CustomerVault::Corporation"]]
|
|
52448
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/dorsale-1.0.4/app/views/dorsale/comments/_comments.html.slim (16.1ms)
|
|
52449
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/dorsale-1.0.4/app/views/dorsale/comments/_form.html.slim (21.2ms)
|
|
52450
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_history_tab.html.slim (42.4ms)
|
|
52451
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_todos_tab.html.slim (2.7ms)
|
|
52452
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_contextual.html.slim (0.1ms)
|
|
52453
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_show.html.slim (128.0ms)
|
|
52454
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/show.html.slim within layouts/application (132.2ms)
|
|
52455
|
+
Completed 200 OK in 138ms (Views: 133.4ms | ActiveRecord: 1.7ms)
|
|
52456
|
+
[1m[35m (2.8ms)[0m DELETE FROM "dorsale_addresses";
|
|
52457
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
|
52458
|
+
[1m[35m (1.0ms)[0m DELETE FROM sqlite_sequence where name = 'dorsale_addresses';
|
|
52459
|
+
[1m[36m (0.9ms)[0m [1mDELETE FROM "customer_vault_individuals";[0m
|
|
52460
|
+
[1m[35m (0.2ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
|
52461
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'customer_vault_individuals';[0m
|
|
52462
|
+
[1m[35m (0.9ms)[0m DELETE FROM "customer_vault_corporations";
|
|
52463
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
|
52464
|
+
[1m[35m (0.9ms)[0m DELETE FROM sqlite_sequence where name = 'customer_vault_corporations';
|
|
52465
|
+
[1m[36m (0.9ms)[0m [1mDELETE FROM "customer_vault_links";[0m
|
|
52466
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
|
52467
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'customer_vault_links';[0m
|
|
52468
|
+
[1m[35m (0.9ms)[0m DELETE FROM "dorsale_comments";
|
|
52469
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
|
52470
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'dorsale_comments';
|
|
52471
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
52472
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "dorsale_addresses" ("city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?) [["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", "L'atelier"], ["updated_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00], ["zip", "13004"]]
|
|
52473
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
|
52474
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
52475
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "customer_vault_corporations" ("created_at", "email", "fax", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["created_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00], ["email", "florencio.willms@fahey.net"], ["fax", "09xxxxxxx"], ["name", "Schultz Corp"], ["phone", "06xxxxxxxx"], ["updated_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00]]
|
|
52476
|
+
[1m[35mSQL (0.3ms)[0m UPDATE "dorsale_addresses" SET "addressable_type" = ?, "addressable_id" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 1 [["addressable_type", "CustomerVault::Corporation"], ["addressable_id", 1], ["updated_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00]]
|
|
52477
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
|
52478
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
52479
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "dorsale_addresses" ("city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", "L'atelier"], ["updated_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00], ["zip", "13004"]]
|
|
52480
|
+
[1m[35m (0.8ms)[0m commit transaction
|
|
52481
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
52482
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "customer_vault_corporations" ("created_at", "email", "fax", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00], ["email", "elvis_kris@rohan.info"], ["fax", "09xxxxxxx"], ["name", "Bode Corp"], ["phone", "06xxxxxxxx"], ["updated_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00]]
|
|
52483
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "dorsale_addresses" SET "addressable_type" = ?, "addressable_id" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 2[0m [["addressable_type", "CustomerVault::Corporation"], ["addressable_id", 2], ["updated_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00]]
|
|
52484
|
+
[1m[35m (0.8ms)[0m commit transaction
|
|
52485
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
52486
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "dorsale_addresses" ("city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?) [["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", "L'atelier"], ["updated_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00], ["zip", "13004"]]
|
|
52487
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
|
52488
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
52489
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "customer_vault_corporations" ("created_at", "email", "fax", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["created_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00], ["email", "jaylen@heel.org"], ["fax", "09xxxxxxx"], ["name", "Hackett Corp"], ["phone", "06xxxxxxxx"], ["updated_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00]]
|
|
52490
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "dorsale_addresses" SET "addressable_type" = ?, "addressable_id" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 3 [["addressable_type", "CustomerVault::Corporation"], ["addressable_id", 3], ["updated_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00]]
|
|
52491
|
+
[1m[36m (1.0ms)[0m [1mcommit transaction[0m
|
|
52492
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
52493
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "dorsale_addresses" ("city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", "L'atelier"], ["updated_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00], ["zip", "13004"]]
|
|
52494
|
+
[1m[35m (0.9ms)[0m commit transaction
|
|
52495
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
52496
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "customer_vault_corporations" ("created_at", "email", "fax", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00], ["email", "beie.nitzsche@weber.com"], ["fax", "09xxxxxxx"], ["name", "Crist Corp"], ["phone", "06xxxxxxxx"], ["updated_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00]]
|
|
52497
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "dorsale_addresses" SET "addressable_type" = ?, "addressable_id" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 4[0m [["addressable_type", "CustomerVault::Corporation"], ["addressable_id", 4], ["updated_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00]]
|
|
52498
|
+
[1m[35m (0.9ms)[0m commit transaction
|
|
52499
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
52500
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "dorsale_addresses" ("city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?) [["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", "L'atelier"], ["updated_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00], ["zip", "13004"]]
|
|
52501
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
|
52502
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
52503
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "customer_vault_corporations" ("created_at", "email", "fax", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["created_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00], ["email", "dewitt_runolfsdottir@mccullough.com"], ["fax", "09xxxxxxx"], ["name", "Padberg Corp"], ["phone", "06xxxxxxxx"], ["updated_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00]]
|
|
52504
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "dorsale_addresses" SET "addressable_type" = ?, "addressable_id" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 5 [["addressable_type", "CustomerVault::Corporation"], ["addressable_id", 5], ["updated_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00]]
|
|
52505
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
|
52506
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
52507
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "dorsale_addresses" ("city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", "L'atelier"], ["updated_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00], ["zip", "13004"]]
|
|
52508
|
+
[1m[35m (0.7ms)[0m commit transaction
|
|
52509
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
52510
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "customer_vault_corporations" ("created_at", "email", "fax", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00], ["email", "landen@bahringerkub.com"], ["fax", "09xxxxxxx"], ["name", "Feil Corp"], ["phone", "06xxxxxxxx"], ["updated_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00]]
|
|
52511
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "dorsale_addresses" SET "addressable_type" = ?, "addressable_id" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 6[0m [["addressable_type", "CustomerVault::Corporation"], ["addressable_id", 6], ["updated_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00]]
|
|
52512
|
+
[1m[35m (0.8ms)[0m commit transaction
|
|
52513
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
52514
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "dorsale_addresses" ("city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?) [["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", "L'atelier"], ["updated_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00], ["zip", "13004"]]
|
|
52515
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
|
52516
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
52517
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "customer_vault_corporations" ("created_at", "email", "fax", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["created_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00], ["email", "devan@zboncak.name"], ["fax", "09xxxxxxx"], ["name", "Fadel Corp"], ["phone", "06xxxxxxxx"], ["updated_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00]]
|
|
52518
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "dorsale_addresses" SET "addressable_type" = ?, "addressable_id" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 7 [["addressable_type", "CustomerVault::Corporation"], ["addressable_id", 7], ["updated_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00]]
|
|
52519
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
|
52520
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
52521
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "dorsale_addresses" ("city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", "L'atelier"], ["updated_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00], ["zip", "13004"]]
|
|
52522
|
+
[1m[35m (0.8ms)[0m commit transaction
|
|
52523
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
52524
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "customer_vault_corporations" ("created_at", "email", "fax", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00], ["email", "mercedes@mcclure.net"], ["fax", "09xxxxxxx"], ["name", "Satterfield Corp"], ["phone", "06xxxxxxxx"], ["updated_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00]]
|
|
52525
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "dorsale_addresses" SET "addressable_type" = ?, "addressable_id" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 8[0m [["addressable_type", "CustomerVault::Corporation"], ["addressable_id", 8], ["updated_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00]]
|
|
52526
|
+
[1m[35m (0.8ms)[0m commit transaction
|
|
52527
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
52528
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "dorsale_addresses" ("city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?) [["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", "L'atelier"], ["updated_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00], ["zip", "13004"]]
|
|
52529
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
|
52530
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
52531
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "customer_vault_corporations" ("created_at", "email", "fax", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["created_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00], ["email", "ayden@hayes.biz"], ["fax", "09xxxxxxx"], ["name", "Reynolds Corp"], ["phone", "06xxxxxxxx"], ["updated_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00]]
|
|
52532
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "dorsale_addresses" SET "addressable_type" = ?, "addressable_id" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 9 [["addressable_type", "CustomerVault::Corporation"], ["addressable_id", 9], ["updated_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00]]
|
|
52533
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
|
52534
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
52535
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "dorsale_addresses" ("city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", "L'atelier"], ["updated_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00], ["zip", "13004"]]
|
|
52536
|
+
[1m[35m (0.7ms)[0m commit transaction
|
|
52537
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
52538
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "customer_vault_corporations" ("created_at", "email", "fax", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00], ["email", "giles@ledner.name"], ["fax", "09xxxxxxx"], ["name", "Rutherford Corp"], ["phone", "06xxxxxxxx"], ["updated_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00]]
|
|
52539
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "dorsale_addresses" SET "addressable_type" = ?, "addressable_id" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 10[0m [["addressable_type", "CustomerVault::Corporation"], ["addressable_id", 10], ["updated_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00]]
|
|
52540
|
+
[1m[35m (0.7ms)[0m commit transaction
|
|
52541
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
52542
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "dorsale_addresses" ("city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?) [["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", "L'atelier"], ["updated_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00], ["zip", "13004"]]
|
|
52543
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
|
52544
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
52545
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "customer_vault_corporations" ("created_at", "email", "fax", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["created_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00], ["email", "orlo.hauck@bartoncremin.name"], ["fax", "09xxxxxxx"], ["name", "Runolfsson Corp"], ["phone", "06xxxxxxxx"], ["updated_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00]]
|
|
52546
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "dorsale_addresses" SET "addressable_type" = ?, "addressable_id" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 11 [["addressable_type", "CustomerVault::Corporation"], ["addressable_id", 11], ["updated_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00]]
|
|
52547
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
|
52548
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
52549
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "dorsale_addresses" ("city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", "L'atelier"], ["updated_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00], ["zip", "13004"]]
|
|
52550
|
+
[1m[35m (0.7ms)[0m commit transaction
|
|
52551
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
52552
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "customer_vault_corporations" ("created_at", "email", "fax", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00], ["email", "jason@hamillheaney.com"], ["fax", "09xxxxxxx"], ["name", "Hintz Corp"], ["phone", "06xxxxxxxx"], ["updated_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00]]
|
|
52553
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "dorsale_addresses" SET "addressable_type" = ?, "addressable_id" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 12[0m [["addressable_type", "CustomerVault::Corporation"], ["addressable_id", 12], ["updated_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00]]
|
|
52554
|
+
[1m[35m (0.8ms)[0m commit transaction
|
|
52555
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
52556
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "dorsale_addresses" ("city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?) [["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", "L'atelier"], ["updated_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00], ["zip", "13004"]]
|
|
52557
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
|
52558
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
52559
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "customer_vault_corporations" ("created_at", "email", "fax", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["created_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00], ["email", "katelin@zemlak.info"], ["fax", "09xxxxxxx"], ["name", "Heaney Corp"], ["phone", "06xxxxxxxx"], ["updated_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00]]
|
|
52560
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "dorsale_addresses" SET "addressable_type" = ?, "addressable_id" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 13 [["addressable_type", "CustomerVault::Corporation"], ["addressable_id", 13], ["updated_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00]]
|
|
52561
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
|
52562
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
52563
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "dorsale_addresses" ("city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", "L'atelier"], ["updated_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00], ["zip", "13004"]]
|
|
52564
|
+
[1m[35m (0.8ms)[0m commit transaction
|
|
52565
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
52566
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "customer_vault_corporations" ("created_at", "email", "fax", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00], ["email", "raleigh_lakin@bartolettikilback.com"], ["fax", "09xxxxxxx"], ["name", "Cassin Corp"], ["phone", "06xxxxxxxx"], ["updated_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00]]
|
|
52567
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "dorsale_addresses" SET "addressable_type" = ?, "addressable_id" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 14[0m [["addressable_type", "CustomerVault::Corporation"], ["addressable_id", 14], ["updated_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00]]
|
|
52568
|
+
[1m[35m (0.8ms)[0m commit transaction
|
|
52569
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
52570
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "dorsale_addresses" ("city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?) [["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", "L'atelier"], ["updated_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00], ["zip", "13004"]]
|
|
52571
|
+
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
|
|
52572
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
52573
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "customer_vault_corporations" ("created_at", "email", "fax", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["created_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00], ["email", "ania_rosenbaum@runte.org"], ["fax", "09xxxxxxx"], ["name", "Reilly Corp"], ["phone", "06xxxxxxxx"], ["updated_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00]]
|
|
52574
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "dorsale_addresses" SET "addressable_type" = ?, "addressable_id" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 15 [["addressable_type", "CustomerVault::Corporation"], ["addressable_id", 15], ["updated_at", Mon, 30 Mar 2015 15:59:21 UTC +00:00]]
|
|
52575
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
|
52576
|
+
Started GET "/customer_vault/people" for 127.0.0.1 at 2015-03-30 17:59:21 +0200
|
|
52577
|
+
Processing by CustomerVault::PeopleController#index as HTML
|
|
52578
|
+
[1m[35mCustomerVault::Individual Load (0.1ms)[0m SELECT "customer_vault_individuals".* FROM "customer_vault_individuals"
|
|
52579
|
+
[1m[36mCustomerVault::Corporation Load (0.1ms)[0m [1mSELECT "customer_vault_corporations".* FROM "customer_vault_corporations"[0m
|
|
52580
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/_list_details.html.slim (4.5ms)
|
|
52581
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/_list_details.html.slim (0.3ms)
|
|
52582
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/_list_details.html.slim (0.3ms)
|
|
52583
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/_list_details.html.slim (0.4ms)
|
|
52584
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/_list_details.html.slim (0.4ms)
|
|
52585
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/_list_details.html.slim (0.3ms)
|
|
52586
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/_list_details.html.slim (0.4ms)
|
|
52587
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/_list_details.html.slim (0.4ms)
|
|
52588
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_contextual.html.slim (0.1ms)
|
|
52589
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/index.html.slim within layouts/application (28.4ms)
|
|
52590
|
+
Completed 200 OK in 40ms (Views: 32.3ms | ActiveRecord: 0.9ms)
|
|
52591
|
+
Started GET "/customer_vault/people?page=2" for 127.0.0.1 at 2015-03-30 17:59:23 +0200
|
|
52592
|
+
Processing by CustomerVault::PeopleController#index as HTML
|
|
52593
|
+
Parameters: {"page"=>"2"}
|
|
52594
|
+
[1m[35mCustomerVault::Individual Load (0.2ms)[0m SELECT "customer_vault_individuals".* FROM "customer_vault_individuals"
|
|
52595
|
+
[1m[36mCustomerVault::Corporation Load (0.2ms)[0m [1mSELECT "customer_vault_corporations".* FROM "customer_vault_corporations"[0m
|
|
52596
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/_list_details.html.slim (0.4ms)
|
|
52597
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/_list_details.html.slim (0.3ms)
|
|
52598
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/_list_details.html.slim (0.3ms)
|
|
52599
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/_list_details.html.slim (0.3ms)
|
|
52600
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/_list_details.html.slim (0.3ms)
|
|
52601
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/_list_details.html.slim (0.3ms)
|
|
52602
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/_list_details.html.slim (0.3ms)
|
|
52603
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_contextual.html.slim (0.0ms)
|
|
52604
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/index.html.slim within layouts/application (12.5ms)
|
|
52605
|
+
Completed 200 OK in 16ms (Views: 13.4ms | ActiveRecord: 0.4ms)
|
|
52606
|
+
[1m[35m (1.6ms)[0m DELETE FROM "dorsale_addresses";
|
|
52607
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
|
52608
|
+
[1m[35m (0.8ms)[0m DELETE FROM sqlite_sequence where name = 'dorsale_addresses';
|
|
52609
|
+
[1m[36m (0.8ms)[0m [1mDELETE FROM "customer_vault_individuals";[0m
|
|
52610
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
|
52611
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'customer_vault_individuals';[0m
|
|
52612
|
+
[1m[35m (0.9ms)[0m DELETE FROM "customer_vault_corporations";
|
|
52613
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
|
52614
|
+
[1m[35m (0.8ms)[0m DELETE FROM sqlite_sequence where name = 'customer_vault_corporations';
|
|
52615
|
+
[1m[36m (0.8ms)[0m [1mDELETE FROM "customer_vault_links";[0m
|
|
52616
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
|
52617
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'customer_vault_links';[0m
|
|
52618
|
+
[1m[35m (1.0ms)[0m DELETE FROM "dorsale_comments";
|
|
52619
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
|
52620
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'dorsale_comments';
|
|
52621
|
+
Started GET "/customer_vault/corporations/new" for 127.0.0.1 at 2015-03-30 17:59:23 +0200
|
|
52622
|
+
Processing by CustomerVault::CorporationsController#new as HTML
|
|
52623
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/_form.html.slim (62.1ms)
|
|
52624
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_contextual.html.slim (0.1ms)
|
|
52625
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/new.html.slim within layouts/application (63.0ms)
|
|
52626
|
+
Completed 200 OK in 65ms (Views: 63.9ms | ActiveRecord: 0.2ms)
|
|
52627
|
+
Started POST "/customer_vault/corporations" for 127.0.0.1 at 2015-03-30 17:59:24 +0200
|
|
52628
|
+
Processing by CustomerVault::CorporationsController#create as HTML
|
|
52629
|
+
Parameters: {"utf8"=>"✓", "corporation"=>{"name"=>"AGILiDEE", "email"=>"", "phone"=>"", "fax"=>"", "address_attributes"=>{"street"=>"", "street_bis"=>"", "zip"=>"", "city"=>"", "country"=>""}}}
|
|
52630
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
52631
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
52632
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/_form.html.slim (20.6ms)
|
|
52633
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_contextual.html.slim (0.1ms)
|
|
52634
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/new.html.slim within layouts/application (21.7ms)
|
|
52635
|
+
Completed 200 OK in 27ms (Views: 22.7ms | ActiveRecord: 0.2ms)
|
|
52636
|
+
[1m[36m (2.6ms)[0m [1mDELETE FROM "dorsale_addresses";[0m
|
|
52637
|
+
[1m[35m (0.2ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
|
52638
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'dorsale_addresses';[0m
|
|
52639
|
+
[1m[35m (0.8ms)[0m DELETE FROM "customer_vault_individuals";
|
|
52640
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
|
52641
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'customer_vault_individuals';
|
|
52642
|
+
[1m[36m (0.7ms)[0m [1mDELETE FROM "customer_vault_corporations";[0m
|
|
52643
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
|
52644
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'customer_vault_corporations';[0m
|
|
52645
|
+
[1m[35m (0.7ms)[0m DELETE FROM "customer_vault_links";
|
|
52646
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
|
52647
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'customer_vault_links';
|
|
52648
|
+
[1m[36m (0.7ms)[0m [1mDELETE FROM "dorsale_comments";[0m
|
|
52649
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
|
52650
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'dorsale_comments';[0m
|
|
52651
|
+
Started GET "/customer_vault/corporations/new" for 127.0.0.1 at 2015-03-30 17:59:24 +0200
|
|
52652
|
+
Processing by CustomerVault::CorporationsController#new as HTML
|
|
52653
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/_form.html.slim (17.7ms)
|
|
52654
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_contextual.html.slim (0.1ms)
|
|
52655
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/new.html.slim within layouts/application (18.4ms)
|
|
52656
|
+
Completed 200 OK in 20ms (Views: 19.2ms | ActiveRecord: 0.0ms)
|
|
52657
|
+
Started POST "/customer_vault/corporations" for 127.0.0.1 at 2015-03-30 17:59:26 +0200
|
|
52658
|
+
Processing by CustomerVault::CorporationsController#create as HTML
|
|
52659
|
+
Parameters: {"utf8"=>"✓", "corporation"=>{"name"=>"", "email"=>"", "phone"=>"", "fax"=>"", "address_attributes"=>{"street"=>"3 Rue Marx Dormoy", "street_bis"=>"", "zip"=>"13004", "city"=>"Marseille", "country"=>"France"}}}
|
|
52660
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
52661
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
52662
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/_form.html.slim (20.7ms)
|
|
52663
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_contextual.html.slim (0.1ms)
|
|
52664
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/new.html.slim within layouts/application (21.4ms)
|
|
52665
|
+
Completed 200 OK in 25ms (Views: 22.0ms | ActiveRecord: 0.1ms)
|
|
52666
|
+
[1m[35m (2.6ms)[0m DELETE FROM "dorsale_addresses";
|
|
52667
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
|
52668
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'dorsale_addresses';
|
|
52669
|
+
[1m[36m (0.8ms)[0m [1mDELETE FROM "customer_vault_individuals";[0m
|
|
52670
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
|
52671
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'customer_vault_individuals';[0m
|
|
52672
|
+
[1m[35m (0.7ms)[0m DELETE FROM "customer_vault_corporations";
|
|
52673
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
|
52674
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'customer_vault_corporations';
|
|
52675
|
+
[1m[36m (0.7ms)[0m [1mDELETE FROM "customer_vault_links";[0m
|
|
52676
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
|
52677
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'customer_vault_links';[0m
|
|
52678
|
+
[1m[35m (0.7ms)[0m DELETE FROM "dorsale_comments";
|
|
52679
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
|
52680
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'dorsale_comments';
|
|
52681
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
52682
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "dorsale_addresses" ("city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?) [["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:26 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", "L'atelier"], ["updated_at", Mon, 30 Mar 2015 15:59:26 UTC +00:00], ["zip", "13004"]]
|
|
52683
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
|
52684
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
52685
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "customer_vault_corporations" ("created_at", "email", "fax", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["created_at", Mon, 30 Mar 2015 15:59:26 UTC +00:00], ["email", "walter@windler.net"], ["fax", "09xxxxxxx"], ["name", "Smith Corp"], ["phone", "06xxxxxxxx"], ["updated_at", Mon, 30 Mar 2015 15:59:26 UTC +00:00]]
|
|
52686
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "dorsale_addresses" SET "addressable_type" = ?, "addressable_id" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 1 [["addressable_type", "CustomerVault::Corporation"], ["addressable_id", 1], ["updated_at", Mon, 30 Mar 2015 15:59:26 UTC +00:00]]
|
|
52687
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
|
52688
|
+
Started GET "/customer_vault/corporations/1" for 127.0.0.1 at 2015-03-30 17:59:26 +0200
|
|
52689
|
+
Processing by CustomerVault::CorporationsController#show as HTML
|
|
52690
|
+
Parameters: {"id"=>"1"}
|
|
52691
|
+
[1m[35mCustomerVault::Corporation Load (0.2ms)[0m SELECT "customer_vault_corporations".* FROM "customer_vault_corporations" WHERE "customer_vault_corporations"."id" = ? LIMIT 1 [["id", "1"]]
|
|
52692
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_actions.html.slim (0.2ms)
|
|
52693
|
+
[1m[36mDorsale::Address Load (0.2ms)[0m [1mSELECT "dorsale_addresses".* FROM "dorsale_addresses" WHERE "dorsale_addresses"."addressable_id" = ? AND "dorsale_addresses"."addressable_type" = ? LIMIT 1[0m [["addressable_id", 1], ["addressable_type", "CustomerVault::Corporation"]]
|
|
52694
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/_show_details.html.slim (2.0ms)
|
|
52695
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_show_details.html.slim (2.2ms)
|
|
52696
|
+
[1m[35mCustomerVault::Link Load (0.1ms)[0m SELECT "customer_vault_links".* FROM "customer_vault_links" WHERE "customer_vault_links"."alice_id" = 1 AND "customer_vault_links"."alice_type" = 'CustomerVault::Corporation'
|
|
52697
|
+
[1m[36mCustomerVault::Link Load (0.1ms)[0m [1mSELECT "customer_vault_links".* FROM "customer_vault_links" WHERE "customer_vault_links"."bob_id" = 1 AND "customer_vault_links"."bob_type" = 'CustomerVault::Corporation'[0m
|
|
52698
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_links_tab.html.slim (1.5ms)
|
|
52699
|
+
[1m[35mDorsale::Comment Load (0.1ms)[0m SELECT "dorsale_comments".* FROM "dorsale_comments" WHERE "dorsale_comments"."commentable_id" = ? AND "dorsale_comments"."commentable_type" = ? [["commentable_id", 1], ["commentable_type", "CustomerVault::Corporation"]]
|
|
52700
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/dorsale-1.0.4/app/views/dorsale/comments/_comments.html.slim (1.0ms)
|
|
52701
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/dorsale-1.0.4/app/views/dorsale/comments/_form.html.slim (2.4ms)
|
|
52702
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_history_tab.html.slim (3.7ms)
|
|
52703
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_todos_tab.html.slim (0.0ms)
|
|
52704
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_contextual.html.slim (0.0ms)
|
|
52705
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_show.html.slim (53.9ms)
|
|
52706
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/show.html.slim within layouts/application (54.1ms)
|
|
52707
|
+
Completed 200 OK in 56ms (Views: 54.0ms | ActiveRecord: 1.1ms)
|
|
52708
|
+
Started POST "/dorsale/comments" for 127.0.0.1 at 2015-03-30 17:59:28 +0200
|
|
52709
|
+
Processing by Dorsale::CommentsController#create as HTML
|
|
52710
|
+
Parameters: {"utf8"=>"✓", "comment"=>{"commentable_id"=>"1", "commentable_type"=>"CustomerVault::Corporation", "text"=>"Hello"}, "back_url"=>"http://127.0.0.1:56902/customer_vault/corporations/1"}
|
|
52711
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
52712
|
+
[1m[35mCustomerVault::Corporation Load (0.1ms)[0m SELECT "customer_vault_corporations".* FROM "customer_vault_corporations" WHERE "customer_vault_corporations"."id" = ? LIMIT 1 [["id", 1]]
|
|
52713
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "dorsale_comments" ("commentable_id", "commentable_type", "created_at", "text", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["commentable_id", 1], ["commentable_type", "CustomerVault::Corporation"], ["created_at", Mon, 30 Mar 2015 15:59:28 UTC +00:00], ["text", "Hello"], ["updated_at", Mon, 30 Mar 2015 15:59:28 UTC +00:00]]
|
|
52714
|
+
[1m[35m (0.8ms)[0m commit transaction
|
|
52715
|
+
Redirected to http://127.0.0.1:56902/customer_vault/corporations/1
|
|
52716
|
+
Completed 302 Found in 12ms (ActiveRecord: 1.5ms)
|
|
52717
|
+
Started GET "/customer_vault/corporations/1" for 127.0.0.1 at 2015-03-30 17:59:28 +0200
|
|
52718
|
+
Processing by CustomerVault::CorporationsController#show as HTML
|
|
52719
|
+
Parameters: {"id"=>"1"}
|
|
52720
|
+
[1m[36mCustomerVault::Corporation Load (0.1ms)[0m [1mSELECT "customer_vault_corporations".* FROM "customer_vault_corporations" WHERE "customer_vault_corporations"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
52721
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_actions.html.slim (0.2ms)
|
|
52722
|
+
[1m[35mDorsale::Address Load (0.1ms)[0m SELECT "dorsale_addresses".* FROM "dorsale_addresses" WHERE "dorsale_addresses"."addressable_id" = ? AND "dorsale_addresses"."addressable_type" = ? LIMIT 1 [["addressable_id", 1], ["addressable_type", "CustomerVault::Corporation"]]
|
|
52723
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/_show_details.html.slim (1.5ms)
|
|
52724
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_show_details.html.slim (1.8ms)
|
|
52725
|
+
[1m[36mCustomerVault::Link Load (0.2ms)[0m [1mSELECT "customer_vault_links".* FROM "customer_vault_links" WHERE "customer_vault_links"."alice_id" = 1 AND "customer_vault_links"."alice_type" = 'CustomerVault::Corporation'[0m
|
|
52726
|
+
[1m[35mCustomerVault::Link Load (0.1ms)[0m SELECT "customer_vault_links".* FROM "customer_vault_links" WHERE "customer_vault_links"."bob_id" = 1 AND "customer_vault_links"."bob_type" = 'CustomerVault::Corporation'
|
|
52727
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_links_tab.html.slim (1.5ms)
|
|
52728
|
+
[1m[36mDorsale::Comment Load (0.1ms)[0m [1mSELECT "dorsale_comments".* FROM "dorsale_comments" WHERE "dorsale_comments"."commentable_id" = ? AND "dorsale_comments"."commentable_type" = ?[0m [["commentable_id", 1], ["commentable_type", "CustomerVault::Corporation"]]
|
|
52729
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/dorsale-1.0.4/app/views/dorsale/comments/_comments.html.slim (3.6ms)
|
|
52730
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/dorsale-1.0.4/app/views/dorsale/comments/_form.html.slim (2.5ms)
|
|
52731
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_history_tab.html.slim (6.5ms)
|
|
52732
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_todos_tab.html.slim (0.0ms)
|
|
52733
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_contextual.html.slim (0.0ms)
|
|
52734
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_show.html.slim (11.1ms)
|
|
52735
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/show.html.slim within layouts/application (11.3ms)
|
|
52736
|
+
Completed 200 OK in 13ms (Views: 11.5ms | ActiveRecord: 0.6ms)
|
|
52737
|
+
Started GET "/assets/dorsale/avatar.png" for 127.0.0.1 at 2015-03-30 17:59:28 +0200
|
|
52738
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "dorsale_comments" WHERE "dorsale_comments"."commentable_id" = ? AND "dorsale_comments"."commentable_type" = ? [["commentable_id", 1], ["commentable_type", "CustomerVault::Corporation"]]
|
|
52739
|
+
[1m[36m (0.9ms)[0m [1mDELETE FROM "dorsale_addresses";[0m
|
|
52740
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
|
52741
|
+
[1m[36m (0.7ms)[0m [1mDELETE FROM sqlite_sequence where name = 'dorsale_addresses';[0m
|
|
52742
|
+
[1m[35m (0.8ms)[0m DELETE FROM "customer_vault_individuals";
|
|
52743
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
|
52744
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'customer_vault_individuals';
|
|
52745
|
+
[1m[36m (0.9ms)[0m [1mDELETE FROM "customer_vault_corporations";[0m
|
|
52746
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
|
52747
|
+
[1m[36m (0.8ms)[0m [1mDELETE FROM sqlite_sequence where name = 'customer_vault_corporations';[0m
|
|
52748
|
+
[1m[35m (0.8ms)[0m DELETE FROM "customer_vault_links";
|
|
52749
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
|
52750
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'customer_vault_links';
|
|
52751
|
+
[1m[36m (0.8ms)[0m [1mDELETE FROM "dorsale_comments";[0m
|
|
52752
|
+
[1m[35m (0.2ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
|
52753
|
+
[1m[36m (0.7ms)[0m [1mDELETE FROM sqlite_sequence where name = 'dorsale_comments';[0m
|
|
52754
|
+
Started GET "/customer_vault/individuals/new" for 127.0.0.1 at 2015-03-30 17:59:28 +0200
|
|
52755
|
+
Processing by CustomerVault::IndividualsController#new as HTML
|
|
52756
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/individuals/_form.html.slim (84.1ms)
|
|
52757
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_contextual.html.slim (0.1ms)
|
|
52758
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/individuals/new.html.slim within layouts/application (90.3ms)
|
|
52759
|
+
Completed 200 OK in 96ms (Views: 94.2ms | ActiveRecord: 0.0ms)
|
|
52760
|
+
Started POST "/customer_vault/individuals" for 127.0.0.1 at 2015-03-30 17:59:30 +0200
|
|
52761
|
+
Processing by CustomerVault::IndividualsController#create as HTML
|
|
52762
|
+
Parameters: {"utf8"=>"✓", "individual"=>{"first_name"=>"Benoit", "last_name"=>"Gantaume", "email"=>"benoit@agilidee.com", "title"=>"", "twitter"=>"", "context"=>"", "phone"=>"", "fax"=>"", "mobile"=>"", "www"=>"", "address_attributes"=>{"street"=>"3 Rue Marx Dormoy", "street_bis"=>"", "zip"=>"13004", "city"=>"Marseille", "country"=>"France"}}}
|
|
52763
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
52764
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "customer_vault_individuals" ("context", "created_at", "email", "fax", "first_name", "last_name", "mobile", "phone", "title", "twitter", "updated_at", "www") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["context", ""], ["created_at", Mon, 30 Mar 2015 15:59:30 UTC +00:00], ["email", "benoit@agilidee.com"], ["fax", ""], ["first_name", "Benoit"], ["last_name", "Gantaume"], ["mobile", ""], ["phone", ""], ["title", ""], ["twitter", ""], ["updated_at", Mon, 30 Mar 2015 15:59:30 UTC +00:00], ["www", ""]]
|
|
52765
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "dorsale_addresses" ("addressable_id", "addressable_type", "city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["addressable_id", 1], ["addressable_type", "CustomerVault::Individual"], ["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:30 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", ""], ["updated_at", Mon, 30 Mar 2015 15:59:30 UTC +00:00], ["zip", "13004"]]
|
|
52766
|
+
[1m[36m (2.4ms)[0m [1mcommit transaction[0m
|
|
52767
|
+
Redirected to http://127.0.0.1:56902/customer_vault/individuals/1
|
|
52768
|
+
Completed 302 Found in 10ms (ActiveRecord: 3.2ms)
|
|
52769
|
+
Started GET "/customer_vault/individuals/1" for 127.0.0.1 at 2015-03-30 17:59:30 +0200
|
|
52770
|
+
Processing by CustomerVault::IndividualsController#show as HTML
|
|
52771
|
+
Parameters: {"id"=>"1"}
|
|
52772
|
+
[1m[35mCustomerVault::Individual Load (0.2ms)[0m SELECT "customer_vault_individuals".* FROM "customer_vault_individuals" WHERE "customer_vault_individuals"."id" = ? LIMIT 1 [["id", "1"]]
|
|
52773
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_actions.html.slim (0.2ms)
|
|
52774
|
+
[1m[36mDorsale::Address Load (0.1ms)[0m [1mSELECT "dorsale_addresses".* FROM "dorsale_addresses" WHERE "dorsale_addresses"."addressable_id" = ? AND "dorsale_addresses"."addressable_type" = ? LIMIT 1[0m [["addressable_id", 1], ["addressable_type", "CustomerVault::Individual"]]
|
|
52775
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/individuals/_show_details.html.slim (5.8ms)
|
|
52776
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_show_details.html.slim (7.5ms)
|
|
52777
|
+
[1m[35mCustomerVault::Link Load (0.1ms)[0m SELECT "customer_vault_links".* FROM "customer_vault_links" WHERE "customer_vault_links"."alice_id" = 1 AND "customer_vault_links"."alice_type" = 'CustomerVault::Individual'
|
|
52778
|
+
[1m[36mCustomerVault::Link Load (0.1ms)[0m [1mSELECT "customer_vault_links".* FROM "customer_vault_links" WHERE "customer_vault_links"."bob_id" = 1 AND "customer_vault_links"."bob_type" = 'CustomerVault::Individual'[0m
|
|
52779
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_links_tab.html.slim (1.1ms)
|
|
52780
|
+
[1m[35mDorsale::Comment Load (0.1ms)[0m SELECT "dorsale_comments".* FROM "dorsale_comments" WHERE "dorsale_comments"."commentable_id" = ? AND "dorsale_comments"."commentable_type" = ? [["commentable_id", 1], ["commentable_type", "CustomerVault::Individual"]]
|
|
52781
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/dorsale-1.0.4/app/views/dorsale/comments/_comments.html.slim (0.7ms)
|
|
52782
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/dorsale-1.0.4/app/views/dorsale/comments/_form.html.slim (2.2ms)
|
|
52783
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_history_tab.html.slim (3.1ms)
|
|
52784
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_todos_tab.html.slim (0.0ms)
|
|
52785
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_contextual.html.slim (0.0ms)
|
|
52786
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_show.html.slim (12.9ms)
|
|
52787
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/individuals/show.html.slim within layouts/application (15.7ms)
|
|
52788
|
+
Completed 200 OK in 20ms (Views: 17.6ms | ActiveRecord: 0.7ms)
|
|
52789
|
+
[1m[36m (1.3ms)[0m [1mDELETE FROM "dorsale_addresses";[0m
|
|
52790
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
|
52791
|
+
[1m[36m (0.9ms)[0m [1mDELETE FROM sqlite_sequence where name = 'dorsale_addresses';[0m
|
|
52792
|
+
[1m[35m (0.7ms)[0m DELETE FROM "customer_vault_individuals";
|
|
52793
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
|
52794
|
+
[1m[35m (0.8ms)[0m DELETE FROM sqlite_sequence where name = 'customer_vault_individuals';
|
|
52795
|
+
[1m[36m (0.7ms)[0m [1mDELETE FROM "customer_vault_corporations";[0m
|
|
52796
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
|
52797
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'customer_vault_corporations';[0m
|
|
52798
|
+
[1m[35m (0.9ms)[0m DELETE FROM "customer_vault_links";
|
|
52799
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
|
52800
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'customer_vault_links';
|
|
52801
|
+
[1m[36m (0.9ms)[0m [1mDELETE FROM "dorsale_comments";[0m
|
|
52802
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
|
52803
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'dorsale_comments';[0m
|
|
52804
|
+
Started GET "/customer_vault/individuals/new" for 127.0.0.1 at 2015-03-30 17:59:30 +0200
|
|
52805
|
+
Processing by CustomerVault::IndividualsController#new as HTML
|
|
52806
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/individuals/_form.html.slim (26.6ms)
|
|
52807
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_contextual.html.slim (0.1ms)
|
|
52808
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/individuals/new.html.slim within layouts/application (27.4ms)
|
|
52809
|
+
Completed 200 OK in 29ms (Views: 28.1ms | ActiveRecord: 0.0ms)
|
|
52810
|
+
Started POST "/customer_vault/individuals" for 127.0.0.1 at 2015-03-30 17:59:32 +0200
|
|
52811
|
+
Processing by CustomerVault::IndividualsController#create as HTML
|
|
52812
|
+
Parameters: {"utf8"=>"✓", "individual"=>{"first_name"=>"Benoit", "last_name"=>"Gantaume", "email"=>"benoit@agilidee.com", "title"=>"", "twitter"=>"", "context"=>"", "phone"=>"", "fax"=>"", "mobile"=>"", "www"=>"", "address_attributes"=>{"street"=>"", "street_bis"=>"", "zip"=>"", "city"=>"", "country"=>""}}}
|
|
52813
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
52814
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
52815
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/individuals/_form.html.slim (27.9ms)
|
|
52816
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_contextual.html.slim (0.1ms)
|
|
52817
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/individuals/new.html.slim within layouts/application (28.8ms)
|
|
52818
|
+
Completed 200 OK in 33ms (Views: 29.6ms | ActiveRecord: 0.1ms)
|
|
52819
|
+
[1m[35m (2.7ms)[0m DELETE FROM "dorsale_addresses";
|
|
52820
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
|
52821
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'dorsale_addresses';
|
|
52822
|
+
[1m[36m (0.9ms)[0m [1mDELETE FROM "customer_vault_individuals";[0m
|
|
52823
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
|
52824
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'customer_vault_individuals';[0m
|
|
52825
|
+
[1m[35m (0.7ms)[0m DELETE FROM "customer_vault_corporations";
|
|
52826
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
|
52827
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'customer_vault_corporations';
|
|
52828
|
+
[1m[36m (0.7ms)[0m [1mDELETE FROM "customer_vault_links";[0m
|
|
52829
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
|
52830
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'customer_vault_links';[0m
|
|
52831
|
+
[1m[35m (0.7ms)[0m DELETE FROM "dorsale_comments";
|
|
52832
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
|
52833
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'dorsale_comments';
|
|
52834
|
+
Started GET "/customer_vault/individuals/new" for 127.0.0.1 at 2015-03-30 17:59:32 +0200
|
|
52835
|
+
Processing by CustomerVault::IndividualsController#new as HTML
|
|
52836
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/individuals/_form.html.slim (28.0ms)
|
|
52837
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_contextual.html.slim (0.1ms)
|
|
52838
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/individuals/new.html.slim within layouts/application (28.9ms)
|
|
52839
|
+
Completed 200 OK in 31ms (Views: 29.7ms | ActiveRecord: 0.0ms)
|
|
52840
|
+
Started POST "/customer_vault/individuals" for 127.0.0.1 at 2015-03-30 17:59:33 +0200
|
|
52841
|
+
Processing by CustomerVault::IndividualsController#create as HTML
|
|
52842
|
+
Parameters: {"utf8"=>"✓", "individual"=>{"first_name"=>"", "last_name"=>"", "email"=>"", "title"=>"", "twitter"=>"", "context"=>"", "phone"=>"", "fax"=>"", "mobile"=>"", "www"=>"", "address_attributes"=>{"street"=>"3 Rue Marx Dormoy", "street_bis"=>"", "zip"=>"13004", "city"=>"Marseille", "country"=>"France"}}}
|
|
52843
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
52844
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
52845
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/individuals/_form.html.slim (29.5ms)
|
|
52846
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_contextual.html.slim (0.1ms)
|
|
52847
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/individuals/new.html.slim within layouts/application (30.4ms)
|
|
52848
|
+
Completed 200 OK in 36ms (Views: 31.1ms | ActiveRecord: 0.2ms)
|
|
52849
|
+
[1m[36m (2.3ms)[0m [1mDELETE FROM "dorsale_addresses";[0m
|
|
52850
|
+
[1m[35m (0.2ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
|
52851
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'dorsale_addresses';[0m
|
|
52852
|
+
[1m[35m (0.8ms)[0m DELETE FROM "customer_vault_individuals";
|
|
52853
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
|
52854
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'customer_vault_individuals';
|
|
52855
|
+
[1m[36m (0.9ms)[0m [1mDELETE FROM "customer_vault_corporations";[0m
|
|
52856
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
|
52857
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'customer_vault_corporations';[0m
|
|
52858
|
+
[1m[35m (0.8ms)[0m DELETE FROM "customer_vault_links";
|
|
52859
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
|
52860
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'customer_vault_links';
|
|
52861
|
+
[1m[36m (0.8ms)[0m [1mDELETE FROM "dorsale_comments";[0m
|
|
52862
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
|
52863
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'dorsale_comments';[0m
|
|
52864
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
52865
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "dorsale_addresses" ("city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:34 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", "L'atelier"], ["updated_at", Mon, 30 Mar 2015 15:59:34 UTC +00:00], ["zip", "13004"]]
|
|
52866
|
+
[1m[35m (0.8ms)[0m commit transaction
|
|
52867
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
52868
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "customer_vault_corporations" ("created_at", "email", "fax", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 30 Mar 2015 15:59:34 UTC +00:00], ["email", "colby@braun.biz"], ["fax", "09xxxxxxx"], ["name", "Carroll Corp"], ["phone", "06xxxxxxxx"], ["updated_at", Mon, 30 Mar 2015 15:59:34 UTC +00:00]]
|
|
52869
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "dorsale_addresses" SET "addressable_type" = ?, "addressable_id" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 1[0m [["addressable_type", "CustomerVault::Corporation"], ["addressable_id", 1], ["updated_at", Mon, 30 Mar 2015 15:59:34 UTC +00:00]]
|
|
52870
|
+
[1m[35m (0.9ms)[0m commit transaction
|
|
52871
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
52872
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "dorsale_addresses" ("city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?) [["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:34 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", "L'atelier"], ["updated_at", Mon, 30 Mar 2015 15:59:34 UTC +00:00], ["zip", "13004"]]
|
|
52873
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
|
52874
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
52875
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "customer_vault_individuals" ("context", "created_at", "email", "fax", "first_name", "last_name", "mobile", "phone", "title", "twitter", "updated_at", "www") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["context", "MyText"], ["created_at", Mon, 30 Mar 2015 15:59:34 UTC +00:00], ["email", "MyString"], ["fax", "MyString"], ["first_name", "MyString"], ["last_name", "MyString"], ["mobile", "MyString"], ["phone", "MyString"], ["title", "MyString"], ["twitter", "MyString"], ["updated_at", Mon, 30 Mar 2015 15:59:34 UTC +00:00], ["www", "MyString"]]
|
|
52876
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "dorsale_addresses" SET "addressable_type" = ?, "addressable_id" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 2 [["addressable_type", "CustomerVault::Individual"], ["addressable_id", 1], ["updated_at", Mon, 30 Mar 2015 15:59:34 UTC +00:00]]
|
|
52877
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
|
52878
|
+
Started GET "/customer_vault/individuals/1" for 127.0.0.1 at 2015-03-30 17:59:34 +0200
|
|
52879
|
+
Processing by CustomerVault::IndividualsController#show as HTML
|
|
52880
|
+
Parameters: {"id"=>"1"}
|
|
52881
|
+
[1m[35mCustomerVault::Individual Load (0.2ms)[0m SELECT "customer_vault_individuals".* FROM "customer_vault_individuals" WHERE "customer_vault_individuals"."id" = ? LIMIT 1 [["id", "1"]]
|
|
52882
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_actions.html.slim (0.2ms)
|
|
52883
|
+
[1m[36mDorsale::Address Load (0.1ms)[0m [1mSELECT "dorsale_addresses".* FROM "dorsale_addresses" WHERE "dorsale_addresses"."addressable_id" = ? AND "dorsale_addresses"."addressable_type" = ? LIMIT 1[0m [["addressable_id", 1], ["addressable_type", "CustomerVault::Individual"]]
|
|
52884
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/individuals/_show_details.html.slim (1.7ms)
|
|
52885
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_show_details.html.slim (1.9ms)
|
|
52886
|
+
[1m[35mCustomerVault::Link Load (0.2ms)[0m SELECT "customer_vault_links".* FROM "customer_vault_links" WHERE "customer_vault_links"."alice_id" = 1 AND "customer_vault_links"."alice_type" = 'CustomerVault::Individual'
|
|
52887
|
+
[1m[36mCustomerVault::Link Load (0.1ms)[0m [1mSELECT "customer_vault_links".* FROM "customer_vault_links" WHERE "customer_vault_links"."bob_id" = 1 AND "customer_vault_links"."bob_type" = 'CustomerVault::Individual'[0m
|
|
52888
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_links_tab.html.slim (1.9ms)
|
|
52889
|
+
[1m[35mDorsale::Comment Load (0.1ms)[0m SELECT "dorsale_comments".* FROM "dorsale_comments" WHERE "dorsale_comments"."commentable_id" = ? AND "dorsale_comments"."commentable_type" = ? [["commentable_id", 1], ["commentable_type", "CustomerVault::Individual"]]
|
|
52890
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/dorsale-1.0.4/app/views/dorsale/comments/_comments.html.slim (1.0ms)
|
|
52891
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/dorsale-1.0.4/app/views/dorsale/comments/_form.html.slim (2.8ms)
|
|
52892
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_history_tab.html.slim (4.2ms)
|
|
52893
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_todos_tab.html.slim (0.0ms)
|
|
52894
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_contextual.html.slim (0.1ms)
|
|
52895
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_show.html.slim (9.2ms)
|
|
52896
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/individuals/show.html.slim within layouts/application (9.4ms)
|
|
52897
|
+
Completed 200 OK in 11ms (Views: 9.6ms | ActiveRecord: 0.8ms)
|
|
52898
|
+
Started GET "/customer_vault/individuals/1/links/new" for 127.0.0.1 at 2015-03-30 17:59:35 +0200
|
|
52899
|
+
Processing by CustomerVault::LinksController#new as HTML
|
|
52900
|
+
Parameters: {"individual_id"=>"1"}
|
|
52901
|
+
[1m[36mCustomerVault::Individual Load (0.1ms)[0m [1mSELECT "customer_vault_individuals".* FROM "customer_vault_individuals" WHERE "customer_vault_individuals"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
52902
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_actions.html.slim (0.2ms)
|
|
52903
|
+
[1m[35mDorsale::Address Load (0.2ms)[0m SELECT "dorsale_addresses".* FROM "dorsale_addresses" WHERE "dorsale_addresses"."addressable_id" = ? AND "dorsale_addresses"."addressable_type" = ? LIMIT 1 [["addressable_id", 1], ["addressable_type", "CustomerVault::Individual"]]
|
|
52904
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/individuals/_show_details.html.slim (1.9ms)
|
|
52905
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_show_details.html.slim (2.1ms)
|
|
52906
|
+
[1m[36mCustomerVault::Individual Load (0.2ms)[0m [1mSELECT "customer_vault_individuals".* FROM "customer_vault_individuals"[0m
|
|
52907
|
+
[1m[35mCustomerVault::Corporation Load (0.1ms)[0m SELECT "customer_vault_corporations".* FROM "customer_vault_corporations"
|
|
52908
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_contextual.html.slim (0.1ms)
|
|
52909
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/links/new.html.slim within layouts/application (70.8ms)
|
|
52910
|
+
Completed 200 OK in 79ms (Views: 76.2ms | ActiveRecord: 0.7ms)
|
|
52911
|
+
Started POST "/customer_vault/individuals/1/links" for 127.0.0.1 at 2015-03-30 17:59:35 +0200
|
|
52912
|
+
Processing by CustomerVault::LinksController#create as HTML
|
|
52913
|
+
Parameters: {"utf8"=>"✓", "link"=>{"bob"=>"CustomerVault::Corporation-1", "title"=>"Manager"}, "individual_id"=>"1"}
|
|
52914
|
+
[1m[36mCustomerVault::Individual Load (0.1ms)[0m [1mSELECT "customer_vault_individuals".* FROM "customer_vault_individuals" WHERE "customer_vault_individuals"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
52915
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
52916
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "customer_vault_links" ("alice_id", "alice_type", "bob_id", "bob_type", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["alice_id", 1], ["alice_type", "CustomerVault::Individual"], ["bob_id", 1], ["bob_type", "CustomerVault::Corporation"], ["created_at", Mon, 30 Mar 2015 15:59:35 UTC +00:00], ["title", "Manager"], ["updated_at", Mon, 30 Mar 2015 15:59:35 UTC +00:00]]
|
|
52917
|
+
[1m[35m (1.5ms)[0m commit transaction
|
|
52918
|
+
Redirected to http://127.0.0.1:56902/customer_vault/individuals/1
|
|
52919
|
+
Completed 302 Found in 8ms (ActiveRecord: 2.3ms)
|
|
52920
|
+
Started GET "/customer_vault/individuals/1" for 127.0.0.1 at 2015-03-30 17:59:35 +0200
|
|
52921
|
+
Processing by CustomerVault::IndividualsController#show as HTML
|
|
52922
|
+
Parameters: {"id"=>"1"}
|
|
52923
|
+
[1m[36mCustomerVault::Individual Load (0.3ms)[0m [1mSELECT "customer_vault_individuals".* FROM "customer_vault_individuals" WHERE "customer_vault_individuals"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
52924
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_actions.html.slim (0.2ms)
|
|
52925
|
+
[1m[35mDorsale::Address Load (0.1ms)[0m SELECT "dorsale_addresses".* FROM "dorsale_addresses" WHERE "dorsale_addresses"."addressable_id" = ? AND "dorsale_addresses"."addressable_type" = ? LIMIT 1 [["addressable_id", 1], ["addressable_type", "CustomerVault::Individual"]]
|
|
52926
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/individuals/_show_details.html.slim (1.8ms)
|
|
52927
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_show_details.html.slim (2.0ms)
|
|
52928
|
+
[1m[36mCustomerVault::Link Load (0.2ms)[0m [1mSELECT "customer_vault_links".* FROM "customer_vault_links" WHERE "customer_vault_links"."alice_id" = 1 AND "customer_vault_links"."alice_type" = 'CustomerVault::Individual'[0m
|
|
52929
|
+
[1m[35mCustomerVault::Corporation Load (0.1ms)[0m SELECT "customer_vault_corporations".* FROM "customer_vault_corporations" WHERE "customer_vault_corporations"."id" = ? LIMIT 1 [["id", 1]]
|
|
52930
|
+
[1m[36mCustomerVault::Link Load (0.1ms)[0m [1mSELECT "customer_vault_links".* FROM "customer_vault_links" WHERE "customer_vault_links"."bob_id" = 1 AND "customer_vault_links"."bob_type" = 'CustomerVault::Individual'[0m
|
|
52931
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/links/_title.html.slim (4.2ms)
|
|
52932
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/_list_details.html.slim (10.9ms)
|
|
52933
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_links_tab.html.slim (15.1ms)
|
|
52934
|
+
[1m[35mDorsale::Comment Load (0.2ms)[0m SELECT "dorsale_comments".* FROM "dorsale_comments" WHERE "dorsale_comments"."commentable_id" = ? AND "dorsale_comments"."commentable_type" = ? [["commentable_id", 1], ["commentable_type", "CustomerVault::Individual"]]
|
|
52935
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/dorsale-1.0.4/app/views/dorsale/comments/_comments.html.slim (1.1ms)
|
|
52936
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/dorsale-1.0.4/app/views/dorsale/comments/_form.html.slim (2.3ms)
|
|
52937
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_history_tab.html.slim (3.6ms)
|
|
52938
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_todos_tab.html.slim (0.0ms)
|
|
52939
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_contextual.html.slim (0.0ms)
|
|
52940
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_show.html.slim (21.9ms)
|
|
52941
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/individuals/show.html.slim within layouts/application (22.1ms)
|
|
52942
|
+
Completed 200 OK in 25ms (Views: 22.2ms | ActiveRecord: 1.0ms)
|
|
52943
|
+
[1m[36m (1.3ms)[0m [1mDELETE FROM "dorsale_addresses";[0m
|
|
52944
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
|
52945
|
+
[1m[36m (0.9ms)[0m [1mDELETE FROM sqlite_sequence where name = 'dorsale_addresses';[0m
|
|
52946
|
+
[1m[35m (0.7ms)[0m DELETE FROM "customer_vault_individuals";
|
|
52947
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
|
52948
|
+
[1m[35m (0.8ms)[0m DELETE FROM sqlite_sequence where name = 'customer_vault_individuals';
|
|
52949
|
+
[1m[36m (0.7ms)[0m [1mDELETE FROM "customer_vault_corporations";[0m
|
|
52950
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
|
52951
|
+
[1m[36m (0.9ms)[0m [1mDELETE FROM sqlite_sequence where name = 'customer_vault_corporations';[0m
|
|
52952
|
+
[1m[35m (0.8ms)[0m DELETE FROM "customer_vault_links";
|
|
52953
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
|
52954
|
+
[1m[35m (0.8ms)[0m DELETE FROM sqlite_sequence where name = 'customer_vault_links';
|
|
52955
|
+
[1m[36m (0.7ms)[0m [1mDELETE FROM "dorsale_comments";[0m
|
|
52956
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
|
52957
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'dorsale_comments';[0m
|
|
52958
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
52959
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "dorsale_addresses" ("city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:35 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", "L'atelier"], ["updated_at", Mon, 30 Mar 2015 15:59:35 UTC +00:00], ["zip", "13004"]]
|
|
52960
|
+
[1m[35m (0.8ms)[0m commit transaction
|
|
52961
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
52962
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "customer_vault_individuals" ("context", "created_at", "email", "fax", "first_name", "last_name", "mobile", "phone", "title", "twitter", "updated_at", "www") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["context", "MyText"], ["created_at", Mon, 30 Mar 2015 15:59:35 UTC +00:00], ["email", "MyString"], ["fax", "MyString"], ["first_name", "MyString"], ["last_name", "MyString"], ["mobile", "MyString"], ["phone", "MyString"], ["title", "MyString"], ["twitter", "MyString"], ["updated_at", Mon, 30 Mar 2015 15:59:35 UTC +00:00], ["www", "MyString"]]
|
|
52963
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "dorsale_addresses" SET "addressable_type" = ?, "addressable_id" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 1[0m [["addressable_type", "CustomerVault::Individual"], ["addressable_id", 1], ["updated_at", Mon, 30 Mar 2015 15:59:35 UTC +00:00]]
|
|
52964
|
+
[1m[35m (0.7ms)[0m commit transaction
|
|
52965
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
52966
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "dorsale_addresses" ("city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?) [["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:35 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", "L'atelier"], ["updated_at", Mon, 30 Mar 2015 15:59:35 UTC +00:00], ["zip", "13004"]]
|
|
52967
|
+
[1m[36m (0.6ms)[0m [1mcommit transaction[0m
|
|
52968
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
52969
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "customer_vault_corporations" ("created_at", "email", "fax", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["created_at", Mon, 30 Mar 2015 15:59:35 UTC +00:00], ["email", "shirley@shields.com"], ["fax", "09xxxxxxx"], ["name", "Raynor Corp"], ["phone", "06xxxxxxxx"], ["updated_at", Mon, 30 Mar 2015 15:59:35 UTC +00:00]]
|
|
52970
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "dorsale_addresses" SET "addressable_type" = ?, "addressable_id" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 2 [["addressable_type", "CustomerVault::Corporation"], ["addressable_id", 1], ["updated_at", Mon, 30 Mar 2015 15:59:35 UTC +00:00]]
|
|
52971
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
|
52972
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
52973
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "customer_vault_links" ("alice_id", "alice_type", "bob_id", "bob_type", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["alice_id", 1], ["alice_type", "CustomerVault::Individual"], ["bob_id", 1], ["bob_type", "CustomerVault::Corporation"], ["created_at", Mon, 30 Mar 2015 15:59:35 UTC +00:00], ["title", "Manager"], ["updated_at", Mon, 30 Mar 2015 15:59:35 UTC +00:00]]
|
|
52974
|
+
[1m[35m (0.8ms)[0m commit transaction
|
|
52975
|
+
Started GET "/customer_vault/individuals/1" for 127.0.0.1 at 2015-03-30 17:59:35 +0200
|
|
52976
|
+
Processing by CustomerVault::IndividualsController#show as HTML
|
|
52977
|
+
Parameters: {"id"=>"1"}
|
|
52978
|
+
[1m[36mCustomerVault::Individual Load (0.2ms)[0m [1mSELECT "customer_vault_individuals".* FROM "customer_vault_individuals" WHERE "customer_vault_individuals"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
52979
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_actions.html.slim (0.2ms)
|
|
52980
|
+
[1m[35mDorsale::Address Load (0.1ms)[0m SELECT "dorsale_addresses".* FROM "dorsale_addresses" WHERE "dorsale_addresses"."addressable_id" = ? AND "dorsale_addresses"."addressable_type" = ? LIMIT 1 [["addressable_id", 1], ["addressable_type", "CustomerVault::Individual"]]
|
|
52981
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/individuals/_show_details.html.slim (2.0ms)
|
|
52982
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_show_details.html.slim (2.2ms)
|
|
52983
|
+
[1m[36mCustomerVault::Link Load (0.2ms)[0m [1mSELECT "customer_vault_links".* FROM "customer_vault_links" WHERE "customer_vault_links"."alice_id" = 1 AND "customer_vault_links"."alice_type" = 'CustomerVault::Individual'[0m
|
|
52984
|
+
[1m[35mCustomerVault::Corporation Load (0.1ms)[0m SELECT "customer_vault_corporations".* FROM "customer_vault_corporations" WHERE "customer_vault_corporations"."id" = ? LIMIT 1 [["id", 1]]
|
|
52985
|
+
[1m[36mCustomerVault::Link Load (0.1ms)[0m [1mSELECT "customer_vault_links".* FROM "customer_vault_links" WHERE "customer_vault_links"."bob_id" = 1 AND "customer_vault_links"."bob_type" = 'CustomerVault::Individual'[0m
|
|
52986
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/links/_title.html.slim (0.6ms)
|
|
52987
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/_list_details.html.slim (1.1ms)
|
|
52988
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_links_tab.html.slim (3.3ms)
|
|
52989
|
+
[1m[35mDorsale::Comment Load (0.1ms)[0m SELECT "dorsale_comments".* FROM "dorsale_comments" WHERE "dorsale_comments"."commentable_id" = ? AND "dorsale_comments"."commentable_type" = ? [["commentable_id", 1], ["commentable_type", "CustomerVault::Individual"]]
|
|
52990
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/dorsale-1.0.4/app/views/dorsale/comments/_comments.html.slim (0.7ms)
|
|
52991
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/dorsale-1.0.4/app/views/dorsale/comments/_form.html.slim (2.1ms)
|
|
52992
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_history_tab.html.slim (3.1ms)
|
|
52993
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_todos_tab.html.slim (0.0ms)
|
|
52994
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_contextual.html.slim (0.0ms)
|
|
52995
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_show.html.slim (10.0ms)
|
|
52996
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/individuals/show.html.slim within layouts/application (10.1ms)
|
|
52997
|
+
Completed 200 OK in 12ms (Views: 10.3ms | ActiveRecord: 0.7ms)
|
|
52998
|
+
Started GET "/customer_vault/individuals/1/links/1/edit" for 127.0.0.1 at 2015-03-30 17:59:37 +0200
|
|
52999
|
+
Processing by CustomerVault::LinksController#edit as HTML
|
|
53000
|
+
Parameters: {"individual_id"=>"1", "id"=>"1"}
|
|
53001
|
+
[1m[36mCustomerVault::Individual Load (0.1ms)[0m [1mSELECT "customer_vault_individuals".* FROM "customer_vault_individuals" WHERE "customer_vault_individuals"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
53002
|
+
[1m[35mCustomerVault::Link Load (0.1ms)[0m SELECT "customer_vault_links".* FROM "customer_vault_links" WHERE "customer_vault_links"."id" = ? LIMIT 1 [["id", "1"]]
|
|
53003
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_actions.html.slim (0.2ms)
|
|
53004
|
+
[1m[36mDorsale::Address Load (0.2ms)[0m [1mSELECT "dorsale_addresses".* FROM "dorsale_addresses" WHERE "dorsale_addresses"."addressable_id" = ? AND "dorsale_addresses"."addressable_type" = ? LIMIT 1[0m [["addressable_id", 1], ["addressable_type", "CustomerVault::Individual"]]
|
|
53005
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/individuals/_show_details.html.slim (2.2ms)
|
|
53006
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_show_details.html.slim (2.4ms)
|
|
53007
|
+
[1m[35mCustomerVault::Corporation Load (0.1ms)[0m SELECT "customer_vault_corporations".* FROM "customer_vault_corporations" WHERE "customer_vault_corporations"."id" = ? LIMIT 1 [["id", 1]]
|
|
53008
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_contextual.html.slim (0.1ms)
|
|
53009
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/links/edit.html.slim within layouts/application (13.1ms)
|
|
53010
|
+
Completed 200 OK in 19ms (Views: 17.1ms | ActiveRecord: 0.5ms)
|
|
53011
|
+
Started PATCH "/customer_vault/individuals/1/links/1" for 127.0.0.1 at 2015-03-30 17:59:37 +0200
|
|
53012
|
+
Processing by CustomerVault::LinksController#update as HTML
|
|
53013
|
+
Parameters: {"utf8"=>"✓", "link"=>{"title"=>"Manager 2"}, "individual_id"=>"1", "id"=>"1"}
|
|
53014
|
+
[1m[36mCustomerVault::Individual Load (0.1ms)[0m [1mSELECT "customer_vault_individuals".* FROM "customer_vault_individuals" WHERE "customer_vault_individuals"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
53015
|
+
[1m[35mCustomerVault::Link Load (0.1ms)[0m SELECT "customer_vault_links".* FROM "customer_vault_links" WHERE "customer_vault_links"."id" = ? LIMIT 1 [["id", "1"]]
|
|
53016
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
53017
|
+
[1m[35mSQL (0.5ms)[0m UPDATE "customer_vault_links" SET "title" = ?, "updated_at" = ? WHERE "customer_vault_links"."id" = 1 [["title", "Manager 2"], ["updated_at", Mon, 30 Mar 2015 15:59:37 UTC +00:00]]
|
|
53018
|
+
[1m[36m (1.5ms)[0m [1mcommit transaction[0m
|
|
53019
|
+
Redirected to http://127.0.0.1:56902/customer_vault/individuals/1
|
|
53020
|
+
Completed 302 Found in 7ms (ActiveRecord: 2.3ms)
|
|
53021
|
+
Started GET "/customer_vault/individuals/1" for 127.0.0.1 at 2015-03-30 17:59:37 +0200
|
|
53022
|
+
Processing by CustomerVault::IndividualsController#show as HTML
|
|
53023
|
+
Parameters: {"id"=>"1"}
|
|
53024
|
+
[1m[35mCustomerVault::Individual Load (0.1ms)[0m SELECT "customer_vault_individuals".* FROM "customer_vault_individuals" WHERE "customer_vault_individuals"."id" = ? LIMIT 1 [["id", "1"]]
|
|
53025
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_actions.html.slim (0.2ms)
|
|
53026
|
+
[1m[36mDorsale::Address Load (0.1ms)[0m [1mSELECT "dorsale_addresses".* FROM "dorsale_addresses" WHERE "dorsale_addresses"."addressable_id" = ? AND "dorsale_addresses"."addressable_type" = ? LIMIT 1[0m [["addressable_id", 1], ["addressable_type", "CustomerVault::Individual"]]
|
|
53027
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/individuals/_show_details.html.slim (2.2ms)
|
|
53028
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_show_details.html.slim (2.4ms)
|
|
53029
|
+
[1m[35mCustomerVault::Link Load (0.1ms)[0m SELECT "customer_vault_links".* FROM "customer_vault_links" WHERE "customer_vault_links"."alice_id" = 1 AND "customer_vault_links"."alice_type" = 'CustomerVault::Individual'
|
|
53030
|
+
[1m[36mCustomerVault::Corporation Load (0.1ms)[0m [1mSELECT "customer_vault_corporations".* FROM "customer_vault_corporations" WHERE "customer_vault_corporations"."id" = ? LIMIT 1[0m [["id", 1]]
|
|
53031
|
+
[1m[35mCustomerVault::Link Load (0.1ms)[0m SELECT "customer_vault_links".* FROM "customer_vault_links" WHERE "customer_vault_links"."bob_id" = 1 AND "customer_vault_links"."bob_type" = 'CustomerVault::Individual'
|
|
53032
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/links/_title.html.slim (0.5ms)
|
|
53033
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/_list_details.html.slim (1.1ms)
|
|
53034
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_links_tab.html.slim (3.1ms)
|
|
53035
|
+
[1m[36mDorsale::Comment Load (0.1ms)[0m [1mSELECT "dorsale_comments".* FROM "dorsale_comments" WHERE "dorsale_comments"."commentable_id" = ? AND "dorsale_comments"."commentable_type" = ?[0m [["commentable_id", 1], ["commentable_type", "CustomerVault::Individual"]]
|
|
53036
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/dorsale-1.0.4/app/views/dorsale/comments/_comments.html.slim (0.7ms)
|
|
53037
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/dorsale-1.0.4/app/views/dorsale/comments/_form.html.slim (2.2ms)
|
|
53038
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_history_tab.html.slim (3.1ms)
|
|
53039
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_todos_tab.html.slim (0.0ms)
|
|
53040
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_contextual.html.slim (0.0ms)
|
|
53041
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_show.html.slim (9.8ms)
|
|
53042
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/individuals/show.html.slim within layouts/application (10.0ms)
|
|
53043
|
+
Completed 200 OK in 12ms (Views: 10.2ms | ActiveRecord: 0.7ms)
|
|
53044
|
+
[1m[35m (1.6ms)[0m DELETE FROM "dorsale_addresses";
|
|
53045
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
|
53046
|
+
[1m[35m (0.8ms)[0m DELETE FROM sqlite_sequence where name = 'dorsale_addresses';
|
|
53047
|
+
[1m[36m (0.8ms)[0m [1mDELETE FROM "customer_vault_individuals";[0m
|
|
53048
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
|
53049
|
+
[1m[36m (0.9ms)[0m [1mDELETE FROM sqlite_sequence where name = 'customer_vault_individuals';[0m
|
|
53050
|
+
[1m[35m (0.7ms)[0m DELETE FROM "customer_vault_corporations";
|
|
53051
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
|
53052
|
+
[1m[35m (0.9ms)[0m DELETE FROM sqlite_sequence where name = 'customer_vault_corporations';
|
|
53053
|
+
[1m[36m (0.8ms)[0m [1mDELETE FROM "customer_vault_links";[0m
|
|
53054
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
|
53055
|
+
[1m[36m (0.9ms)[0m [1mDELETE FROM sqlite_sequence where name = 'customer_vault_links';[0m
|
|
53056
|
+
[1m[35m (0.7ms)[0m DELETE FROM "dorsale_comments";
|
|
53057
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
|
53058
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'dorsale_comments';
|
|
53059
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
53060
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "dorsale_addresses" ("city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?) [["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:37 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", "L'atelier"], ["updated_at", Mon, 30 Mar 2015 15:59:37 UTC +00:00], ["zip", "13004"]]
|
|
53061
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
|
53062
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
53063
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "customer_vault_individuals" ("context", "created_at", "email", "fax", "first_name", "last_name", "mobile", "phone", "title", "twitter", "updated_at", "www") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["context", "MyText"], ["created_at", Mon, 30 Mar 2015 15:59:37 UTC +00:00], ["email", "MyString"], ["fax", "MyString"], ["first_name", "MyString"], ["last_name", "MyString"], ["mobile", "MyString"], ["phone", "MyString"], ["title", "MyString"], ["twitter", "MyString"], ["updated_at", Mon, 30 Mar 2015 15:59:37 UTC +00:00], ["www", "MyString"]]
|
|
53064
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "dorsale_addresses" SET "addressable_type" = ?, "addressable_id" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 1 [["addressable_type", "CustomerVault::Individual"], ["addressable_id", 1], ["updated_at", Mon, 30 Mar 2015 15:59:37 UTC +00:00]]
|
|
53065
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
|
53066
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
53067
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "dorsale_addresses" ("city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:37 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", "L'atelier"], ["updated_at", Mon, 30 Mar 2015 15:59:37 UTC +00:00], ["zip", "13004"]]
|
|
53068
|
+
[1m[35m (0.7ms)[0m commit transaction
|
|
53069
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
53070
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "customer_vault_corporations" ("created_at", "email", "fax", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 30 Mar 2015 15:59:37 UTC +00:00], ["email", "karen@heathcotekunze.biz"], ["fax", "09xxxxxxx"], ["name", "Kuhn Corp"], ["phone", "06xxxxxxxx"], ["updated_at", Mon, 30 Mar 2015 15:59:37 UTC +00:00]]
|
|
53071
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "dorsale_addresses" SET "addressable_type" = ?, "addressable_id" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 2[0m [["addressable_type", "CustomerVault::Corporation"], ["addressable_id", 1], ["updated_at", Mon, 30 Mar 2015 15:59:37 UTC +00:00]]
|
|
53072
|
+
[1m[35m (0.7ms)[0m commit transaction
|
|
53073
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
53074
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "customer_vault_links" ("alice_id", "alice_type", "bob_id", "bob_type", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["alice_id", 1], ["alice_type", "CustomerVault::Individual"], ["bob_id", 1], ["bob_type", "CustomerVault::Corporation"], ["created_at", Mon, 30 Mar 2015 15:59:37 UTC +00:00], ["title", "Manager"], ["updated_at", Mon, 30 Mar 2015 15:59:37 UTC +00:00]]
|
|
53075
|
+
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
|
|
53076
|
+
Started GET "/customer_vault/individuals/1" for 127.0.0.1 at 2015-03-30 17:59:37 +0200
|
|
53077
|
+
Processing by CustomerVault::IndividualsController#show as HTML
|
|
53078
|
+
Parameters: {"id"=>"1"}
|
|
53079
|
+
[1m[35mCustomerVault::Individual Load (0.2ms)[0m SELECT "customer_vault_individuals".* FROM "customer_vault_individuals" WHERE "customer_vault_individuals"."id" = ? LIMIT 1 [["id", "1"]]
|
|
53080
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_actions.html.slim (0.2ms)
|
|
53081
|
+
[1m[36mDorsale::Address Load (0.2ms)[0m [1mSELECT "dorsale_addresses".* FROM "dorsale_addresses" WHERE "dorsale_addresses"."addressable_id" = ? AND "dorsale_addresses"."addressable_type" = ? LIMIT 1[0m [["addressable_id", 1], ["addressable_type", "CustomerVault::Individual"]]
|
|
53082
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/individuals/_show_details.html.slim (2.0ms)
|
|
53083
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_show_details.html.slim (2.2ms)
|
|
53084
|
+
[1m[35mCustomerVault::Link Load (0.2ms)[0m SELECT "customer_vault_links".* FROM "customer_vault_links" WHERE "customer_vault_links"."alice_id" = 1 AND "customer_vault_links"."alice_type" = 'CustomerVault::Individual'
|
|
53085
|
+
[1m[36mCustomerVault::Corporation Load (0.1ms)[0m [1mSELECT "customer_vault_corporations".* FROM "customer_vault_corporations" WHERE "customer_vault_corporations"."id" = ? LIMIT 1[0m [["id", 1]]
|
|
53086
|
+
[1m[35mCustomerVault::Link Load (0.2ms)[0m SELECT "customer_vault_links".* FROM "customer_vault_links" WHERE "customer_vault_links"."bob_id" = 1 AND "customer_vault_links"."bob_type" = 'CustomerVault::Individual'
|
|
53087
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/links/_title.html.slim (0.6ms)
|
|
53088
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/_list_details.html.slim (1.4ms)
|
|
53089
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_links_tab.html.slim (4.2ms)
|
|
53090
|
+
[1m[36mDorsale::Comment Load (0.1ms)[0m [1mSELECT "dorsale_comments".* FROM "dorsale_comments" WHERE "dorsale_comments"."commentable_id" = ? AND "dorsale_comments"."commentable_type" = ?[0m [["commentable_id", 1], ["commentable_type", "CustomerVault::Individual"]]
|
|
53091
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/dorsale-1.0.4/app/views/dorsale/comments/_comments.html.slim (1.0ms)
|
|
53092
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/dorsale-1.0.4/app/views/dorsale/comments/_form.html.slim (2.5ms)
|
|
53093
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_history_tab.html.slim (3.8ms)
|
|
53094
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_todos_tab.html.slim (0.0ms)
|
|
53095
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_contextual.html.slim (0.1ms)
|
|
53096
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_show.html.slim (11.5ms)
|
|
53097
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/individuals/show.html.slim within layouts/application (11.7ms)
|
|
53098
|
+
Completed 200 OK in 14ms (Views: 11.7ms | ActiveRecord: 1.0ms)
|
|
53099
|
+
Started DELETE "/customer_vault/individuals/1/links/1" for 127.0.0.1 at 2015-03-30 17:59:39 +0200
|
|
53100
|
+
Processing by CustomerVault::LinksController#destroy as HTML
|
|
53101
|
+
Parameters: {"individual_id"=>"1", "id"=>"1"}
|
|
53102
|
+
[1m[35mCustomerVault::Individual Load (0.2ms)[0m SELECT "customer_vault_individuals".* FROM "customer_vault_individuals" WHERE "customer_vault_individuals"."id" = ? LIMIT 1 [["id", "1"]]
|
|
53103
|
+
[1m[36mCustomerVault::Link Load (0.2ms)[0m [1mSELECT "customer_vault_links".* FROM "customer_vault_links" WHERE "customer_vault_links"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
53104
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
53105
|
+
[1m[36mSQL (1.0ms)[0m [1mDELETE FROM "customer_vault_links" WHERE "customer_vault_links"."id" = ?[0m [["id", 1]]
|
|
53106
|
+
[1m[35m (1.8ms)[0m commit transaction
|
|
53107
|
+
Redirected to http://127.0.0.1:56902/customer_vault/individuals/1
|
|
53108
|
+
Completed 302 Found in 7ms (ActiveRecord: 3.2ms)
|
|
53109
|
+
Started GET "/customer_vault/individuals/1" for 127.0.0.1 at 2015-03-30 17:59:39 +0200
|
|
53110
|
+
Processing by CustomerVault::IndividualsController#show as HTML
|
|
53111
|
+
Parameters: {"id"=>"1"}
|
|
53112
|
+
[1m[36mCustomerVault::Individual Load (0.2ms)[0m [1mSELECT "customer_vault_individuals".* FROM "customer_vault_individuals" WHERE "customer_vault_individuals"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
53113
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_actions.html.slim (0.4ms)
|
|
53114
|
+
[1m[35mDorsale::Address Load (0.5ms)[0m SELECT "dorsale_addresses".* FROM "dorsale_addresses" WHERE "dorsale_addresses"."addressable_id" = ? AND "dorsale_addresses"."addressable_type" = ? LIMIT 1 [["addressable_id", 1], ["addressable_type", "CustomerVault::Individual"]]
|
|
53115
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/individuals/_show_details.html.slim (3.7ms)
|
|
53116
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_show_details.html.slim (4.1ms)
|
|
53117
|
+
[1m[36mCustomerVault::Link Load (0.3ms)[0m [1mSELECT "customer_vault_links".* FROM "customer_vault_links" WHERE "customer_vault_links"."alice_id" = 1 AND "customer_vault_links"."alice_type" = 'CustomerVault::Individual'[0m
|
|
53118
|
+
[1m[35mCustomerVault::Link Load (0.2ms)[0m SELECT "customer_vault_links".* FROM "customer_vault_links" WHERE "customer_vault_links"."bob_id" = 1 AND "customer_vault_links"."bob_type" = 'CustomerVault::Individual'
|
|
53119
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_links_tab.html.slim (3.0ms)
|
|
53120
|
+
[1m[36mDorsale::Comment Load (0.3ms)[0m [1mSELECT "dorsale_comments".* FROM "dorsale_comments" WHERE "dorsale_comments"."commentable_id" = ? AND "dorsale_comments"."commentable_type" = ?[0m [["commentable_id", 1], ["commentable_type", "CustomerVault::Individual"]]
|
|
53121
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/dorsale-1.0.4/app/views/dorsale/comments/_comments.html.slim (1.9ms)
|
|
53122
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/dorsale-1.0.4/app/views/dorsale/comments/_form.html.slim (101.1ms)
|
|
53123
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_history_tab.html.slim (103.8ms)
|
|
53124
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_todos_tab.html.slim (0.1ms)
|
|
53125
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_contextual.html.slim (0.1ms)
|
|
53126
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_show.html.slim (113.3ms)
|
|
53127
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/individuals/show.html.slim within layouts/application (113.6ms)
|
|
53128
|
+
Completed 200 OK in 116ms (Views: 113.3ms | ActiveRecord: 1.5ms)
|
|
53129
|
+
[1m[35m (2.8ms)[0m DELETE FROM "dorsale_addresses";
|
|
53130
|
+
[1m[36m (0.6ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
|
53131
|
+
[1m[35m (1.3ms)[0m DELETE FROM sqlite_sequence where name = 'dorsale_addresses';
|
|
53132
|
+
[1m[36m (0.7ms)[0m [1mDELETE FROM "customer_vault_individuals";[0m
|
|
53133
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
|
53134
|
+
[1m[36m (0.7ms)[0m [1mDELETE FROM sqlite_sequence where name = 'customer_vault_individuals';[0m
|
|
53135
|
+
[1m[35m (0.7ms)[0m DELETE FROM "customer_vault_corporations";
|
|
53136
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
|
53137
|
+
[1m[35m (0.9ms)[0m DELETE FROM sqlite_sequence where name = 'customer_vault_corporations';
|
|
53138
|
+
[1m[36m (1.0ms)[0m [1mDELETE FROM "customer_vault_links";[0m
|
|
53139
|
+
[1m[35m (0.3ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
|
53140
|
+
[1m[36m (1.0ms)[0m [1mDELETE FROM sqlite_sequence where name = 'customer_vault_links';[0m
|
|
53141
|
+
[1m[35m (0.8ms)[0m DELETE FROM "dorsale_comments";
|
|
53142
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
|
53143
|
+
[1m[35m (0.2ms)[0m DELETE FROM sqlite_sequence where name = 'dorsale_comments';
|
|
53144
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
53145
|
+
[1m[35mSQL (1.4ms)[0m INSERT INTO "dorsale_addresses" ("city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?) [["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:39 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", "L'atelier"], ["updated_at", Mon, 30 Mar 2015 15:59:39 UTC +00:00], ["zip", "13004"]]
|
|
53146
|
+
[1m[36m (1.3ms)[0m [1mcommit transaction[0m
|
|
53147
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
53148
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "customer_vault_corporations" ("created_at", "email", "fax", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["created_at", Mon, 30 Mar 2015 15:59:39 UTC +00:00], ["email", "ezra.abshire@hudsondicki.name"], ["fax", "09xxxxxxx"], ["name", "Ratke Corp"], ["phone", "06xxxxxxxx"], ["updated_at", Mon, 30 Mar 2015 15:59:39 UTC +00:00]]
|
|
53149
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "dorsale_addresses" SET "addressable_type" = ?, "addressable_id" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 1 [["addressable_type", "CustomerVault::Corporation"], ["addressable_id", 1], ["updated_at", Mon, 30 Mar 2015 15:59:39 UTC +00:00]]
|
|
53150
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
|
53151
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
53152
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "dorsale_addresses" ("city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:39 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", "L'atelier"], ["updated_at", Mon, 30 Mar 2015 15:59:39 UTC +00:00], ["zip", "13004"]]
|
|
53153
|
+
[1m[35m (0.8ms)[0m commit transaction
|
|
53154
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
53155
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "customer_vault_individuals" ("context", "created_at", "email", "fax", "first_name", "last_name", "mobile", "phone", "title", "twitter", "updated_at", "www") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["context", "MyText"], ["created_at", Mon, 30 Mar 2015 15:59:39 UTC +00:00], ["email", "MyString"], ["fax", "MyString"], ["first_name", "MyString"], ["last_name", "MyString"], ["mobile", "MyString"], ["phone", "MyString"], ["title", "MyString"], ["twitter", "MyString"], ["updated_at", Mon, 30 Mar 2015 15:59:39 UTC +00:00], ["www", "MyString"]]
|
|
53156
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "dorsale_addresses" SET "addressable_type" = ?, "addressable_id" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 2[0m [["addressable_type", "CustomerVault::Individual"], ["addressable_id", 1], ["updated_at", Mon, 30 Mar 2015 15:59:39 UTC +00:00]]
|
|
53157
|
+
[1m[35m (0.9ms)[0m commit transaction
|
|
53158
|
+
Started GET "/customer_vault/corporations/1" for 127.0.0.1 at 2015-03-30 17:59:39 +0200
|
|
53159
|
+
Processing by CustomerVault::CorporationsController#show as HTML
|
|
53160
|
+
Parameters: {"id"=>"1"}
|
|
53161
|
+
[1m[36mCustomerVault::Corporation Load (0.2ms)[0m [1mSELECT "customer_vault_corporations".* FROM "customer_vault_corporations" WHERE "customer_vault_corporations"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
53162
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_actions.html.slim (0.2ms)
|
|
53163
|
+
[1m[35mDorsale::Address Load (0.1ms)[0m SELECT "dorsale_addresses".* FROM "dorsale_addresses" WHERE "dorsale_addresses"."addressable_id" = ? AND "dorsale_addresses"."addressable_type" = ? LIMIT 1 [["addressable_id", 1], ["addressable_type", "CustomerVault::Corporation"]]
|
|
53164
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/_show_details.html.slim (1.7ms)
|
|
53165
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_show_details.html.slim (1.9ms)
|
|
53166
|
+
[1m[36mCustomerVault::Link Load (0.2ms)[0m [1mSELECT "customer_vault_links".* FROM "customer_vault_links" WHERE "customer_vault_links"."alice_id" = 1 AND "customer_vault_links"."alice_type" = 'CustomerVault::Corporation'[0m
|
|
53167
|
+
[1m[35mCustomerVault::Link Load (0.1ms)[0m SELECT "customer_vault_links".* FROM "customer_vault_links" WHERE "customer_vault_links"."bob_id" = 1 AND "customer_vault_links"."bob_type" = 'CustomerVault::Corporation'
|
|
53168
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_links_tab.html.slim (1.4ms)
|
|
53169
|
+
[1m[36mDorsale::Comment Load (0.1ms)[0m [1mSELECT "dorsale_comments".* FROM "dorsale_comments" WHERE "dorsale_comments"."commentable_id" = ? AND "dorsale_comments"."commentable_type" = ?[0m [["commentable_id", 1], ["commentable_type", "CustomerVault::Corporation"]]
|
|
53170
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/dorsale-1.0.4/app/views/dorsale/comments/_comments.html.slim (0.8ms)
|
|
53171
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/dorsale-1.0.4/app/views/dorsale/comments/_form.html.slim (2.4ms)
|
|
53172
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_history_tab.html.slim (3.5ms)
|
|
53173
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_todos_tab.html.slim (0.0ms)
|
|
53174
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_contextual.html.slim (0.1ms)
|
|
53175
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_show.html.slim (7.9ms)
|
|
53176
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/show.html.slim within layouts/application (8.1ms)
|
|
53177
|
+
Completed 200 OK in 10ms (Views: 8.4ms | ActiveRecord: 0.7ms)
|
|
53178
|
+
Started GET "/customer_vault/individuals/1/links/new" for 127.0.0.1 at 2015-03-30 17:59:41 +0200
|
|
53179
|
+
Processing by CustomerVault::LinksController#new as HTML
|
|
53180
|
+
Parameters: {"individual_id"=>"1"}
|
|
53181
|
+
[1m[35mCustomerVault::Individual Load (0.2ms)[0m SELECT "customer_vault_individuals".* FROM "customer_vault_individuals" WHERE "customer_vault_individuals"."id" = ? LIMIT 1 [["id", "1"]]
|
|
53182
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_actions.html.slim (0.2ms)
|
|
53183
|
+
[1m[36mDorsale::Address Load (0.1ms)[0m [1mSELECT "dorsale_addresses".* FROM "dorsale_addresses" WHERE "dorsale_addresses"."addressable_id" = ? AND "dorsale_addresses"."addressable_type" = ? LIMIT 1[0m [["addressable_id", 1], ["addressable_type", "CustomerVault::Individual"]]
|
|
53184
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/individuals/_show_details.html.slim (1.6ms)
|
|
53185
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_show_details.html.slim (1.8ms)
|
|
53186
|
+
[1m[35mCustomerVault::Individual Load (0.1ms)[0m SELECT "customer_vault_individuals".* FROM "customer_vault_individuals"
|
|
53187
|
+
[1m[36mCustomerVault::Corporation Load (0.1ms)[0m [1mSELECT "customer_vault_corporations".* FROM "customer_vault_corporations"[0m
|
|
53188
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_contextual.html.slim (0.1ms)
|
|
53189
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/links/new.html.slim within layouts/application (7.5ms)
|
|
53190
|
+
Completed 200 OK in 10ms (Views: 8.2ms | ActiveRecord: 0.5ms)
|
|
53191
|
+
Started POST "/customer_vault/individuals/1/links" for 127.0.0.1 at 2015-03-30 17:59:41 +0200
|
|
53192
|
+
Processing by CustomerVault::LinksController#create as HTML
|
|
53193
|
+
Parameters: {"utf8"=>"✓", "link"=>{"bob"=>"CustomerVault::Individual-1", "title"=>"Manager"}, "individual_id"=>"1"}
|
|
53194
|
+
[1m[35mCustomerVault::Individual Load (0.1ms)[0m SELECT "customer_vault_individuals".* FROM "customer_vault_individuals" WHERE "customer_vault_individuals"."id" = ? LIMIT 1 [["id", "1"]]
|
|
53195
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
53196
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "customer_vault_links" ("alice_id", "alice_type", "bob_id", "bob_type", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["alice_id", 1], ["alice_type", "CustomerVault::Individual"], ["bob_id", 1], ["bob_type", "CustomerVault::Individual"], ["created_at", Mon, 30 Mar 2015 15:59:41 UTC +00:00], ["title", "Manager"], ["updated_at", Mon, 30 Mar 2015 15:59:41 UTC +00:00]]
|
|
53197
|
+
[1m[36m (2.5ms)[0m [1mcommit transaction[0m
|
|
53198
|
+
Redirected to http://127.0.0.1:56902/customer_vault/individuals/1
|
|
53199
|
+
Completed 302 Found in 7ms (ActiveRecord: 3.3ms)
|
|
53200
|
+
Started GET "/customer_vault/individuals/1" for 127.0.0.1 at 2015-03-30 17:59:41 +0200
|
|
53201
|
+
Processing by CustomerVault::IndividualsController#show as HTML
|
|
53202
|
+
Parameters: {"id"=>"1"}
|
|
53203
|
+
[1m[35mCustomerVault::Individual Load (0.2ms)[0m SELECT "customer_vault_individuals".* FROM "customer_vault_individuals" WHERE "customer_vault_individuals"."id" = ? LIMIT 1 [["id", "1"]]
|
|
53204
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_actions.html.slim (0.2ms)
|
|
53205
|
+
[1m[36mDorsale::Address Load (0.1ms)[0m [1mSELECT "dorsale_addresses".* FROM "dorsale_addresses" WHERE "dorsale_addresses"."addressable_id" = ? AND "dorsale_addresses"."addressable_type" = ? LIMIT 1[0m [["addressable_id", 1], ["addressable_type", "CustomerVault::Individual"]]
|
|
53206
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/individuals/_show_details.html.slim (1.9ms)
|
|
53207
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_show_details.html.slim (2.1ms)
|
|
53208
|
+
[1m[35mCustomerVault::Link Load (0.2ms)[0m SELECT "customer_vault_links".* FROM "customer_vault_links" WHERE "customer_vault_links"."alice_id" = 1 AND "customer_vault_links"."alice_type" = 'CustomerVault::Individual'
|
|
53209
|
+
[1m[36mCustomerVault::Individual Load (0.1ms)[0m [1mSELECT "customer_vault_individuals".* FROM "customer_vault_individuals" WHERE "customer_vault_individuals"."id" = ? LIMIT 1[0m [["id", 1]]
|
|
53210
|
+
[1m[35mCustomerVault::Link Load (0.1ms)[0m SELECT "customer_vault_links".* FROM "customer_vault_links" WHERE "customer_vault_links"."bob_id" = 1 AND "customer_vault_links"."bob_type" = 'CustomerVault::Individual'
|
|
53211
|
+
[1m[36mCACHE (0.0ms)[0m [1mSELECT "customer_vault_individuals".* FROM "customer_vault_individuals" WHERE "customer_vault_individuals"."id" = ? LIMIT 1[0m [["id", 1]]
|
|
53212
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/links/_title.html.slim (0.6ms)
|
|
53213
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/individuals/_list_details.html.slim (6.0ms)
|
|
53214
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/links/_title.html.slim (0.5ms)
|
|
53215
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/individuals/_list_details.html.slim (0.9ms)
|
|
53216
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_links_tab.html.slim (12.1ms)
|
|
53217
|
+
[1m[35mDorsale::Comment Load (0.1ms)[0m SELECT "dorsale_comments".* FROM "dorsale_comments" WHERE "dorsale_comments"."commentable_id" = ? AND "dorsale_comments"."commentable_type" = ? [["commentable_id", 1], ["commentable_type", "CustomerVault::Individual"]]
|
|
53218
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/dorsale-1.0.4/app/views/dorsale/comments/_comments.html.slim (1.0ms)
|
|
53219
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/dorsale-1.0.4/app/views/dorsale/comments/_form.html.slim (2.2ms)
|
|
53220
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_history_tab.html.slim (3.5ms)
|
|
53221
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_todos_tab.html.slim (0.0ms)
|
|
53222
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_contextual.html.slim (0.0ms)
|
|
53223
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_show.html.slim (18.9ms)
|
|
53224
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/individuals/show.html.slim within layouts/application (19.1ms)
|
|
53225
|
+
Completed 200 OK in 21ms (Views: 19.4ms | ActiveRecord: 0.9ms)
|
|
53226
|
+
[1m[36m (1.3ms)[0m [1mDELETE FROM "dorsale_addresses";[0m
|
|
53227
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
|
53228
|
+
[1m[36m (0.9ms)[0m [1mDELETE FROM sqlite_sequence where name = 'dorsale_addresses';[0m
|
|
53229
|
+
[1m[35m (0.7ms)[0m DELETE FROM "customer_vault_individuals";
|
|
53230
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
|
53231
|
+
[1m[35m (0.8ms)[0m DELETE FROM sqlite_sequence where name = 'customer_vault_individuals';
|
|
53232
|
+
[1m[36m (0.7ms)[0m [1mDELETE FROM "customer_vault_corporations";[0m
|
|
53233
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
|
53234
|
+
[1m[36m (0.9ms)[0m [1mDELETE FROM sqlite_sequence where name = 'customer_vault_corporations';[0m
|
|
53235
|
+
[1m[35m (0.8ms)[0m DELETE FROM "customer_vault_links";
|
|
53236
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
|
53237
|
+
[1m[35m (0.9ms)[0m DELETE FROM sqlite_sequence where name = 'customer_vault_links';
|
|
53238
|
+
[1m[36m (0.7ms)[0m [1mDELETE FROM "dorsale_comments";[0m
|
|
53239
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
|
53240
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'dorsale_comments';[0m
|
|
53241
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
53242
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "dorsale_addresses" ("city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:41 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", "L'atelier"], ["updated_at", Mon, 30 Mar 2015 15:59:41 UTC +00:00], ["zip", "13004"]]
|
|
53243
|
+
[1m[35m (0.8ms)[0m commit transaction
|
|
53244
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
53245
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "customer_vault_individuals" ("context", "created_at", "email", "fax", "first_name", "last_name", "mobile", "phone", "title", "twitter", "updated_at", "www") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["context", "MyText"], ["created_at", Mon, 30 Mar 2015 15:59:41 UTC +00:00], ["email", "MyString"], ["fax", "MyString"], ["first_name", "MyString"], ["last_name", "MyString"], ["mobile", "MyString"], ["phone", "MyString"], ["title", "MyString"], ["twitter", "MyString"], ["updated_at", Mon, 30 Mar 2015 15:59:41 UTC +00:00], ["www", "MyString"]]
|
|
53246
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "dorsale_addresses" SET "addressable_type" = ?, "addressable_id" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 1[0m [["addressable_type", "CustomerVault::Individual"], ["addressable_id", 1], ["updated_at", Mon, 30 Mar 2015 15:59:41 UTC +00:00]]
|
|
53247
|
+
[1m[35m (0.8ms)[0m commit transaction
|
|
53248
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
53249
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "dorsale_addresses" ("city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?) [["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:41 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", "L'atelier"], ["updated_at", Mon, 30 Mar 2015 15:59:41 UTC +00:00], ["zip", "13004"]]
|
|
53250
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
|
53251
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
53252
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "customer_vault_corporations" ("created_at", "email", "fax", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["created_at", Mon, 30 Mar 2015 15:59:41 UTC +00:00], ["email", "amie.kertzmann@roob.org"], ["fax", "09xxxxxxx"], ["name", "Bartell Corp"], ["phone", "06xxxxxxxx"], ["updated_at", Mon, 30 Mar 2015 15:59:41 UTC +00:00]]
|
|
53253
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "dorsale_addresses" SET "addressable_type" = ?, "addressable_id" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 2 [["addressable_type", "CustomerVault::Corporation"], ["addressable_id", 1], ["updated_at", Mon, 30 Mar 2015 15:59:41 UTC +00:00]]
|
|
53254
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
|
53255
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
53256
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "customer_vault_links" ("alice_id", "alice_type", "bob_id", "bob_type", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["alice_id", 1], ["alice_type", "CustomerVault::Individual"], ["bob_id", 1], ["bob_type", "CustomerVault::Corporation"], ["created_at", Mon, 30 Mar 2015 15:59:41 UTC +00:00], ["title", "Manager"], ["updated_at", Mon, 30 Mar 2015 15:59:41 UTC +00:00]]
|
|
53257
|
+
[1m[35m (0.7ms)[0m commit transaction
|
|
53258
|
+
Started GET "/customer_vault/corporations/1" for 127.0.0.1 at 2015-03-30 17:59:41 +0200
|
|
53259
|
+
Processing by CustomerVault::CorporationsController#show as HTML
|
|
53260
|
+
Parameters: {"id"=>"1"}
|
|
53261
|
+
[1m[36mCustomerVault::Corporation Load (0.2ms)[0m [1mSELECT "customer_vault_corporations".* FROM "customer_vault_corporations" WHERE "customer_vault_corporations"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
53262
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_actions.html.slim (0.2ms)
|
|
53263
|
+
[1m[35mDorsale::Address Load (0.2ms)[0m SELECT "dorsale_addresses".* FROM "dorsale_addresses" WHERE "dorsale_addresses"."addressable_id" = ? AND "dorsale_addresses"."addressable_type" = ? LIMIT 1 [["addressable_id", 1], ["addressable_type", "CustomerVault::Corporation"]]
|
|
53264
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/_show_details.html.slim (2.0ms)
|
|
53265
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_show_details.html.slim (2.1ms)
|
|
53266
|
+
[1m[36mCustomerVault::Link Load (0.1ms)[0m [1mSELECT "customer_vault_links".* FROM "customer_vault_links" WHERE "customer_vault_links"."alice_id" = 1 AND "customer_vault_links"."alice_type" = 'CustomerVault::Corporation'[0m
|
|
53267
|
+
[1m[35mCustomerVault::Link Load (0.1ms)[0m SELECT "customer_vault_links".* FROM "customer_vault_links" WHERE "customer_vault_links"."bob_id" = 1 AND "customer_vault_links"."bob_type" = 'CustomerVault::Corporation'
|
|
53268
|
+
[1m[36mCustomerVault::Individual Load (0.1ms)[0m [1mSELECT "customer_vault_individuals".* FROM "customer_vault_individuals" WHERE "customer_vault_individuals"."id" = ? LIMIT 1[0m [["id", 1]]
|
|
53269
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/links/_title.html.slim (0.9ms)
|
|
53270
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/individuals/_list_details.html.slim (1.6ms)
|
|
53271
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_links_tab.html.slim (3.6ms)
|
|
53272
|
+
[1m[35mDorsale::Comment Load (0.1ms)[0m SELECT "dorsale_comments".* FROM "dorsale_comments" WHERE "dorsale_comments"."commentable_id" = ? AND "dorsale_comments"."commentable_type" = ? [["commentable_id", 1], ["commentable_type", "CustomerVault::Corporation"]]
|
|
53273
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/dorsale-1.0.4/app/views/dorsale/comments/_comments.html.slim (0.9ms)
|
|
53274
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/dorsale-1.0.4/app/views/dorsale/comments/_form.html.slim (2.1ms)
|
|
53275
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_history_tab.html.slim (3.4ms)
|
|
53276
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_todos_tab.html.slim (0.0ms)
|
|
53277
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_contextual.html.slim (0.0ms)
|
|
53278
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_show.html.slim (10.1ms)
|
|
53279
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/show.html.slim within layouts/application (10.3ms)
|
|
53280
|
+
Completed 200 OK in 12ms (Views: 10.5ms | ActiveRecord: 0.7ms)
|
|
53281
|
+
Started GET "/customer_vault/corporations/1/links/1/edit" for 127.0.0.1 at 2015-03-30 17:59:43 +0200
|
|
53282
|
+
Processing by CustomerVault::LinksController#edit as HTML
|
|
53283
|
+
Parameters: {"corporation_id"=>"1", "id"=>"1"}
|
|
53284
|
+
[1m[36mCustomerVault::Corporation Load (0.1ms)[0m [1mSELECT "customer_vault_corporations".* FROM "customer_vault_corporations" WHERE "customer_vault_corporations"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
53285
|
+
[1m[35mCustomerVault::Link Load (0.1ms)[0m SELECT "customer_vault_links".* FROM "customer_vault_links" WHERE "customer_vault_links"."id" = ? LIMIT 1 [["id", "1"]]
|
|
53286
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_actions.html.slim (0.2ms)
|
|
53287
|
+
[1m[36mDorsale::Address Load (0.1ms)[0m [1mSELECT "dorsale_addresses".* FROM "dorsale_addresses" WHERE "dorsale_addresses"."addressable_id" = ? AND "dorsale_addresses"."addressable_type" = ? LIMIT 1[0m [["addressable_id", 1], ["addressable_type", "CustomerVault::Corporation"]]
|
|
53288
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/_show_details.html.slim (1.5ms)
|
|
53289
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_show_details.html.slim (1.6ms)
|
|
53290
|
+
[1m[35mCustomerVault::Individual Load (0.1ms)[0m SELECT "customer_vault_individuals".* FROM "customer_vault_individuals" WHERE "customer_vault_individuals"."id" = ? LIMIT 1 [["id", 1]]
|
|
53291
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_contextual.html.slim (0.1ms)
|
|
53292
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/links/edit.html.slim within layouts/application (6.0ms)
|
|
53293
|
+
Completed 200 OK in 8ms (Views: 6.5ms | ActiveRecord: 0.4ms)
|
|
53294
|
+
Started PATCH "/customer_vault/corporations/1/links/1" for 127.0.0.1 at 2015-03-30 17:59:43 +0200
|
|
53295
|
+
Processing by CustomerVault::LinksController#update as HTML
|
|
53296
|
+
Parameters: {"utf8"=>"✓", "link"=>{"title"=>"Manager 2"}, "corporation_id"=>"1", "id"=>"1"}
|
|
53297
|
+
[1m[36mCustomerVault::Corporation Load (0.1ms)[0m [1mSELECT "customer_vault_corporations".* FROM "customer_vault_corporations" WHERE "customer_vault_corporations"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
53298
|
+
[1m[35mCustomerVault::Link Load (0.1ms)[0m SELECT "customer_vault_links".* FROM "customer_vault_links" WHERE "customer_vault_links"."id" = ? LIMIT 1 [["id", "1"]]
|
|
53299
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
53300
|
+
[1m[35mSQL (0.4ms)[0m UPDATE "customer_vault_links" SET "title" = ?, "updated_at" = ? WHERE "customer_vault_links"."id" = 1 [["title", "Manager 2"], ["updated_at", Mon, 30 Mar 2015 15:59:43 UTC +00:00]]
|
|
53301
|
+
[1m[36m (2.4ms)[0m [1mcommit transaction[0m
|
|
53302
|
+
Redirected to http://127.0.0.1:56902/customer_vault/corporations/1
|
|
53303
|
+
Completed 302 Found in 7ms (ActiveRecord: 3.1ms)
|
|
53304
|
+
Started GET "/customer_vault/corporations/1" for 127.0.0.1 at 2015-03-30 17:59:43 +0200
|
|
53305
|
+
Processing by CustomerVault::CorporationsController#show as HTML
|
|
53306
|
+
Parameters: {"id"=>"1"}
|
|
53307
|
+
[1m[35mCustomerVault::Corporation Load (0.2ms)[0m SELECT "customer_vault_corporations".* FROM "customer_vault_corporations" WHERE "customer_vault_corporations"."id" = ? LIMIT 1 [["id", "1"]]
|
|
53308
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_actions.html.slim (0.2ms)
|
|
53309
|
+
[1m[36mDorsale::Address Load (0.1ms)[0m [1mSELECT "dorsale_addresses".* FROM "dorsale_addresses" WHERE "dorsale_addresses"."addressable_id" = ? AND "dorsale_addresses"."addressable_type" = ? LIMIT 1[0m [["addressable_id", 1], ["addressable_type", "CustomerVault::Corporation"]]
|
|
53310
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/_show_details.html.slim (1.8ms)
|
|
53311
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_show_details.html.slim (2.0ms)
|
|
53312
|
+
[1m[35mCustomerVault::Link Load (0.2ms)[0m SELECT "customer_vault_links".* FROM "customer_vault_links" WHERE "customer_vault_links"."alice_id" = 1 AND "customer_vault_links"."alice_type" = 'CustomerVault::Corporation'
|
|
53313
|
+
[1m[36mCustomerVault::Link Load (0.2ms)[0m [1mSELECT "customer_vault_links".* FROM "customer_vault_links" WHERE "customer_vault_links"."bob_id" = 1 AND "customer_vault_links"."bob_type" = 'CustomerVault::Corporation'[0m
|
|
53314
|
+
[1m[35mCustomerVault::Individual Load (0.1ms)[0m SELECT "customer_vault_individuals".* FROM "customer_vault_individuals" WHERE "customer_vault_individuals"."id" = ? LIMIT 1 [["id", 1]]
|
|
53315
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/links/_title.html.slim (0.6ms)
|
|
53316
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/individuals/_list_details.html.slim (1.3ms)
|
|
53317
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_links_tab.html.slim (4.2ms)
|
|
53318
|
+
[1m[36mDorsale::Comment Load (0.1ms)[0m [1mSELECT "dorsale_comments".* FROM "dorsale_comments" WHERE "dorsale_comments"."commentable_id" = ? AND "dorsale_comments"."commentable_type" = ?[0m [["commentable_id", 1], ["commentable_type", "CustomerVault::Corporation"]]
|
|
53319
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/dorsale-1.0.4/app/views/dorsale/comments/_comments.html.slim (0.8ms)
|
|
53320
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/dorsale-1.0.4/app/views/dorsale/comments/_form.html.slim (2.2ms)
|
|
53321
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_history_tab.html.slim (3.3ms)
|
|
53322
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_todos_tab.html.slim (0.0ms)
|
|
53323
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_contextual.html.slim (0.0ms)
|
|
53324
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_show.html.slim (10.6ms)
|
|
53325
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/show.html.slim within layouts/application (10.8ms)
|
|
53326
|
+
Completed 200 OK in 13ms (Views: 11.1ms | ActiveRecord: 0.8ms)
|
|
53327
|
+
[1m[35m (1.7ms)[0m DELETE FROM "dorsale_addresses";
|
|
53328
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
|
53329
|
+
[1m[35m (0.8ms)[0m DELETE FROM sqlite_sequence where name = 'dorsale_addresses';
|
|
53330
|
+
[1m[36m (0.8ms)[0m [1mDELETE FROM "customer_vault_individuals";[0m
|
|
53331
|
+
[1m[35m (0.2ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
|
53332
|
+
[1m[36m (0.9ms)[0m [1mDELETE FROM sqlite_sequence where name = 'customer_vault_individuals';[0m
|
|
53333
|
+
[1m[35m (0.9ms)[0m DELETE FROM "customer_vault_corporations";
|
|
53334
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
|
53335
|
+
[1m[35m (0.9ms)[0m DELETE FROM sqlite_sequence where name = 'customer_vault_corporations';
|
|
53336
|
+
[1m[36m (0.8ms)[0m [1mDELETE FROM "customer_vault_links";[0m
|
|
53337
|
+
[1m[35m (0.2ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
|
53338
|
+
[1m[36m (0.9ms)[0m [1mDELETE FROM sqlite_sequence where name = 'customer_vault_links';[0m
|
|
53339
|
+
[1m[35m (0.9ms)[0m DELETE FROM "dorsale_comments";
|
|
53340
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
|
53341
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'dorsale_comments';
|
|
53342
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
53343
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "dorsale_addresses" ("city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?) [["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:43 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", "L'atelier"], ["updated_at", Mon, 30 Mar 2015 15:59:43 UTC +00:00], ["zip", "13004"]]
|
|
53344
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
|
53345
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
53346
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "customer_vault_individuals" ("context", "created_at", "email", "fax", "first_name", "last_name", "mobile", "phone", "title", "twitter", "updated_at", "www") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["context", "MyText"], ["created_at", Mon, 30 Mar 2015 15:59:43 UTC +00:00], ["email", "MyString"], ["fax", "MyString"], ["first_name", "MyString"], ["last_name", "MyString"], ["mobile", "MyString"], ["phone", "MyString"], ["title", "MyString"], ["twitter", "MyString"], ["updated_at", Mon, 30 Mar 2015 15:59:43 UTC +00:00], ["www", "MyString"]]
|
|
53347
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "dorsale_addresses" SET "addressable_type" = ?, "addressable_id" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 1 [["addressable_type", "CustomerVault::Individual"], ["addressable_id", 1], ["updated_at", Mon, 30 Mar 2015 15:59:43 UTC +00:00]]
|
|
53348
|
+
[1m[36m (1.0ms)[0m [1mcommit transaction[0m
|
|
53349
|
+
[1m[35m (0.2ms)[0m begin transaction
|
|
53350
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "dorsale_addresses" ("city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:43 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", "L'atelier"], ["updated_at", Mon, 30 Mar 2015 15:59:43 UTC +00:00], ["zip", "13004"]]
|
|
53351
|
+
[1m[35m (1.0ms)[0m commit transaction
|
|
53352
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
53353
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "customer_vault_corporations" ("created_at", "email", "fax", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 30 Mar 2015 15:59:43 UTC +00:00], ["email", "theo_sipes@mills.org"], ["fax", "09xxxxxxx"], ["name", "Tremblay Corp"], ["phone", "06xxxxxxxx"], ["updated_at", Mon, 30 Mar 2015 15:59:43 UTC +00:00]]
|
|
53354
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "dorsale_addresses" SET "addressable_type" = ?, "addressable_id" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 2[0m [["addressable_type", "CustomerVault::Corporation"], ["addressable_id", 1], ["updated_at", Mon, 30 Mar 2015 15:59:43 UTC +00:00]]
|
|
53355
|
+
[1m[35m (0.8ms)[0m commit transaction
|
|
53356
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
53357
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "customer_vault_links" ("alice_id", "alice_type", "bob_id", "bob_type", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["alice_id", 1], ["alice_type", "CustomerVault::Individual"], ["bob_id", 1], ["bob_type", "CustomerVault::Corporation"], ["created_at", Mon, 30 Mar 2015 15:59:43 UTC +00:00], ["title", "Manager"], ["updated_at", Mon, 30 Mar 2015 15:59:43 UTC +00:00]]
|
|
53358
|
+
[1m[36m (1.0ms)[0m [1mcommit transaction[0m
|
|
53359
|
+
Started GET "/customer_vault/corporations/1" for 127.0.0.1 at 2015-03-30 17:59:43 +0200
|
|
53360
|
+
Processing by CustomerVault::CorporationsController#show as HTML
|
|
53361
|
+
Parameters: {"id"=>"1"}
|
|
53362
|
+
[1m[35mCustomerVault::Corporation Load (0.3ms)[0m SELECT "customer_vault_corporations".* FROM "customer_vault_corporations" WHERE "customer_vault_corporations"."id" = ? LIMIT 1 [["id", "1"]]
|
|
53363
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_actions.html.slim (0.4ms)
|
|
53364
|
+
[1m[36mDorsale::Address Load (0.7ms)[0m [1mSELECT "dorsale_addresses".* FROM "dorsale_addresses" WHERE "dorsale_addresses"."addressable_id" = ? AND "dorsale_addresses"."addressable_type" = ? LIMIT 1[0m [["addressable_id", 1], ["addressable_type", "CustomerVault::Corporation"]]
|
|
53365
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/_show_details.html.slim (4.8ms)
|
|
53366
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_show_details.html.slim (5.5ms)
|
|
53367
|
+
[1m[35mCustomerVault::Link Load (0.3ms)[0m SELECT "customer_vault_links".* FROM "customer_vault_links" WHERE "customer_vault_links"."alice_id" = 1 AND "customer_vault_links"."alice_type" = 'CustomerVault::Corporation'
|
|
53368
|
+
[1m[36mCustomerVault::Link Load (0.3ms)[0m [1mSELECT "customer_vault_links".* FROM "customer_vault_links" WHERE "customer_vault_links"."bob_id" = 1 AND "customer_vault_links"."bob_type" = 'CustomerVault::Corporation'[0m
|
|
53369
|
+
[1m[35mCustomerVault::Individual Load (0.6ms)[0m SELECT "customer_vault_individuals".* FROM "customer_vault_individuals" WHERE "customer_vault_individuals"."id" = ? LIMIT 1 [["id", 1]]
|
|
53370
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/links/_title.html.slim (1.3ms)
|
|
53371
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/individuals/_list_details.html.slim (2.2ms)
|
|
53372
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_links_tab.html.slim (9.9ms)
|
|
53373
|
+
[1m[36mDorsale::Comment Load (0.2ms)[0m [1mSELECT "dorsale_comments".* FROM "dorsale_comments" WHERE "dorsale_comments"."commentable_id" = ? AND "dorsale_comments"."commentable_type" = ?[0m [["commentable_id", 1], ["commentable_type", "CustomerVault::Corporation"]]
|
|
53374
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/dorsale-1.0.4/app/views/dorsale/comments/_comments.html.slim (1.4ms)
|
|
53375
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/dorsale-1.0.4/app/views/dorsale/comments/_form.html.slim (4.9ms)
|
|
53376
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_history_tab.html.slim (7.2ms)
|
|
53377
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_todos_tab.html.slim (0.1ms)
|
|
53378
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_contextual.html.slim (0.1ms)
|
|
53379
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_show.html.slim (25.1ms)
|
|
53380
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/show.html.slim within layouts/application (25.5ms)
|
|
53381
|
+
Completed 200 OK in 30ms (Views: 25.9ms | ActiveRecord: 2.2ms)
|
|
53382
|
+
Started DELETE "/customer_vault/corporations/1/links/1" for 127.0.0.1 at 2015-03-30 17:59:45 +0200
|
|
53383
|
+
Processing by CustomerVault::LinksController#destroy as HTML
|
|
53384
|
+
Parameters: {"corporation_id"=>"1", "id"=>"1"}
|
|
53385
|
+
[1m[35mCustomerVault::Corporation Load (0.2ms)[0m SELECT "customer_vault_corporations".* FROM "customer_vault_corporations" WHERE "customer_vault_corporations"."id" = ? LIMIT 1 [["id", "1"]]
|
|
53386
|
+
[1m[36mCustomerVault::Link Load (0.1ms)[0m [1mSELECT "customer_vault_links".* FROM "customer_vault_links" WHERE "customer_vault_links"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
53387
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
53388
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "customer_vault_links" WHERE "customer_vault_links"."id" = ?[0m [["id", 1]]
|
|
53389
|
+
[1m[35m (2.5ms)[0m commit transaction
|
|
53390
|
+
Redirected to http://127.0.0.1:56902/customer_vault/corporations/1
|
|
53391
|
+
Completed 302 Found in 7ms (ActiveRecord: 3.1ms)
|
|
53392
|
+
Started GET "/customer_vault/corporations/1" for 127.0.0.1 at 2015-03-30 17:59:45 +0200
|
|
53393
|
+
Processing by CustomerVault::CorporationsController#show as HTML
|
|
53394
|
+
Parameters: {"id"=>"1"}
|
|
53395
|
+
[1m[36mCustomerVault::Corporation Load (0.1ms)[0m [1mSELECT "customer_vault_corporations".* FROM "customer_vault_corporations" WHERE "customer_vault_corporations"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
53396
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_actions.html.slim (0.2ms)
|
|
53397
|
+
[1m[35mDorsale::Address Load (0.1ms)[0m SELECT "dorsale_addresses".* FROM "dorsale_addresses" WHERE "dorsale_addresses"."addressable_id" = ? AND "dorsale_addresses"."addressable_type" = ? LIMIT 1 [["addressable_id", 1], ["addressable_type", "CustomerVault::Corporation"]]
|
|
53398
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/_show_details.html.slim (2.5ms)
|
|
53399
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_show_details.html.slim (2.8ms)
|
|
53400
|
+
[1m[36mCustomerVault::Link Load (0.2ms)[0m [1mSELECT "customer_vault_links".* FROM "customer_vault_links" WHERE "customer_vault_links"."alice_id" = 1 AND "customer_vault_links"."alice_type" = 'CustomerVault::Corporation'[0m
|
|
53401
|
+
[1m[35mCustomerVault::Link Load (0.1ms)[0m SELECT "customer_vault_links".* FROM "customer_vault_links" WHERE "customer_vault_links"."bob_id" = 1 AND "customer_vault_links"."bob_type" = 'CustomerVault::Corporation'
|
|
53402
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_links_tab.html.slim (1.6ms)
|
|
53403
|
+
[1m[36mDorsale::Comment Load (0.1ms)[0m [1mSELECT "dorsale_comments".* FROM "dorsale_comments" WHERE "dorsale_comments"."commentable_id" = ? AND "dorsale_comments"."commentable_type" = ?[0m [["commentable_id", 1], ["commentable_type", "CustomerVault::Corporation"]]
|
|
53404
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/dorsale-1.0.4/app/views/dorsale/comments/_comments.html.slim (1.1ms)
|
|
53405
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/dorsale-1.0.4/app/views/dorsale/comments/_form.html.slim (2.7ms)
|
|
53406
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_history_tab.html.slim (4.1ms)
|
|
53407
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_todos_tab.html.slim (0.0ms)
|
|
53408
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_contextual.html.slim (0.1ms)
|
|
53409
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/_show.html.slim (10.1ms)
|
|
53410
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/show.html.slim within layouts/application (10.3ms)
|
|
53411
|
+
Completed 200 OK in 12ms (Views: 10.5ms | ActiveRecord: 0.7ms)
|
|
53412
|
+
[1m[35m (1.2ms)[0m DELETE FROM "dorsale_addresses";
|
|
53413
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
|
53414
|
+
[1m[35m (0.8ms)[0m DELETE FROM sqlite_sequence where name = 'dorsale_addresses';
|
|
53415
|
+
[1m[36m (0.8ms)[0m [1mDELETE FROM "customer_vault_individuals";[0m
|
|
53416
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
|
53417
|
+
[1m[36m (0.8ms)[0m [1mDELETE FROM sqlite_sequence where name = 'customer_vault_individuals';[0m
|
|
53418
|
+
[1m[35m (0.8ms)[0m DELETE FROM "customer_vault_corporations";
|
|
53419
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
|
53420
|
+
[1m[35m (1.0ms)[0m DELETE FROM sqlite_sequence where name = 'customer_vault_corporations';
|
|
53421
|
+
[1m[36m (0.8ms)[0m [1mDELETE FROM "customer_vault_links";[0m
|
|
53422
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
|
53423
|
+
[1m[36m (0.8ms)[0m [1mDELETE FROM sqlite_sequence where name = 'customer_vault_links';[0m
|
|
53424
|
+
[1m[35m (0.9ms)[0m DELETE FROM "dorsale_comments";
|
|
53425
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
|
53426
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'dorsale_comments';
|
|
53427
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
53428
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "dorsale_addresses" ("city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?) [["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:45 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", "L'atelier"], ["updated_at", Mon, 30 Mar 2015 15:59:45 UTC +00:00], ["zip", "13004"]]
|
|
53429
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
|
53430
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
53431
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "customer_vault_individuals" ("context", "created_at", "email", "fax", "first_name", "last_name", "mobile", "phone", "title", "twitter", "updated_at", "www") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["context", "MyText"], ["created_at", Mon, 30 Mar 2015 15:59:45 UTC +00:00], ["email", "MyString"], ["fax", "MyString"], ["first_name", "Jean"], ["last_name", "DUPONT"], ["mobile", "MyString"], ["phone", "MyString"], ["title", "MyString"], ["twitter", "MyString"], ["updated_at", Mon, 30 Mar 2015 15:59:45 UTC +00:00], ["www", "MyString"]]
|
|
53432
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "dorsale_addresses" SET "addressable_type" = ?, "addressable_id" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 1 [["addressable_type", "CustomerVault::Individual"], ["addressable_id", 1], ["updated_at", Mon, 30 Mar 2015 15:59:45 UTC +00:00]]
|
|
53433
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
|
53434
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
53435
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "dorsale_addresses" ("city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:45 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", "L'atelier"], ["updated_at", Mon, 30 Mar 2015 15:59:45 UTC +00:00], ["zip", "13004"]]
|
|
53436
|
+
[1m[35m (0.8ms)[0m commit transaction
|
|
53437
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
53438
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "customer_vault_individuals" ("context", "created_at", "email", "fax", "first_name", "last_name", "mobile", "phone", "title", "twitter", "updated_at", "www") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["context", "MyText"], ["created_at", Mon, 30 Mar 2015 15:59:45 UTC +00:00], ["email", "MyString"], ["fax", "MyString"], ["first_name", "Laurent"], ["last_name", "DURAND"], ["mobile", "MyString"], ["phone", "MyString"], ["title", "MyString"], ["twitter", "MyString"], ["updated_at", Mon, 30 Mar 2015 15:59:45 UTC +00:00], ["www", "MyString"]]
|
|
53439
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "dorsale_addresses" SET "addressable_type" = ?, "addressable_id" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 2[0m [["addressable_type", "CustomerVault::Individual"], ["addressable_id", 2], ["updated_at", Mon, 30 Mar 2015 15:59:45 UTC +00:00]]
|
|
53440
|
+
[1m[35m (0.7ms)[0m commit transaction
|
|
53441
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
53442
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "dorsale_addresses" ("city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?) [["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:45 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", "L'atelier"], ["updated_at", Mon, 30 Mar 2015 15:59:45 UTC +00:00], ["zip", "13004"]]
|
|
53443
|
+
[1m[36m (1.0ms)[0m [1mcommit transaction[0m
|
|
53444
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
53445
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "customer_vault_corporations" ("created_at", "email", "fax", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["created_at", Mon, 30 Mar 2015 15:59:45 UTC +00:00], ["email", "contact@aaa.com"], ["fax", "09xxxxxxx"], ["name", "aaa"], ["phone", "06xxxxxxxx"], ["updated_at", Mon, 30 Mar 2015 15:59:45 UTC +00:00]]
|
|
53446
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "dorsale_addresses" SET "addressable_type" = ?, "addressable_id" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 3 [["addressable_type", "CustomerVault::Corporation"], ["addressable_id", 1], ["updated_at", Mon, 30 Mar 2015 15:59:45 UTC +00:00]]
|
|
53447
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
|
53448
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
53449
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "dorsale_addresses" ("city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:45 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", "L'atelier"], ["updated_at", Mon, 30 Mar 2015 15:59:45 UTC +00:00], ["zip", "13004"]]
|
|
53450
|
+
[1m[35m (0.8ms)[0m commit transaction
|
|
53451
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
53452
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "customer_vault_corporations" ("created_at", "email", "fax", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 30 Mar 2015 15:59:45 UTC +00:00], ["email", "contact@zzz.com"], ["fax", "09xxxxxxx"], ["name", "zzz"], ["phone", "06xxxxxxxx"], ["updated_at", Mon, 30 Mar 2015 15:59:45 UTC +00:00]]
|
|
53453
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "dorsale_addresses" SET "addressable_type" = ?, "addressable_id" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 4[0m [["addressable_type", "CustomerVault::Corporation"], ["addressable_id", 2], ["updated_at", Mon, 30 Mar 2015 15:59:45 UTC +00:00]]
|
|
53454
|
+
[1m[35m (0.9ms)[0m commit transaction
|
|
53455
|
+
Started GET "/customer_vault/people" for 127.0.0.1 at 2015-03-30 17:59:45 +0200
|
|
53456
|
+
Processing by CustomerVault::PeopleController#index as HTML
|
|
53457
|
+
[1m[36mCustomerVault::Individual Load (0.2ms)[0m [1mSELECT "customer_vault_individuals".* FROM "customer_vault_individuals"[0m
|
|
53458
|
+
[1m[35mCustomerVault::Corporation Load (0.1ms)[0m SELECT "customer_vault_corporations".* FROM "customer_vault_corporations"
|
|
53459
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/individuals/_list_details.html.slim (5.3ms)
|
|
53460
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/individuals/_list_details.html.slim (0.3ms)
|
|
53461
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/_list_details.html.slim (0.4ms)
|
|
53462
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/_list_details.html.slim (0.5ms)
|
|
53463
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_contextual.html.slim (0.1ms)
|
|
53464
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/index.html.slim within layouts/application (11.3ms)
|
|
53465
|
+
Completed 200 OK in 14ms (Views: 12.2ms | ActiveRecord: 0.3ms)
|
|
53466
|
+
Started GET "/customer_vault/people?q=Jean" for 127.0.0.1 at 2015-03-30 17:59:47 +0200
|
|
53467
|
+
Processing by CustomerVault::PeopleController#index as HTML
|
|
53468
|
+
Parameters: {"q"=>"Jean"}
|
|
53469
|
+
[1m[36mCustomerVault::Individual Load (0.3ms)[0m [1mSELECT "customer_vault_individuals".* FROM "customer_vault_individuals" WHERE (((LOWER(CAST(customer_vault_individuals.id AS TEXT)) LIKE '%jean%') OR (LOWER(CAST(customer_vault_individuals.first_name AS TEXT)) LIKE '%jean%') OR (LOWER(CAST(customer_vault_individuals.last_name AS TEXT)) LIKE '%jean%') OR (LOWER(CAST(customer_vault_individuals.email AS TEXT)) LIKE '%jean%') OR (LOWER(CAST(customer_vault_individuals.title AS TEXT)) LIKE '%jean%') OR (LOWER(CAST(customer_vault_individuals.twitter AS TEXT)) LIKE '%jean%') OR (LOWER(CAST(customer_vault_individuals.www AS TEXT)) LIKE '%jean%') OR (LOWER(CAST(customer_vault_individuals.context AS TEXT)) LIKE '%jean%') OR (LOWER(CAST(customer_vault_individuals.phone AS TEXT)) LIKE '%jean%') OR (LOWER(CAST(customer_vault_individuals.fax AS TEXT)) LIKE '%jean%') OR (LOWER(CAST(customer_vault_individuals.mobile AS TEXT)) LIKE '%jean%') OR (LOWER(CAST(customer_vault_individuals.created_at AS TEXT)) LIKE '%jean%') OR (LOWER(CAST(customer_vault_individuals.updated_at AS TEXT)) LIKE '%jean%')))[0m
|
|
53470
|
+
[1m[35mCustomerVault::Corporation Load (0.1ms)[0m SELECT "customer_vault_corporations".* FROM "customer_vault_corporations" WHERE (((LOWER(CAST(customer_vault_corporations.id AS TEXT)) LIKE '%jean%') OR (LOWER(CAST(customer_vault_corporations.name AS TEXT)) LIKE '%jean%') OR (LOWER(CAST(customer_vault_corporations.email AS TEXT)) LIKE '%jean%') OR (LOWER(CAST(customer_vault_corporations.phone AS TEXT)) LIKE '%jean%') OR (LOWER(CAST(customer_vault_corporations.fax AS TEXT)) LIKE '%jean%') OR (LOWER(CAST(customer_vault_corporations.created_at AS TEXT)) LIKE '%jean%') OR (LOWER(CAST(customer_vault_corporations.updated_at AS TEXT)) LIKE '%jean%')))
|
|
53471
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/individuals/_list_details.html.slim (0.5ms)
|
|
53472
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_contextual.html.slim (0.0ms)
|
|
53473
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/index.html.slim within layouts/application (2.6ms)
|
|
53474
|
+
Completed 200 OK in 128ms (Views: 3.5ms | ActiveRecord: 0.4ms)
|
|
53475
|
+
[1m[36m (2.4ms)[0m [1mDELETE FROM "dorsale_addresses";[0m
|
|
53476
|
+
[1m[35m (0.5ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
|
53477
|
+
[1m[36m (2.0ms)[0m [1mDELETE FROM sqlite_sequence where name = 'dorsale_addresses';[0m
|
|
53478
|
+
[1m[35m (0.8ms)[0m DELETE FROM "customer_vault_individuals";
|
|
53479
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
|
53480
|
+
[1m[35m (0.9ms)[0m DELETE FROM sqlite_sequence where name = 'customer_vault_individuals';
|
|
53481
|
+
[1m[36m (0.8ms)[0m [1mDELETE FROM "customer_vault_corporations";[0m
|
|
53482
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
|
53483
|
+
[1m[36m (0.7ms)[0m [1mDELETE FROM sqlite_sequence where name = 'customer_vault_corporations';[0m
|
|
53484
|
+
[1m[35m (1.1ms)[0m DELETE FROM "customer_vault_links";
|
|
53485
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
|
53486
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'customer_vault_links';
|
|
53487
|
+
[1m[36m (0.8ms)[0m [1mDELETE FROM "dorsale_comments";[0m
|
|
53488
|
+
[1m[35m (0.2ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
|
53489
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'dorsale_comments';[0m
|
|
53490
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
53491
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "dorsale_addresses" ("city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:47 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", "L'atelier"], ["updated_at", Mon, 30 Mar 2015 15:59:47 UTC +00:00], ["zip", "13004"]]
|
|
53492
|
+
[1m[35m (0.7ms)[0m commit transaction
|
|
53493
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
53494
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "customer_vault_individuals" ("context", "created_at", "email", "fax", "first_name", "last_name", "mobile", "phone", "title", "twitter", "updated_at", "www") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["context", "MyText"], ["created_at", Mon, 30 Mar 2015 15:59:47 UTC +00:00], ["email", "MyString"], ["fax", "MyString"], ["first_name", "Jean"], ["last_name", "DUPONT"], ["mobile", "MyString"], ["phone", "MyString"], ["title", "MyString"], ["twitter", "MyString"], ["updated_at", Mon, 30 Mar 2015 15:59:47 UTC +00:00], ["www", "MyString"]]
|
|
53495
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "dorsale_addresses" SET "addressable_type" = ?, "addressable_id" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 1[0m [["addressable_type", "CustomerVault::Individual"], ["addressable_id", 1], ["updated_at", Mon, 30 Mar 2015 15:59:47 UTC +00:00]]
|
|
53496
|
+
[1m[35m (0.8ms)[0m commit transaction
|
|
53497
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
53498
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "dorsale_addresses" ("city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?) [["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:47 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", "L'atelier"], ["updated_at", Mon, 30 Mar 2015 15:59:47 UTC +00:00], ["zip", "13004"]]
|
|
53499
|
+
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
|
|
53500
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
53501
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "customer_vault_individuals" ("context", "created_at", "email", "fax", "first_name", "last_name", "mobile", "phone", "title", "twitter", "updated_at", "www") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["context", "MyText"], ["created_at", Mon, 30 Mar 2015 15:59:47 UTC +00:00], ["email", "MyString"], ["fax", "MyString"], ["first_name", "Laurent"], ["last_name", "DURAND"], ["mobile", "MyString"], ["phone", "MyString"], ["title", "MyString"], ["twitter", "MyString"], ["updated_at", Mon, 30 Mar 2015 15:59:47 UTC +00:00], ["www", "MyString"]]
|
|
53502
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "dorsale_addresses" SET "addressable_type" = ?, "addressable_id" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 2 [["addressable_type", "CustomerVault::Individual"], ["addressable_id", 2], ["updated_at", Mon, 30 Mar 2015 15:59:47 UTC +00:00]]
|
|
53503
|
+
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
|
|
53504
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
53505
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "dorsale_addresses" ("city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:47 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", "L'atelier"], ["updated_at", Mon, 30 Mar 2015 15:59:47 UTC +00:00], ["zip", "13004"]]
|
|
53506
|
+
[1m[35m (0.8ms)[0m commit transaction
|
|
53507
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
53508
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "customer_vault_corporations" ("created_at", "email", "fax", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 30 Mar 2015 15:59:47 UTC +00:00], ["email", "contact@aaa.com"], ["fax", "09xxxxxxx"], ["name", "aaa"], ["phone", "06xxxxxxxx"], ["updated_at", Mon, 30 Mar 2015 15:59:47 UTC +00:00]]
|
|
53509
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "dorsale_addresses" SET "addressable_type" = ?, "addressable_id" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 3[0m [["addressable_type", "CustomerVault::Corporation"], ["addressable_id", 1], ["updated_at", Mon, 30 Mar 2015 15:59:47 UTC +00:00]]
|
|
53510
|
+
[1m[35m (0.8ms)[0m commit transaction
|
|
53511
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
53512
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "dorsale_addresses" ("city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?) [["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:47 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", "L'atelier"], ["updated_at", Mon, 30 Mar 2015 15:59:47 UTC +00:00], ["zip", "13004"]]
|
|
53513
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
|
53514
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
53515
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "customer_vault_corporations" ("created_at", "email", "fax", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["created_at", Mon, 30 Mar 2015 15:59:47 UTC +00:00], ["email", "contact@zzz.com"], ["fax", "09xxxxxxx"], ["name", "zzz"], ["phone", "06xxxxxxxx"], ["updated_at", Mon, 30 Mar 2015 15:59:47 UTC +00:00]]
|
|
53516
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "dorsale_addresses" SET "addressable_type" = ?, "addressable_id" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 4 [["addressable_type", "CustomerVault::Corporation"], ["addressable_id", 2], ["updated_at", Mon, 30 Mar 2015 15:59:47 UTC +00:00]]
|
|
53517
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
|
53518
|
+
Started GET "/customer_vault/people" for 127.0.0.1 at 2015-03-30 17:59:47 +0200
|
|
53519
|
+
Processing by CustomerVault::PeopleController#index as HTML
|
|
53520
|
+
[1m[35mCustomerVault::Individual Load (0.2ms)[0m SELECT "customer_vault_individuals".* FROM "customer_vault_individuals"
|
|
53521
|
+
[1m[36mCustomerVault::Corporation Load (0.1ms)[0m [1mSELECT "customer_vault_corporations".* FROM "customer_vault_corporations"[0m
|
|
53522
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/individuals/_list_details.html.slim (0.5ms)
|
|
53523
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/individuals/_list_details.html.slim (0.3ms)
|
|
53524
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/_list_details.html.slim (0.3ms)
|
|
53525
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/_list_details.html.slim (0.3ms)
|
|
53526
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_contextual.html.slim (0.0ms)
|
|
53527
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/index.html.slim within layouts/application (4.4ms)
|
|
53528
|
+
Completed 200 OK in 8ms (Views: 5.2ms | ActiveRecord: 0.4ms)
|
|
53529
|
+
Started GET "/customer_vault/people?q=DUPONT" for 127.0.0.1 at 2015-03-30 17:59:49 +0200
|
|
53530
|
+
Processing by CustomerVault::PeopleController#index as HTML
|
|
53531
|
+
Parameters: {"q"=>"DUPONT"}
|
|
53532
|
+
[1m[35mCustomerVault::Individual Load (0.3ms)[0m SELECT "customer_vault_individuals".* FROM "customer_vault_individuals" WHERE (((LOWER(CAST(customer_vault_individuals.id AS TEXT)) LIKE '%dupont%') OR (LOWER(CAST(customer_vault_individuals.first_name AS TEXT)) LIKE '%dupont%') OR (LOWER(CAST(customer_vault_individuals.last_name AS TEXT)) LIKE '%dupont%') OR (LOWER(CAST(customer_vault_individuals.email AS TEXT)) LIKE '%dupont%') OR (LOWER(CAST(customer_vault_individuals.title AS TEXT)) LIKE '%dupont%') OR (LOWER(CAST(customer_vault_individuals.twitter AS TEXT)) LIKE '%dupont%') OR (LOWER(CAST(customer_vault_individuals.www AS TEXT)) LIKE '%dupont%') OR (LOWER(CAST(customer_vault_individuals.context AS TEXT)) LIKE '%dupont%') OR (LOWER(CAST(customer_vault_individuals.phone AS TEXT)) LIKE '%dupont%') OR (LOWER(CAST(customer_vault_individuals.fax AS TEXT)) LIKE '%dupont%') OR (LOWER(CAST(customer_vault_individuals.mobile AS TEXT)) LIKE '%dupont%') OR (LOWER(CAST(customer_vault_individuals.created_at AS TEXT)) LIKE '%dupont%') OR (LOWER(CAST(customer_vault_individuals.updated_at AS TEXT)) LIKE '%dupont%')))
|
|
53533
|
+
[1m[36mCustomerVault::Corporation Load (0.2ms)[0m [1mSELECT "customer_vault_corporations".* FROM "customer_vault_corporations" WHERE (((LOWER(CAST(customer_vault_corporations.id AS TEXT)) LIKE '%dupont%') OR (LOWER(CAST(customer_vault_corporations.name AS TEXT)) LIKE '%dupont%') OR (LOWER(CAST(customer_vault_corporations.email AS TEXT)) LIKE '%dupont%') OR (LOWER(CAST(customer_vault_corporations.phone AS TEXT)) LIKE '%dupont%') OR (LOWER(CAST(customer_vault_corporations.fax AS TEXT)) LIKE '%dupont%') OR (LOWER(CAST(customer_vault_corporations.created_at AS TEXT)) LIKE '%dupont%') OR (LOWER(CAST(customer_vault_corporations.updated_at AS TEXT)) LIKE '%dupont%')))[0m
|
|
53534
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/individuals/_list_details.html.slim (0.5ms)
|
|
53535
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_contextual.html.slim (0.0ms)
|
|
53536
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/index.html.slim within layouts/application (2.7ms)
|
|
53537
|
+
Completed 200 OK in 6ms (Views: 3.6ms | ActiveRecord: 0.5ms)
|
|
53538
|
+
[1m[35m (2.7ms)[0m DELETE FROM "dorsale_addresses";
|
|
53539
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
|
53540
|
+
[1m[35m (0.9ms)[0m DELETE FROM sqlite_sequence where name = 'dorsale_addresses';
|
|
53541
|
+
[1m[36m (0.8ms)[0m [1mDELETE FROM "customer_vault_individuals";[0m
|
|
53542
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
|
53543
|
+
[1m[36m (0.9ms)[0m [1mDELETE FROM sqlite_sequence where name = 'customer_vault_individuals';[0m
|
|
53544
|
+
[1m[35m (0.7ms)[0m DELETE FROM "customer_vault_corporations";
|
|
53545
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
|
53546
|
+
[1m[35m (0.9ms)[0m DELETE FROM sqlite_sequence where name = 'customer_vault_corporations';
|
|
53547
|
+
[1m[36m (1.0ms)[0m [1mDELETE FROM "customer_vault_links";[0m
|
|
53548
|
+
[1m[35m (0.2ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
|
53549
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'customer_vault_links';[0m
|
|
53550
|
+
[1m[35m (0.9ms)[0m DELETE FROM "dorsale_comments";
|
|
53551
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
|
53552
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'dorsale_comments';
|
|
53553
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
53554
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "dorsale_addresses" ("city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?) [["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:49 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", "L'atelier"], ["updated_at", Mon, 30 Mar 2015 15:59:49 UTC +00:00], ["zip", "13004"]]
|
|
53555
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
|
53556
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
53557
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "customer_vault_individuals" ("context", "created_at", "email", "fax", "first_name", "last_name", "mobile", "phone", "title", "twitter", "updated_at", "www") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["context", "MyText"], ["created_at", Mon, 30 Mar 2015 15:59:49 UTC +00:00], ["email", "MyString"], ["fax", "MyString"], ["first_name", "Jean"], ["last_name", "DUPONT"], ["mobile", "MyString"], ["phone", "MyString"], ["title", "MyString"], ["twitter", "MyString"], ["updated_at", Mon, 30 Mar 2015 15:59:49 UTC +00:00], ["www", "MyString"]]
|
|
53558
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "dorsale_addresses" SET "addressable_type" = ?, "addressable_id" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 1 [["addressable_type", "CustomerVault::Individual"], ["addressable_id", 1], ["updated_at", Mon, 30 Mar 2015 15:59:49 UTC +00:00]]
|
|
53559
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
|
53560
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
53561
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "dorsale_addresses" ("city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:49 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", "L'atelier"], ["updated_at", Mon, 30 Mar 2015 15:59:49 UTC +00:00], ["zip", "13004"]]
|
|
53562
|
+
[1m[35m (0.9ms)[0m commit transaction
|
|
53563
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
53564
|
+
[1m[35mSQL (1.0ms)[0m INSERT INTO "customer_vault_individuals" ("context", "created_at", "email", "fax", "first_name", "last_name", "mobile", "phone", "title", "twitter", "updated_at", "www") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["context", "MyText"], ["created_at", Mon, 30 Mar 2015 15:59:49 UTC +00:00], ["email", "MyString"], ["fax", "MyString"], ["first_name", "Laurent"], ["last_name", "DURAND"], ["mobile", "MyString"], ["phone", "MyString"], ["title", "MyString"], ["twitter", "MyString"], ["updated_at", Mon, 30 Mar 2015 15:59:49 UTC +00:00], ["www", "MyString"]]
|
|
53565
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "dorsale_addresses" SET "addressable_type" = ?, "addressable_id" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 2[0m [["addressable_type", "CustomerVault::Individual"], ["addressable_id", 2], ["updated_at", Mon, 30 Mar 2015 15:59:49 UTC +00:00]]
|
|
53566
|
+
[1m[35m (0.9ms)[0m commit transaction
|
|
53567
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
53568
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "dorsale_addresses" ("city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?) [["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:49 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", "L'atelier"], ["updated_at", Mon, 30 Mar 2015 15:59:49 UTC +00:00], ["zip", "13004"]]
|
|
53569
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
|
53570
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
53571
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "customer_vault_corporations" ("created_at", "email", "fax", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["created_at", Mon, 30 Mar 2015 15:59:49 UTC +00:00], ["email", "contact@aaa.com"], ["fax", "09xxxxxxx"], ["name", "aaa"], ["phone", "06xxxxxxxx"], ["updated_at", Mon, 30 Mar 2015 15:59:49 UTC +00:00]]
|
|
53572
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "dorsale_addresses" SET "addressable_type" = ?, "addressable_id" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 3 [["addressable_type", "CustomerVault::Corporation"], ["addressable_id", 1], ["updated_at", Mon, 30 Mar 2015 15:59:49 UTC +00:00]]
|
|
53573
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
|
53574
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
53575
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "dorsale_addresses" ("city", "country", "created_at", "street", "street_bis", "updated_at", "zip") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["city", "Marseille"], ["country", "France"], ["created_at", Mon, 30 Mar 2015 15:59:49 UTC +00:00], ["street", "3 Rue Marx Dormoy"], ["street_bis", "L'atelier"], ["updated_at", Mon, 30 Mar 2015 15:59:49 UTC +00:00], ["zip", "13004"]]
|
|
53576
|
+
[1m[35m (0.7ms)[0m commit transaction
|
|
53577
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
53578
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "customer_vault_corporations" ("created_at", "email", "fax", "name", "phone", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 30 Mar 2015 15:59:49 UTC +00:00], ["email", "contact@zzz.com"], ["fax", "09xxxxxxx"], ["name", "zzz"], ["phone", "06xxxxxxxx"], ["updated_at", Mon, 30 Mar 2015 15:59:49 UTC +00:00]]
|
|
53579
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "dorsale_addresses" SET "addressable_type" = ?, "addressable_id" = ?, "updated_at" = ? WHERE "dorsale_addresses"."id" = 4[0m [["addressable_type", "CustomerVault::Corporation"], ["addressable_id", 2], ["updated_at", Mon, 30 Mar 2015 15:59:49 UTC +00:00]]
|
|
53580
|
+
[1m[35m (0.7ms)[0m commit transaction
|
|
53581
|
+
Started GET "/customer_vault/people" for 127.0.0.1 at 2015-03-30 17:59:49 +0200
|
|
53582
|
+
Processing by CustomerVault::PeopleController#index as HTML
|
|
53583
|
+
[1m[36mCustomerVault::Individual Load (0.2ms)[0m [1mSELECT "customer_vault_individuals".* FROM "customer_vault_individuals"[0m
|
|
53584
|
+
[1m[35mCustomerVault::Corporation Load (0.1ms)[0m SELECT "customer_vault_corporations".* FROM "customer_vault_corporations"
|
|
53585
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/individuals/_list_details.html.slim (0.4ms)
|
|
53586
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/individuals/_list_details.html.slim (0.6ms)
|
|
53587
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/_list_details.html.slim (0.4ms)
|
|
53588
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/_list_details.html.slim (0.3ms)
|
|
53589
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_contextual.html.slim (0.1ms)
|
|
53590
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/index.html.slim within layouts/application (4.1ms)
|
|
53591
|
+
Completed 200 OK in 7ms (Views: 4.9ms | ActiveRecord: 0.3ms)
|
|
53592
|
+
Started GET "/customer_vault/people?q=aaa" for 127.0.0.1 at 2015-03-30 17:59:51 +0200
|
|
53593
|
+
Processing by CustomerVault::PeopleController#index as HTML
|
|
53594
|
+
Parameters: {"q"=>"aaa"}
|
|
53595
|
+
[1m[36mCustomerVault::Individual Load (0.3ms)[0m [1mSELECT "customer_vault_individuals".* FROM "customer_vault_individuals" WHERE (((LOWER(CAST(customer_vault_individuals.id AS TEXT)) LIKE '%aaa%') OR (LOWER(CAST(customer_vault_individuals.first_name AS TEXT)) LIKE '%aaa%') OR (LOWER(CAST(customer_vault_individuals.last_name AS TEXT)) LIKE '%aaa%') OR (LOWER(CAST(customer_vault_individuals.email AS TEXT)) LIKE '%aaa%') OR (LOWER(CAST(customer_vault_individuals.title AS TEXT)) LIKE '%aaa%') OR (LOWER(CAST(customer_vault_individuals.twitter AS TEXT)) LIKE '%aaa%') OR (LOWER(CAST(customer_vault_individuals.www AS TEXT)) LIKE '%aaa%') OR (LOWER(CAST(customer_vault_individuals.context AS TEXT)) LIKE '%aaa%') OR (LOWER(CAST(customer_vault_individuals.phone AS TEXT)) LIKE '%aaa%') OR (LOWER(CAST(customer_vault_individuals.fax AS TEXT)) LIKE '%aaa%') OR (LOWER(CAST(customer_vault_individuals.mobile AS TEXT)) LIKE '%aaa%') OR (LOWER(CAST(customer_vault_individuals.created_at AS TEXT)) LIKE '%aaa%') OR (LOWER(CAST(customer_vault_individuals.updated_at AS TEXT)) LIKE '%aaa%')))[0m
|
|
53596
|
+
[1m[35mCustomerVault::Corporation Load (0.2ms)[0m SELECT "customer_vault_corporations".* FROM "customer_vault_corporations" WHERE (((LOWER(CAST(customer_vault_corporations.id AS TEXT)) LIKE '%aaa%') OR (LOWER(CAST(customer_vault_corporations.name AS TEXT)) LIKE '%aaa%') OR (LOWER(CAST(customer_vault_corporations.email AS TEXT)) LIKE '%aaa%') OR (LOWER(CAST(customer_vault_corporations.phone AS TEXT)) LIKE '%aaa%') OR (LOWER(CAST(customer_vault_corporations.fax AS TEXT)) LIKE '%aaa%') OR (LOWER(CAST(customer_vault_corporations.created_at AS TEXT)) LIKE '%aaa%') OR (LOWER(CAST(customer_vault_corporations.updated_at AS TEXT)) LIKE '%aaa%')))
|
|
53597
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/corporations/_list_details.html.slim (0.4ms)
|
|
53598
|
+
Rendered /Users/benoit/.rbenv/versions/1.9.3-p551/lib/ruby/gems/1.9.1/gems/agilidee_commons-1.0.5/app/views/agilidee_commons/_contextual.html.slim (0.0ms)
|
|
53599
|
+
Rendered /Users/benoit/www/agilidee/customer_vault/app/views/customer_vault/people/index.html.slim within layouts/application (2.4ms)
|
|
53600
|
+
Completed 200 OK in 6ms (Views: 3.4ms | ActiveRecord: 0.6ms)
|
|
53601
|
+
[1m[36m (2.6ms)[0m [1mDELETE FROM "dorsale_addresses";[0m
|
|
53602
|
+
[1m[35m (0.2ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
|
53603
|
+
[1m[36m (0.9ms)[0m [1mDELETE FROM sqlite_sequence where name = 'dorsale_addresses';[0m
|
|
53604
|
+
[1m[35m (0.8ms)[0m DELETE FROM "customer_vault_individuals";
|
|
53605
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
|
53606
|
+
[1m[35m (0.8ms)[0m DELETE FROM sqlite_sequence where name = 'customer_vault_individuals';
|
|
53607
|
+
[1m[36m (0.7ms)[0m [1mDELETE FROM "customer_vault_corporations";[0m
|
|
53608
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
|
53609
|
+
[1m[36m (0.9ms)[0m [1mDELETE FROM sqlite_sequence where name = 'customer_vault_corporations';[0m
|
|
53610
|
+
[1m[35m (0.8ms)[0m DELETE FROM "customer_vault_links";
|
|
53611
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
|
53612
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'customer_vault_links';
|
|
53613
|
+
[1m[36m (0.9ms)[0m [1mDELETE FROM "dorsale_comments";[0m
|
|
53614
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
|
53615
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'dorsale_comments';[0m
|