mechanize_store 0.0.16 → 0.0.17

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7482825189635244a725453521ebf1b85ee227ef
4
- data.tar.gz: d22af75203e550b8354db25410e789afdd541574
3
+ metadata.gz: ff918a078fc58ab86cca583d60fed90edb05a0a7
4
+ data.tar.gz: 0f9d3135f46b0be82ed7e1aea20388d625ab3911
5
5
  SHA512:
6
- metadata.gz: 05fbef1a897ab804d84c0aa789e9b452b1a3cd6227911a39403c6a11fdc00d514ee7c744d84f9f8577ef51d8a0360b43c756b6dd612d0c247c5487d03388beea
7
- data.tar.gz: 51bdf6e89ca9baf74ec965f3a4c1120f17f267910f19321c8dcb00cd8f4c00513f6058920cfb6d8e4380ab1285dba5195ad460ed4c4d8607f0ca03cdf9a5905b
6
+ metadata.gz: e6aef661231bb5613058fc87b19cbb14052f7f8385fdde05796521d1dbe46685ff4e2d69787fa6a43a382a8cb8c781834c8df0038ce3da54b5e626ce6fe8d5d9
7
+ data.tar.gz: 9cd3871635085966c0884bead1e9cd7632c9ce5e7d5ba48455e8670e4d808e0c3335eb3d02d6d5b60e3719326b46ee3a179847e8e7e0094489003d2b0a2f8344
@@ -0,0 +1,6 @@
1
+ class AddColorAndSizeToMechanizeStoreOrderItem < ActiveRecord::Migration
2
+ def change
3
+ add_column :mechanize_store_order_items, :color, :string
4
+ add_column :mechanize_store_order_items, :size, :string
5
+ end
6
+ end
@@ -1,3 +1,3 @@
1
1
  module MechanizeStore
2
- VERSION = "0.0.16"
2
+ VERSION = "0.0.17"
3
3
  end
Binary file
@@ -11,7 +11,7 @@
11
11
  #
12
12
  # It's strongly recommended that you check this file into your version control system.
13
13
 
14
- ActiveRecord::Schema.define(version: 20140606130912) do
14
+ ActiveRecord::Schema.define(version: 20140717182327) do
15
15
 
16
16
  create_table "mechanize_store_flags", force: true do |t|
17
17
  t.string "name"
@@ -38,6 +38,8 @@ ActiveRecord::Schema.define(version: 20140606130912) do
38
38
  t.integer "product_id"
39
39
  t.datetime "created_at"
40
40
  t.datetime "updated_at"
41
+ t.string "color"
42
+ t.string "size"
41
43
  end
42
44
 
43
45
  add_index "mechanize_store_order_items", ["order_id"], name: "index_mechanize_store_order_items_on_order_id"
