web-connect-rails 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (67) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +1 -0
  3. data/lib/generators/web_connect/install/install_generator.rb +13 -0
  4. data/lib/generators/web_connect/install/templates/initializer.rb +43 -0
  5. data/lib/netfira/web_connect/rails/configuration.rb +23 -0
  6. data/lib/netfira/web_connect/rails/initializer.rb +41 -0
  7. data/lib/netfira/web_connect/rails/railtie.rb +14 -0
  8. data/lib/netfira/web_connect/rails/request_trap.rb +19 -0
  9. data/lib/netfira/web_connect/rails/version.rb +7 -0
  10. data/lib/tasks/tasks.rake +20 -0
  11. data/lib/web_connect_rails.rb +13 -0
  12. data/spec/dummy/Gemfile +8 -0
  13. data/spec/dummy/Gemfile.lock +140 -0
  14. data/spec/dummy/README.rdoc +28 -0
  15. data/spec/dummy/Rakefile +6 -0
  16. data/spec/dummy/app/assets/javascripts/application.js +13 -0
  17. data/spec/dummy/app/assets/stylesheets/application.css +15 -0
  18. data/spec/dummy/app/controllers/application_controller.rb +5 -0
  19. data/spec/dummy/app/controllers/info_controller.rb +2 -0
  20. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  21. data/spec/dummy/app/views/info/view.html +1 -0
  22. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  23. data/spec/dummy/bin/bundle +3 -0
  24. data/spec/dummy/bin/rails +4 -0
  25. data/spec/dummy/bin/rake +4 -0
  26. data/spec/dummy/config.ru +4 -0
  27. data/spec/dummy/config/application.rb +29 -0
  28. data/spec/dummy/config/boot.rb +5 -0
  29. data/spec/dummy/config/database.yml +30 -0
  30. data/spec/dummy/config/environment.rb +5 -0
  31. data/spec/dummy/config/environments/development.rb +37 -0
  32. data/spec/dummy/config/environments/production.rb +83 -0
  33. data/spec/dummy/config/environments/test.rb +39 -0
  34. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  35. data/spec/dummy/config/initializers/cookies_serializer.rb +3 -0
  36. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  37. data/spec/dummy/config/initializers/inflections.rb +16 -0
  38. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  39. data/spec/dummy/config/initializers/session_store.rb +3 -0
  40. data/spec/dummy/config/initializers/web_connect.rb +43 -0
  41. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  42. data/spec/dummy/config/locales/en.yml +23 -0
  43. data/spec/dummy/config/routes.rb +62 -0
  44. data/spec/dummy/config/secrets.yml +22 -0
  45. data/spec/dummy/db/development.sqlite3 +0 -0
  46. data/spec/dummy/db/schema.rb +236 -0
  47. data/spec/dummy/db/test.sqlite3 +0 -0
  48. data/spec/dummy/db/wc_test.sqlite3 +0 -0
  49. data/spec/dummy/log/development.log +129 -0
  50. data/spec/dummy/log/test.log +457 -0
  51. data/spec/dummy/public/404.html +67 -0
  52. data/spec/dummy/public/422.html +67 -0
  53. data/spec/dummy/public/500.html +66 -0
  54. data/spec/dummy/public/favicon.ico +0 -0
  55. data/spec/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  56. data/spec/dummy/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  57. data/spec/dummy/tmp/cache/assets/test/sprockets/30fcdba934c852043bf90977fbe7cd41 +0 -0
  58. data/spec/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  59. data/spec/dummy/tmp/cache/assets/test/sprockets/563c7c80a43c918ab182fbb055ca0d09 +0 -0
  60. data/spec/dummy/tmp/cache/assets/test/sprockets/595588477bd1d6985164b36ebf27d467 +0 -0
  61. data/spec/dummy/tmp/cache/assets/test/sprockets/7fe8ec92b30b7e2f688c3a91157c5eb3 +0 -0
  62. data/spec/dummy/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  63. data/spec/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  64. data/spec/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  65. data/spec/features/passthru_spec.rb +14 -0
  66. data/spec/spec_helper.rb +28 -0
  67. metadata +234 -0
