ragamuffins 0.0.1 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (55) hide show
  1. checksums.yaml +4 -4
  2. data/Rakefile +15 -5
  3. data/app/assets/javascripts/ragamuffins/application.js +13 -0
  4. data/app/assets/stylesheets/ragamuffins/application.css +15 -0
  5. data/app/controllers/ragamuffins/application_controller.rb +4 -0
  6. data/app/helpers/ragamuffins/application_helper.rb +4 -0
  7. data/app/models/test_model.rb +6 -0
  8. data/app/views/layouts/ragamuffins/application.html.erb +14 -0
  9. data/config/routes.rb +2 -0
  10. data/db/migrate/20140415030524_create_test_models.rb +9 -0
  11. data/lib/ragamuffins/engine.rb +7 -0
  12. data/lib/ragamuffins/models/active_record_model_extension.rb +1 -1
  13. data/lib/ragamuffins/version.rb +1 -1
  14. data/lib/ragamuffins.rb +1 -0
  15. data/spec/dummy/README.rdoc +28 -0
  16. data/spec/dummy/Rakefile +6 -0
  17. data/spec/dummy/app/assets/javascripts/application.js +13 -0
  18. data/spec/dummy/app/assets/stylesheets/application.css +15 -0
  19. data/spec/dummy/app/controllers/application_controller.rb +5 -0
  20. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  21. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  22. data/spec/dummy/bin/bundle +3 -0
  23. data/spec/dummy/bin/rails +4 -0
  24. data/spec/dummy/bin/rake +4 -0
  25. data/spec/dummy/config/application.rb +29 -0
  26. data/spec/dummy/config/boot.rb +5 -0
  27. data/spec/dummy/config/database.yml +25 -0
  28. data/spec/dummy/config/environment.rb +5 -0
  29. data/spec/dummy/config/environments/development.rb +37 -0
  30. data/spec/dummy/config/environments/production.rb +83 -0
  31. data/spec/dummy/config/environments/test.rb +39 -0
  32. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  33. data/spec/dummy/config/initializers/cookies_serializer.rb +3 -0
  34. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  35. data/spec/dummy/config/initializers/inflections.rb +16 -0
  36. data/spec/dummy/config/initializers/mime_types.rb +4 -0
  37. data/spec/dummy/config/initializers/session_store.rb +3 -0
  38. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  39. data/spec/dummy/config/locales/en.yml +23 -0
  40. data/spec/dummy/config/routes.rb +4 -0
  41. data/spec/dummy/config/secrets.yml +22 -0
  42. data/spec/dummy/config.ru +4 -0
  43. data/spec/dummy/db/development.sqlite3 +0 -0
  44. data/spec/dummy/db/schema.rb +22 -0
  45. data/spec/dummy/db/test.sqlite3 +0 -0
  46. data/spec/dummy/log/development.log +10 -0
  47. data/spec/dummy/log/test.log +491 -0
  48. data/spec/dummy/public/404.html +67 -0
  49. data/spec/dummy/public/422.html +67 -0
  50. data/spec/dummy/public/500.html +66 -0
  51. data/spec/dummy/public/favicon.ico +0 -0
  52. data/spec/factories/test_models.rb +7 -0
  53. data/spec/models/test_model_spec.rb +81 -0
  54. data/spec/spec_helper.rb +48 -0
  55. metadata +141 -11