@@ -0,0 +1,18 @@
1
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
2
+ Migrating to AddSlugToProductSection (20140606124916)
3
+  (0.1ms) begin transaction
4
+  (0.5ms) ALTER TABLE "mechanize_store_product_sections" ADD "slug" varchar(255)
5
+ SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140606124916"]]
6
+  (1.2ms) commit transaction
7
+ Migrating to AddProductSectionIdToMechanizeStoreProductCategory (20140606130912)
8
+  (0.1ms) begin transaction
9
+  (0.5ms) ALTER TABLE "mechanize_store_product_categories" ADD "product_section_id" integer
10
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140606130912"]]
11
+  (0.7ms) commit transaction
12
+ Migrating to AddColorAndSizeToMechanizeStoreOrderItem (20140717182327)
13
+  (0.1ms) begin transaction
14
+  (0.4ms) ALTER TABLE "mechanize_store_order_items" ADD "color" varchar(255)
15
+  (0.2ms) ALTER TABLE "mechanize_store_order_items" ADD "size" varchar(255)
16
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140717182327"]]
17
+  (0.8ms) commit transaction
18
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
@@ -0,0 +1,941 @@
1
+  (1.1ms) begin transaction
2
+  (0.1ms) SAVEPOINT active_record_1
3
+ SQL (5.5ms) INSERT INTO "mechanize_store_products" ("created_at", "description", "height", "length", "name", "price", "short_description", "updated_at", "weight", "width") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00], ["description", "Product description"], ["height", 2.0], ["length", 2.0], ["name", "MyString"], ["price", 10.0], ["short_description", "Short"], ["updated_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00], ["weight", 1.0], ["width", 1.0]]
4
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5
+ Processing by MechanizeStore::ProductsController#update as HTML
6
+ Parameters: {"product"=>{"name"=>"invalid value"}, "id"=>"1"}
7
+ MechanizeStore::Product Load (0.2ms) SELECT "mechanize_store_products".* FROM "mechanize_store_products" WHERE "mechanize_store_products"."id" = ? LIMIT 1 [["id", "1"]]
8
+ MechanizeStore::Product Load (0.1ms) SELECT "mechanize_store_products".* FROM "mechanize_store_products" WHERE "mechanize_store_products"."id" = ? LIMIT 1 [["id", "1"]]
9
+  (0.0ms) SAVEPOINT active_record_1
10
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
11
+ Rendered /Users/wilbert/apps/mechanize-store/app/views/mechanize_store/products/edit.html.erb (0.3ms)
12
+ Completed 200 OK in 14ms (Views: 9.1ms | ActiveRecord: 0.3ms)
13
+  (1.0ms) rollback transaction
14
+  (0.1ms) begin transaction
15
+  (0.0ms) SAVEPOINT active_record_1
16
+ SQL (0.4ms) INSERT INTO "mechanize_store_products" ("created_at", "description", "height", "length", "name", "price", "short_description", "updated_at", "weight", "width") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00], ["description", "Product description"], ["height", 2.0], ["length", 2.0], ["name", "MyString"], ["price", 10.0], ["short_description", "Short"], ["updated_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00], ["weight", 1.0], ["width", 1.0]]
17
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18
+ Processing by MechanizeStore::ProductsController#update as HTML
19
+ Parameters: {"product"=>{"name"=>"invalid value"}, "id"=>"1"}
20
+ MechanizeStore::Product Load (0.1ms) SELECT "mechanize_store_products".* FROM "mechanize_store_products" WHERE "mechanize_store_products"."id" = ? LIMIT 1 [["id", "1"]]
21
+ MechanizeStore::Product Load (0.1ms) SELECT "mechanize_store_products".* FROM "mechanize_store_products" WHERE "mechanize_store_products"."id" = ? LIMIT 1 [["id", "1"]]
22
+  (0.0ms) SAVEPOINT active_record_1
23
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
24
+ Completed 200 OK in 3ms (Views: 0.7ms | ActiveRecord: 0.2ms)
25
+  (0.4ms) rollback transaction
26
+  (0.1ms) begin transaction
27
+  (0.1ms) SAVEPOINT active_record_1
28
+ SQL (0.4ms) INSERT INTO "mechanize_store_products" ("created_at", "description", "height", "length", "name", "price", "short_description", "updated_at", "weight", "width") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00], ["description", "Product description"], ["height", 2.0], ["length", 2.0], ["name", "MyString"], ["price", 10.0], ["short_description", "Short"], ["updated_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00], ["weight", 1.0], ["width", 1.0]]
29
+  (0.1ms) RELEASE SAVEPOINT active_record_1
30
+ Processing by MechanizeStore::ProductsController#update as HTML
31
+ Parameters: {"product"=>{"name"=>"MyString", "price"=>"10", "width"=>"1", "height"=>"2", "length"=>"2", "weight"=>"1", "description"=>"Product description", "short_description"=>"Short"}, "id"=>"1"}
32
+ MechanizeStore::Product Load (0.1ms) SELECT "mechanize_store_products".* FROM "mechanize_store_products" WHERE "mechanize_store_products"."id" = ? LIMIT 1 [["id", "1"]]
33
+ MechanizeStore::Product Load (0.1ms) SELECT "mechanize_store_products".* FROM "mechanize_store_products" WHERE "mechanize_store_products"."id" = ? LIMIT 1 [["id", "1"]]
34
+  (0.1ms) SAVEPOINT active_record_1
35
+  (0.1ms) RELEASE SAVEPOINT active_record_1
36
+ Redirected to http://test.host/mechanize_store/products/1
37
+ Completed 302 Found in 19ms (ActiveRecord: 0.3ms)
38
+  (0.4ms) rollback transaction
39
+  (0.1ms) begin transaction
40
+  (0.1ms) SAVEPOINT active_record_1
41
+ SQL (0.5ms) INSERT INTO "mechanize_store_products" ("created_at", "description", "height", "length", "name", "price", "short_description", "updated_at", "weight", "width") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00], ["description", "Product description"], ["height", 2.0], ["length", 2.0], ["name", "MyString"], ["price", 10.0], ["short_description", "Short"], ["updated_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00], ["weight", 1.0], ["width", 1.0]]
42
+  (0.1ms) RELEASE SAVEPOINT active_record_1
43
+ Processing by MechanizeStore::ProductsController#update as HTML
44
+ Parameters: {"product"=>{"name"=>"MyString"}, "id"=>"1"}
45
+ MechanizeStore::Product Load (0.1ms) SELECT "mechanize_store_products".* FROM "mechanize_store_products" WHERE "mechanize_store_products"."id" = ? LIMIT 1 [["id", "1"]]
46
+ MechanizeStore::Product Load (0.0ms) SELECT "mechanize_store_products".* FROM "mechanize_store_products" WHERE "mechanize_store_products"."id" = ? LIMIT 1 [["id", "1"]]
47
+ Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 0.1ms)
48
+  (0.4ms) rollback transaction
49
+  (0.1ms) begin transaction
50
+  (0.1ms) SAVEPOINT active_record_1
51
+ SQL (0.5ms) INSERT INTO "mechanize_store_products" ("created_at", "description", "height", "length", "name", "price", "short_description", "updated_at", "weight", "width") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00], ["description", "Product description"], ["height", 2.0], ["length", 2.0], ["name", "MyString"], ["price", 10.0], ["short_description", "Short"], ["updated_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00], ["weight", 1.0], ["width", 1.0]]
52
+  (0.1ms) RELEASE SAVEPOINT active_record_1
53
+ Processing by MechanizeStore::ProductsController#update as HTML
54
+ Parameters: {"product"=>{"name"=>"MyString", "price"=>"10", "width"=>"1", "height"=>"2", "length"=>"2", "weight"=>"1", "description"=>"Product description", "short_description"=>"Short"}, "id"=>"1"}
55
+ MechanizeStore::Product Load (0.1ms) SELECT "mechanize_store_products".* FROM "mechanize_store_products" WHERE "mechanize_store_products"."id" = ? LIMIT 1 [["id", "1"]]
56
+ MechanizeStore::Product Load (0.1ms) SELECT "mechanize_store_products".* FROM "mechanize_store_products" WHERE "mechanize_store_products"."id" = ? LIMIT 1 [["id", "1"]]
57
+  (0.1ms) SAVEPOINT active_record_1
58
+  (0.1ms) RELEASE SAVEPOINT active_record_1
59
+ Redirected to http://test.host/mechanize_store/products/1
60
+ Completed 302 Found in 4ms (ActiveRecord: 0.4ms)
61
+  (0.4ms) rollback transaction
62
+  (0.1ms) begin transaction
63
+  (0.1ms) SAVEPOINT active_record_1
64
+ SQL (0.4ms) INSERT INTO "mechanize_store_products" ("created_at", "description", "height", "length", "name", "price", "short_description", "updated_at", "weight", "width") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00], ["description", "Product description"], ["height", 2.0], ["length", 2.0], ["name", "MyString"], ["price", 10.0], ["short_description", "Short"], ["updated_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00], ["weight", 1.0], ["width", 1.0]]
65
+  (0.0ms) RELEASE SAVEPOINT active_record_1
66
+ Processing by MechanizeStore::ProductsController#show as HTML
67
+ Parameters: {"id"=>"1"}
68
+ MechanizeStore::Product Load (0.1ms) SELECT "mechanize_store_products".* FROM "mechanize_store_products" WHERE "mechanize_store_products"."id" = ? LIMIT 1 [["id", "1"]]
69
+ Completed 200 OK in 3ms (Views: 1.9ms | ActiveRecord: 0.1ms)
70
+  (0.4ms) rollback transaction
71
+  (0.1ms) begin transaction
72
+ Processing by MechanizeStore::ProductsController#create as HTML
73
+ Parameters: {"product"=>{"name"=>"invalid value"}}
74
+ Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
75
+  (0.1ms) rollback transaction
76
+  (0.1ms) begin transaction
77
+ Processing by MechanizeStore::ProductsController#create as HTML
78
+ Parameters: {"product"=>{"name"=>"invalid value"}}
79
+ Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.0ms)
80
+  (0.1ms) rollback transaction
81
+  (0.1ms) begin transaction
82
+ Processing by MechanizeStore::ProductsController#create as HTML
83
+ Parameters: {"product"=>{"name"=>"MyString", "price"=>"10", "width"=>"1", "height"=>"2", "length"=>"2", "weight"=>"1", "description"=>"Product description", "short_description"=>"Short"}}
84
+  (0.1ms) SAVEPOINT active_record_1
85
+ SQL (0.4ms) INSERT INTO "mechanize_store_products" ("created_at", "description", "height", "length", "name", "price", "short_description", "updated_at", "weight", "width") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00], ["description", "Product description"], ["height", 2.0], ["length", 2.0], ["name", "MyString"], ["price", 10.0], ["short_description", "Short"], ["updated_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00], ["weight", 1.0], ["width", 1.0]]
86
+  (0.1ms) RELEASE SAVEPOINT active_record_1
87
+ Redirected to http://test.host/mechanize_store/products/1
88
+ Completed 302 Found in 4ms (ActiveRecord: 0.5ms)
89
+  (0.4ms) rollback transaction
90
+  (0.1ms) begin transaction
91
+  (0.2ms) SELECT COUNT(*) FROM "mechanize_store_products"
92
+ Processing by MechanizeStore::ProductsController#create as HTML
93
+ Parameters: {"product"=>{"name"=>"MyString", "price"=>"10", "width"=>"1", "height"=>"2", "length"=>"2", "weight"=>"1", "description"=>"Product description", "short_description"=>"Short"}}
94
+  (0.1ms) SAVEPOINT active_record_1
95
+ SQL (0.5ms) INSERT INTO "mechanize_store_products" ("created_at", "description", "height", "length", "name", "price", "short_description", "updated_at", "weight", "width") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00], ["description", "Product description"], ["height", 2.0], ["length", 2.0], ["name", "MyString"], ["price", 10.0], ["short_description", "Short"], ["updated_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00], ["weight", 1.0], ["width", 1.0]]
96
+  (0.1ms) RELEASE SAVEPOINT active_record_1
97
+ Redirected to http://test.host/mechanize_store/products/1
98
+ Completed 302 Found in 4ms (ActiveRecord: 0.6ms)
99
+  (0.1ms) SELECT COUNT(*) FROM "mechanize_store_products"
100
+  (0.4ms) rollback transaction
101
+  (0.1ms) begin transaction
102
+ Processing by MechanizeStore::ProductsController#create as HTML
103
+ Parameters: {"product"=>{"name"=>"MyString", "price"=>"10", "width"=>"1", "height"=>"2", "length"=>"2", "weight"=>"1", "description"=>"Product description", "short_description"=>"Short"}}
104
+  (0.1ms) SAVEPOINT active_record_1
105
+ SQL (0.4ms) INSERT INTO "mechanize_store_products" ("created_at", "description", "height", "length", "name", "price", "short_description", "updated_at", "weight", "width") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00], ["description", "Product description"], ["height", 2.0], ["length", 2.0], ["name", "MyString"], ["price", 10.0], ["short_description", "Short"], ["updated_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00], ["weight", 1.0], ["width", 1.0]]
106
+  (0.0ms) RELEASE SAVEPOINT active_record_1
107
+ Redirected to http://test.host/mechanize_store/products/1
108
+ Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
109
+ MechanizeStore::Product Load (0.1ms) SELECT "mechanize_store_products".* FROM "mechanize_store_products" ORDER BY "mechanize_store_products"."id" DESC LIMIT 1
110
+  (0.5ms) rollback transaction
111
+  (0.1ms) begin transaction
112
+ Processing by MechanizeStore::ProductsController#new as HTML
113
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
114
+  (0.1ms) rollback transaction
115
+  (0.0ms) begin transaction
116
+  (0.1ms) SAVEPOINT active_record_1
117
+ SQL (0.4ms) INSERT INTO "mechanize_store_products" ("created_at", "description", "height", "length", "name", "price", "short_description", "updated_at", "weight", "width") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00], ["description", "Product description"], ["height", 2.0], ["length", 2.0], ["name", "MyString"], ["price", 10.0], ["short_description", "Short"], ["updated_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00], ["weight", 1.0], ["width", 1.0]]
118
+  (0.0ms) RELEASE SAVEPOINT active_record_1
119
+ Processing by MechanizeStore::ProductsController#index as HTML
120
+ Completed 200 OK in 5ms (Views: 2.0ms | ActiveRecord: 0.0ms)
121
+ MechanizeStore::Product Load (0.1ms) SELECT "mechanize_store_products".* FROM "mechanize_store_products" LIMIT 30 OFFSET 0
122
+  (0.4ms) rollback transaction
123
+  (0.1ms) begin transaction
124
+  (0.1ms) SAVEPOINT active_record_1
125
+ SQL (0.4ms) INSERT INTO "mechanize_store_products" ("created_at", "description", "height", "length", "name", "price", "short_description", "updated_at", "weight", "width") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00], ["description", "Product description"], ["height", 2.0], ["length", 2.0], ["name", "MyString"], ["price", 10.0], ["short_description", "Short"], ["updated_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00], ["weight", 1.0], ["width", 1.0]]
126
+  (0.0ms) RELEASE SAVEPOINT active_record_1
127
+ Processing by MechanizeStore::ProductsController#edit as HTML
128
+ Parameters: {"id"=>"1"}
129
+ MechanizeStore::Product Load (0.1ms) SELECT "mechanize_store_products".* FROM "mechanize_store_products" WHERE "mechanize_store_products"."id" = ? LIMIT 1 [["id", "1"]]
130
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.1ms)
131
+  (0.5ms) rollback transaction
132
+  (0.1ms) begin transaction
133
+  (0.1ms) SAVEPOINT active_record_1
134
+ SQL (0.4ms) INSERT INTO "mechanize_store_products" ("created_at", "description", "height", "length", "name", "price", "short_description", "updated_at", "weight", "width") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00], ["description", "Product description"], ["height", 2.0], ["length", 2.0], ["name", "MyString"], ["price", 10.0], ["short_description", "Short"], ["updated_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00], ["weight", 1.0], ["width", 1.0]]
135
+  (0.1ms) RELEASE SAVEPOINT active_record_1
136
+ Processing by MechanizeStore::ProductsController#destroy as HTML
137
+ Parameters: {"id"=>"1"}
138
+ MechanizeStore::Product Load (0.1ms) SELECT "mechanize_store_products".* FROM "mechanize_store_products" WHERE "mechanize_store_products"."id" = ? LIMIT 1 [["id", "1"]]
139
+ MechanizeStore::Product Load (0.1ms) SELECT "mechanize_store_products".* FROM "mechanize_store_products" WHERE "mechanize_store_products"."id" = ? LIMIT 1 [["id", "1"]]
140
+  (0.1ms) SAVEPOINT active_record_1
141
+ SQL (1.1ms) DELETE FROM "mechanize_store_products" WHERE "mechanize_store_products"."id" = ? [["id", 1]]
142
+  (0.1ms) RELEASE SAVEPOINT active_record_1
143
+ Redirected to http://test.host/mechanize_store/products
144
+ Completed 302 Found in 7ms (ActiveRecord: 1.3ms)
145
+  (0.6ms) rollback transaction
146
+  (0.1ms) begin transaction
147
+  (0.1ms) SAVEPOINT active_record_1
148
+ SQL (0.5ms) INSERT INTO "mechanize_store_products" ("created_at", "description", "height", "length", "name", "price", "short_description", "updated_at", "weight", "width") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00], ["description", "Product description"], ["height", 2.0], ["length", 2.0], ["name", "MyString"], ["price", 10.0], ["short_description", "Short"], ["updated_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00], ["weight", 1.0], ["width", 1.0]]
149
+  (0.1ms) RELEASE SAVEPOINT active_record_1
150
+  (0.1ms) SELECT COUNT(*) FROM "mechanize_store_products"
151
+ Processing by MechanizeStore::ProductsController#destroy as HTML
152
+ Parameters: {"id"=>"1"}
153
+ MechanizeStore::Product Load (0.1ms) SELECT "mechanize_store_products".* FROM "mechanize_store_products" WHERE "mechanize_store_products"."id" = ? LIMIT 1 [["id", "1"]]
154
+ MechanizeStore::Product Load (0.1ms) SELECT "mechanize_store_products".* FROM "mechanize_store_products" WHERE "mechanize_store_products"."id" = ? LIMIT 1 [["id", "1"]]
155
+  (0.1ms) SAVEPOINT active_record_1
156
+ SQL (0.3ms) DELETE FROM "mechanize_store_products" WHERE "mechanize_store_products"."id" = ? [["id", 1]]
157
+  (0.0ms) RELEASE SAVEPOINT active_record_1
158
+ Redirected to http://test.host/mechanize_store/products
159
+ Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
160
+  (0.1ms) SELECT COUNT(*) FROM "mechanize_store_products"
161
+  (0.6ms) rollback transaction
162
+  (0.1ms) begin transaction
163
+  (0.1ms) SAVEPOINT active_record_1
164
+ SQL (0.7ms) INSERT INTO "mechanize_store_flags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00], ["name", "MyString"], ["updated_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00]]
165
+  (0.1ms) RELEASE SAVEPOINT active_record_1
166
+  (0.1ms) SAVEPOINT active_record_1
167
+ SQL (1.2ms) INSERT INTO "mechanize_store_freights" ("created_at", "delivery_time", "service", "updated_at", "value", "zipcode") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00], ["delivery_time", 1], ["service", "MyString"], ["updated_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00], ["value", 1.5], ["zipcode", "MyString"]]
168
+  (0.1ms) RELEASE SAVEPOINT active_record_1
169
+  (0.1ms) SAVEPOINT active_record_1
170
+ SQL (1.3ms) INSERT INTO "mechanize_store_orders" ("created_at", "order_status", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00], ["order_status", 2], ["updated_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00]]
171
+ SQL (1.5ms) INSERT INTO "mechanize_store_payments" ("created_at", "flag_id", "order_id", "paid_in", "paid_value", "payment_status", "payment_type", "plot", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00], ["flag_id", 1], ["order_id", 1], ["paid_in", Wed, 02 Apr 2014 11:05:39 UTC +00:00], ["paid_value", 1.5], ["payment_status", 3], ["payment_type", 1], ["plot", 1], ["updated_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00], ["value", 1.5]]
172
+ SQL (0.2ms) UPDATE "mechanize_store_freights" SET "order_id" = ?, "updated_at" = ? WHERE "mechanize_store_freights"."id" = 1 [["order_id", 1], ["updated_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00]]
173
+ MechanizeStore::OrderItem Load (0.1ms) SELECT "mechanize_store_order_items".* FROM "mechanize_store_order_items" WHERE "mechanize_store_order_items"."order_id" = ? [["order_id", 1]]
174
+  (0.0ms) RELEASE SAVEPOINT active_record_1
175
+ Processing by MechanizeStore::OrdersController#show as HTML
176
+ Parameters: {"id"=>"1"}
177
+ MechanizeStore::Order Load (0.1ms) SELECT "mechanize_store_orders".* FROM "mechanize_store_orders" WHERE "mechanize_store_orders"."id" = ? LIMIT 1 [["id", "1"]]
178
+ Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.1ms)
179
+  (0.8ms) rollback transaction
180
+  (0.1ms) begin transaction
181
+  (0.1ms) SAVEPOINT active_record_1
182
+ SQL (0.3ms) INSERT INTO "mechanize_store_flags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00], ["name", "MyString"], ["updated_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00]]
183
+  (0.0ms) RELEASE SAVEPOINT active_record_1
184
+  (0.1ms) SAVEPOINT active_record_1
185
+ SQL (0.4ms) INSERT INTO "mechanize_store_freights" ("created_at", "delivery_time", "service", "updated_at", "value", "zipcode") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00], ["delivery_time", 1], ["service", "MyString"], ["updated_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00], ["value", 1.5], ["zipcode", "MyString"]]
186
+  (0.1ms) RELEASE SAVEPOINT active_record_1
187
+  (0.0ms) SAVEPOINT active_record_1
188
+ SQL (0.2ms) INSERT INTO "mechanize_store_orders" ("created_at", "order_status", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00], ["order_status", 2], ["updated_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00]]
189
+ SQL (0.2ms) INSERT INTO "mechanize_store_payments" ("created_at", "flag_id", "order_id", "paid_in", "paid_value", "payment_status", "payment_type", "plot", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00], ["flag_id", 1], ["order_id", 1], ["paid_in", Wed, 02 Apr 2014 11:05:39 UTC +00:00], ["paid_value", 1.5], ["payment_status", 3], ["payment_type", 1], ["plot", 1], ["updated_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00], ["value", 1.5]]
190
+ SQL (0.1ms) UPDATE "mechanize_store_freights" SET "order_id" = ?, "updated_at" = ? WHERE "mechanize_store_freights"."id" = 1 [["order_id", 1], ["updated_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00]]
191
+ MechanizeStore::OrderItem Load (0.0ms) SELECT "mechanize_store_order_items".* FROM "mechanize_store_order_items" WHERE "mechanize_store_order_items"."order_id" = ? [["order_id", 1]]
192
+  (0.1ms) RELEASE SAVEPOINT active_record_1
193
+ Processing by MechanizeStore::OrdersController#index as HTML
194
+ Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.0ms)
195
+ MechanizeStore::Order Load (0.1ms) SELECT "mechanize_store_orders".* FROM "mechanize_store_orders" LIMIT 30 OFFSET 0
196
+  (0.8ms) rollback transaction
197
+  (0.1ms) begin transaction
198
+  (0.1ms) SAVEPOINT active_record_1
199
+ SQL (0.4ms) INSERT INTO "mechanize_store_flags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00], ["name", "MyString"], ["updated_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00]]
200
+  (0.1ms) RELEASE SAVEPOINT active_record_1
201
+ Processing by MechanizeStore::FlagsController#update as HTML
202
+ Parameters: {"flag"=>{"name"=>"invalid value"}, "id"=>"1"}
203
+ MechanizeStore::Flag Load (0.2ms) SELECT "mechanize_store_flags".* FROM "mechanize_store_flags" WHERE "mechanize_store_flags"."id" = ? LIMIT 1 [["id", "1"]]
204
+ MechanizeStore::Flag Load (0.1ms) SELECT "mechanize_store_flags".* FROM "mechanize_store_flags" WHERE "mechanize_store_flags"."id" = ? LIMIT 1 [["id", "1"]]
205
+  (0.1ms) SAVEPOINT active_record_1
206
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
207
+ Completed 200 OK in 6ms (Views: 2.8ms | ActiveRecord: 0.3ms)
208
+  (0.4ms) rollback transaction
209
+  (0.1ms) begin transaction
210
+  (0.1ms) SAVEPOINT active_record_1
211
+ SQL (0.5ms) INSERT INTO "mechanize_store_flags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00], ["name", "MyString"], ["updated_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00]]
212
+  (0.0ms) RELEASE SAVEPOINT active_record_1
213
+ Processing by MechanizeStore::FlagsController#update as HTML
214
+ Parameters: {"flag"=>{"name"=>"invalid value"}, "id"=>"1"}
215
+ MechanizeStore::Flag Load (0.1ms) SELECT "mechanize_store_flags".* FROM "mechanize_store_flags" WHERE "mechanize_store_flags"."id" = ? LIMIT 1 [["id", "1"]]
216
+ MechanizeStore::Flag Load (0.0ms) SELECT "mechanize_store_flags".* FROM "mechanize_store_flags" WHERE "mechanize_store_flags"."id" = ? LIMIT 1 [["id", "1"]]
217
+  (0.1ms) SAVEPOINT active_record_1
218
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
219
+ Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 0.2ms)
220
+  (0.4ms) rollback transaction
221
+  (0.1ms) begin transaction
222
+  (0.1ms) SAVEPOINT active_record_1
223
+ SQL (0.4ms) INSERT INTO "mechanize_store_flags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00], ["name", "MyString"], ["updated_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00]]
224
+  (0.1ms) RELEASE SAVEPOINT active_record_1
225
+ Processing by MechanizeStore::FlagsController#update as HTML
226
+ Parameters: {"flag"=>{"name"=>"MyString"}, "id"=>"1"}
227
+ MechanizeStore::Flag Load (0.1ms) SELECT "mechanize_store_flags".* FROM "mechanize_store_flags" WHERE "mechanize_store_flags"."id" = ? LIMIT 1 [["id", "1"]]
228
+ MechanizeStore::Flag Load (0.0ms) SELECT "mechanize_store_flags".* FROM "mechanize_store_flags" WHERE "mechanize_store_flags"."id" = ? LIMIT 1 [["id", "1"]]
229
+  (0.0ms) SAVEPOINT active_record_1
230
+  (0.0ms) RELEASE SAVEPOINT active_record_1
231
+ Redirected to http://test.host/mechanize_store/flags/1
232
+ Completed 302 Found in 3ms (ActiveRecord: 0.2ms)
233
+  (0.4ms) rollback transaction
234
+  (0.1ms) begin transaction
235
+  (0.1ms) SAVEPOINT active_record_1
236
+ SQL (0.4ms) INSERT INTO "mechanize_store_flags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00], ["name", "MyString"], ["updated_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00]]
237
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238
+ Processing by MechanizeStore::FlagsController#update as HTML
239
+ Parameters: {"flag"=>{"name"=>"MyString"}, "id"=>"1"}
240
+ MechanizeStore::Flag Load (0.1ms) SELECT "mechanize_store_flags".* FROM "mechanize_store_flags" WHERE "mechanize_store_flags"."id" = ? LIMIT 1 [["id", "1"]]
241
+ MechanizeStore::Flag Load (0.0ms) SELECT "mechanize_store_flags".* FROM "mechanize_store_flags" WHERE "mechanize_store_flags"."id" = ? LIMIT 1 [["id", "1"]]
242
+ Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.1ms)
243
+  (0.4ms) rollback transaction
244
+  (0.1ms) begin transaction
245
+  (0.1ms) SAVEPOINT active_record_1
246
+ SQL (0.4ms) INSERT INTO "mechanize_store_flags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00], ["name", "MyString"], ["updated_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00]]
247
+  (0.1ms) RELEASE SAVEPOINT active_record_1
248
+ Processing by MechanizeStore::FlagsController#update as HTML
249
+ Parameters: {"flag"=>{"name"=>"MyString"}, "id"=>"1"}
250
+ MechanizeStore::Flag Load (0.1ms) SELECT "mechanize_store_flags".* FROM "mechanize_store_flags" WHERE "mechanize_store_flags"."id" = ? LIMIT 1 [["id", "1"]]
251
+ MechanizeStore::Flag Load (0.0ms) SELECT "mechanize_store_flags".* FROM "mechanize_store_flags" WHERE "mechanize_store_flags"."id" = ? LIMIT 1 [["id", "1"]]
252
+  (0.1ms) SAVEPOINT active_record_1
253
+  (0.0ms) RELEASE SAVEPOINT active_record_1
254
+ Redirected to http://test.host/mechanize_store/flags/1
255
+ Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
256
+  (0.5ms) rollback transaction
257
+  (0.1ms) begin transaction
258
+  (0.1ms) SAVEPOINT active_record_1
259
+ SQL (0.3ms) INSERT INTO "mechanize_store_flags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00], ["name", "MyString"], ["updated_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00]]
260
+  (0.0ms) RELEASE SAVEPOINT active_record_1
261
+ Processing by MechanizeStore::FlagsController#show as HTML
262
+ Parameters: {"id"=>"1"}
263
+ MechanizeStore::Flag Load (0.1ms) SELECT "mechanize_store_flags".* FROM "mechanize_store_flags" WHERE "mechanize_store_flags"."id" = ? LIMIT 1 [["id", "1"]]
264
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.1ms)
265
+  (0.4ms) rollback transaction
266
+  (0.1ms) begin transaction
267
+ Processing by MechanizeStore::FlagsController#create as HTML
268
+ Parameters: {"flag"=>{"name"=>"invalid value"}}
269
+ Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.0ms)
270
+  (0.1ms) rollback transaction
271
+  (0.1ms) begin transaction
272
+ Processing by MechanizeStore::FlagsController#create as HTML
273
+ Parameters: {"flag"=>{"name"=>"invalid value"}}
274
+ Completed 200 OK in 2ms (Views: 0.6ms | ActiveRecord: 0.0ms)
275
+  (0.1ms) rollback transaction
276
+  (0.1ms) begin transaction
277
+ Processing by MechanizeStore::FlagsController#create as HTML
278
+ Parameters: {"flag"=>{"name"=>"MyString"}}
279
+  (0.1ms) SAVEPOINT active_record_1
280
+ SQL (0.4ms) INSERT INTO "mechanize_store_flags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00], ["name", "MyString"], ["updated_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00]]
281
+  (0.1ms) RELEASE SAVEPOINT active_record_1
282
+ Redirected to http://test.host/mechanize_store/flags/1
283
+ Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
284
+  (0.4ms) rollback transaction
285
+  (0.1ms) begin transaction
286
+  (0.1ms) SELECT COUNT(*) FROM "mechanize_store_flags"
287
+ Processing by MechanizeStore::FlagsController#create as HTML
288
+ Parameters: {"flag"=>{"name"=>"MyString"}}
289
+  (0.1ms) SAVEPOINT active_record_1
290
+ SQL (0.3ms) INSERT INTO "mechanize_store_flags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00], ["name", "MyString"], ["updated_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00]]
291
+  (0.1ms) RELEASE SAVEPOINT active_record_1
292
+ Redirected to http://test.host/mechanize_store/flags/1
293
+ Completed 302 Found in 2ms (ActiveRecord: 0.4ms)
294
+  (0.1ms) SELECT COUNT(*) FROM "mechanize_store_flags"
295
+  (0.4ms) rollback transaction
296
+  (0.1ms) begin transaction
297
+ Processing by MechanizeStore::FlagsController#create as HTML
298
+ Parameters: {"flag"=>{"name"=>"MyString"}}
299
+  (0.1ms) SAVEPOINT active_record_1
300
+ SQL (0.3ms) INSERT INTO "mechanize_store_flags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00], ["name", "MyString"], ["updated_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00]]
301
+  (0.1ms) RELEASE SAVEPOINT active_record_1
302
+ Redirected to http://test.host/mechanize_store/flags/1
303
+ Completed 302 Found in 2ms (ActiveRecord: 0.5ms)
304
+ MechanizeStore::Flag Load (0.1ms) SELECT "mechanize_store_flags".* FROM "mechanize_store_flags" ORDER BY "mechanize_store_flags"."id" DESC LIMIT 1
305
+  (0.4ms) rollback transaction
306
+  (0.1ms) begin transaction
307
+ Processing by MechanizeStore::FlagsController#new as HTML
308
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
309
+  (0.1ms) rollback transaction
310
+  (0.1ms) begin transaction
311
+  (0.2ms) SAVEPOINT active_record_1
312
+ SQL (0.3ms) INSERT INTO "mechanize_store_flags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00], ["name", "MyString"], ["updated_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00]]
313
+  (0.0ms) RELEASE SAVEPOINT active_record_1
314
+ Processing by MechanizeStore::FlagsController#index as HTML
315
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
316
+ MechanizeStore::Flag Load (0.1ms) SELECT "mechanize_store_flags".* FROM "mechanize_store_flags" LIMIT 30 OFFSET 0
317
+  (0.5ms) rollback transaction
318
+  (0.1ms) begin transaction
319
+  (0.1ms) SAVEPOINT active_record_1
320
+ SQL (0.4ms) INSERT INTO "mechanize_store_flags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00], ["name", "MyString"], ["updated_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00]]
321
+  (0.0ms) RELEASE SAVEPOINT active_record_1
322
+ Processing by MechanizeStore::FlagsController#edit as HTML
323
+ Parameters: {"id"=>"1"}
324
+ MechanizeStore::Flag Load (0.1ms) SELECT "mechanize_store_flags".* FROM "mechanize_store_flags" WHERE "mechanize_store_flags"."id" = ? LIMIT 1 [["id", "1"]]
325
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.1ms)
326
+  (0.4ms) rollback transaction
327
+  (0.1ms) begin transaction
328
+  (0.1ms) SAVEPOINT active_record_1
329
+ SQL (0.4ms) INSERT INTO "mechanize_store_flags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00], ["name", "MyString"], ["updated_at", Thu, 17 Jul 2014 18:23:53 UTC +00:00]]
330
+  (0.1ms) RELEASE SAVEPOINT active_record_1
331
+ Processing by MechanizeStore::FlagsController#destroy as HTML
332
+ Parameters: {"id"=>"1"}
333
+ MechanizeStore::Flag Load (0.1ms) SELECT "mechanize_store_flags".* FROM "mechanize_store_flags" WHERE "mechanize_store_flags"."id" = ? LIMIT 1 [["id", "1"]]
334
+ MechanizeStore::Flag Load (0.0ms) SELECT "mechanize_store_flags".* FROM "mechanize_store_flags" WHERE "mechanize_store_flags"."id" = ? LIMIT 1 [["id", "1"]]
335
+  (0.1ms) SAVEPOINT active_record_1
336
+ SQL (0.3ms) DELETE FROM "mechanize_store_flags" WHERE "mechanize_store_flags"."id" = ? [["id", 1]]
337
+  (0.0ms) RELEASE SAVEPOINT active_record_1
338
+ Redirected to http://test.host/mechanize_store/flags
339
+ Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
340
+  (0.6ms) rollback transaction
341
+  (0.1ms) begin transaction
342
+  (0.1ms) SAVEPOINT active_record_1
343
+ SQL (0.3ms) INSERT INTO "mechanize_store_flags" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00], ["name", "MyString"], ["updated_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00]]
344
+  (0.0ms) RELEASE SAVEPOINT active_record_1
345
+  (0.1ms) SELECT COUNT(*) FROM "mechanize_store_flags"
346
+ Processing by MechanizeStore::FlagsController#destroy as HTML
347
+ Parameters: {"id"=>"1"}
348
+ MechanizeStore::Flag Load (0.1ms) SELECT "mechanize_store_flags".* FROM "mechanize_store_flags" WHERE "mechanize_store_flags"."id" = ? LIMIT 1 [["id", "1"]]
349
+ MechanizeStore::Flag Load (0.0ms) SELECT "mechanize_store_flags".* FROM "mechanize_store_flags" WHERE "mechanize_store_flags"."id" = ? LIMIT 1 [["id", "1"]]
350
+  (0.1ms) SAVEPOINT active_record_1
351
+ SQL (0.2ms) DELETE FROM "mechanize_store_flags" WHERE "mechanize_store_flags"."id" = ? [["id", 1]]
352
+  (0.0ms) RELEASE SAVEPOINT active_record_1
353
+ Redirected to http://test.host/mechanize_store/flags
354
+ Completed 302 Found in 2ms (ActiveRecord: 0.4ms)
355
+  (0.1ms) SELECT COUNT(*) FROM "mechanize_store_flags"
356
+  (0.7ms) rollback transaction
357
+  (0.1ms) begin transaction
358
+  (0.1ms) rollback transaction
359
+  (0.1ms) begin transaction
360
+  (0.0ms) rollback transaction
361
+  (0.0ms) begin transaction
362
+  (0.1ms) rollback transaction
363
+  (0.0ms) begin transaction
364
+  (0.2ms) rollback transaction
365
+  (0.1ms) begin transaction
366
+  (0.1ms) rollback transaction
367
+  (0.0ms) begin transaction
368
+  (0.1ms) rollback transaction
369
+  (0.1ms) begin transaction
370
+  (0.1ms) rollback transaction
371
+  (0.1ms) begin transaction
372
+  (0.1ms) rollback transaction
373
+  (0.1ms) begin transaction
374
+  (0.1ms) rollback transaction
375
+  (0.1ms) begin transaction
376
+  (0.1ms) rollback transaction
377
+  (0.1ms) begin transaction
378
+  (0.0ms) rollback transaction
379
+  (0.1ms) begin transaction
380
+  (0.1ms) rollback transaction
381
+  (0.0ms) begin transaction
382
+  (0.1ms) rollback transaction
383
+  (0.1ms) begin transaction
384
+  (0.1ms) rollback transaction
385
+  (0.1ms) begin transaction
386
+  (0.0ms) rollback transaction
387
+  (0.0ms) begin transaction
388
+  (0.0ms) rollback transaction
389
+  (0.1ms) begin transaction
390
+  (0.0ms) rollback transaction
391
+  (0.1ms) begin transaction
392
+  (0.1ms) rollback transaction
393
+  (0.1ms) begin transaction
394
+  (0.1ms) SAVEPOINT active_record_1
395
+ SQL (0.8ms) INSERT INTO "mechanize_store_product_sections" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00], ["name", "MyString"], ["updated_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00]]
396
+ SQL (0.5ms) UPDATE "mechanize_store_product_sections" SET "name" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "slug" = ? WHERE "mechanize_store_product_sections"."id" = 1 [["name", "MyString"], ["created_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00], ["updated_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00], ["id", 1], ["slug", "mystring"]]
397
+  (0.1ms) RELEASE SAVEPOINT active_record_1
398
+ Processing by MechanizeStore::ProductSectionsController#update as HTML
399
+ Parameters: {"product_section"=>{"name"=>"invalid value"}, "id"=>"1"}
400
+ MechanizeStore::ProductSection Load (0.2ms) SELECT "mechanize_store_product_sections".* FROM "mechanize_store_product_sections" WHERE "mechanize_store_product_sections"."id" = ? LIMIT 1 [["id", "1"]]
401
+ MechanizeStore::ProductSection Load (0.0ms) SELECT "mechanize_store_product_sections".* FROM "mechanize_store_product_sections" WHERE "mechanize_store_product_sections"."id" = ? LIMIT 1 [["id", "1"]]
402
+  (0.1ms) SAVEPOINT active_record_1
403
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
404
+ Completed 200 OK in 6ms (Views: 2.6ms | ActiveRecord: 0.4ms)
405
+  (0.6ms) rollback transaction
406
+  (0.1ms) begin transaction
407
+  (0.1ms) SAVEPOINT active_record_1
408
+ SQL (0.4ms) INSERT INTO "mechanize_store_product_sections" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00], ["name", "MyString"], ["updated_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00]]
409
+ SQL (0.3ms) UPDATE "mechanize_store_product_sections" SET "name" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "slug" = ? WHERE "mechanize_store_product_sections"."id" = 1 [["name", "MyString"], ["created_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00], ["updated_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00], ["id", 1], ["slug", "mystring"]]
410
+  (0.1ms) RELEASE SAVEPOINT active_record_1
411
+ Processing by MechanizeStore::ProductSectionsController#update as HTML
412
+ Parameters: {"product_section"=>{"name"=>"invalid value"}, "id"=>"1"}
413
+ MechanizeStore::ProductSection Load (0.1ms) SELECT "mechanize_store_product_sections".* FROM "mechanize_store_product_sections" WHERE "mechanize_store_product_sections"."id" = ? LIMIT 1 [["id", "1"]]
414
+ MechanizeStore::ProductSection Load (0.1ms) SELECT "mechanize_store_product_sections".* FROM "mechanize_store_product_sections" WHERE "mechanize_store_product_sections"."id" = ? LIMIT 1 [["id", "1"]]
415
+  (0.1ms) SAVEPOINT active_record_1
416
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
417
+ Completed 200 OK in 5ms (Views: 1.2ms | ActiveRecord: 0.4ms)
418
+  (0.8ms) rollback transaction
419
+  (0.1ms) begin transaction
420
+  (0.1ms) SAVEPOINT active_record_1
421
+ SQL (0.4ms) INSERT INTO "mechanize_store_product_sections" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00], ["name", "MyString"], ["updated_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00]]
422
+ SQL (0.3ms) UPDATE "mechanize_store_product_sections" SET "name" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "slug" = ? WHERE "mechanize_store_product_sections"."id" = 1 [["name", "MyString"], ["created_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00], ["updated_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00], ["id", 1], ["slug", "mystring"]]
423
+  (0.1ms) RELEASE SAVEPOINT active_record_1
424
+ Processing by MechanizeStore::ProductSectionsController#update as HTML
425
+ Parameters: {"product_section"=>{"name"=>"MyString"}, "id"=>"1"}
426
+ MechanizeStore::ProductSection Load (0.1ms) SELECT "mechanize_store_product_sections".* FROM "mechanize_store_product_sections" WHERE "mechanize_store_product_sections"."id" = ? LIMIT 1 [["id", "1"]]
427
+ MechanizeStore::ProductSection Load (0.0ms) SELECT "mechanize_store_product_sections".* FROM "mechanize_store_product_sections" WHERE "mechanize_store_product_sections"."id" = ? LIMIT 1 [["id", "1"]]
428
+  (0.0ms) SAVEPOINT active_record_1
429
+  (0.0ms) RELEASE SAVEPOINT active_record_1
430
+ Redirected to http://test.host/mechanize_store/product_sections/1
431
+ Completed 302 Found in 4ms (ActiveRecord: 0.2ms)
432
+  (0.6ms) rollback transaction
433
+  (0.1ms) begin transaction
434
+  (0.1ms) SAVEPOINT active_record_1
435
+ SQL (0.4ms) INSERT INTO "mechanize_store_product_sections" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00], ["name", "MyString"], ["updated_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00]]
436
+ SQL (0.3ms) UPDATE "mechanize_store_product_sections" SET "name" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "slug" = ? WHERE "mechanize_store_product_sections"."id" = 1 [["name", "MyString"], ["created_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00], ["updated_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00], ["id", 1], ["slug", "mystring"]]
437
+  (0.1ms) RELEASE SAVEPOINT active_record_1
438
+ Processing by MechanizeStore::ProductSectionsController#update as HTML
439
+ Parameters: {"product_section"=>{"name"=>"MyString"}, "id"=>"1"}
440
+ MechanizeStore::ProductSection Load (0.1ms) SELECT "mechanize_store_product_sections".* FROM "mechanize_store_product_sections" WHERE "mechanize_store_product_sections"."id" = ? LIMIT 1 [["id", "1"]]
441
+ MechanizeStore::ProductSection Load (0.0ms) SELECT "mechanize_store_product_sections".* FROM "mechanize_store_product_sections" WHERE "mechanize_store_product_sections"."id" = ? LIMIT 1 [["id", "1"]]
442
+ Completed 200 OK in 2ms (Views: 0.5ms | ActiveRecord: 0.1ms)
443
+  (0.5ms) rollback transaction
444
+  (0.1ms) begin transaction
445
+  (0.1ms) SAVEPOINT active_record_1
446
+ SQL (0.5ms) INSERT INTO "mechanize_store_product_sections" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00], ["name", "MyString"], ["updated_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00]]
447
+ SQL (0.3ms) UPDATE "mechanize_store_product_sections" SET "name" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "slug" = ? WHERE "mechanize_store_product_sections"."id" = 1 [["name", "MyString"], ["created_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00], ["updated_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00], ["id", 1], ["slug", "mystring"]]
448
+  (0.1ms) RELEASE SAVEPOINT active_record_1
449
+ Processing by MechanizeStore::ProductSectionsController#update as HTML
450
+ Parameters: {"product_section"=>{"name"=>"MyString"}, "id"=>"1"}
451
+ MechanizeStore::ProductSection Load (0.1ms) SELECT "mechanize_store_product_sections".* FROM "mechanize_store_product_sections" WHERE "mechanize_store_product_sections"."id" = ? LIMIT 1 [["id", "1"]]
452
+ MechanizeStore::ProductSection Load (0.0ms) SELECT "mechanize_store_product_sections".* FROM "mechanize_store_product_sections" WHERE "mechanize_store_product_sections"."id" = ? LIMIT 1 [["id", "1"]]
453
+  (0.1ms) SAVEPOINT active_record_1
454
+  (0.1ms) RELEASE SAVEPOINT active_record_1
455
+ Redirected to http://test.host/mechanize_store/product_sections/1
456
+ Completed 302 Found in 3ms (ActiveRecord: 0.2ms)
457
+  (0.8ms) rollback transaction
458
+  (0.1ms) begin transaction
459
+  (0.1ms) SAVEPOINT active_record_1
460
+ SQL (0.3ms) INSERT INTO "mechanize_store_product_sections" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00], ["name", "MyString"], ["updated_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00]]
461
+ SQL (0.3ms) UPDATE "mechanize_store_product_sections" SET "name" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "slug" = ? WHERE "mechanize_store_product_sections"."id" = 1 [["name", "MyString"], ["created_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00], ["updated_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00], ["id", 1], ["slug", "mystring"]]
462
+  (0.1ms) RELEASE SAVEPOINT active_record_1
463
+ Processing by MechanizeStore::ProductSectionsController#show as HTML
464
+ Parameters: {"id"=>"1"}
465
+ MechanizeStore::ProductSection Load (0.1ms) SELECT "mechanize_store_product_sections".* FROM "mechanize_store_product_sections" WHERE "mechanize_store_product_sections"."id" = ? LIMIT 1 [["id", "1"]]
466
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.1ms)
467
+  (0.5ms) rollback transaction
468
+  (0.1ms) begin transaction
469
+ Processing by MechanizeStore::ProductSectionsController#create as HTML
470
+ Parameters: {"product_section"=>{"name"=>"invalid value"}}
471
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
472
+  (0.1ms) rollback transaction
473
+  (0.1ms) begin transaction
474
+ Processing by MechanizeStore::ProductSectionsController#create as HTML
475
+ Parameters: {"product_section"=>{"name"=>"invalid value"}}
476
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
477
+  (0.1ms) rollback transaction
478
+  (0.1ms) begin transaction
479
+ Processing by MechanizeStore::ProductSectionsController#create as HTML
480
+ Parameters: {"product_section"=>{"name"=>"MyString"}}
481
+  (0.1ms) SAVEPOINT active_record_1
482
+ SQL (0.4ms) INSERT INTO "mechanize_store_product_sections" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00], ["name", "MyString"], ["updated_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00]]
483
+ SQL (0.3ms) UPDATE "mechanize_store_product_sections" SET "name" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "slug" = ? WHERE "mechanize_store_product_sections"."id" = 1 [["name", "MyString"], ["created_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00], ["updated_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00], ["id", 1], ["slug", "mystring"]]
484
+  (0.1ms) RELEASE SAVEPOINT active_record_1
485
+ Redirected to http://test.host/mechanize_store/product_sections/1
486
+ Completed 302 Found in 4ms (ActiveRecord: 0.8ms)
487
+  (0.6ms) rollback transaction
488
+  (0.1ms) begin transaction
489
+  (0.1ms) SELECT COUNT(*) FROM "mechanize_store_product_sections"
490
+ Processing by MechanizeStore::ProductSectionsController#create as HTML
491
+ Parameters: {"product_section"=>{"name"=>"MyString"}}
492
+  (0.1ms) SAVEPOINT active_record_1
493
+ SQL (0.3ms) INSERT INTO "mechanize_store_product_sections" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00], ["name", "MyString"], ["updated_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00]]
494
+ SQL (0.3ms) UPDATE "mechanize_store_product_sections" SET "name" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "slug" = ? WHERE "mechanize_store_product_sections"."id" = 1 [["name", "MyString"], ["created_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00], ["updated_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00], ["id", 1], ["slug", "mystring"]]
495
+  (0.1ms) RELEASE SAVEPOINT active_record_1
496
+ Redirected to http://test.host/mechanize_store/product_sections/1
497
+ Completed 302 Found in 3ms (ActiveRecord: 0.7ms)
498
+  (0.1ms) SELECT COUNT(*) FROM "mechanize_store_product_sections"
499
+  (0.6ms) rollback transaction
500
+  (0.1ms) begin transaction
501
+ Processing by MechanizeStore::ProductSectionsController#create as HTML
502
+ Parameters: {"product_section"=>{"name"=>"MyString"}}
503
+  (0.2ms) SAVEPOINT active_record_1
504
+ SQL (0.5ms) INSERT INTO "mechanize_store_product_sections" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00], ["name", "MyString"], ["updated_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00]]
505
+ SQL (0.3ms) UPDATE "mechanize_store_product_sections" SET "name" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "slug" = ? WHERE "mechanize_store_product_sections"."id" = 1 [["name", "MyString"], ["created_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00], ["updated_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00], ["id", 1], ["slug", "mystring"]]
506
+  (0.1ms) RELEASE SAVEPOINT active_record_1
507
+ Redirected to http://test.host/mechanize_store/product_sections/1
508
+ Completed 302 Found in 5ms (ActiveRecord: 1.0ms)
509
+ MechanizeStore::ProductSection Load (0.1ms) SELECT "mechanize_store_product_sections".* FROM "mechanize_store_product_sections" ORDER BY "mechanize_store_product_sections"."id" DESC LIMIT 1
510
+  (0.7ms) rollback transaction
511
+  (0.1ms) begin transaction
512
+ Processing by MechanizeStore::ProductSectionsController#new as HTML
513
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
514
+  (0.1ms) rollback transaction
515
+  (0.1ms) begin transaction
516
+  (0.1ms) SAVEPOINT active_record_1
517
+ SQL (0.4ms) INSERT INTO "mechanize_store_product_sections" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00], ["name", "MyString"], ["updated_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00]]
518
+ SQL (0.3ms) UPDATE "mechanize_store_product_sections" SET "name" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "slug" = ? WHERE "mechanize_store_product_sections"."id" = 1 [["name", "MyString"], ["created_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00], ["updated_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00], ["id", 1], ["slug", "mystring"]]
519
+  (0.1ms) RELEASE SAVEPOINT active_record_1
520
+ Processing by MechanizeStore::ProductSectionsController#index as HTML
521
+ Completed 200 OK in 3ms (Views: 1.9ms | ActiveRecord: 0.0ms)
522
+ MechanizeStore::ProductSection Load (0.1ms) SELECT "mechanize_store_product_sections".* FROM "mechanize_store_product_sections" LIMIT 30 OFFSET 0
523
+  (0.5ms) rollback transaction
524
+  (0.1ms) begin transaction
525
+  (0.1ms) SAVEPOINT active_record_1
526
+ SQL (0.5ms) INSERT INTO "mechanize_store_product_sections" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00], ["name", "MyString"], ["updated_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00]]
527
+ SQL (0.3ms) UPDATE "mechanize_store_product_sections" SET "name" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "slug" = ? WHERE "mechanize_store_product_sections"."id" = 1 [["name", "MyString"], ["created_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00], ["updated_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00], ["id", 1], ["slug", "mystring"]]
528
+  (0.1ms) RELEASE SAVEPOINT active_record_1
529
+ Processing by MechanizeStore::ProductSectionsController#edit as HTML
530
+ Parameters: {"id"=>"1"}
531
+ MechanizeStore::ProductSection Load (0.1ms) SELECT "mechanize_store_product_sections".* FROM "mechanize_store_product_sections" WHERE "mechanize_store_product_sections"."id" = ? LIMIT 1 [["id", "1"]]
532
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.1ms)
533
+  (0.6ms) rollback transaction
534
+  (0.1ms) begin transaction
535
+  (0.0ms) SAVEPOINT active_record_1
536
+ SQL (0.4ms) INSERT INTO "mechanize_store_product_sections" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00], ["name", "MyString"], ["updated_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00]]
537
+ SQL (0.2ms) UPDATE "mechanize_store_product_sections" SET "name" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "slug" = ? WHERE "mechanize_store_product_sections"."id" = 1 [["name", "MyString"], ["created_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00], ["updated_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00], ["id", 1], ["slug", "mystring"]]
538
+  (0.0ms) RELEASE SAVEPOINT active_record_1
539
+ Processing by MechanizeStore::ProductSectionsController#destroy as HTML
540
+ Parameters: {"id"=>"1"}
541
+ MechanizeStore::ProductSection Load (0.1ms) SELECT "mechanize_store_product_sections".* FROM "mechanize_store_product_sections" WHERE "mechanize_store_product_sections"."id" = ? LIMIT 1 [["id", "1"]]
542
+ MechanizeStore::ProductSection Load (0.0ms) SELECT "mechanize_store_product_sections".* FROM "mechanize_store_product_sections" WHERE "mechanize_store_product_sections"."id" = ? LIMIT 1 [["id", "1"]]
543
+  (0.1ms) SAVEPOINT active_record_1
544
+ SQL (0.1ms) DELETE FROM "mechanize_store_product_sections" WHERE "mechanize_store_product_sections"."id" = ? [["id", 1]]
545
+  (0.0ms) RELEASE SAVEPOINT active_record_1
546
+ Redirected to http://test.host/mechanize_store/product_sections
547
+ Completed 302 Found in 4ms (ActiveRecord: 0.3ms)
548
+  (0.5ms) rollback transaction
549
+  (0.1ms) begin transaction
550
+  (0.1ms) SAVEPOINT active_record_1
551
+ SQL (0.4ms) INSERT INTO "mechanize_store_product_sections" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00], ["name", "MyString"], ["updated_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00]]
552
+ SQL (0.4ms) UPDATE "mechanize_store_product_sections" SET "name" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "slug" = ? WHERE "mechanize_store_product_sections"."id" = 1 [["name", "MyString"], ["created_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00], ["updated_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00], ["id", 1], ["slug", "mystring"]]
553
+  (0.1ms) RELEASE SAVEPOINT active_record_1
554
+  (0.1ms) SELECT COUNT(*) FROM "mechanize_store_product_sections"
555
+ Processing by MechanizeStore::ProductSectionsController#destroy as HTML
556
+ Parameters: {"id"=>"1"}
557
+ MechanizeStore::ProductSection Load (0.1ms) SELECT "mechanize_store_product_sections".* FROM "mechanize_store_product_sections" WHERE "mechanize_store_product_sections"."id" = ? LIMIT 1 [["id", "1"]]
558
+ MechanizeStore::ProductSection Load (0.0ms) SELECT "mechanize_store_product_sections".* FROM "mechanize_store_product_sections" WHERE "mechanize_store_product_sections"."id" = ? LIMIT 1 [["id", "1"]]
559
+  (0.0ms) SAVEPOINT active_record_1
560
+ SQL (0.1ms) DELETE FROM "mechanize_store_product_sections" WHERE "mechanize_store_product_sections"."id" = ? [["id", 1]]
561
+  (0.0ms) RELEASE SAVEPOINT active_record_1
562
+ Redirected to http://test.host/mechanize_store/product_sections
563
+ Completed 302 Found in 3ms (ActiveRecord: 0.3ms)
564
+  (0.1ms) SELECT COUNT(*) FROM "mechanize_store_product_sections"
565
+  (0.6ms) rollback transaction
566
+  (0.1ms) begin transaction
567
+  (0.1ms) rollback transaction
568
+  (0.1ms) begin transaction
569
+  (0.1ms) rollback transaction
570
+  (0.1ms) begin transaction
571
+  (0.1ms) rollback transaction
572
+  (0.1ms) begin transaction
573
+  (0.0ms) rollback transaction
574
+  (0.1ms) begin transaction
575
+  (0.0ms) rollback transaction
576
+  (0.1ms) begin transaction
577
+  (0.1ms) rollback transaction
578
+  (0.2ms) begin transaction
579
+  (0.1ms) rollback transaction
580
+  (0.1ms) begin transaction
581
+  (0.1ms) SAVEPOINT active_record_1
582
+ SQL (0.4ms) INSERT INTO "mechanize_store_products" ("created_at", "description", "height", "length", "name", "price", "short_description", "updated_at", "weight", "width") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00], ["description", "MyText"], ["height", 1.5], ["length", 1.5], ["name", "MyString"], ["price", 1.5], ["short_description", "MyString"], ["updated_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00], ["weight", 1.5], ["width", 1.5]]
583
+  (0.0ms) RELEASE SAVEPOINT active_record_1
584
+ Processing by MechanizeStore::ProductPhotosController#create as JSON
585
+ Parameters: {"product_photo"=>{"file"=>[nil]}, "product_id"=>"1"}
586
+ MechanizeStore::Product Load (0.1ms) SELECT "mechanize_store_products".* FROM "mechanize_store_products" WHERE "mechanize_store_products"."id" = ? LIMIT 1 [["id", "1"]]
587
+  (0.1ms) SAVEPOINT active_record_1
588
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
589
+ Completed 422 Unprocessable Entity in 14ms (Views: 0.3ms | ActiveRecord: 0.6ms)
590
+  (0.4ms) rollback transaction
591
+  (0.1ms) begin transaction
592
+  (0.1ms) SAVEPOINT active_record_1
593
+ SQL (0.4ms) INSERT INTO "mechanize_store_products" ("created_at", "description", "height", "length", "name", "price", "short_description", "updated_at", "weight", "width") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00], ["description", "MyText"], ["height", 1.5], ["length", 1.5], ["name", "MyString"], ["price", 1.5], ["short_description", "MyString"], ["updated_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00], ["weight", 1.5], ["width", 1.5]]
594
+  (0.1ms) RELEASE SAVEPOINT active_record_1
595
+ Processing by MechanizeStore::ProductPhotosController#create as HTML
596
+ Parameters: {"product_photo"=>{"file"=>[#<Rack::Test::UploadedFile:0x000001026fe5e8 @content_type=nil, @original_filename="rails.png", @tempfile=#<Tempfile:/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/rails.png20140717-4889-haysyx>>]}, "product_id"=>"1"}
597
+ MechanizeStore::Product Load (0.1ms) SELECT "mechanize_store_products".* FROM "mechanize_store_products" WHERE "mechanize_store_products"."id" = ? LIMIT 1 [["id", "1"]]
598
+ Command :: identify -format '%wx%h,%[exif:orientation]' '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-176q2b4.png[0]' 2>/dev/null
599
+ Command :: identify -format %m '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-176q2b4.png[0]'
600
+ Command :: identify -format %m '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-176q2b4.png[0]'
601
+ Command :: identify -format %m '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-176q2b4.png[0]'
602
+ Command :: convert '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-176q2b4.png[0]' -auto-orient -resize "300x300>" '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-176q2b420140717-4889-dmhwvh'
603
+ Command :: file -b --mime '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-176q2b420140717-4889-dmhwvh'
604
+ Command :: identify -format '%wx%h,%[exif:orientation]' '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-176q2b4.png[0]' 2>/dev/null
605
+ Command :: identify -format %m '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-176q2b4.png[0]'
606
+ Command :: identify -format %m '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-176q2b4.png[0]'
607
+ Command :: identify -format %m '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-176q2b4.png[0]'
608
+ Command :: convert '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-176q2b4.png[0]' -auto-orient -resize "100x100>" '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-176q2b420140717-4889-15kfmtv'
609
+ Command :: file -b --mime '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-176q2b420140717-4889-15kfmtv'
610
+  (0.1ms) SAVEPOINT active_record_1
611
+ SQL (1.2ms) INSERT INTO "mechanize_store_product_photos" ("created_at", "file_content_type", "file_file_name", "file_file_size", "file_updated_at", "product_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00], ["file_content_type", ""], ["file_file_name", "rails.png"], ["file_file_size", 6646], ["file_updated_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00], ["product_id", 1], ["updated_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00]]
612
+  (0.1ms) RELEASE SAVEPOINT active_record_1
613
+ Redirected to http://test.host/mechanize_store/products/1
614
+ Completed 302 Found in 244ms (ActiveRecord: 1.5ms)
615
+  (0.8ms) rollback transaction
616
+  (0.1ms) begin transaction
617
+  (0.1ms) SAVEPOINT active_record_1
618
+ SQL (0.4ms) INSERT INTO "mechanize_store_products" ("created_at", "description", "height", "length", "name", "price", "short_description", "updated_at", "weight", "width") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00], ["description", "MyText"], ["height", 1.5], ["length", 1.5], ["name", "MyString"], ["price", 1.5], ["short_description", "MyString"], ["updated_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00], ["weight", 1.5], ["width", 1.5]]
619
+  (0.1ms) RELEASE SAVEPOINT active_record_1
620
+  (0.1ms) SELECT COUNT(*) FROM "mechanize_store_product_photos"
621
+ Processing by MechanizeStore::ProductPhotosController#create as HTML
622
+ Parameters: {"product_photo"=>{"file"=>[#<Rack::Test::UploadedFile:0x00000108bd7640 @content_type=nil, @original_filename="rails.png", @tempfile=#<Tempfile:/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/rails.png20140717-4889-81hzwm>>]}, "product_id"=>"1"}
623
+ MechanizeStore::Product Load (0.1ms) SELECT "mechanize_store_products".* FROM "mechanize_store_products" WHERE "mechanize_store_products"."id" = ? LIMIT 1 [["id", "1"]]
624
+ Command :: identify -format '%wx%h,%[exif:orientation]' '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-wbqov2.png[0]' 2>/dev/null
625
+ Command :: identify -format %m '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-wbqov2.png[0]'
626
+ Command :: identify -format %m '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-wbqov2.png[0]'
627
+ Command :: identify -format %m '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-wbqov2.png[0]'
628
+ Command :: convert '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-wbqov2.png[0]' -auto-orient -resize "300x300>" '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-wbqov220140717-4889-8qdqmp'
629
+ Command :: file -b --mime '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-wbqov220140717-4889-8qdqmp'
630
+ Command :: identify -format '%wx%h,%[exif:orientation]' '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-wbqov2.png[0]' 2>/dev/null
631
+ Command :: identify -format %m '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-wbqov2.png[0]'
632
+ Command :: identify -format %m '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-wbqov2.png[0]'
633
+ Command :: identify -format %m '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-wbqov2.png[0]'
634
+ Command :: convert '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-wbqov2.png[0]' -auto-orient -resize "100x100>" '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-wbqov220140717-4889-1wnkmic'
635
+ Command :: file -b --mime '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-wbqov220140717-4889-1wnkmic'
636
+  (0.2ms) SAVEPOINT active_record_1
637
+ SQL (0.7ms) INSERT INTO "mechanize_store_product_photos" ("created_at", "file_content_type", "file_file_name", "file_file_size", "file_updated_at", "product_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00], ["file_content_type", ""], ["file_file_name", "rails.png"], ["file_file_size", 6646], ["file_updated_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00], ["product_id", 1], ["updated_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00]]
638
+  (0.1ms) RELEASE SAVEPOINT active_record_1
639
+ Redirected to http://test.host/mechanize_store/products/1
640
+ Completed 302 Found in 208ms (ActiveRecord: 1.1ms)
641
+  (0.1ms) SELECT COUNT(*) FROM "mechanize_store_product_photos"
642
+  (0.7ms) rollback transaction
643
+  (0.1ms) begin transaction
644
+  (0.1ms) SAVEPOINT active_record_1
645
+ SQL (0.6ms) INSERT INTO "mechanize_store_products" ("created_at", "description", "height", "length", "name", "price", "short_description", "updated_at", "weight", "width") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00], ["description", "MyText"], ["height", 1.5], ["length", 1.5], ["name", "MyString"], ["price", 1.5], ["short_description", "MyString"], ["updated_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00], ["weight", 1.5], ["width", 1.5]]
646
+  (0.1ms) RELEASE SAVEPOINT active_record_1
647
+ Processing by MechanizeStore::ProductPhotosController#create as HTML
648
+ Parameters: {"product_photo"=>{"file"=>[#<Rack::Test::UploadedFile:0x0000010274d738 @content_type=nil, @original_filename="rails.png", @tempfile=#<Tempfile:/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/rails.png20140717-4889-18sxu0v>>]}, "product_id"=>"1"}
649
+ MechanizeStore::Product Load (0.1ms) SELECT "mechanize_store_products".* FROM "mechanize_store_products" WHERE "mechanize_store_products"."id" = ? LIMIT 1 [["id", "1"]]
650
+ Command :: identify -format '%wx%h,%[exif:orientation]' '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-11im37i.png[0]' 2>/dev/null
651
+ Command :: identify -format %m '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-11im37i.png[0]'
652
+ Command :: identify -format %m '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-11im37i.png[0]'
653
+ Command :: identify -format %m '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-11im37i.png[0]'
654
+ Command :: convert '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-11im37i.png[0]' -auto-orient -resize "300x300>" '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-11im37i20140717-4889-itq0db'
655
+ Command :: file -b --mime '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-11im37i20140717-4889-itq0db'
656
+ Command :: identify -format '%wx%h,%[exif:orientation]' '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-11im37i.png[0]' 2>/dev/null
657
+ Command :: identify -format %m '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-11im37i.png[0]'
658
+ Command :: identify -format %m '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-11im37i.png[0]'
659
+ Command :: identify -format %m '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-11im37i.png[0]'
660
+ Command :: convert '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-11im37i.png[0]' -auto-orient -resize "100x100>" '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-11im37i20140717-4889-1yudhhd'
661
+ Command :: file -b --mime '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-11im37i20140717-4889-1yudhhd'
662
+  (0.1ms) SAVEPOINT active_record_1
663
+ SQL (0.6ms) INSERT INTO "mechanize_store_product_photos" ("created_at", "file_content_type", "file_file_name", "file_file_size", "file_updated_at", "product_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00], ["file_content_type", ""], ["file_file_name", "rails.png"], ["file_file_size", 6646], ["file_updated_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00], ["product_id", 1], ["updated_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00]]
664
+  (0.1ms) RELEASE SAVEPOINT active_record_1
665
+ Redirected to http://test.host/mechanize_store/products/1
666
+ Completed 302 Found in 187ms (ActiveRecord: 0.8ms)
667
+  (0.6ms) rollback transaction
668
+  (0.1ms) begin transaction
669
+  (0.1ms) SAVEPOINT active_record_1
670
+ SQL (0.7ms) INSERT INTO "mechanize_store_products" ("created_at", "description", "height", "length", "name", "price", "short_description", "updated_at", "weight", "width") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00], ["description", "MyText"], ["height", 1.5], ["length", 1.5], ["name", "MyString"], ["price", 1.5], ["short_description", "MyString"], ["updated_at", Thu, 17 Jul 2014 18:23:54 UTC +00:00], ["weight", 1.5], ["width", 1.5]]
671
+  (0.1ms) RELEASE SAVEPOINT active_record_1
672
+ Command :: identify -format '%wx%h,%[exif:orientation]' '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-16h03bh.png[0]' 2>/dev/null
673
+ Command :: identify -format %m '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-16h03bh.png[0]'
674
+ Command :: identify -format %m '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-16h03bh.png[0]'
675
+ Command :: identify -format %m '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-16h03bh.png[0]'
676
+ Command :: convert '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-16h03bh.png[0]' -auto-orient -resize "300x300>" '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-16h03bh20140717-4889-16zvfso'
677
+ Command :: file -b --mime '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-16h03bh20140717-4889-16zvfso'
678
+ Command :: identify -format '%wx%h,%[exif:orientation]' '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-16h03bh.png[0]' 2>/dev/null
679
+ Command :: identify -format %m '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-16h03bh.png[0]'
680
+ Command :: identify -format %m '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-16h03bh.png[0]'
681
+ Command :: identify -format %m '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-16h03bh.png[0]'
682
+ Command :: convert '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-16h03bh.png[0]' -auto-orient -resize "100x100>" '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-16h03bh20140717-4889-1jtkk33'
683
+ Command :: file -b --mime '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-16h03bh20140717-4889-1jtkk33'
684
+  (0.1ms) SAVEPOINT active_record_1
685
+ SQL (0.7ms) INSERT INTO "mechanize_store_product_photos" ("created_at", "file_content_type", "file_file_name", "file_file_size", "file_updated_at", "product_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:55 UTC +00:00], ["file_content_type", ""], ["file_file_name", "rails.png"], ["file_file_size", 6646], ["file_updated_at", Thu, 17 Jul 2014 18:23:55 UTC +00:00], ["product_id", 1], ["updated_at", Thu, 17 Jul 2014 18:23:55 UTC +00:00]]
686
+  (0.1ms) RELEASE SAVEPOINT active_record_1
687
+ Processing by MechanizeStore::ProductPhotosController#index as JSON
688
+ Parameters: {"product_id"=>"1"}
689
+ MechanizeStore::Product Load (0.1ms) SELECT "mechanize_store_products".* FROM "mechanize_store_products" WHERE "mechanize_store_products"."id" = ? LIMIT 1 [["id", "1"]]
690
+ Completed 200 OK in 7ms (Views: 4.7ms | ActiveRecord: 0.1ms)
691
+ MechanizeStore::ProductPhoto Load (0.2ms) SELECT "mechanize_store_product_photos".* FROM "mechanize_store_product_photos" WHERE "mechanize_store_product_photos"."product_id" = ? [["product_id", 1]]
692
+ MechanizeStore::ProductPhoto Load (0.0ms) SELECT "mechanize_store_product_photos".* FROM "mechanize_store_product_photos" WHERE "mechanize_store_product_photos"."product_id" = ? [["product_id", 1]]
693
+  (0.7ms) rollback transaction
694
+  (0.1ms) begin transaction
695
+  (0.1ms) SAVEPOINT active_record_1
696
+ SQL (0.4ms) INSERT INTO "mechanize_store_products" ("created_at", "description", "height", "length", "name", "price", "short_description", "updated_at", "weight", "width") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:55 UTC +00:00], ["description", "MyText"], ["height", 1.5], ["length", 1.5], ["name", "MyString"], ["price", 1.5], ["short_description", "MyString"], ["updated_at", Thu, 17 Jul 2014 18:23:55 UTC +00:00], ["weight", 1.5], ["width", 1.5]]
697
+  (0.1ms) RELEASE SAVEPOINT active_record_1
698
+ Command :: identify -format '%wx%h,%[exif:orientation]' '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-1c3a9cu.png[0]' 2>/dev/null
699
+ Command :: identify -format %m '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-1c3a9cu.png[0]'
700
+ Command :: identify -format %m '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-1c3a9cu.png[0]'
701
+ Command :: identify -format %m '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-1c3a9cu.png[0]'
702
+ Command :: convert '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-1c3a9cu.png[0]' -auto-orient -resize "300x300>" '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-1c3a9cu20140717-4889-5tfd5s'
703
+ Command :: file -b --mime '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-1c3a9cu20140717-4889-5tfd5s'
704
+ Command :: identify -format '%wx%h,%[exif:orientation]' '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-1c3a9cu.png[0]' 2>/dev/null
705
+ Command :: identify -format %m '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-1c3a9cu.png[0]'
706
+ Command :: identify -format %m '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-1c3a9cu.png[0]'
707
+ Command :: identify -format %m '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-1c3a9cu.png[0]'
708
+ Command :: convert '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-1c3a9cu.png[0]' -auto-orient -resize "100x100>" '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-1c3a9cu20140717-4889-o7uce1'
709
+ Command :: file -b --mime '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-1c3a9cu20140717-4889-o7uce1'
710
+  (0.1ms) SAVEPOINT active_record_1
711
+ SQL (0.5ms) INSERT INTO "mechanize_store_product_photos" ("created_at", "file_content_type", "file_file_name", "file_file_size", "file_updated_at", "product_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:55 UTC +00:00], ["file_content_type", ""], ["file_file_name", "rails.png"], ["file_file_size", 6646], ["file_updated_at", Thu, 17 Jul 2014 18:23:55 UTC +00:00], ["product_id", 1], ["updated_at", Thu, 17 Jul 2014 18:23:55 UTC +00:00]]
712
+  (0.1ms) RELEASE SAVEPOINT active_record_1
713
+ MechanizeStore::Product Load (0.1ms) SELECT "mechanize_store_products".* FROM "mechanize_store_products" WHERE "mechanize_store_products"."id" = ? LIMIT 1 [["id", 1]]
714
+ Processing by MechanizeStore::ProductPhotosController#destroy as HTML
715
+ Parameters: {"id"=>"1"}
716
+ MechanizeStore::ProductPhoto Load (0.2ms) SELECT "mechanize_store_product_photos".* FROM "mechanize_store_product_photos" WHERE "mechanize_store_product_photos"."id" = ? LIMIT 1 [["id", "1"]]
717
+ MechanizeStore::Product Load (0.1ms) SELECT "mechanize_store_products".* FROM "mechanize_store_products" WHERE "mechanize_store_products"."id" = ? LIMIT 1 [["id", 1]]
718
+  (0.0ms) SAVEPOINT active_record_1
719
+ SQL (0.2ms) DELETE FROM "mechanize_store_product_photos" WHERE "mechanize_store_product_photos"."id" = ? [["id", 1]]
720
+  (0.1ms) RELEASE SAVEPOINT active_record_1
721
+ Redirected to http://test.host/mechanize_store/products/1
722
+ Completed 302 Found in 6ms (ActiveRecord: 0.6ms)
723
+  (0.6ms) rollback transaction
724
+  (0.1ms) begin transaction
725
+  (0.1ms) SAVEPOINT active_record_1
726
+ SQL (0.4ms) INSERT INTO "mechanize_store_products" ("created_at", "description", "height", "length", "name", "price", "short_description", "updated_at", "weight", "width") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:55 UTC +00:00], ["description", "MyText"], ["height", 1.5], ["length", 1.5], ["name", "MyString"], ["price", 1.5], ["short_description", "MyString"], ["updated_at", Thu, 17 Jul 2014 18:23:55 UTC +00:00], ["weight", 1.5], ["width", 1.5]]
727
+  (0.0ms) RELEASE SAVEPOINT active_record_1
728
+ Command :: identify -format '%wx%h,%[exif:orientation]' '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-1i0i3jk.png[0]' 2>/dev/null
729
+ Command :: identify -format %m '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-1i0i3jk.png[0]'
730
+ Command :: identify -format %m '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-1i0i3jk.png[0]'
731
+ Command :: identify -format %m '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-1i0i3jk.png[0]'
732
+ Command :: convert '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-1i0i3jk.png[0]' -auto-orient -resize "300x300>" '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-1i0i3jk20140717-4889-mroeaf'
733
+ Command :: file -b --mime '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-1i0i3jk20140717-4889-mroeaf'
734
+ Command :: identify -format '%wx%h,%[exif:orientation]' '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-1i0i3jk.png[0]' 2>/dev/null
735
+ Command :: identify -format %m '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-1i0i3jk.png[0]'
736
+ Command :: identify -format %m '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-1i0i3jk.png[0]'
737
+ Command :: identify -format %m '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-1i0i3jk.png[0]'
738
+ Command :: convert '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-1i0i3jk.png[0]' -auto-orient -resize "100x100>" '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-1i0i3jk20140717-4889-cvi3md'
739
+ Command :: file -b --mime '/var/folders/dr/v8m3_4ds6yn4zwbsbff5yc800000gn/T/4d003d1435f0827cfe18ac2d2a3979e720140717-4889-1i0i3jk20140717-4889-cvi3md'
740
+  (0.2ms) SAVEPOINT active_record_1
741
+ SQL (0.6ms) INSERT INTO "mechanize_store_product_photos" ("created_at", "file_content_type", "file_file_name", "file_file_size", "file_updated_at", "product_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:55 UTC +00:00], ["file_content_type", ""], ["file_file_name", "rails.png"], ["file_file_size", 6646], ["file_updated_at", Thu, 17 Jul 2014 18:23:55 UTC +00:00], ["product_id", 1], ["updated_at", Thu, 17 Jul 2014 18:23:55 UTC +00:00]]
742
+  (0.1ms) RELEASE SAVEPOINT active_record_1
743
+  (0.1ms) SELECT COUNT(*) FROM "mechanize_store_product_photos"
744
+ Processing by MechanizeStore::ProductPhotosController#destroy as HTML
745
+ Parameters: {"id"=>"1"}
746
+ MechanizeStore::ProductPhoto Load (0.1ms) SELECT "mechanize_store_product_photos".* FROM "mechanize_store_product_photos" WHERE "mechanize_store_product_photos"."id" = ? LIMIT 1 [["id", "1"]]
747
+ MechanizeStore::Product Load (0.1ms) SELECT "mechanize_store_products".* FROM "mechanize_store_products" WHERE "mechanize_store_products"."id" = ? LIMIT 1 [["id", 1]]
748
+  (0.1ms) SAVEPOINT active_record_1
749
+ SQL (0.1ms) DELETE FROM "mechanize_store_product_photos" WHERE "mechanize_store_product_photos"."id" = ? [["id", 1]]
750
+  (0.1ms) RELEASE SAVEPOINT active_record_1
751
+ Redirected to http://test.host/mechanize_store/products/1
752
+ Completed 302 Found in 7ms (ActiveRecord: 0.4ms)
753
+  (0.1ms) SELECT COUNT(*) FROM "mechanize_store_product_photos"
754
+  (0.6ms) rollback transaction
755
+  (0.1ms) begin transaction
756
+  (0.1ms) SAVEPOINT active_record_1
757
+ SQL (0.9ms) INSERT INTO "mechanize_store_product_categories" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:55 UTC +00:00], ["name", "MyString"], ["updated_at", Thu, 17 Jul 2014 18:23:55 UTC +00:00]]
758
+ SQL (0.5ms) UPDATE "mechanize_store_product_categories" SET "name" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "slug" = ? WHERE "mechanize_store_product_categories"."id" = 1 [["name", "MyString"], ["created_at", Thu, 17 Jul 2014 18:23:55 UTC +00:00], ["updated_at", Thu, 17 Jul 2014 18:23:55 UTC +00:00], ["id", 1], ["slug", "mystring"]]
759
+  (0.1ms) RELEASE SAVEPOINT active_record_1
760
+ Processing by MechanizeStore::ProductCategoriesController#update as HTML
761
+ Parameters: {"product_category"=>{"name"=>"invalid value"}, "id"=>"1"}
762
+ MechanizeStore::ProductCategory Load (0.2ms) SELECT "mechanize_store_product_categories".* FROM "mechanize_store_product_categories" WHERE "mechanize_store_product_categories"."id" = ? LIMIT 1 [["id", "1"]]
763
+ MechanizeStore::ProductCategory Load (0.0ms) SELECT "mechanize_store_product_categories".* FROM "mechanize_store_product_categories" WHERE "mechanize_store_product_categories"."id" = ? LIMIT 1 [["id", "1"]]
764
+  (0.1ms) SAVEPOINT active_record_1
765
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
766
+ Completed 200 OK in 8ms (Views: 4.1ms | ActiveRecord: 0.4ms)
767
+  (0.7ms) rollback transaction
768
+  (0.1ms) begin transaction
769
+  (0.1ms) SAVEPOINT active_record_1
770
+ SQL (0.4ms) INSERT INTO "mechanize_store_product_categories" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:55 UTC +00:00], ["name", "MyString"], ["updated_at", Thu, 17 Jul 2014 18:23:55 UTC +00:00]]
771
+ SQL (0.3ms) UPDATE "mechanize_store_product_categories" SET "name" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "slug" = ? WHERE "mechanize_store_product_categories"."id" = 1 [["name", "MyString"], ["created_at", Thu, 17 Jul 2014 18:23:55 UTC +00:00], ["updated_at", Thu, 17 Jul 2014 18:23:55 UTC +00:00], ["id", 1], ["slug", "mystring"]]
772
+  (0.1ms) RELEASE SAVEPOINT active_record_1
773
+ Processing by MechanizeStore::ProductCategoriesController#update as HTML
774
+ Parameters: {"product_category"=>{"name"=>"invalid value"}, "id"=>"1"}
775
+ MechanizeStore::ProductCategory Load (0.1ms) SELECT "mechanize_store_product_categories".* FROM "mechanize_store_product_categories" WHERE "mechanize_store_product_categories"."id" = ? LIMIT 1 [["id", "1"]]
776
+ MechanizeStore::ProductCategory Load (0.1ms) SELECT "mechanize_store_product_categories".* FROM "mechanize_store_product_categories" WHERE "mechanize_store_product_categories"."id" = ? LIMIT 1 [["id", "1"]]
777
+  (0.2ms) SAVEPOINT active_record_1
778
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
779
+ Completed 200 OK in 4ms (Views: 0.8ms | ActiveRecord: 0.4ms)
780
+  (0.6ms) rollback transaction
781
+  (0.1ms) begin transaction
782
+  (0.1ms) SAVEPOINT active_record_1
783
+ SQL (0.4ms) INSERT INTO "mechanize_store_product_categories" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:55 UTC +00:00], ["name", "MyString"], ["updated_at", Thu, 17 Jul 2014 18:23:55 UTC +00:00]]
784
+ SQL (0.4ms) UPDATE "mechanize_store_product_categories" SET "name" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "slug" = ? WHERE "mechanize_store_product_categories"."id" = 1 [["name", "MyString"], ["created_at", Thu, 17 Jul 2014 18:23:55 UTC +00:00], ["updated_at", Thu, 17 Jul 2014 18:23:55 UTC +00:00], ["id", 1], ["slug", "mystring"]]
785
+  (0.1ms) RELEASE SAVEPOINT active_record_1
786
+ Processing by MechanizeStore::ProductCategoriesController#update as HTML
787
+ Parameters: {"product_category"=>{"name"=>"MyString"}, "id"=>"1"}
788
+ MechanizeStore::ProductCategory Load (0.1ms) SELECT "mechanize_store_product_categories".* FROM "mechanize_store_product_categories" WHERE "mechanize_store_product_categories"."id" = ? LIMIT 1 [["id", "1"]]
789
+ MechanizeStore::ProductCategory Load (0.1ms) SELECT "mechanize_store_product_categories".* FROM "mechanize_store_product_categories" WHERE "mechanize_store_product_categories"."id" = ? LIMIT 1 [["id", "1"]]
790
+  (0.1ms) SAVEPOINT active_record_1
791
+  (0.0ms) RELEASE SAVEPOINT active_record_1
792
+ Redirected to http://test.host/mechanize_store/product_categories/1
793
+ Completed 302 Found in 5ms (ActiveRecord: 0.3ms)
794
+  (0.6ms) rollback transaction
795
+  (0.1ms) begin transaction
796
+  (0.1ms) SAVEPOINT active_record_1
797
+ SQL (0.4ms) INSERT INTO "mechanize_store_product_categories" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:55 UTC +00:00], ["name", "MyString"], ["updated_at", Thu, 17 Jul 2014 18:23:55 UTC +00:00]]
798
+ SQL (0.3ms) UPDATE "mechanize_store_product_categories" SET "name" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "slug" = ? WHERE "mechanize_store_product_categories"."id" = 1 [["name", "MyString"], ["created_at", Thu, 17 Jul 2014 18:23:55 UTC +00:00], ["updated_at", Thu, 17 Jul 2014 18:23:55 UTC +00:00], ["id", 1], ["slug", "mystring"]]
799
+  (0.1ms) RELEASE SAVEPOINT active_record_1
800
+ Processing by MechanizeStore::ProductCategoriesController#update as HTML
801
+ Parameters: {"product_category"=>{"name"=>"MyString"}, "id"=>"1"}
802
+ MechanizeStore::ProductCategory Load (0.1ms) SELECT "mechanize_store_product_categories".* FROM "mechanize_store_product_categories" WHERE "mechanize_store_product_categories"."id" = ? LIMIT 1 [["id", "1"]]
803
+ MechanizeStore::ProductCategory Load (0.0ms) SELECT "mechanize_store_product_categories".* FROM "mechanize_store_product_categories" WHERE "mechanize_store_product_categories"."id" = ? LIMIT 1 [["id", "1"]]
804
+ Completed 200 OK in 2ms (Views: 0.6ms | ActiveRecord: 0.1ms)
805
+  (0.6ms) rollback transaction
806
+  (0.1ms) begin transaction
807
+  (0.1ms) SAVEPOINT active_record_1
808
+ SQL (0.4ms) INSERT INTO "mechanize_store_product_categories" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:55 UTC +00:00], ["name", "MyString"], ["updated_at", Thu, 17 Jul 2014 18:23:55 UTC +00:00]]
809
+ SQL (0.3ms) UPDATE "mechanize_store_product_categories" SET "name" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "slug" = ? WHERE "mechanize_store_product_categories"."id" = 1 [["name", "MyString"], ["created_at", Thu, 17 Jul 2014 18:23:55 UTC +00:00], ["updated_at", Thu, 17 Jul 2014 18:23:55 UTC +00:00], ["id", 1], ["slug", "mystring"]]
810
+  (0.1ms) RELEASE SAVEPOINT active_record_1
811
+ Processing by MechanizeStore::ProductCategoriesController#update as HTML
812
+ Parameters: {"product_category"=>{"name"=>"MyString"}, "id"=>"1"}
813
+ MechanizeStore::ProductCategory Load (0.1ms) SELECT "mechanize_store_product_categories".* FROM "mechanize_store_product_categories" WHERE "mechanize_store_product_categories"."id" = ? LIMIT 1 [["id", "1"]]
814
+ MechanizeStore::ProductCategory Load (0.2ms) SELECT "mechanize_store_product_categories".* FROM "mechanize_store_product_categories" WHERE "mechanize_store_product_categories"."id" = ? LIMIT 1 [["id", "1"]]
815
+  (0.1ms) SAVEPOINT active_record_1
816
+  (0.0ms) RELEASE SAVEPOINT active_record_1
817
+ Redirected to http://test.host/mechanize_store/product_categories/1
818
+ Completed 302 Found in 3ms (ActiveRecord: 0.4ms)
819
+  (0.5ms) rollback transaction
820
+  (0.1ms) begin transaction
821
+  (0.0ms) SAVEPOINT active_record_1
822
+ SQL (0.4ms) INSERT INTO "mechanize_store_product_categories" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:55 UTC +00:00], ["name", "MyString"], ["updated_at", Thu, 17 Jul 2014 18:23:55 UTC +00:00]]
823
+ SQL (0.3ms) UPDATE "mechanize_store_product_categories" SET "name" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "slug" = ? WHERE "mechanize_store_product_categories"."id" = 1 [["name", "MyString"], ["created_at", Thu, 17 Jul 2014 18:23:55 UTC +00:00], ["updated_at", Thu, 17 Jul 2014 18:23:55 UTC +00:00], ["id", 1], ["slug", "mystring"]]
824
+  (0.1ms) RELEASE SAVEPOINT active_record_1
825
+ Processing by MechanizeStore::ProductCategoriesController#show as HTML
826
+ Parameters: {"id"=>"1"}
827
+ MechanizeStore::ProductCategory Load (0.1ms) SELECT "mechanize_store_product_categories".* FROM "mechanize_store_product_categories" WHERE "mechanize_store_product_categories"."id" = ? LIMIT 1 [["id", "1"]]
828
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.1ms)
829
+  (0.5ms) rollback transaction
830
+  (0.1ms) begin transaction
831
+ Processing by MechanizeStore::ProductCategoriesController#create as HTML
832
+ Parameters: {"product_category"=>{"name"=>"invalid value"}}
833
+ Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms)
834
+  (0.1ms) rollback transaction
835
+  (0.1ms) begin transaction
836
+ Processing by MechanizeStore::ProductCategoriesController#create as HTML
837
+ Parameters: {"product_category"=>{"name"=>"invalid value"}}
838
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
839
+  (0.1ms) rollback transaction
840
+  (0.1ms) begin transaction
841
+ Processing by MechanizeStore::ProductCategoriesController#create as HTML
842
+ Parameters: {"product_category"=>{"name"=>"MyString"}}
843
+  (0.1ms) SAVEPOINT active_record_1
844
+ SQL (0.4ms) INSERT INTO "mechanize_store_product_categories" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:55 UTC +00:00], ["name", "MyString"], ["updated_at", Thu, 17 Jul 2014 18:23:55 UTC +00:00]]
845
+ SQL (0.3ms) UPDATE "mechanize_store_product_categories" SET "name" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "slug" = ? WHERE "mechanize_store_product_categories"."id" = 1 [["name", "MyString"], ["created_at", Thu, 17 Jul 2014 18:23:55 UTC +00:00], ["updated_at", Thu, 17 Jul 2014 18:23:55 UTC +00:00], ["id", 1], ["slug", "mystring"]]
846
+  (0.0ms) RELEASE SAVEPOINT active_record_1
847
+ Redirected to http://test.host/mechanize_store/product_categories/1
848
+ Completed 302 Found in 4ms (ActiveRecord: 0.8ms)
849
+  (0.6ms) rollback transaction
850
+  (0.1ms) begin transaction
851
+  (0.1ms) SELECT COUNT(*) FROM "mechanize_store_product_categories"
852
+ Processing by MechanizeStore::ProductCategoriesController#create as HTML
853
+ Parameters: {"product_category"=>{"name"=>"MyString"}}
854
+  (0.0ms) SAVEPOINT active_record_1
855
+ SQL (0.3ms) INSERT INTO "mechanize_store_product_categories" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:55 UTC +00:00], ["name", "MyString"], ["updated_at", Thu, 17 Jul 2014 18:23:55 UTC +00:00]]
856
+ SQL (0.3ms) UPDATE "mechanize_store_product_categories" SET "name" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "slug" = ? WHERE "mechanize_store_product_categories"."id" = 1 [["name", "MyString"], ["created_at", Thu, 17 Jul 2014 18:23:55 UTC +00:00], ["updated_at", Thu, 17 Jul 2014 18:23:55 UTC +00:00], ["id", 1], ["slug", "mystring"]]
857
+  (0.0ms) RELEASE SAVEPOINT active_record_1
858
+ Redirected to http://test.host/mechanize_store/product_categories/1
859
+ Completed 302 Found in 4ms (ActiveRecord: 0.7ms)
860
+  (0.1ms) SELECT COUNT(*) FROM "mechanize_store_product_categories"
861
+  (0.7ms) rollback transaction
862
+  (0.1ms) begin transaction
863
+ Processing by MechanizeStore::ProductCategoriesController#create as HTML
864
+ Parameters: {"product_category"=>{"name"=>"MyString"}}
865
+  (0.1ms) SAVEPOINT active_record_1
866
+ SQL (0.4ms) INSERT INTO "mechanize_store_product_categories" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:55 UTC +00:00], ["name", "MyString"], ["updated_at", Thu, 17 Jul 2014 18:23:55 UTC +00:00]]
867
+ SQL (0.3ms) UPDATE "mechanize_store_product_categories" SET "name" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "slug" = ? WHERE "mechanize_store_product_categories"."id" = 1 [["name", "MyString"], ["created_at", Thu, 17 Jul 2014 18:23:55 UTC +00:00], ["updated_at", Thu, 17 Jul 2014 18:23:55 UTC +00:00], ["id", 1], ["slug", "mystring"]]
868
+  (0.1ms) RELEASE SAVEPOINT active_record_1
869
+ Redirected to http://test.host/mechanize_store/product_categories/1
870
+ Completed 302 Found in 5ms (ActiveRecord: 0.8ms)
871
+ MechanizeStore::ProductCategory Load (0.2ms) SELECT "mechanize_store_product_categories".* FROM "mechanize_store_product_categories" ORDER BY "mechanize_store_product_categories"."id" DESC LIMIT 1
872
+  (0.6ms) rollback transaction
873
+  (0.1ms) begin transaction
874
+ Processing by MechanizeStore::ProductCategoriesController#new as HTML
875
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
876
+  (0.1ms) rollback transaction
877
+  (0.1ms) begin transaction
878
+  (0.1ms) SAVEPOINT active_record_1
879
+ SQL (0.8ms) INSERT INTO "mechanize_store_product_categories" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:55 UTC +00:00], ["name", "MyString"], ["updated_at", Thu, 17 Jul 2014 18:23:55 UTC +00:00]]
880
+ SQL (0.3ms) UPDATE "mechanize_store_product_categories" SET "name" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "slug" = ? WHERE "mechanize_store_product_categories"."id" = 1 [["name", "MyString"], ["created_at", Thu, 17 Jul 2014 18:23:55 UTC +00:00], ["updated_at", Thu, 17 Jul 2014 18:23:55 UTC +00:00], ["id", 1], ["slug", "mystring"]]
881
+  (0.1ms) RELEASE SAVEPOINT active_record_1
882
+ Processing by MechanizeStore::ProductCategoriesController#index as HTML
883
+ Completed 200 OK in 4ms (Views: 2.6ms | ActiveRecord: 0.0ms)
884
+ MechanizeStore::ProductCategory Load (0.1ms) SELECT "mechanize_store_product_categories".* FROM "mechanize_store_product_categories" LIMIT 30 OFFSET 0
885
+  (0.5ms) rollback transaction
886
+  (0.1ms) begin transaction
887
+  (0.0ms) SAVEPOINT active_record_1
888
+ SQL (0.4ms) INSERT INTO "mechanize_store_product_categories" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:55 UTC +00:00], ["name", "MyString"], ["updated_at", Thu, 17 Jul 2014 18:23:55 UTC +00:00]]
889
+ SQL (0.3ms) UPDATE "mechanize_store_product_categories" SET "name" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "slug" = ? WHERE "mechanize_store_product_categories"."id" = 1 [["name", "MyString"], ["created_at", Thu, 17 Jul 2014 18:23:55 UTC +00:00], ["updated_at", Thu, 17 Jul 2014 18:23:55 UTC +00:00], ["id", 1], ["slug", "mystring"]]
890
+  (0.0ms) RELEASE SAVEPOINT active_record_1
891
+ Processing by MechanizeStore::ProductCategoriesController#edit as HTML
892
+ Parameters: {"id"=>"1"}
893
+ MechanizeStore::ProductCategory Load (0.1ms) SELECT "mechanize_store_product_categories".* FROM "mechanize_store_product_categories" WHERE "mechanize_store_product_categories"."id" = ? LIMIT 1 [["id", "1"]]
894
+ Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.1ms)
895
+  (0.6ms) rollback transaction
896
+  (0.1ms) begin transaction
897
+  (0.0ms) SAVEPOINT active_record_1
898
+ SQL (0.5ms) INSERT INTO "mechanize_store_product_categories" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:55 UTC +00:00], ["name", "MyString"], ["updated_at", Thu, 17 Jul 2014 18:23:55 UTC +00:00]]
899
+ SQL (0.4ms) UPDATE "mechanize_store_product_categories" SET "name" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "slug" = ? WHERE "mechanize_store_product_categories"."id" = 1 [["name", "MyString"], ["created_at", Thu, 17 Jul 2014 18:23:55 UTC +00:00], ["updated_at", Thu, 17 Jul 2014 18:23:55 UTC +00:00], ["id", 1], ["slug", "mystring"]]
900
+  (0.1ms) RELEASE SAVEPOINT active_record_1
901
+ Processing by MechanizeStore::ProductCategoriesController#destroy as HTML
902
+ Parameters: {"id"=>"1"}
903
+ MechanizeStore::ProductCategory Load (0.1ms) SELECT "mechanize_store_product_categories".* FROM "mechanize_store_product_categories" WHERE "mechanize_store_product_categories"."id" = ? LIMIT 1 [["id", "1"]]
904
+ MechanizeStore::ProductCategory Load (0.0ms) SELECT "mechanize_store_product_categories".* FROM "mechanize_store_product_categories" WHERE "mechanize_store_product_categories"."id" = ? LIMIT 1 [["id", "1"]]
905
+  (0.1ms) SAVEPOINT active_record_1
906
+ SQL (0.3ms) DELETE FROM "mechanize_store_product_categories" WHERE "mechanize_store_product_categories"."id" = ? [["id", 1]]
907
+  (0.1ms) RELEASE SAVEPOINT active_record_1
908
+ Redirected to http://test.host/mechanize_store/product_categories
909
+ Completed 302 Found in 5ms (ActiveRecord: 0.7ms)
910
+  (0.5ms) rollback transaction
911
+  (0.1ms) begin transaction
912
+  (0.0ms) SAVEPOINT active_record_1
913
+ SQL (0.4ms) INSERT INTO "mechanize_store_product_categories" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 Jul 2014 18:23:55 UTC +00:00], ["name", "MyString"], ["updated_at", Thu, 17 Jul 2014 18:23:55 UTC +00:00]]
914
+ SQL (0.5ms) UPDATE "mechanize_store_product_categories" SET "name" = ?, "created_at" = ?, "updated_at" = ?, "id" = ?, "slug" = ? WHERE "mechanize_store_product_categories"."id" = 1 [["name", "MyString"], ["created_at", Thu, 17 Jul 2014 18:23:55 UTC +00:00], ["updated_at", Thu, 17 Jul 2014 18:23:55 UTC +00:00], ["id", 1], ["slug", "mystring"]]
915
+  (0.1ms) RELEASE SAVEPOINT active_record_1
916
+  (0.1ms) SELECT COUNT(*) FROM "mechanize_store_product_categories"
917
+ Processing by MechanizeStore::ProductCategoriesController#destroy as HTML
918
+ Parameters: {"id"=>"1"}
919
+ MechanizeStore::ProductCategory Load (0.1ms) SELECT "mechanize_store_product_categories".* FROM "mechanize_store_product_categories" WHERE "mechanize_store_product_categories"."id" = ? LIMIT 1 [["id", "1"]]
920
+ MechanizeStore::ProductCategory Load (0.0ms) SELECT "mechanize_store_product_categories".* FROM "mechanize_store_product_categories" WHERE "mechanize_store_product_categories"."id" = ? LIMIT 1 [["id", "1"]]
921
+  (0.0ms) SAVEPOINT active_record_1
922
+ SQL (0.1ms) DELETE FROM "mechanize_store_product_categories" WHERE "mechanize_store_product_categories"."id" = ? [["id", 1]]
923
+  (0.0ms) RELEASE SAVEPOINT active_record_1
924
+ Redirected to http://test.host/mechanize_store/product_categories
925
+ Completed 302 Found in 3ms (ActiveRecord: 0.3ms)
926
+  (0.1ms) SELECT COUNT(*) FROM "mechanize_store_product_categories"
927
+  (0.6ms) rollback transaction
928
+  (0.1ms) begin transaction
929
+  (0.1ms) rollback transaction
930
+  (0.1ms) begin transaction
931
+  (0.0ms) rollback transaction
932
+  (0.1ms) begin transaction
933
+  (0.2ms) rollback transaction
934
+  (0.0ms) begin transaction
935
+  (0.0ms) rollback transaction
936
+  (0.0ms) begin transaction
937
+  (0.0ms) rollback transaction
938
+  (0.1ms) begin transaction
939
+  (0.1ms) rollback transaction
940
+  (0.0ms) begin transaction
941
+  (0.1ms) rollback transaction
Binary file
Binary file
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mechanize_store
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.16
4
+ version: 0.0.17
5
5
  platform: ruby