@@ -0,0 +1,22 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rake secret` to generate a secure secret key.
9
+
10
+ # Make sure the secrets in this file are kept private
11
+ # if you're sharing your code publicly.
12
+
13
+ development:
14
+ secret_key_base: ad29762948a11c22ddb1939462106c57bd81426ef4f7fc1e67d29e54d1fc6a96e2ff0101981a6776d427f9b51a72c1af980cf6351f3fd996c172b6d0f43085a1
15
+
16
+ test:
17
+ secret_key_base: 8a472d8ba12b5d7443dbd5e0e8ab719a3c6c6662f3d61ec6d42f4487969478034d0b951a8ff81f5dd0396cdc023870bd95bd2e436fa2d14993cfecb7b6b0d35e
18
+
19
+ # Do not keep production secrets in the repository,
20
+ # instead read values from the environment.
21
+ production:
22
+ secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
Binary file
@@ -0,0 +1,236 @@
1
+ # encoding: UTF-8
2
+ # This file is auto-generated from the current state of the database. Instead
3
+ # of editing this file, please use the migrations feature of Active Record to
4
+ # incrementally modify your database, and then regenerate this schema definition.
5
+ #
6
+ # Note that this schema.rb definition is the authoritative source for your
7
+ # database schema. If you need to create the application database on another
8
+ # system, you should be using db:schema:load, not running all the migrations
9
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
11
+ #
12
+ # It's strongly recommended that you check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(version: 20140515) do
15
+
16
+ create_table "wc__custom_fields", force: true do |t|
17
+ t.integer "shop_id"
18
+ t.integer "table_id"
19
+ t.integer "record_id"
20
+ t.string "key"
21
+ t.binary "value", limit: 65536
22
+ end
23
+
24
+ create_table "wc__settings", force: true do |t|
25
+ t.integer "shop_id"
26
+ t.string "key"
27
+ t.binary "value", limit: 65536
28
+ t.string "content_type"
29
+ end
30
+
31
+ create_table "wc__shops", force: true do |t|
32
+ t.string "name"
33
+ end
34
+
35
+ add_index "wc__shops", ["name"], name: "index_wc__shops_on_name", unique: true
36
+
37
+ create_table "wc__tables", force: true do |t|
38
+ t.string "name", limit: 50
39
+ t.string "origin_key", limit: 20
40
+ t.boolean "file"
41
+ t.boolean "writable"
42
+ t.boolean "sendable"
43
+ end
44
+
45
+ create_table "wc_attachments", force: true do |t|
46
+ t.integer "shop_id"
47
+ t.string "file_name"
48
+ t.string "locale"
49
+ t.binary "checksum", limit: 16
50
+ t.binary "digest", limit: 16
51
+ t.datetime "created_at"
52
+ t.datetime "updated_at"
53
+ end
54
+
55
+ create_table "wc_attachments_to_products", force: true do |t|
56
+ t.integer "attachment_id"
57
+ t.integer "product_id"
58
+ end
59
+
60
+ add_index "wc_attachments_to_products", ["attachment_id"], name: "index_wc_attachments_to_products_on_attachment_id"
61
+ add_index "wc_attachments_to_products", ["product_id"], name: "index_wc_attachments_to_products_on_product_id"
62
+
63
+ create_table "wc_buyers", force: true do |t|
64
+ t.string "nf_code"
65
+ t.string "name"
66
+ t.string "contact"
67
+ t.string "email", limit: 100
68
+ t.string "phone", limit: 30
69
+ t.string "fax", limit: 30
70
+ t.string "billing_address_1", limit: 150
71
+ t.string "billing_address_2", limit: 150
72
+ t.string "billing_city", limit: 150
73
+ t.string "billing_state", limit: 150
74
+ t.string "billing_country", limit: 2
75
+ t.string "billing_post_code", limit: 20
76
+ t.string "shipping_address_1", limit: 150
77
+ t.string "shipping_address_2", limit: 150
78
+ t.string "shipping_city", limit: 150
79
+ t.string "shipping_state", limit: 150
80
+ t.string "shipping_country", limit: 2
81
+ t.string "shipping_post_code", limit: 20
82
+ t.binary "pin", limit: 255
83
+ t.boolean "website_access"
84
+ t.boolean "allow_products"
85
+ t.boolean "restrict_products"
86
+ t.integer "shop_id"
87
+ t.binary "digest", limit: 16
88
+ t.datetime "created_at"
89
+ t.datetime "updated_at"
90
+ end
91
+
92
+ create_table "wc_buyers_to_products", force: true do |t|
93
+ t.integer "buyer_id"
94
+ t.integer "product_id"
95
+ end
96
+
97
+ add_index "wc_buyers_to_products", ["buyer_id"], name: "index_wc_buyers_to_products_on_buyer_id"
98
+ add_index "wc_buyers_to_products", ["product_id"], name: "index_wc_buyers_to_products_on_product_id"
99
+
100
+ create_table "wc_categories", force: true do |t|
101
+ t.string "category_id"
102
+ t.integer "parent_id"
103
+ t.integer "shop_id"
104
+ t.binary "digest", limit: 16
105
+ t.datetime "created_at"
106
+ t.datetime "updated_at"
107
+ end
108
+
109
+ create_table "wc_categories_l10n", force: true do |t|
110
+ t.integer "category_id"
111
+ t.string "language", limit: 20
112
+ t.string "name"
113
+ end
114
+
115
+ add_index "wc_categories_l10n", ["category_id"], name: "index_wc_categories_l10n_on_category_id"
116
+
117
+ create_table "wc_categories_to_products", force: true do |t|
118
+ t.integer "category_id"
119
+ t.integer "product_id"
120
+ end
121
+
122
+ add_index "wc_categories_to_products", ["category_id"], name: "index_wc_categories_to_products_on_category_id"
123
+ add_index "wc_categories_to_products", ["product_id"], name: "index_wc_categories_to_products_on_product_id"
124
+
125
+ create_table "wc_images", force: true do |t|
126
+ t.integer "shop_id"
127
+ t.string "file_name"
128
+ t.string "locale"
129
+ t.float "focus_point_top"
130
+ t.float "focus_point_left"
131
+ t.integer "size"
132
+ t.integer "width"
133
+ t.integer "height"
134
+ t.binary "checksum", limit: 16
135
+ t.binary "digest", limit: 16
136
+ t.datetime "created_at"
137
+ t.datetime "updated_at"
138
+ end
139
+
140
+ create_table "wc_images_to_products", force: true do |t|
141
+ t.integer "image_id"
142
+ t.integer "product_id"
143
+ end
144
+
145
+ add_index "wc_images_to_products", ["image_id"], name: "index_wc_images_to_products_on_image_id"
146
+ add_index "wc_images_to_products", ["product_id"], name: "index_wc_images_to_products_on_product_id"
147
+
148
+ create_table "wc_order_lines", force: true do |t|
149
+ t.string "product_id"
150
+ t.decimal "unit_price", precision: 12, scale: 4
151
+ t.decimal "unit_tax", precision: 12, scale: 4
152
+ t.string "part"
153
+ t.string "description"
154
+ t.integer "order_id"
155
+ t.decimal "quantity", precision: 12, scale: 4
156
+ t.string "comment", limit: 65536
157
+ t.integer "shop_id"
158
+ t.binary "digest", limit: 16
159
+ t.datetime "created_at"
160
+ t.datetime "updated_at"
161
+ end
162
+
163
+ create_table "wc_orders", force: true do |t|
164
+ t.string "nf_code"
165
+ t.string "name"
166
+ t.string "contact"
167
+ t.string "email", limit: 100
168
+ t.string "phone", limit: 30
169
+ t.string "fax", limit: 30
170
+ t.string "billing_address_1", limit: 150
171
+ t.string "billing_address_2", limit: 150
172
+ t.string "billing_city", limit: 150
173
+ t.string "billing_state", limit: 150
174
+ t.string "billing_country", limit: 2
175
+ t.string "billing_post_code", limit: 20
176
+ t.string "shipping_address_1", limit: 150
177
+ t.string "shipping_address_2", limit: 150
178
+ t.string "shipping_city", limit: 150
179
+ t.string "shipping_state", limit: 150
180
+ t.string "shipping_country", limit: 2
181
+ t.string "shipping_post_code", limit: 20
182
+ t.string "buyer_reference"
183
+ t.string "currency_code", limit: 3
184
+ t.string "shipping_method"
185
+ t.decimal "shipping_price", precision: 12, scale: 4
186
+ t.decimal "shipping_tax", precision: 12, scale: 4
187
+ t.string "shipping_account"
188
+ t.string "shipping_password"
189
+ t.string "payment_method"
190
+ t.boolean "payment_received"
191
+ t.string "payment_reference"
192
+ t.string "payment_error_code", limit: 16
193
+ t.string "comment", limit: 65536
194
+ t.integer "shop_id"
195
+ t.binary "guid"
196
+ t.integer "delivery_status", limit: 3, default: 0
197
+ t.binary "digest", limit: 16
198
+ t.datetime "created_at"
199
+ t.datetime "updated_at"
200
+ end
201
+
202
+ create_table "wc_products", force: true do |t|
203
+ t.string "product_id"
204
+ t.decimal "unit_price", precision: 12, scale: 4
205
+ t.decimal "unit_tax", precision: 12, scale: 4
206
+ t.decimal "stock", precision: 12, scale: 4
207
+ t.string "stock_text"
208
+ t.integer "length"
209
+ t.integer "height"
210
+ t.integer "width"
211
+ t.decimal "weight", precision: 14, scale: 3
212
+ t.boolean "show_on_website"
213
+ t.integer "shop_id"
214
+ t.binary "digest", limit: 16
215
+ t.datetime "created_at"
216
+ t.datetime "updated_at"
217
+ end
218
+
219
+ create_table "wc_products_l10n", force: true do |t|
220
+ t.integer "product_id"
221
+ t.string "language", limit: 20
222
+ t.string "part"
223
+ t.string "description"
224
+ t.string "category"
225
+ t.string "long_description", limit: 65536
226
+ end
227
+
228
+ add_index "wc_products_l10n", ["product_id"], name: "index_wc_products_l10n_on_product_id"
229
+
230
+ create_table "wc_schema_migrations", id: false, force: true do |t|
231
+ t.string "version", null: false
232
+ end
233
+
234
+ add_index "wc_schema_migrations", ["version"], name: "unique_wc_schema_migrations", unique: true
235
+
236
+ end
Binary file
Binary file
@@ -0,0 +1,129 @@
1
+  (9.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2
+  (0.1ms) select sqlite_version(*)
3
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4
+  (0.1ms) SELECT version FROM "schema_migrations"
5
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
6
+  (8.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
7
+  (0.1ms) select sqlite_version(*)
8
+  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
9
+  (0.1ms) SELECT version FROM "schema_migrations"
10
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
11
+  (8.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
12
+  (0.1ms) select sqlite_version(*)
13
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
14
+  (0.1ms) SELECT version FROM "schema_migrations"
15
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
16
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
17
+  (0.0ms) select sqlite_version(*)
18
+  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
19
+  (0.1ms) SELECT version FROM "schema_migrations"
20
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
21
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
22
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
23
+  (0.0ms) select sqlite_version(*)
24
+  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
25
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
26
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "wc_schema_migrations".* FROM "wc_schema_migrations"
27
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "wc_schema_migrations".* FROM "wc_schema_migrations"
28
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "wc_schema_migrations".* FROM "wc_schema_migrations"
29
+ Netfira::WebConnect::Models::Table Load (0.1ms) SELECT "wc__tables".* FROM "wc__tables"
30
+  (8.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
31
+  (0.1ms) select sqlite_version(*)
32
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
33
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "wc_schema_migrations".* FROM "wc_schema_migrations"
34
+  (0.1ms)  SELECT sql
35
+ FROM sqlite_master
36
+ WHERE name='index_wc__shops_on_name' AND type='index'
37
+ UNION ALL
38
+ SELECT sql
39
+ FROM sqlite_temp_master
40
+ WHERE name='index_wc__shops_on_name' AND type='index'
41
+ 
42
+  (0.1ms) SELECT sql
43
+ FROM sqlite_master
44
+ WHERE name='index_wc_attachments_to_products_on_product_id' AND type='index'
45
+ UNION ALL
46
+ SELECT sql
47
+ FROM sqlite_temp_master
48
+ WHERE name='index_wc_attachments_to_products_on_product_id' AND type='index'
49
+
50
+  (0.1ms)  SELECT sql
51
+ FROM sqlite_master
52
+ WHERE name='index_wc_attachments_to_products_on_attachment_id' AND type='index'
53
+ UNION ALL
54
+ SELECT sql
55
+ FROM sqlite_temp_master
56
+ WHERE name='index_wc_attachments_to_products_on_attachment_id' AND type='index'
57
+ 
58
+  (0.1ms) SELECT sql
59
+ FROM sqlite_master
60
+ WHERE name='index_wc_buyers_to_products_on_product_id' AND type='index'
61
+ UNION ALL
62
+ SELECT sql
63
+ FROM sqlite_temp_master
64
+ WHERE name='index_wc_buyers_to_products_on_product_id' AND type='index'
65
+
66
+  (0.1ms)  SELECT sql
67
+ FROM sqlite_master
68
+ WHERE name='index_wc_buyers_to_products_on_buyer_id' AND type='index'
69
+ UNION ALL
70
+ SELECT sql
71
+ FROM sqlite_temp_master
72
+ WHERE name='index_wc_buyers_to_products_on_buyer_id' AND type='index'
73
+ 
74
+  (0.1ms) SELECT sql
75
+ FROM sqlite_master
76
+ WHERE name='index_wc_categories_l10n_on_category_id' AND type='index'
77
+ UNION ALL
78
+ SELECT sql
79
+ FROM sqlite_temp_master
80
+ WHERE name='index_wc_categories_l10n_on_category_id' AND type='index'
81
+
82
+  (0.1ms)  SELECT sql
83
+ FROM sqlite_master
84
+ WHERE name='index_wc_categories_to_products_on_product_id' AND type='index'
85
+ UNION ALL
86
+ SELECT sql
87
+ FROM sqlite_temp_master
88
+ WHERE name='index_wc_categories_to_products_on_product_id' AND type='index'
89
+ 
90
+  (0.1ms) SELECT sql
91
+ FROM sqlite_master
92
+ WHERE name='index_wc_categories_to_products_on_category_id' AND type='index'
93
+ UNION ALL
94
+ SELECT sql
95
+ FROM sqlite_temp_master
96
+ WHERE name='index_wc_categories_to_products_on_category_id' AND type='index'
97
+
98
+  (0.1ms)  SELECT sql
99
+ FROM sqlite_master
100
+ WHERE name='index_wc_images_to_products_on_product_id' AND type='index'
101
+ UNION ALL
102
+ SELECT sql
103
+ FROM sqlite_temp_master
104
+ WHERE name='index_wc_images_to_products_on_product_id' AND type='index'
105
+ 
106
+  (0.1ms) SELECT sql
107
+ FROM sqlite_master
108
+ WHERE name='index_wc_images_to_products_on_image_id' AND type='index'
109
+ UNION ALL
110
+ SELECT sql
111
+ FROM sqlite_temp_master
112
+ WHERE name='index_wc_images_to_products_on_image_id' AND type='index'
113
+
114
+  (0.1ms)  SELECT sql
115
+ FROM sqlite_master
116
+ WHERE name='index_wc_products_l10n_on_product_id' AND type='index'
117
+ UNION ALL
118
+ SELECT sql
119
+ FROM sqlite_temp_master
120
+ WHERE name='index_wc_products_l10n_on_product_id' AND type='index'
121
+ 
122
+  (0.1ms) SELECT sql
123
+ FROM sqlite_master
124
+ WHERE name='unique_wc_schema_migrations' AND type='index'
125
+ UNION ALL
126
+ SELECT sql
127
+ FROM sqlite_temp_master
128
+ WHERE name='unique_wc_schema_migrations' AND type='index'
129
+
@@ -0,0 +1,457 @@
1
+  (0.2ms) begin transaction
2
+  (0.0ms) rollback transaction
3
+  (0.2ms) begin transaction
4
+  (0.0ms) rollback transaction
5
+  (0.2ms) begin transaction
6
+  (0.0ms) rollback transaction
7
+  (0.2ms) begin transaction
8
+  (0.0ms) rollback transaction
9
+  (0.2ms) begin transaction
10
+  (0.0ms) rollback transaction
11
+  (0.2ms) begin transaction
12
+  (0.0ms) rollback transaction
13
+  (0.2ms) begin transaction
14
+ Started GET "/" for 127.0.0.1 at 2014-06-02 17:02:05 +1000
15
+  (0.0ms) rollback transaction
16
+  (0.2ms) begin transaction
17
+ Started GET "/" for 127.0.0.1 at 2014-06-02 17:02:34 +1000
18
+  (0.0ms) rollback transaction
19
+  (0.2ms) begin transaction
20
+  (0.0ms) rollback transaction
21
+  (0.2ms) begin transaction
22
+  (0.0ms) rollback transaction
23
+  (0.2ms) begin transaction
24
+  (0.0ms) rollback transaction
25
+  (0.2ms) begin transaction
26
+  (0.0ms) rollback transaction
27
+  (0.2ms) begin transaction
28
+  (0.0ms) rollback transaction
29
+  (0.2ms) begin transaction
30
+  (0.1ms) rollback transaction
31
+  (0.2ms) begin transaction
32
+  (0.0ms) rollback transaction
33
+  (0.2ms) begin transaction
34
+ Started GET "/" for 127.0.0.1 at 2014-06-02 17:18:17 +1000
35
+  (0.0ms) rollback transaction
36
+  (0.2ms) begin transaction
37
+  (0.1ms) rollback transaction
38
+  (0.0ms) begin transaction
39
+ Started GET "/info" for 127.0.0.1 at 2014-06-03 09:46:30 +1000
40
+  (0.0ms) rollback transaction
41
+  (0.2ms) begin transaction
42
+ Started GET "/info" for 127.0.0.1 at 2014-06-03 09:50:35 +1000
43
+  (0.0ms) rollback transaction
44
+  (0.0ms) begin transaction
45
+  (0.0ms) rollback transaction
46
+  (0.2ms) begin transaction
47
+ Started GET "/info" for 127.0.0.1 at 2014-06-03 09:51:06 +1000
48
+  (0.0ms) rollback transaction
49
+  (0.2ms) begin transaction
50
+ Started GET "/info" for 127.0.0.1 at 2014-06-03 09:51:16 +1000
51
+  (0.0ms) rollback transaction
52
+  (0.2ms) begin transaction
53
+ Started GET "/info" for 127.0.0.1 at 2014-06-03 09:52:21 +1000
54
+  (0.0ms) rollback transaction
55
+  (0.2ms) begin transaction
56
+ Started GET "/info" for 127.0.0.1 at 2014-06-03 09:56:26 +1000
57
+ Processing by InfoController#view as HTML
58
+ Rendered info/view.html within layouts/application (0.8ms)
59
+ Completed 200 OK in 25ms (Views: 24.4ms | ActiveRecord: 0.0ms)
60
+  (0.1ms) rollback transaction
61
+  (0.2ms) begin transaction
62
+ Started GET "/info" for 127.0.0.1 at 2014-06-03 09:57:16 +1000
63
+ Processing by InfoController#view as HTML
64
+ Rendered info/view.html within layouts/application (0.8ms)
65
+ Completed 200 OK in 10ms (Views: 10.0ms | ActiveRecord: 0.0ms)
66
+  (0.1ms) rollback transaction
67
+  (0.2ms) begin transaction
68
+ Started GET "/info" for 127.0.0.1 at 2014-06-03 09:59:31 +1000
69
+ Processing by InfoController#view as HTML
70
+ Rendered info/view.html within layouts/application (0.8ms)
71
+ Completed 200 OK in 22ms (Views: 21.8ms | ActiveRecord: 0.0ms)
72
+  (0.1ms) rollback transaction
73
+  (0.3ms) begin transaction
74
+ Started GET "/info" for 127.0.0.1 at 2014-06-03 09:59:39 +1000
75
+ Processing by InfoController#view as HTML
76
+ Rendered info/view.html within layouts/application (0.8ms)
77
+ Completed 200 OK in 9ms (Views: 9.2ms | ActiveRecord: 0.0ms)
78
+  (0.1ms) rollback transaction
79
+  (0.2ms) begin transaction
80
+ Started GET "/info" for 127.0.0.1 at 2014-06-03 09:59:51 +1000
81
+ Processing by InfoController#view as HTML
82
+ Rendered info/view.html within layouts/application (0.8ms)
83
+ Completed 200 OK in 9ms (Views: 8.5ms | ActiveRecord: 0.0ms)
84
+  (0.0ms) rollback transaction
85
+  (0.2ms) begin transaction
86
+ Started GET "/webconnect/info" for 127.0.0.1 at 2014-06-03 10:45:29 +1000
87
+ Processing by InfoController#view as HTML
88
+ Rendered info/view.html within layouts/application (0.7ms)
89
+ Completed 200 OK in 9ms (Views: 9.2ms | ActiveRecord: 0.0ms)
90
+  (0.1ms) rollback transaction
91
+  (0.0ms) begin transaction
92
+ Started GET "/info" for 127.0.0.1 at 2014-06-03 10:45:29 +1000
93
+ Processing by InfoController#view as HTML
94
+ Rendered info/view.html within layouts/application (0.0ms)
95
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
96
+  (0.0ms) rollback transaction
97
+  (0.2ms) begin transaction
98
+ Started GET "/webconnect/info" for 127.0.0.1 at 2014-06-03 10:45:42 +1000
99
+ Processing by InfoController#view as HTML
100
+ Rendered info/view.html within layouts/application (0.7ms)
101
+ Completed 200 OK in 9ms (Views: 8.6ms | ActiveRecord: 0.0ms)
102
+  (0.1ms) rollback transaction
103
+  (0.0ms) begin transaction
104
+ Started GET "/info" for 127.0.0.1 at 2014-06-03 10:45:42 +1000
105
+ Processing by InfoController#view as HTML
106
+ Rendered info/view.html within layouts/application (0.0ms)
107
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
108
+  (0.0ms) rollback transaction
109
+  (0.2ms) begin transaction
110
+ Started GET "/info" for 127.0.0.1 at 2014-06-03 10:48:43 +1000
111
+ Processing by InfoController#view as HTML
112
+ Rendered info/view.html within layouts/application (0.8ms)
113
+ Completed 200 OK in 9ms (Views: 9.0ms | ActiveRecord: 0.0ms)
114
+  (0.1ms) rollback transaction
115
+  (0.0ms) begin transaction
116
+ Started GET "/webconnect/info" for 127.0.0.1 at 2014-06-03 10:48:43 +1000
117
+ Processing by InfoController#view as HTML
118
+ Rendered info/view.html within layouts/application (0.0ms)
119
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
120
+  (0.0ms) rollback transaction
121
+  (0.2ms) begin transaction
122
+ Started GET "/webconnect/info" for 127.0.0.1 at 2014-06-03 14:18:34 +1000
123
+ Processing by InfoController#view as HTML
124
+ Rendered info/view.html within layouts/application (0.7ms)
125
+ Completed 200 OK in 9ms (Views: 8.3ms | ActiveRecord: 0.0ms)
126
+  (0.1ms) rollback transaction
127
+  (0.1ms) begin transaction
128
+ Started GET "/info" for 127.0.0.1 at 2014-06-03 14:18:34 +1000
129
+ Processing by InfoController#view as HTML
130
+ Rendered info/view.html within layouts/application (0.0ms)
131
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
132
+  (0.1ms) rollback transaction
133
+  (0.2ms) begin transaction
134
+ Started GET "/info" for 127.0.0.1 at 2014-06-03 14:18:51 +1000
135
+ Processing by InfoController#view as HTML
136
+ Rendered info/view.html within layouts/application (0.7ms)
137
+ Completed 200 OK in 8ms (Views: 8.3ms | ActiveRecord: 0.0ms)
138
+  (0.1ms) rollback transaction
139
+  (0.0ms) begin transaction
140
+ Started GET "/webconnect/info" for 127.0.0.1 at 2014-06-03 14:18:51 +1000
141
+ Processing by InfoController#view as HTML
142
+ Rendered info/view.html within layouts/application (0.0ms)
143
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
144
+  (0.1ms) rollback transaction
145
+  (0.3ms) begin transaction
146
+ Started GET "/webconnect/info" for 127.0.0.1 at 2014-06-03 14:19:11 +1000
147
+ Processing by InfoController#view as HTML
148
+ Rendered info/view.html within layouts/application (0.7ms)
149
+ Completed 200 OK in 9ms (Views: 8.4ms | ActiveRecord: 0.0ms)
150
+  (0.0ms) rollback transaction
151
+  (0.0ms) begin transaction
152
+ Started GET "/info" for 127.0.0.1 at 2014-06-03 14:19:11 +1000
153
+ Processing by InfoController#view as HTML
154
+ Rendered info/view.html within layouts/application (0.0ms)
155
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
156
+  (0.0ms) rollback transaction
157
+  (0.2ms) begin transaction
158
+ Started GET "/webconnect/info" for 127.0.0.1 at 2014-06-03 16:21:52 +1000
159
+ Processing by InfoController#view as HTML
160
+ Rendered info/view.html within layouts/application (0.7ms)
161
+ Completed 200 OK in 10ms (Views: 9.4ms | ActiveRecord: 0.0ms)
162
+  (0.1ms) rollback transaction
163
+  (0.0ms) begin transaction
164
+ Started GET "/info" for 127.0.0.1 at 2014-06-03 16:21:52 +1000
165
+ Processing by InfoController#view as HTML
166
+ Rendered info/view.html within layouts/application (0.0ms)
167
+ Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
168
+  (0.0ms) rollback transaction
169
+  (0.2ms) begin transaction
170
+ Started GET "/webconnect/info" for 127.0.0.1 at 2014-06-03 17:05:53 +1000
171
+ Processing by InfoController#view as HTML
172
+ Rendered info/view.html within layouts/application (0.8ms)
173
+ Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.0ms)
174
+  (0.1ms) rollback transaction
175
+  (0.0ms) begin transaction
176
+ Started GET "/info" for 127.0.0.1 at 2014-06-03 17:05:53 +1000
177
+ Processing by InfoController#view as HTML
178
+ Rendered info/view.html within layouts/application (0.0ms)
179
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
180
+  (0.0ms) rollback transaction
181
+  (0.3ms) begin transaction
182
+ Started GET "/webconnect/info" for 127.0.0.1 at 2014-06-03 17:09:17 +1000
183
+  (0.1ms) rollback transaction
184
+  (0.3ms) begin transaction
185
+ Started GET "/webconnect/info" for 127.0.0.1 at 2014-06-03 17:11:06 +1000
186
+  (0.1ms) rollback transaction
187
+  (0.2ms) begin transaction
188
+ Started GET "/webconnect/info" for 127.0.0.1 at 2014-06-03 17:11:29 +1000
189
+  (0.1ms) rollback transaction
190
+  (0.3ms) begin transaction
191
+ Started GET "/info" for 127.0.0.1 at 2014-06-03 17:11:37 +1000
192
+ Processing by InfoController#view as HTML
193
+ Rendered info/view.html within layouts/application (0.7ms)
194
+ Completed 200 OK in 9ms (Views: 8.9ms | ActiveRecord: 0.0ms)
195
+  (0.0ms) rollback transaction
196
+  (0.1ms) begin transaction
197
+ Started GET "/webconnect/info" for 127.0.0.1 at 2014-06-03 17:11:37 +1000
198
+  (0.0ms) rollback transaction
199
+  (0.2ms) begin transaction
200
+ Started GET "/webconnect/info" for 127.0.0.1 at 2014-06-03 17:28:02 +1000
201
+  (0.0ms) rollback transaction
202
+  (0.0ms) begin transaction
203
+ Started GET "/info" for 127.0.0.1 at 2014-06-03 17:28:02 +1000
204
+ Processing by InfoController#view as HTML
205
+ Rendered info/view.html within layouts/application (0.7ms)
206
+ Completed 200 OK in 9ms (Views: 9.3ms | ActiveRecord: 0.0ms)
207
+  (0.0ms) rollback transaction
208
+  (0.2ms) begin transaction
209
+ Started GET "/webconnect/info" for 127.0.0.1 at 2014-06-03 18:20:27 +1000
210
+  (0.0ms) rollback transaction
211
+  (0.0ms) begin transaction
212
+ Started GET "/info" for 127.0.0.1 at 2014-06-03 18:20:27 +1000
213
+ Processing by InfoController#view as HTML
214
+ Rendered info/view.html within layouts/application (0.8ms)
215
+ Completed 200 OK in 9ms (Views: 8.6ms | ActiveRecord: 0.0ms)
216
+  (0.0ms) rollback transaction
217
+  (0.2ms) begin transaction
218
+ Started GET "/webconnect/info" for 127.0.0.1 at 2014-06-03 18:22:03 +1000
219
+  (0.0ms) rollback transaction
220
+  (0.0ms) begin transaction
221
+ Started GET "/info" for 127.0.0.1 at 2014-06-03 18:22:03 +1000
222
+ Processing by InfoController#view as HTML
223
+ Rendered info/view.html within layouts/application (0.7ms)
224
+ Completed 200 OK in 9ms (Views: 8.4ms | ActiveRecord: 0.0ms)
225
+  (0.0ms) rollback transaction
226
+  (0.2ms) begin transaction
227
+ Started GET "/webconnect/info" for 127.0.0.1 at 2014-06-03 18:23:44 +1000
228
+  (0.0ms) rollback transaction
229
+  (0.0ms) begin transaction
230
+ Started GET "/info" for 127.0.0.1 at 2014-06-03 18:23:44 +1000
231
+ Processing by InfoController#view as HTML
232
+ Rendered info/view.html within layouts/application (0.8ms)
233
+ Completed 200 OK in 9ms (Views: 9.3ms | ActiveRecord: 0.0ms)
234
+  (0.1ms) rollback transaction
235
+  (0.3ms) begin transaction
236
+ Started GET "/info" for 127.0.0.1 at 2014-06-03 18:25:20 +1000
237
+ Processing by InfoController#view as HTML
238
+ Rendered info/view.html within layouts/application (1.1ms)
239
+ Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.0ms)
240
+  (0.1ms) rollback transaction
241
+  (0.1ms) begin transaction
242
+ Started GET "/webconnect/info" for 127.0.0.1 at 2014-06-03 18:25:20 +1000
243
+  (0.1ms) rollback transaction
244
+  (0.3ms) begin transaction
245
+ Started GET "/webconnect/info" for 127.0.0.1 at 2014-06-03 18:26:11 +1000
246
+  (0.1ms) rollback transaction
247
+  (0.1ms) begin transaction
248
+ Started GET "/info" for 127.0.0.1 at 2014-06-03 18:26:11 +1000
249
+ Processing by InfoController#view as HTML
250
+ Rendered info/view.html within layouts/application (1.2ms)
251
+ Completed 200 OK in 17ms (Views: 16.6ms | ActiveRecord: 0.0ms)
252
+  (0.1ms) rollback transaction
253
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
254
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
255
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
256
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
257
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
258
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
259
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
260
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
261
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
262
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
263
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
264
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
265
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "wc_schema_migrations".* FROM "wc_schema_migrations"
266
+ SQLite3::SQLException: no such table: wc_schema_migrations: SELECT "wc_schema_migrations".* FROM "wc_schema_migrations"
267
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "wc_schema_migrations".* FROM "wc_schema_migrations"
268
+ Netfira::WebConnect::Models::Table Load (0.2ms) SELECT "wc__tables".* FROM "wc__tables"
269
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "wc_schema_migrations".* FROM "wc_schema_migrations"
270
+ Netfira::WebConnect::Models::Table Load (0.2ms) SELECT "wc__tables".* FROM "wc__tables"
271
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "wc_schema_migrations".* FROM "wc_schema_migrations"
272
+ Netfira::WebConnect::Models::Table Load (0.1ms) SELECT "wc__tables".* FROM "wc__tables"
273
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "wc_schema_migrations".* FROM "wc_schema_migrations"
274
+  (0.4ms) begin transaction
275
+  (0.0ms) begin transaction
276
+ Started GET "/webconnect/info" for 127.0.0.1 at 2014-06-03 19:55:56 +1000
277
+  (0.0ms) rollback transaction
278
+  (0.0ms) rollback transaction
279
+  (0.0ms) begin transaction
280
+  (0.1ms) begin transaction
281
+ Started GET "/info" for 127.0.0.1 at 2014-06-03 19:55:56 +1000
282
+ Processing by InfoController#view as HTML
283
+ Rendered info/view.html within layouts/application (0.7ms)
284
+ Completed 200 OK in 8ms (Views: 8.2ms | ActiveRecord: 0.0ms)
285
+  (0.1ms) rollback transaction
286
+  (0.0ms) rollback transaction
287
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "wc_schema_migrations".* FROM "wc_schema_migrations"
288
+ Netfira::WebConnect::Models::Table Load (0.1ms) SELECT "wc__tables".* FROM "wc__tables"
289
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "wc_schema_migrations".* FROM "wc_schema_migrations"
290
+  (0.3ms) begin transaction
291
+  (0.0ms) begin transaction
292
+ Started GET "/info" for 127.0.0.1 at 2014-06-03 19:56:29 +1000
293
+ Processing by InfoController#view as HTML
294
+ Rendered info/view.html within layouts/application (0.7ms)
295
+ Completed 200 OK in 9ms (Views: 9.0ms | ActiveRecord: 0.0ms)
296
+  (0.1ms) rollback transaction
297
+  (0.0ms) rollback transaction
298
+  (0.0ms) begin transaction
299
+  (0.0ms) begin transaction
300
+ Started GET "/webconnect/info" for 127.0.0.1 at 2014-06-03 19:56:29 +1000
301
+  (0.0ms) rollback transaction
302
+  (0.0ms) rollback transaction
303
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "wc_schema_migrations".* FROM "wc_schema_migrations"
304
+ Netfira::WebConnect::Models::Table Load (0.1ms) SELECT "wc__tables".* FROM "wc__tables"
305
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "wc_schema_migrations".* FROM "wc_schema_migrations"
306
+  (0.4ms) begin transaction
307
+  (0.0ms) begin transaction
308
+ Started GET "/webconnect/info" for 127.0.0.1 at 2014-06-03 19:57:47 +1000
309
+  (0.0ms) rollback transaction
310
+  (0.0ms) rollback transaction
311
+  (0.0ms) begin transaction
312
+  (0.0ms) begin transaction
313
+ Started GET "/info" for 127.0.0.1 at 2014-06-03 19:57:47 +1000
314
+ Processing by InfoController#view as HTML
315
+ Rendered info/view.html within layouts/application (0.7ms)
316
+ Completed 200 OK in 9ms (Views: 8.9ms | ActiveRecord: 0.0ms)
317
+  (0.1ms) rollback transaction
318
+  (0.0ms) rollback transaction
319
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "wc_schema_migrations".* FROM "wc_schema_migrations"
320
+ Netfira::WebConnect::Models::Table Load (0.1ms) SELECT "wc__tables".* FROM "wc__tables"
321
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "wc_schema_migrations".* FROM "wc_schema_migrations"
322
+  (0.4ms) begin transaction
323
+  (0.0ms) begin transaction
324
+ Started GET "/info" for 127.0.0.1 at 2014-06-03 20:02:13 +1000
325
+ Processing by InfoController#view as HTML
326
+ Rendered info/view.html within layouts/application (0.8ms)
327
+ Completed 200 OK in 9ms (Views: 8.4ms | ActiveRecord: 0.0ms)
328
+  (0.1ms) rollback transaction
329
+  (0.0ms) rollback transaction
330
+  (0.0ms) begin transaction
331
+  (0.0ms) begin transaction
332
+ Started GET "/webconnect/info" for 127.0.0.1 at 2014-06-03 20:02:13 +1000
333
+  (0.0ms) rollback transaction
334
+  (0.0ms) rollback transaction
335
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "wc_schema_migrations".* FROM "wc_schema_migrations"
336
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "wc_schema_migrations".* FROM "wc_schema_migrations"
337
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "wc_schema_migrations".* FROM "wc_schema_migrations"
338
+ Netfira::WebConnect::Models::Table Load (0.1ms) SELECT "wc__tables".* FROM "wc__tables"
339
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "wc_schema_migrations".* FROM "wc_schema_migrations"
340
+  (0.3ms) begin transaction
341
+  (0.0ms) begin transaction
342
+ Started GET "/info" for 127.0.0.1 at 2014-06-03 20:02:45 +1000
343
+ Processing by InfoController#view as HTML
344
+ Rendered info/view.html within layouts/application (0.8ms)
345
+ Completed 200 OK in 9ms (Views: 8.9ms | ActiveRecord: 0.0ms)
346
+  (0.1ms) rollback transaction
347
+  (0.0ms) rollback transaction
348
+  (0.0ms) begin transaction
349
+  (0.0ms) begin transaction
350
+ Started GET "/webconnect/info" for 127.0.0.1 at 2014-06-03 20:02:45 +1000
351
+  (0.0ms) rollback transaction
352
+  (0.0ms) rollback transaction
353
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "wc_schema_migrations".* FROM "wc_schema_migrations"
354
+ Netfira::WebConnect::Models::Table Load (0.2ms) SELECT "wc__tables".* FROM "wc__tables"
355
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "wc_schema_migrations".* FROM "wc_schema_migrations"
356
+  (0.3ms) begin transaction
357
+  (0.0ms) begin transaction
358
+ Started GET "/webconnect/info" for 127.0.0.1 at 2014-06-03 20:04:39 +1000
359
+  (0.0ms) rollback transaction
360
+  (0.0ms) rollback transaction
361
+  (0.1ms) begin transaction
362
+  (0.0ms) begin transaction
363
+ Started GET "/info" for 127.0.0.1 at 2014-06-03 20:04:39 +1000
364
+ Processing by InfoController#view as HTML
365
+ Rendered info/view.html within layouts/application (0.7ms)
366
+ Completed 200 OK in 9ms (Views: 8.7ms | ActiveRecord: 0.0ms)
367
+  (0.1ms) rollback transaction
368
+  (0.0ms) rollback transaction
369
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "wc_schema_migrations".* FROM "wc_schema_migrations"
370
+ Netfira::WebConnect::Models::Table Load (0.1ms) SELECT "wc__tables".* FROM "wc__tables"
371
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "wc_schema_migrations".* FROM "wc_schema_migrations"
372
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "wc_schema_migrations".* FROM "wc_schema_migrations"
373
+ Netfira::WebConnect::Models::Table Load (0.1ms) SELECT "wc__tables".* FROM "wc__tables"
374
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "wc_schema_migrations".* FROM "wc_schema_migrations"
375
+  (0.4ms) begin transaction
376
+  (0.0ms) begin transaction
377
+ Started GET "/info" for 127.0.0.1 at 2014-06-04 09:24:50 +1000
378
+ Processing by InfoController#view as HTML
379
+ Rendered info/view.html within layouts/application (0.7ms)
380
+ Completed 200 OK in 9ms (Views: 8.5ms | ActiveRecord: 0.0ms)
381
+  (0.1ms) rollback transaction
382
+  (0.0ms) rollback transaction
383
+  (0.0ms) begin transaction
384
+  (0.0ms) begin transaction
385
+ Started GET "/webconnect/info" for 127.0.0.1 at 2014-06-04 09:24:50 +1000
386
+  (0.0ms) rollback transaction
387
+  (0.0ms) rollback transaction
388
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
389
+ Netfira::WebConnect::Models::Table Load (0.1ms) SELECT "_tables".* FROM "_tables"
390
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
391
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
392
+ Netfira::WebConnect::Models::Table Load (0.1ms) SELECT "_tables".* FROM "_tables"
393
+  (0.3ms) begin transaction
394
+  (0.0ms) begin transaction
395
+ Started GET "/info" for 127.0.0.1 at 2014-06-04 09:26:30 +1000
396
+ Processing by InfoController#view as HTML
397
+ Rendered info/view.html within layouts/application (0.7ms)
398
+ Completed 200 OK in 8ms (Views: 8.2ms | ActiveRecord: 0.0ms)
399
+  (0.0ms) rollback transaction
400
+  (0.0ms) rollback transaction
401
+  (0.0ms) begin transaction
402
+  (0.0ms) begin transaction
403
+ Started GET "/webconnect/info" for 127.0.0.1 at 2014-06-04 09:26:30 +1000
404
+  (0.0ms) rollback transaction
405
+  (0.0ms) rollback transaction
406
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
407
+ Netfira::WebConnect::Models::Table Load (0.1ms) SELECT "_tables".* FROM "_tables"
408
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
409
+ Netfira::WebConnect::Models::Table Load (0.1ms) SELECT "_tables".* FROM "_tables"
410
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
411
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
412
+ Netfira::WebConnect::Models::Table Load (0.1ms) SELECT "_tables".* FROM "_tables"
413
+  (0.4ms) begin transaction
414
+  (0.1ms) begin transaction
415
+ Started GET "/webconnect/info" for 127.0.0.1 at 2014-06-04 09:26:53 +1000
416
+  (0.1ms) rollback transaction
417
+  (0.0ms) rollback transaction
418
+  (0.0ms) begin transaction
419
+  (0.0ms) begin transaction
420
+ Started GET "/info" for 127.0.0.1 at 2014-06-04 09:26:53 +1000
421
+ Processing by InfoController#view as HTML
422
+ Rendered info/view.html within layouts/application (0.8ms)
423
+ Completed 200 OK in 9ms (Views: 9.0ms | ActiveRecord: 0.0ms)
424
+  (0.1ms) rollback transaction
425
+  (0.0ms) rollback transaction
426
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "wc_schema_migrations".* FROM "wc_schema_migrations"
427
+ Netfira::WebConnect::Models::Table Load (0.1ms) SELECT "wc__tables".* FROM "wc__tables"
428
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "wc_schema_migrations".* FROM "wc_schema_migrations"
429
+  (0.6ms) begin transaction
430
+  (0.0ms) begin transaction
431
+ Started GET "/info" for 127.0.0.1 at 2014-06-04 09:52:13 +1000
432
+ Processing by InfoController#view as HTML
433
+ Rendered info/view.html within layouts/application (0.7ms)
434
+ Completed 200 OK in 9ms (Views: 9.3ms | ActiveRecord: 0.0ms)
435
+  (0.1ms) rollback transaction
436
+  (0.0ms) rollback transaction
437
+  (0.0ms) begin transaction
438
+  (0.0ms) begin transaction
439
+ Started GET "/webconnect/info" for 127.0.0.1 at 2014-06-04 09:52:14 +1000
440
+  (0.0ms) rollback transaction
441
+  (0.0ms) rollback transaction
442
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "wc_schema_migrations".* FROM "wc_schema_migrations"
443
+ Netfira::WebConnect::Models::Table Load (0.1ms) SELECT "wc__tables".* FROM "wc__tables"
444
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "wc_schema_migrations".* FROM "wc_schema_migrations"
445
+  (0.4ms) begin transaction
446
+  (0.0ms) begin transaction
447
+ Started GET "/webconnect/info" for 127.0.0.1 at 2014-06-04 11:21:38 +1000
448
+  (0.1ms) rollback transaction
449
+  (0.0ms) rollback transaction
450
+  (0.1ms) begin transaction
451
+  (0.0ms) begin transaction
452
+ Started GET "/info" for 127.0.0.1 at 2014-06-04 11:21:38 +1000
453
+ Processing by InfoController#view as HTML
454
+ Rendered info/view.html within layouts/application (0.7ms)
455
+ Completed 200 OK in 9ms (Views: 8.4ms | ActiveRecord: 0.0ms)
456
+  (0.1ms) rollback transaction
457
+  (0.0ms) rollback transaction