@@ -0,0 +1,22 @@
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: 20140415030524) do
15
+
16
+ create_table "test_models", force: true do |t|
17
+ t.string "name"
18
+ t.datetime "created_at"
19
+ t.datetime "updated_at"
20
+ end
21
+
22
+ end
Binary file
@@ -0,0 +1,10 @@
1
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2
+  (0.5ms) select sqlite_version(*)
3
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
5
+ Migrating to CreateTestModels (20140415030524)
6
+  (0.1ms) begin transaction
7
+  (0.4ms) CREATE TABLE "test_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime)
8
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140415030524"]]
9
+  (0.7ms) commit transaction
10
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
@@ -0,0 +1,491 @@
1
+  (0.1ms) begin transaction
2
+  (0.1ms) rollback transaction
3
+  (0.1ms) begin transaction
4
+  (0.1ms) rollback transaction
5
+  (0.1ms) begin transaction
6
+  (0.1ms) rollback transaction
7
+  (0.1ms) begin transaction
8
+  (0.1ms) rollback transaction
9
+  (0.1ms) begin transaction
10
+  (0.1ms) rollback transaction
11
+  (0.1ms) begin transaction
12
+  (0.1ms) rollback transaction
13
+  (0.1ms) begin transaction
14
+  (0.1ms) rollback transaction
15
+  (0.0ms) begin transaction
16
+  (0.1ms) rollback transaction
17
+  (0.1ms) begin transaction
18
+  (0.1ms) rollback transaction
19
+  (0.1ms) begin transaction
20
+  (0.2ms) rollback transaction
21
+  (0.2ms) begin transaction
22
+  (0.1ms) rollback transaction
23
+  (0.1ms) begin transaction
24
+  (0.1ms) rollback transaction
25
+  (0.1ms) begin transaction
26
+  (0.1ms) rollback transaction
27
+  (0.1ms) begin transaction
28
+  (0.2ms) rollback transaction
29
+  (0.1ms) begin transaction
30
+  (0.1ms) rollback transaction
31
+  (1.0ms) CREATE TABLE "test_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
32
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
33
+  (0.1ms) select sqlite_version(*)
34
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
35
+  (0.1ms) SELECT version FROM "schema_migrations"
36
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140415030524')
37
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
38
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
39
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
40
+  (0.1ms) begin transaction
41
+  (0.1ms) rollback transaction
42
+  (0.0ms) begin transaction
43
+  (0.1ms) rollback transaction
44
+  (0.0ms) begin transaction
45
+  (0.1ms) rollback transaction
46
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
47
+  (0.1ms) begin transaction
48
+ SQL (1.3ms) INSERT INTO "test_models" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-04-15 03:12:24.035964"], ["id", 1], ["name", "MyString"], ["updated_at", "2014-04-15 03:12:24.035964"]]
49
+  (0.9ms) commit transaction
50
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
51
+  (0.1ms) begin transaction
52
+ SQL (0.3ms) INSERT INTO "test_models" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-04-15 03:13:06.018709"], ["id", 1], ["name", "MyString"], ["updated_at", "2014-04-15 03:13:06.018709"]]
53
+ SQLite3::ConstraintException: PRIMARY KEY must be unique: INSERT INTO "test_models" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?)
54
+  (0.1ms) rollback transaction
55
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
56
+  (0.1ms) begin transaction
57
+ SQL (0.4ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:13:22.249355"], ["name", "MyString"], ["updated_at", "2014-04-15 03:13:22.249355"]]
58
+  (0.7ms) commit transaction
59
+ TestModel Load (0.2ms) SELECT "test_models".* FROM "test_models" WHERE (id IN (2))
60
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
61
+  (0.1ms) begin transaction
62
+  (0.1ms) rollback transaction
63
+  (0.1ms) begin transaction
64
+  (0.1ms) rollback transaction
65
+  (0.0ms) begin transaction
66
+  (0.1ms) rollback transaction
67
+  (0.1ms) begin transaction
68
+  (0.1ms) SAVEPOINT active_record_1
69
+ SQL (0.4ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:13:57.820413"], ["name", "MyString"], ["updated_at", "2014-04-15 03:13:57.820413"]]
70
+  (0.0ms) RELEASE SAVEPOINT active_record_1
71
+ TestModel Load (0.1ms) SELECT "test_models".* FROM "test_models" WHERE (id IN (3))
72
+  (1.0ms) rollback transaction
73
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
74
+  (0.2ms) begin transaction
75
+  (0.1ms) rollback transaction
76
+  (0.1ms) begin transaction
77
+  (0.1ms) rollback transaction
78
+  (0.1ms) begin transaction
79
+  (0.1ms) rollback transaction
80
+  (0.2ms) begin transaction
81
+  (0.1ms) SAVEPOINT active_record_1
82
+ SQL (1.0ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:14:38.214704"], ["name", "MyString"], ["updated_at", "2014-04-15 03:14:38.214704"]]
83
+  (0.1ms) RELEASE SAVEPOINT active_record_1
84
+ TestModel Load (0.2ms) SELECT "test_models".* FROM "test_models" WHERE (id IN (3))
85
+  (0.5ms) rollback transaction
86
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
87
+  (0.1ms) begin transaction
88
+  (0.1ms) rollback transaction
89
+  (0.1ms) begin transaction
90
+  (0.2ms) rollback transaction
91
+  (0.1ms) begin transaction
92
+  (0.1ms) rollback transaction
93
+  (0.1ms) begin transaction
94
+  (0.1ms) SAVEPOINT active_record_1
95
+ SQL (0.6ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:16:52.642782"], ["name", "MyString"], ["updated_at", "2014-04-15 03:16:52.642782"]]
96
+  (0.1ms) RELEASE SAVEPOINT active_record_1
97
+ TestModel Load (0.2ms) SELECT "test_models".* FROM "test_models" WHERE (id IN (3))
98
+  (2.0ms) rollback transaction
99
+  (0.1ms) begin transaction
100
+  (0.1ms) SAVEPOINT active_record_1
101
+ SQL (0.3ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:16:52.653902"], ["name", "MyString"], ["updated_at", "2014-04-15 03:16:52.653902"]]
102
+  (0.1ms) RELEASE SAVEPOINT active_record_1
103
+  (0.0ms) SAVEPOINT active_record_1
104
+ SQL (0.9ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:16:52.655782"], ["name", "MyString"], ["updated_at", "2014-04-15 03:16:52.655782"]]
105
+  (0.1ms) RELEASE SAVEPOINT active_record_1
106
+ TestModel Load (0.2ms) SELECT "test_models".* FROM "test_models" WHERE (id IN (3,4))
107
+  (0.4ms) rollback transaction
108
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
109
+  (0.1ms) begin transaction
110
+  (0.1ms) rollback transaction
111
+  (0.0ms) begin transaction
112
+  (0.1ms) rollback transaction
113
+  (0.1ms) begin transaction
114
+  (0.1ms) rollback transaction
115
+  (0.1ms) begin transaction
116
+  (0.1ms) SAVEPOINT active_record_1
117
+ SQL (0.8ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:18:47.098108"], ["name", "MyString"], ["updated_at", "2014-04-15 03:18:47.098108"]]
118
+  (0.1ms) RELEASE SAVEPOINT active_record_1
119
+  (0.0ms) SAVEPOINT active_record_1
120
+ SQL (0.9ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:18:47.103586"], ["name", "MyString"], ["updated_at", "2014-04-15 03:18:47.103586"]]
121
+  (0.1ms) RELEASE SAVEPOINT active_record_1
122
+ TestModel Load (0.2ms) SELECT "test_models".* FROM "test_models" WHERE (id IN (3,4))
123
+  (0.4ms) rollback transaction
124
+  (0.1ms) begin transaction
125
+  (0.1ms) SAVEPOINT active_record_1
126
+ SQL (0.4ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:18:47.108145"], ["name", "MyString"], ["updated_at", "2014-04-15 03:18:47.108145"]]
127
+  (0.1ms) RELEASE SAVEPOINT active_record_1
128
+  (0.1ms) SAVEPOINT active_record_1
129
+ SQL (0.3ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:18:47.110697"], ["name", "MyString"], ["updated_at", "2014-04-15 03:18:47.110697"]]
130
+  (0.0ms) RELEASE SAVEPOINT active_record_1
131
+ TestModel Load (0.2ms) SELECT "test_models".* FROM "test_models" WHERE (id IN (3))
132
+  (0.5ms) rollback transaction
133
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
134
+  (0.2ms) begin transaction
135
+  (0.1ms) rollback transaction
136
+  (0.1ms) begin transaction
137
+  (0.1ms) rollback transaction
138
+  (0.1ms) begin transaction
139
+  (0.1ms) rollback transaction
140
+  (0.1ms) begin transaction
141
+  (0.1ms) SAVEPOINT active_record_1
142
+ SQL (0.9ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:19:51.204704"], ["name", "MyString"], ["updated_at", "2014-04-15 03:19:51.204704"]]
143
+  (0.1ms) RELEASE SAVEPOINT active_record_1
144
+  (0.0ms) SAVEPOINT active_record_1
145
+ SQL (1.1ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:19:51.210232"], ["name", "MyString"], ["updated_at", "2014-04-15 03:19:51.210232"]]
146
+  (0.1ms) RELEASE SAVEPOINT active_record_1
147
+ TestModel Load (0.2ms) SELECT "test_models".* FROM "test_models" WHERE (id IN (3,4))
148
+  (0.5ms) rollback transaction
149
+  (0.1ms) begin transaction
150
+  (0.1ms) SAVEPOINT active_record_1
151
+ SQL (0.5ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:19:51.216797"], ["name", "MyString"], ["updated_at", "2014-04-15 03:19:51.216797"]]
152
+  (0.1ms) RELEASE SAVEPOINT active_record_1
153
+  (0.1ms) SAVEPOINT active_record_1
154
+ SQL (0.5ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:19:51.220034"], ["name", "MyString"], ["updated_at", "2014-04-15 03:19:51.220034"]]
155
+  (0.1ms) RELEASE SAVEPOINT active_record_1
156
+ TestModel Load (0.2ms) SELECT "test_models".* FROM "test_models" WHERE (id IN (3))
157
+  (0.4ms) rollback transaction
158
+  (0.1ms) begin transaction
159
+  (0.1ms) SAVEPOINT active_record_1
160
+ SQL (0.3ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:19:51.224957"], ["name", "MyString"], ["updated_at", "2014-04-15 03:19:51.224957"]]
161
+  (0.1ms) RELEASE SAVEPOINT active_record_1
162
+  (0.0ms) SAVEPOINT active_record_1
163
+ SQL (0.3ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:19:51.226939"], ["name", "MyString"], ["updated_at", "2014-04-15 03:19:51.226939"]]
164
+  (0.1ms) RELEASE SAVEPOINT active_record_1
165
+  (0.3ms) rollback transaction
166
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
167
+  (0.1ms) begin transaction
168
+  (0.0ms) SAVEPOINT active_record_1
169
+ SQL (0.4ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:20:15.256391"], ["name", "MyString"], ["updated_at", "2014-04-15 03:20:15.256391"]]
170
+  (0.0ms) RELEASE SAVEPOINT active_record_1
171
+  (0.0ms) SAVEPOINT active_record_1
172
+ SQL (1.2ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:20:15.260163"], ["name", "MyString"], ["updated_at", "2014-04-15 03:20:15.260163"]]
173
+  (0.1ms) RELEASE SAVEPOINT active_record_1
174
+ TestModel Load (0.2ms) SELECT "test_models".* FROM "test_models" WHERE (id IN (3,4))
175
+  (2.0ms) rollback transaction
176
+  (0.1ms) begin transaction
177
+  (0.1ms) SAVEPOINT active_record_1
178
+ SQL (0.4ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:20:15.267207"], ["name", "MyString"], ["updated_at", "2014-04-15 03:20:15.267207"]]
179
+  (0.1ms) RELEASE SAVEPOINT active_record_1
180
+  (0.1ms) SAVEPOINT active_record_1
181
+ SQL (0.4ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:20:15.270194"], ["name", "MyString"], ["updated_at", "2014-04-15 03:20:15.270194"]]
182
+  (0.0ms) RELEASE SAVEPOINT active_record_1
183
+ TestModel Load (0.1ms) SELECT "test_models".* FROM "test_models" WHERE (id IN (3))
184
+  (0.4ms) rollback transaction
185
+  (0.1ms) begin transaction
186
+  (0.1ms) SAVEPOINT active_record_1
187
+ SQL (0.3ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:20:15.273808"], ["name", "MyString"], ["updated_at", "2014-04-15 03:20:15.273808"]]
188
+  (0.1ms) RELEASE SAVEPOINT active_record_1
189
+  (0.0ms) SAVEPOINT active_record_1
190
+ SQL (0.5ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:20:15.275735"], ["name", "MyString"], ["updated_at", "2014-04-15 03:20:15.275735"]]
191
+  (0.1ms) RELEASE SAVEPOINT active_record_1
192
+ TestModel Load (0.2ms) SELECT "test_models".* FROM "test_models" WHERE (id IN ('3'))
193
+  (0.6ms) rollback transaction
194
+  (0.1ms) begin transaction
195
+  (0.1ms) rollback transaction
196
+  (0.1ms) begin transaction
197
+  (0.1ms) rollback transaction
198
+  (0.1ms) begin transaction
199
+  (0.1ms) rollback transaction
200
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
201
+  (0.1ms) begin transaction
202
+  (0.0ms) SAVEPOINT active_record_1
203
+ SQL (0.4ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:21:19.283724"], ["name", "MyString"], ["updated_at", "2014-04-15 03:21:19.283724"]]
204
+  (0.1ms) RELEASE SAVEPOINT active_record_1
205
+  (0.0ms) SAVEPOINT active_record_1
206
+ SQL (1.1ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:21:19.287654"], ["name", "MyString"], ["updated_at", "2014-04-15 03:21:19.287654"]]
207
+  (0.1ms) RELEASE SAVEPOINT active_record_1
208
+ TestModel Load (0.2ms) SELECT "test_models".* FROM "test_models" WHERE (id IN ('3',4))
209
+  (2.7ms) rollback transaction
210
+  (0.1ms) begin transaction
211
+  (0.1ms) SAVEPOINT active_record_1
212
+ SQL (0.3ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:21:19.295696"], ["name", "MyString"], ["updated_at", "2014-04-15 03:21:19.295696"]]
213
+  (0.1ms) RELEASE SAVEPOINT active_record_1
214
+  (0.1ms) SAVEPOINT active_record_1
215
+ SQL (0.6ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:21:19.297630"], ["name", "MyString"], ["updated_at", "2014-04-15 03:21:19.297630"]]
216
+  (0.1ms) RELEASE SAVEPOINT active_record_1
217
+ TestModel Load (0.2ms) SELECT "test_models".* FROM "test_models" WHERE (id IN (3,4))
218
+  (0.5ms) rollback transaction
219
+  (0.1ms) begin transaction
220
+  (0.1ms) SAVEPOINT active_record_1
221
+ SQL (0.4ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:21:19.303720"], ["name", "MyString"], ["updated_at", "2014-04-15 03:21:19.303720"]]
222
+  (0.1ms) RELEASE SAVEPOINT active_record_1
223
+  (0.0ms) SAVEPOINT active_record_1
224
+ SQL (0.3ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:21:19.306150"], ["name", "MyString"], ["updated_at", "2014-04-15 03:21:19.306150"]]
225
+  (0.1ms) RELEASE SAVEPOINT active_record_1
226
+ TestModel Load (0.1ms) SELECT "test_models".* FROM "test_models" WHERE (id IN ('3'))
227
+  (0.4ms) rollback transaction
228
+  (0.0ms) begin transaction
229
+  (0.1ms) SAVEPOINT active_record_1
230
+ SQL (0.4ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:21:19.309648"], ["name", "MyString"], ["updated_at", "2014-04-15 03:21:19.309648"]]
231
+  (0.1ms) RELEASE SAVEPOINT active_record_1
232
+  (0.0ms) SAVEPOINT active_record_1
233
+ SQL (0.3ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:21:19.311989"], ["name", "MyString"], ["updated_at", "2014-04-15 03:21:19.311989"]]
234
+  (0.0ms) RELEASE SAVEPOINT active_record_1
235
+ TestModel Load (0.2ms) SELECT "test_models".* FROM "test_models" WHERE (id IN (3))
236
+  (0.4ms) rollback transaction
237
+  (0.1ms) begin transaction
238
+  (0.1ms) rollback transaction
239
+  (0.1ms) begin transaction
240
+  (0.1ms) rollback transaction
241
+  (0.1ms) begin transaction
242
+  (0.1ms) rollback transaction
243
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
244
+  (0.1ms) begin transaction
245
+  (0.1ms) rollback transaction
246
+  (0.0ms) begin transaction
247
+  (0.1ms) rollback transaction
248
+  (0.1ms) begin transaction
249
+  (0.2ms) rollback transaction
250
+  (0.1ms) begin transaction
251
+  (0.1ms) SAVEPOINT active_record_1
252
+ SQL (0.5ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:23:22.642874"], ["name", "MyString"], ["updated_at", "2014-04-15 03:23:22.642874"]]
253
+  (0.1ms) RELEASE SAVEPOINT active_record_1
254
+  (0.1ms) SAVEPOINT active_record_1
255
+ SQL (1.8ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:23:22.647496"], ["name", "MyString"], ["updated_at", "2014-04-15 03:23:22.647496"]]
256
+  (0.1ms) RELEASE SAVEPOINT active_record_1
257
+ TestModel Load (0.2ms) SELECT "test_models".* FROM "test_models" WHERE (id IN ('3',4))
258
+  (2.3ms) rollback transaction
259
+  (0.1ms) begin transaction
260
+  (0.1ms) SAVEPOINT active_record_1
261
+ SQL (0.3ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:23:22.655668"], ["name", "MyString"], ["updated_at", "2014-04-15 03:23:22.655668"]]
262
+  (0.8ms) RELEASE SAVEPOINT active_record_1
263
+  (0.1ms) SAVEPOINT active_record_1
264
+ SQL (0.5ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:23:22.658992"], ["name", "MyString"], ["updated_at", "2014-04-15 03:23:22.658992"]]
265
+  (0.0ms) RELEASE SAVEPOINT active_record_1
266
+ TestModel Load (0.2ms) SELECT "test_models".* FROM "test_models" WHERE (id IN ('3'))
267
+  (0.4ms) rollback transaction
268
+  (0.1ms) begin transaction
269
+  (0.1ms) SAVEPOINT active_record_1
270
+ SQL (0.5ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:23:22.663153"], ["name", "MyString"], ["updated_at", "2014-04-15 03:23:22.663153"]]
271
+  (0.1ms) RELEASE SAVEPOINT active_record_1
272
+  (0.1ms) SAVEPOINT active_record_1
273
+ SQL (0.5ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:23:22.666280"], ["name", "MyString"], ["updated_at", "2014-04-15 03:23:22.666280"]]
274
+  (0.1ms) RELEASE SAVEPOINT active_record_1
275
+ TestModel Load (0.2ms) SELECT "test_models".* FROM "test_models" WHERE (id IN (3))
276
+  (0.5ms) rollback transaction
277
+  (0.1ms) begin transaction
278
+  (0.1ms) SAVEPOINT active_record_1
279
+ SQL (0.3ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:23:22.670847"], ["name", "MyString"], ["updated_at", "2014-04-15 03:23:22.670847"]]
280
+  (0.1ms) RELEASE SAVEPOINT active_record_1
281
+  (0.0ms) SAVEPOINT active_record_1
282
+ SQL (0.3ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:23:22.673320"], ["name", "MyString"], ["updated_at", "2014-04-15 03:23:22.673320"]]
283
+  (0.0ms) RELEASE SAVEPOINT active_record_1
284
+ TestModel Load (0.1ms) SELECT "test_models".* FROM "test_models" WHERE (id IN (3,4))
285
+  (0.4ms) rollback transaction
286
+  (0.1ms) begin transaction
287
+  (0.1ms) rollback transaction
288
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
289
+  (0.1ms) begin transaction
290
+  (0.1ms) rollback transaction
291
+  (0.1ms) begin transaction
292
+  (0.2ms) rollback transaction
293
+  (0.1ms) begin transaction
294
+  (0.1ms) rollback transaction
295
+  (0.1ms) begin transaction
296
+  (0.1ms) SAVEPOINT active_record_1
297
+ SQL (0.4ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:23:51.757650"], ["name", "MyString"], ["updated_at", "2014-04-15 03:23:51.757650"]]
298
+  (0.0ms) RELEASE SAVEPOINT active_record_1
299
+  (0.0ms) SAVEPOINT active_record_1
300
+ SQL (1.3ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:23:51.761497"], ["name", "MyString"], ["updated_at", "2014-04-15 03:23:51.761497"]]
301
+  (0.1ms) RELEASE SAVEPOINT active_record_1
302
+ TestModel Load (0.2ms) SELECT "test_models".* FROM "test_models" WHERE (id IN (3))
303
+  (2.5ms) rollback transaction
304
+  (0.1ms) begin transaction
305
+  (0.1ms) SAVEPOINT active_record_1
306
+ SQL (0.3ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:23:51.769007"], ["name", "MyString"], ["updated_at", "2014-04-15 03:23:51.769007"]]
307
+  (0.1ms) RELEASE SAVEPOINT active_record_1
308
+  (0.1ms) SAVEPOINT active_record_1
309
+ SQL (0.5ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:23:51.771302"], ["name", "MyString"], ["updated_at", "2014-04-15 03:23:51.771302"]]
310
+  (0.1ms) RELEASE SAVEPOINT active_record_1
311
+ TestModel Load (0.3ms) SELECT "test_models".* FROM "test_models" WHERE (id IN ('3',4))
312
+  (0.5ms) rollback transaction
313
+  (0.1ms) begin transaction
314
+  (0.1ms) SAVEPOINT active_record_1
315
+ SQL (0.3ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:23:51.776353"], ["name", "MyString"], ["updated_at", "2014-04-15 03:23:51.776353"]]
316
+  (0.0ms) RELEASE SAVEPOINT active_record_1
317
+  (0.0ms) SAVEPOINT active_record_1
318
+ SQL (0.3ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:23:51.778095"], ["name", "MyString"], ["updated_at", "2014-04-15 03:23:51.778095"]]
319
+  (0.0ms) RELEASE SAVEPOINT active_record_1
320
+ TestModel Load (0.2ms) SELECT "test_models".* FROM "test_models" WHERE (id IN (3,4))
321
+  (0.5ms) rollback transaction
322
+  (0.1ms) begin transaction
323
+  (0.1ms) SAVEPOINT active_record_1
324
+ SQL (0.4ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:23:51.782098"], ["name", "MyString"], ["updated_at", "2014-04-15 03:23:51.782098"]]
325
+  (0.1ms) RELEASE SAVEPOINT active_record_1
326
+  (0.0ms) SAVEPOINT active_record_1
327
+ SQL (0.3ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:23:51.784236"], ["name", "MyString"], ["updated_at", "2014-04-15 03:23:51.784236"]]
328
+  (0.0ms) RELEASE SAVEPOINT active_record_1
329
+ TestModel Load (0.2ms) SELECT "test_models".* FROM "test_models" WHERE (id IN ('3'))
330
+  (0.4ms) rollback transaction
331
+  (0.1ms) begin transaction
332
+  (0.1ms) SAVEPOINT active_record_1
333
+ SQL (0.5ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:23:51.789170"], ["name", "MyString"], ["updated_at", "2014-04-15 03:23:51.789170"]]
334
+  (0.1ms) RELEASE SAVEPOINT active_record_1
335
+  (0.1ms) SAVEPOINT active_record_1
336
+ SQL (0.4ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:23:51.791657"], ["name", "MyString"], ["updated_at", "2014-04-15 03:23:51.791657"]]
337
+  (0.1ms) RELEASE SAVEPOINT active_record_1
338
+  (0.0ms) SAVEPOINT active_record_1
339
+ SQL (0.1ms) DELETE FROM "test_models" WHERE "test_models"."id" = ? [["id", 4]]
340
+  (0.1ms) RELEASE SAVEPOINT active_record_1
341
+ TestModel Load (0.2ms) SELECT "test_models".* FROM "test_models" WHERE (id IN (4))
342
+  (0.4ms) rollback transaction
343
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
344
+  (0.1ms) begin transaction
345
+  (0.1ms) rollback transaction
346
+  (0.1ms) begin transaction
347
+  (0.1ms) rollback transaction
348
+  (0.1ms) begin transaction
349
+  (0.1ms) rollback transaction
350
+  (0.1ms) begin transaction
351
+  (0.1ms) SAVEPOINT active_record_1
352
+ SQL (0.6ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:24:40.078554"], ["name", "MyString"], ["updated_at", "2014-04-15 03:24:40.078554"]]
353
+  (0.1ms) RELEASE SAVEPOINT active_record_1
354
+  (0.2ms) SAVEPOINT active_record_1
355
+ SQL (1.4ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:24:40.083890"], ["name", "MyString"], ["updated_at", "2014-04-15 03:24:40.083890"]]
356
+  (0.1ms) RELEASE SAVEPOINT active_record_1
357
+ TestModel Load (0.3ms) SELECT "test_models".* FROM "test_models" WHERE (id IN ('3',4))
358
+  (2.0ms) rollback transaction
359
+  (0.1ms) begin transaction
360
+  (0.1ms) SAVEPOINT active_record_1
361
+ SQL (0.4ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:24:40.092190"], ["name", "MyString"], ["updated_at", "2014-04-15 03:24:40.092190"]]
362
+  (0.1ms) RELEASE SAVEPOINT active_record_1
363
+  (0.0ms) SAVEPOINT active_record_1
364
+ SQL (0.3ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:24:40.094312"], ["name", "MyString"], ["updated_at", "2014-04-15 03:24:40.094312"]]
365
+  (0.0ms) RELEASE SAVEPOINT active_record_1
366
+ TestModel Load (0.1ms) SELECT "test_models".* FROM "test_models" WHERE (id IN ('3'))
367
+  (0.4ms) rollback transaction
368
+  (0.0ms) begin transaction
369
+  (0.1ms) SAVEPOINT active_record_1
370
+ SQL (0.3ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:24:40.097642"], ["name", "MyString"], ["updated_at", "2014-04-15 03:24:40.097642"]]
371
+  (0.1ms) RELEASE SAVEPOINT active_record_1
372
+  (0.0ms) SAVEPOINT active_record_1
373
+ SQL (0.4ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:24:40.099468"], ["name", "MyString"], ["updated_at", "2014-04-15 03:24:40.099468"]]
374
+  (0.1ms) RELEASE SAVEPOINT active_record_1
375
+ TestModel Load (0.2ms) SELECT "test_models".* FROM "test_models" WHERE (id IN (3,4))
376
+  (0.4ms) rollback transaction
377
+  (0.1ms) begin transaction
378
+  (0.1ms) SAVEPOINT active_record_1
379
+ SQL (0.4ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:24:40.104277"], ["name", "MyString"], ["updated_at", "2014-04-15 03:24:40.104277"]]
380
+  (0.1ms) RELEASE SAVEPOINT active_record_1
381
+  (0.1ms) SAVEPOINT active_record_1
382
+ SQL (0.4ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:24:40.106745"], ["name", "MyString"], ["updated_at", "2014-04-15 03:24:40.106745"]]
383
+  (0.1ms) RELEASE SAVEPOINT active_record_1
384
+ TestModel Load (0.1ms) SELECT "test_models".* FROM "test_models" WHERE (id IN (3))
385
+  (0.4ms) rollback transaction
386
+  (0.1ms) begin transaction
387
+  (0.1ms) SAVEPOINT active_record_1
388
+ SQL (0.3ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:24:40.110996"], ["name", "MyString"], ["updated_at", "2014-04-15 03:24:40.110996"]]
389
+  (0.0ms) RELEASE SAVEPOINT active_record_1
390
+  (0.0ms) SAVEPOINT active_record_1
391
+ SQL (0.3ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:24:40.112576"], ["name", "MyString"], ["updated_at", "2014-04-15 03:24:40.112576"]]
392
+  (0.1ms) RELEASE SAVEPOINT active_record_1
393
+  (0.0ms) SAVEPOINT active_record_1
394
+ SQL (0.2ms) DELETE FROM "test_models" WHERE "test_models"."id" = ? [["id", 4]]
395
+  (0.1ms) RELEASE SAVEPOINT active_record_1
396
+ TestModel Load (0.2ms) SELECT "test_models".* FROM "test_models" WHERE (id IN (4))
397
+  (0.5ms) rollback transaction
398
+  (0.1ms) begin transaction
399
+  (0.1ms) SAVEPOINT active_record_1
400
+ SQL (0.4ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:24:40.118204"], ["name", "MyString"], ["updated_at", "2014-04-15 03:24:40.118204"]]
401
+  (0.1ms) RELEASE SAVEPOINT active_record_1
402
+  (0.0ms) SAVEPOINT active_record_1
403
+ SQL (0.3ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:24:40.120281"], ["name", "MyString"], ["updated_at", "2014-04-15 03:24:40.120281"]]
404
+  (0.0ms) RELEASE SAVEPOINT active_record_1
405
+  (0.0ms) SAVEPOINT active_record_1
406
+ SQL (0.0ms) DELETE FROM "test_models" WHERE "test_models"."id" = ? [["id", 4]]
407
+  (0.0ms) RELEASE SAVEPOINT active_record_1
408
+ TestModel Load (0.1ms) SELECT "test_models".* FROM "test_models" WHERE (id IN (3,4))
409
+  (0.4ms) rollback transaction
410
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
411
+  (0.1ms) begin transaction
412
+  (0.1ms) rollback transaction
413
+  (0.1ms) begin transaction
414
+  (0.1ms) rollback transaction
415
+  (0.1ms) begin transaction
416
+  (0.2ms) rollback transaction
417
+  (0.1ms) begin transaction
418
+  (0.0ms) SAVEPOINT active_record_1
419
+ SQL (0.9ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:27:46.377755"], ["name", "MyString"], ["updated_at", "2014-04-15 03:27:46.377755"]]
420
+  (0.1ms) RELEASE SAVEPOINT active_record_1
421
+  (0.1ms) SAVEPOINT active_record_1
422
+ SQL (1.1ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:27:46.384276"], ["name", "MyString"], ["updated_at", "2014-04-15 03:27:46.384276"]]
423
+  (0.1ms) RELEASE SAVEPOINT active_record_1
424
+ TestModel Load (0.2ms) SELECT "test_models".* FROM "test_models" WHERE (id IN ('3',4))
425
+  (0.6ms) rollback transaction
426
+  (0.1ms) begin transaction
427
+  (0.1ms) SAVEPOINT active_record_1
428
+ SQL (0.4ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:27:46.389956"], ["name", "MyString"], ["updated_at", "2014-04-15 03:27:46.389956"]]
429
+  (0.1ms) RELEASE SAVEPOINT active_record_1
430
+  (0.1ms) SAVEPOINT active_record_1
431
+ SQL (0.4ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:27:46.392222"], ["name", "MyString"], ["updated_at", "2014-04-15 03:27:46.392222"]]
432
+  (0.2ms) RELEASE SAVEPOINT active_record_1
433
+ TestModel Load (0.3ms) SELECT "test_models".* FROM "test_models" WHERE (id IN ('3'))
434
+  (0.7ms) rollback transaction
435
+  (0.1ms) begin transaction
436
+  (0.1ms) SAVEPOINT active_record_1
437
+ SQL (1.0ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:27:46.398072"], ["name", "MyString"], ["updated_at", "2014-04-15 03:27:46.398072"]]
438
+  (0.1ms) RELEASE SAVEPOINT active_record_1
439
+  (0.1ms) SAVEPOINT active_record_1
440
+ SQL (0.6ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:27:46.401711"], ["name", "MyString"], ["updated_at", "2014-04-15 03:27:46.401711"]]
441
+  (0.1ms) RELEASE SAVEPOINT active_record_1
442
+ TestModel Load (0.2ms) SELECT "test_models".* FROM "test_models" WHERE (id IN (3,4))
443
+  (0.4ms) rollback transaction
444
+  (0.1ms) begin transaction
445
+  (0.1ms) SAVEPOINT active_record_1
446
+ SQL (0.3ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:27:46.407762"], ["name", "MyString"], ["updated_at", "2014-04-15 03:27:46.407762"]]
447
+  (0.1ms) RELEASE SAVEPOINT active_record_1
448
+  (0.0ms) SAVEPOINT active_record_1
449
+ SQL (0.3ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:27:46.409550"], ["name", "MyString"], ["updated_at", "2014-04-15 03:27:46.409550"]]
450
+  (0.0ms) RELEASE SAVEPOINT active_record_1
451
+ TestModel Load (0.2ms) SELECT "test_models".* FROM "test_models" WHERE (id IN (3))
452
+  (0.3ms) rollback transaction
453
+  (0.1ms) begin transaction
454
+  (0.1ms) SAVEPOINT active_record_1
455
+ SQL (0.3ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:27:46.413105"], ["name", "MyString"], ["updated_at", "2014-04-15 03:27:46.413105"]]
456
+  (0.0ms) RELEASE SAVEPOINT active_record_1
457
+  (0.0ms) SAVEPOINT active_record_1
458
+ SQL (0.3ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:27:46.414708"], ["name", "MyString"], ["updated_at", "2014-04-15 03:27:46.414708"]]
459
+  (0.0ms) RELEASE SAVEPOINT active_record_1
460
+  (0.0ms) SAVEPOINT active_record_1
461
+ SQL (0.1ms) DELETE FROM "test_models" WHERE "test_models"."id" = ? [["id", 4]]
462
+  (0.0ms) RELEASE SAVEPOINT active_record_1
463
+  (0.0ms) SAVEPOINT active_record_1
464
+ SQL (0.0ms) DELETE FROM "test_models" WHERE "test_models"."id" = ? [["id", 3]]
465
+  (0.0ms) RELEASE SAVEPOINT active_record_1
466
+ TestModel Load (0.2ms) SELECT "test_models".* FROM "test_models" WHERE (id IN (4,3))
467
+  (0.5ms) rollback transaction
468
+  (0.1ms) begin transaction
469
+  (0.2ms) SAVEPOINT active_record_1
470
+ SQL (0.5ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:27:46.421125"], ["name", "MyString"], ["updated_at", "2014-04-15 03:27:46.421125"]]
471
+  (0.1ms) RELEASE SAVEPOINT active_record_1
472
+  (0.0ms) SAVEPOINT active_record_1
473
+ SQL (0.4ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:27:46.423462"], ["name", "MyString"], ["updated_at", "2014-04-15 03:27:46.423462"]]
474
+  (0.0ms) RELEASE SAVEPOINT active_record_1
475
+  (0.0ms) SAVEPOINT active_record_1
476
+ SQL (0.0ms) DELETE FROM "test_models" WHERE "test_models"."id" = ? [["id", 4]]
477
+  (0.0ms) RELEASE SAVEPOINT active_record_1
478
+ TestModel Load (0.1ms) SELECT "test_models".* FROM "test_models" WHERE (id IN (3,4))
479
+  (0.4ms) rollback transaction
480
+  (0.1ms) begin transaction
481
+  (0.1ms) SAVEPOINT active_record_1
482
+ SQL (0.4ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:27:46.427216"], ["name", "MyString"], ["updated_at", "2014-04-15 03:27:46.427216"]]
483
+  (0.1ms) RELEASE SAVEPOINT active_record_1
484
+  (0.0ms) SAVEPOINT active_record_1
485
+ SQL (0.3ms) INSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-04-15 03:27:46.429042"], ["name", "MyString"], ["updated_at", "2014-04-15 03:27:46.429042"]]
486
+  (0.0ms) RELEASE SAVEPOINT active_record_1
487
+  (0.0ms) SAVEPOINT active_record_1
488
+ SQL (0.0ms) DELETE FROM "test_models" WHERE "test_models"."id" = ? [["id", 4]]
489
+  (0.0ms) RELEASE SAVEPOINT active_record_1
490
+ TestModel Load (0.1ms) SELECT "test_models".* FROM "test_models" WHERE (id IN (4))
491
+  (0.4ms) rollback transaction
@@ -0,0 +1,67 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body>
58
+ <!-- This file lives in public/404.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>The page you were looking for doesn't exist.</h1>
62
+ <p>You may have mistyped the address or the page may have moved.</p>
63
+ </div>
64
+ <p>If you are the application owner check the logs for more information.</p>
65
+ </div>
66
+ </body>
67
+ </html>