6
6
  authors:
7
7
  - Wilbert Ribeiro
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-06-25 00:00:00.000000000 Z
11
+ date: 2014-07-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -322,6 +322,7 @@ files:
322
322
  - db/migrate/20140606123953_create_mechanize_store_product_sections.rb
323
323
  - db/migrate/20140606124916_add_slug_to_product_section.rb
324
324
  - db/migrate/20140606130912_add_product_section_id_to_mechanize_store_product_category.rb
325
+ - db/migrate/20140717182327_add_color_and_size_to_mechanize_store_order_item.rb
325
326
  - lib/mechanize_store.rb
326
327
  - lib/mechanize_store/engine.rb
327
328
  - lib/mechanize_store/version.rb
@@ -370,6 +371,8 @@ files:
370
371
  - spec/dummy/db/development.sqlite3
371
372
  - spec/dummy/db/schema.rb
372
373
  - spec/dummy/db/test.sqlite3
374
+ - spec/dummy/log/development.log
375
+ - spec/dummy/log/test.log
373
376
  - spec/dummy/public/404.html
374
377
  - spec/dummy/public/422.html
375
378
  - spec/dummy/public/500.html
@@ -628,6 +631,8 @@ test_files:
628
631
  - spec/dummy/db/development.sqlite3
629
632
  - spec/dummy/db/schema.rb
630
633
  - spec/dummy/db/test.sqlite3
634
+ - spec/dummy/log/development.log
635
+ - spec/dummy/log/test.log
631
636
  - spec/dummy/public/404.html
632
637
  - spec/dummy/public/422.html
633
638
  - spec/dummy/public/500.html