ragamuffins 0.0.1 → 1.0.0
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.
- checksums.yaml +4 -4
- data/Rakefile +15 -5
- data/app/assets/javascripts/ragamuffins/application.js +13 -0
- data/app/assets/stylesheets/ragamuffins/application.css +15 -0
- data/app/controllers/ragamuffins/application_controller.rb +4 -0
- data/app/helpers/ragamuffins/application_helper.rb +4 -0
- data/app/models/test_model.rb +6 -0
- data/app/views/layouts/ragamuffins/application.html.erb +14 -0
- data/config/routes.rb +2 -0
- data/db/migrate/20140415030524_create_test_models.rb +9 -0
- data/lib/ragamuffins/engine.rb +7 -0
- data/lib/ragamuffins/models/active_record_model_extension.rb +1 -1
- data/lib/ragamuffins/version.rb +1 -1
- data/lib/ragamuffins.rb +1 -0
- data/spec/dummy/README.rdoc +28 -0
- data/spec/dummy/Rakefile +6 -0
- data/spec/dummy/app/assets/javascripts/application.js +13 -0
- data/spec/dummy/app/assets/stylesheets/application.css +15 -0
- data/spec/dummy/app/controllers/application_controller.rb +5 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/views/layouts/application.html.erb +14 -0
- data/spec/dummy/bin/bundle +3 -0
- data/spec/dummy/bin/rails +4 -0
- data/spec/dummy/bin/rake +4 -0
- data/spec/dummy/config/application.rb +29 -0
- data/spec/dummy/config/boot.rb +5 -0
- data/spec/dummy/config/database.yml +25 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +37 -0
- data/spec/dummy/config/environments/production.rb +83 -0
- data/spec/dummy/config/environments/test.rb +39 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/cookies_serializer.rb +3 -0
- data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/dummy/config/initializers/inflections.rb +16 -0
- data/spec/dummy/config/initializers/mime_types.rb +4 -0
- data/spec/dummy/config/initializers/session_store.rb +3 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy/config/locales/en.yml +23 -0
- data/spec/dummy/config/routes.rb +4 -0
- data/spec/dummy/config/secrets.yml +22 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/schema.rb +22 -0
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/development.log +10 -0
- data/spec/dummy/log/test.log +491 -0
- data/spec/dummy/public/404.html +67 -0
- data/spec/dummy/public/422.html +67 -0
- data/spec/dummy/public/500.html +66 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/factories/test_models.rb +7 -0
- data/spec/models/test_model_spec.rb +81 -0
- data/spec/spec_helper.rb +48 -0
- 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
|
+
[1m[36m (0.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
2
|
+
[1m[35m (0.5ms)[0m select sqlite_version(*)
|
3
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
4
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
5
|
+
Migrating to CreateTestModels (20140415030524)
|
6
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
7
|
+
[1m[35m (0.4ms)[0m CREATE TABLE "test_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime)
|
8
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140415030524"]]
|
9
|
+
[1m[35m (0.7ms)[0m commit transaction
|
10
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
@@ -0,0 +1,491 @@
|
|
1
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
7
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
8
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
9
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
10
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
11
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
13
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
14
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
15
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
16
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
17
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
18
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
19
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
20
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
21
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
22
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
23
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
24
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
25
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
26
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
27
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
28
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
29
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
30
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
31
|
+
[1m[36m (1.0ms)[0m [1mCREATE TABLE "test_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
32
|
+
[1m[35m (0.7ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
33
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
34
|
+
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
35
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
36
|
+
[1m[35m (0.7ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140415030524')
|
37
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
38
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
39
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
40
|
+
[1m[35m (0.1ms)[0m begin transaction
|
41
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
42
|
+
[1m[35m (0.0ms)[0m begin transaction
|
43
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
44
|
+
[1m[35m (0.0ms)[0m begin transaction
|
45
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
46
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
47
|
+
[1m[35m (0.1ms)[0m begin transaction
|
48
|
+
[1m[36mSQL (1.3ms)[0m [1mINSERT INTO "test_models" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-04-15 03:12:24.035964"], ["id", 1], ["name", "MyString"], ["updated_at", "2014-04-15 03:12:24.035964"]]
|
49
|
+
[1m[35m (0.9ms)[0m commit transaction
|
50
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
51
|
+
[1m[35m (0.1ms)[0m begin transaction
|
52
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "test_models" ("created_at", "id", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
55
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
56
|
+
[1m[35m (0.1ms)[0m begin transaction
|
57
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-04-15 03:13:22.249355"], ["name", "MyString"], ["updated_at", "2014-04-15 03:13:22.249355"]]
|
58
|
+
[1m[35m (0.7ms)[0m commit transaction
|
59
|
+
[1m[36mTestModel Load (0.2ms)[0m [1mSELECT "test_models".* FROM "test_models" WHERE (id IN (2))[0m
|
60
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
61
|
+
[1m[35m (0.1ms)[0m begin transaction
|
62
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
63
|
+
[1m[35m (0.1ms)[0m begin transaction
|
64
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
65
|
+
[1m[35m (0.0ms)[0m begin transaction
|
66
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
67
|
+
[1m[35m (0.1ms)[0m begin transaction
|
68
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
69
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
71
|
+
[1m[35mTestModel Load (0.1ms)[0m SELECT "test_models".* FROM "test_models" WHERE (id IN (3))
|
72
|
+
[1m[36m (1.0ms)[0m [1mrollback transaction[0m
|
73
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
74
|
+
[1m[35m (0.2ms)[0m begin transaction
|
75
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
76
|
+
[1m[35m (0.1ms)[0m begin transaction
|
77
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
78
|
+
[1m[35m (0.1ms)[0m begin transaction
|
79
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
80
|
+
[1m[35m (0.2ms)[0m begin transaction
|
81
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
82
|
+
[1m[35mSQL (1.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
84
|
+
[1m[35mTestModel Load (0.2ms)[0m SELECT "test_models".* FROM "test_models" WHERE (id IN (3))
|
85
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
86
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
87
|
+
[1m[35m (0.1ms)[0m begin transaction
|
88
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
89
|
+
[1m[35m (0.1ms)[0m begin transaction
|
90
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
91
|
+
[1m[35m (0.1ms)[0m begin transaction
|
92
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
93
|
+
[1m[35m (0.1ms)[0m begin transaction
|
94
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
95
|
+
[1m[35mSQL (0.6ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
97
|
+
[1m[35mTestModel Load (0.2ms)[0m SELECT "test_models".* FROM "test_models" WHERE (id IN (3))
|
98
|
+
[1m[36m (2.0ms)[0m [1mrollback transaction[0m
|
99
|
+
[1m[35m (0.1ms)[0m begin transaction
|
100
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
101
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
103
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
104
|
+
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-04-15 03:16:52.655782"], ["name", "MyString"], ["updated_at", "2014-04-15 03:16:52.655782"]]
|
105
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
106
|
+
[1m[36mTestModel Load (0.2ms)[0m [1mSELECT "test_models".* FROM "test_models" WHERE (id IN (3,4))[0m
|
107
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
108
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
109
|
+
[1m[35m (0.1ms)[0m begin transaction
|
110
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
111
|
+
[1m[35m (0.0ms)[0m begin transaction
|
112
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
113
|
+
[1m[35m (0.1ms)[0m begin transaction
|
114
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
115
|
+
[1m[35m (0.1ms)[0m begin transaction
|
116
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
117
|
+
[1m[35mSQL (0.8ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
119
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
120
|
+
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-04-15 03:18:47.103586"], ["name", "MyString"], ["updated_at", "2014-04-15 03:18:47.103586"]]
|
121
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
122
|
+
[1m[36mTestModel Load (0.2ms)[0m [1mSELECT "test_models".* FROM "test_models" WHERE (id IN (3,4))[0m
|
123
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
124
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
125
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
126
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-04-15 03:18:47.108145"], ["name", "MyString"], ["updated_at", "2014-04-15 03:18:47.108145"]]
|
127
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
128
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
129
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
131
|
+
[1m[35mTestModel Load (0.2ms)[0m SELECT "test_models".* FROM "test_models" WHERE (id IN (3))
|
132
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
133
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
134
|
+
[1m[35m (0.2ms)[0m begin transaction
|
135
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
136
|
+
[1m[35m (0.1ms)[0m begin transaction
|
137
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
138
|
+
[1m[35m (0.1ms)[0m begin transaction
|
139
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
140
|
+
[1m[35m (0.1ms)[0m begin transaction
|
141
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
142
|
+
[1m[35mSQL (0.9ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
144
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
145
|
+
[1m[36mSQL (1.1ms)[0m [1mINSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-04-15 03:19:51.210232"], ["name", "MyString"], ["updated_at", "2014-04-15 03:19:51.210232"]]
|
146
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
147
|
+
[1m[36mTestModel Load (0.2ms)[0m [1mSELECT "test_models".* FROM "test_models" WHERE (id IN (3,4))[0m
|
148
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
149
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
150
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
151
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-04-15 03:19:51.216797"], ["name", "MyString"], ["updated_at", "2014-04-15 03:19:51.216797"]]
|
152
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
153
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
154
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
156
|
+
[1m[35mTestModel Load (0.2ms)[0m SELECT "test_models".* FROM "test_models" WHERE (id IN (3))
|
157
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
158
|
+
[1m[35m (0.1ms)[0m begin transaction
|
159
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
160
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
162
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
163
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-04-15 03:19:51.226939"], ["name", "MyString"], ["updated_at", "2014-04-15 03:19:51.226939"]]
|
164
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
165
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
166
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
167
|
+
[1m[35m (0.1ms)[0m begin transaction
|
168
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
169
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
171
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
172
|
+
[1m[36mSQL (1.2ms)[0m [1mINSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-04-15 03:20:15.260163"], ["name", "MyString"], ["updated_at", "2014-04-15 03:20:15.260163"]]
|
173
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
174
|
+
[1m[36mTestModel Load (0.2ms)[0m [1mSELECT "test_models".* FROM "test_models" WHERE (id IN (3,4))[0m
|
175
|
+
[1m[35m (2.0ms)[0m rollback transaction
|
176
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
177
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
178
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-04-15 03:20:15.267207"], ["name", "MyString"], ["updated_at", "2014-04-15 03:20:15.267207"]]
|
179
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
180
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
181
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
183
|
+
[1m[35mTestModel Load (0.1ms)[0m SELECT "test_models".* FROM "test_models" WHERE (id IN (3))
|
184
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
185
|
+
[1m[35m (0.1ms)[0m begin transaction
|
186
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
187
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
189
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
190
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-04-15 03:20:15.275735"], ["name", "MyString"], ["updated_at", "2014-04-15 03:20:15.275735"]]
|
191
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
192
|
+
[1m[36mTestModel Load (0.2ms)[0m [1mSELECT "test_models".* FROM "test_models" WHERE (id IN ('3'))[0m
|
193
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
194
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
195
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
196
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
197
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
198
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
199
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
200
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
201
|
+
[1m[35m (0.1ms)[0m begin transaction
|
202
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
203
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
205
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
206
|
+
[1m[36mSQL (1.1ms)[0m [1mINSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-04-15 03:21:19.287654"], ["name", "MyString"], ["updated_at", "2014-04-15 03:21:19.287654"]]
|
207
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
208
|
+
[1m[36mTestModel Load (0.2ms)[0m [1mSELECT "test_models".* FROM "test_models" WHERE (id IN ('3',4))[0m
|
209
|
+
[1m[35m (2.7ms)[0m rollback transaction
|
210
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
211
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
212
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-04-15 03:21:19.295696"], ["name", "MyString"], ["updated_at", "2014-04-15 03:21:19.295696"]]
|
213
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
214
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
215
|
+
[1m[35mSQL (0.6ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
217
|
+
[1m[35mTestModel Load (0.2ms)[0m SELECT "test_models".* FROM "test_models" WHERE (id IN (3,4))
|
218
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
219
|
+
[1m[35m (0.1ms)[0m begin transaction
|
220
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
221
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
223
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
224
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-04-15 03:21:19.306150"], ["name", "MyString"], ["updated_at", "2014-04-15 03:21:19.306150"]]
|
225
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
226
|
+
[1m[36mTestModel Load (0.1ms)[0m [1mSELECT "test_models".* FROM "test_models" WHERE (id IN ('3'))[0m
|
227
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
228
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
229
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
230
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-04-15 03:21:19.309648"], ["name", "MyString"], ["updated_at", "2014-04-15 03:21:19.309648"]]
|
231
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
232
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
233
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
235
|
+
[1m[35mTestModel Load (0.2ms)[0m SELECT "test_models".* FROM "test_models" WHERE (id IN (3))
|
236
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
237
|
+
[1m[35m (0.1ms)[0m begin transaction
|
238
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
239
|
+
[1m[35m (0.1ms)[0m begin transaction
|
240
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
241
|
+
[1m[35m (0.1ms)[0m begin transaction
|
242
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
243
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
244
|
+
[1m[35m (0.1ms)[0m begin transaction
|
245
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
246
|
+
[1m[35m (0.0ms)[0m begin transaction
|
247
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
248
|
+
[1m[35m (0.1ms)[0m begin transaction
|
249
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
250
|
+
[1m[35m (0.1ms)[0m begin transaction
|
251
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
252
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
254
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
255
|
+
[1m[36mSQL (1.8ms)[0m [1mINSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-04-15 03:23:22.647496"], ["name", "MyString"], ["updated_at", "2014-04-15 03:23:22.647496"]]
|
256
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
257
|
+
[1m[36mTestModel Load (0.2ms)[0m [1mSELECT "test_models".* FROM "test_models" WHERE (id IN ('3',4))[0m
|
258
|
+
[1m[35m (2.3ms)[0m rollback transaction
|
259
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
260
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
261
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-04-15 03:23:22.655668"], ["name", "MyString"], ["updated_at", "2014-04-15 03:23:22.655668"]]
|
262
|
+
[1m[35m (0.8ms)[0m RELEASE SAVEPOINT active_record_1
|
263
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
264
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
266
|
+
[1m[35mTestModel Load (0.2ms)[0m SELECT "test_models".* FROM "test_models" WHERE (id IN ('3'))
|
267
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
268
|
+
[1m[35m (0.1ms)[0m begin transaction
|
269
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
270
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
272
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
273
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-04-15 03:23:22.666280"], ["name", "MyString"], ["updated_at", "2014-04-15 03:23:22.666280"]]
|
274
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
275
|
+
[1m[36mTestModel Load (0.2ms)[0m [1mSELECT "test_models".* FROM "test_models" WHERE (id IN (3))[0m
|
276
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
277
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
278
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
279
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-04-15 03:23:22.670847"], ["name", "MyString"], ["updated_at", "2014-04-15 03:23:22.670847"]]
|
280
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
281
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
282
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
284
|
+
[1m[35mTestModel Load (0.1ms)[0m SELECT "test_models".* FROM "test_models" WHERE (id IN (3,4))
|
285
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
286
|
+
[1m[35m (0.1ms)[0m begin transaction
|
287
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
288
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
289
|
+
[1m[35m (0.1ms)[0m begin transaction
|
290
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
291
|
+
[1m[35m (0.1ms)[0m begin transaction
|
292
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
293
|
+
[1m[35m (0.1ms)[0m begin transaction
|
294
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
295
|
+
[1m[35m (0.1ms)[0m begin transaction
|
296
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
297
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
299
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
300
|
+
[1m[36mSQL (1.3ms)[0m [1mINSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-04-15 03:23:51.761497"], ["name", "MyString"], ["updated_at", "2014-04-15 03:23:51.761497"]]
|
301
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
302
|
+
[1m[36mTestModel Load (0.2ms)[0m [1mSELECT "test_models".* FROM "test_models" WHERE (id IN (3))[0m
|
303
|
+
[1m[35m (2.5ms)[0m rollback transaction
|
304
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
305
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
306
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-04-15 03:23:51.769007"], ["name", "MyString"], ["updated_at", "2014-04-15 03:23:51.769007"]]
|
307
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
308
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
309
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
311
|
+
[1m[35mTestModel Load (0.3ms)[0m SELECT "test_models".* FROM "test_models" WHERE (id IN ('3',4))
|
312
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
313
|
+
[1m[35m (0.1ms)[0m begin transaction
|
314
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
315
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
317
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
318
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-04-15 03:23:51.778095"], ["name", "MyString"], ["updated_at", "2014-04-15 03:23:51.778095"]]
|
319
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
320
|
+
[1m[36mTestModel Load (0.2ms)[0m [1mSELECT "test_models".* FROM "test_models" WHERE (id IN (3,4))[0m
|
321
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
322
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
323
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
324
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-04-15 03:23:51.782098"], ["name", "MyString"], ["updated_at", "2014-04-15 03:23:51.782098"]]
|
325
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
326
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
327
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
329
|
+
[1m[35mTestModel Load (0.2ms)[0m SELECT "test_models".* FROM "test_models" WHERE (id IN ('3'))
|
330
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
331
|
+
[1m[35m (0.1ms)[0m begin transaction
|
332
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
333
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
335
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
336
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-04-15 03:23:51.791657"], ["name", "MyString"], ["updated_at", "2014-04-15 03:23:51.791657"]]
|
337
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
338
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
339
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "test_models" WHERE "test_models"."id" = ? [["id", 4]]
|
340
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
341
|
+
[1m[35mTestModel Load (0.2ms)[0m SELECT "test_models".* FROM "test_models" WHERE (id IN (4))
|
342
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
343
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
344
|
+
[1m[35m (0.1ms)[0m begin transaction
|
345
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
346
|
+
[1m[35m (0.1ms)[0m begin transaction
|
347
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
348
|
+
[1m[35m (0.1ms)[0m begin transaction
|
349
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
350
|
+
[1m[35m (0.1ms)[0m begin transaction
|
351
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
352
|
+
[1m[35mSQL (0.6ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
354
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
355
|
+
[1m[36mSQL (1.4ms)[0m [1mINSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-04-15 03:24:40.083890"], ["name", "MyString"], ["updated_at", "2014-04-15 03:24:40.083890"]]
|
356
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
357
|
+
[1m[36mTestModel Load (0.3ms)[0m [1mSELECT "test_models".* FROM "test_models" WHERE (id IN ('3',4))[0m
|
358
|
+
[1m[35m (2.0ms)[0m rollback transaction
|
359
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
360
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
361
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-04-15 03:24:40.092190"], ["name", "MyString"], ["updated_at", "2014-04-15 03:24:40.092190"]]
|
362
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
363
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
364
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
366
|
+
[1m[35mTestModel Load (0.1ms)[0m SELECT "test_models".* FROM "test_models" WHERE (id IN ('3'))
|
367
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
368
|
+
[1m[35m (0.0ms)[0m begin transaction
|
369
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
370
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
372
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
373
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-04-15 03:24:40.099468"], ["name", "MyString"], ["updated_at", "2014-04-15 03:24:40.099468"]]
|
374
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
375
|
+
[1m[36mTestModel Load (0.2ms)[0m [1mSELECT "test_models".* FROM "test_models" WHERE (id IN (3,4))[0m
|
376
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
377
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
378
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
379
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-04-15 03:24:40.104277"], ["name", "MyString"], ["updated_at", "2014-04-15 03:24:40.104277"]]
|
380
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
381
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
382
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
384
|
+
[1m[35mTestModel Load (0.1ms)[0m SELECT "test_models".* FROM "test_models" WHERE (id IN (3))
|
385
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
386
|
+
[1m[35m (0.1ms)[0m begin transaction
|
387
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
388
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
390
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
391
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-04-15 03:24:40.112576"], ["name", "MyString"], ["updated_at", "2014-04-15 03:24:40.112576"]]
|
392
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
393
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
394
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "test_models" WHERE "test_models"."id" = ? [["id", 4]]
|
395
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
396
|
+
[1m[35mTestModel Load (0.2ms)[0m SELECT "test_models".* FROM "test_models" WHERE (id IN (4))
|
397
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
398
|
+
[1m[35m (0.1ms)[0m begin transaction
|
399
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
400
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
402
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
403
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-04-15 03:24:40.120281"], ["name", "MyString"], ["updated_at", "2014-04-15 03:24:40.120281"]]
|
404
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
405
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
406
|
+
[1m[35mSQL (0.0ms)[0m DELETE FROM "test_models" WHERE "test_models"."id" = ? [["id", 4]]
|
407
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
408
|
+
[1m[35mTestModel Load (0.1ms)[0m SELECT "test_models".* FROM "test_models" WHERE (id IN (3,4))
|
409
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
410
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
411
|
+
[1m[35m (0.1ms)[0m begin transaction
|
412
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
413
|
+
[1m[35m (0.1ms)[0m begin transaction
|
414
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
415
|
+
[1m[35m (0.1ms)[0m begin transaction
|
416
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
417
|
+
[1m[35m (0.1ms)[0m begin transaction
|
418
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
419
|
+
[1m[35mSQL (0.9ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
421
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
422
|
+
[1m[36mSQL (1.1ms)[0m [1mINSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-04-15 03:27:46.384276"], ["name", "MyString"], ["updated_at", "2014-04-15 03:27:46.384276"]]
|
423
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
424
|
+
[1m[36mTestModel Load (0.2ms)[0m [1mSELECT "test_models".* FROM "test_models" WHERE (id IN ('3',4))[0m
|
425
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
426
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
427
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
428
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-04-15 03:27:46.389956"], ["name", "MyString"], ["updated_at", "2014-04-15 03:27:46.389956"]]
|
429
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
430
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
431
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
433
|
+
[1m[35mTestModel Load (0.3ms)[0m SELECT "test_models".* FROM "test_models" WHERE (id IN ('3'))
|
434
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
435
|
+
[1m[35m (0.1ms)[0m begin transaction
|
436
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
437
|
+
[1m[35mSQL (1.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
439
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
440
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-04-15 03:27:46.401711"], ["name", "MyString"], ["updated_at", "2014-04-15 03:27:46.401711"]]
|
441
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
442
|
+
[1m[36mTestModel Load (0.2ms)[0m [1mSELECT "test_models".* FROM "test_models" WHERE (id IN (3,4))[0m
|
443
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
444
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
445
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
446
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-04-15 03:27:46.407762"], ["name", "MyString"], ["updated_at", "2014-04-15 03:27:46.407762"]]
|
447
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
448
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
449
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
451
|
+
[1m[35mTestModel Load (0.2ms)[0m SELECT "test_models".* FROM "test_models" WHERE (id IN (3))
|
452
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
453
|
+
[1m[35m (0.1ms)[0m begin transaction
|
454
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
455
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
457
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
458
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-04-15 03:27:46.414708"], ["name", "MyString"], ["updated_at", "2014-04-15 03:27:46.414708"]]
|
459
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
460
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
461
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "test_models" WHERE "test_models"."id" = ? [["id", 4]]
|
462
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
463
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
464
|
+
[1m[36mSQL (0.0ms)[0m [1mDELETE FROM "test_models" WHERE "test_models"."id" = ?[0m [["id", 3]]
|
465
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
466
|
+
[1m[36mTestModel Load (0.2ms)[0m [1mSELECT "test_models".* FROM "test_models" WHERE (id IN (4,3))[0m
|
467
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
468
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
469
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
470
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-04-15 03:27:46.421125"], ["name", "MyString"], ["updated_at", "2014-04-15 03:27:46.421125"]]
|
471
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
472
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
473
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
475
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
476
|
+
[1m[36mSQL (0.0ms)[0m [1mDELETE FROM "test_models" WHERE "test_models"."id" = ?[0m [["id", 4]]
|
477
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
478
|
+
[1m[36mTestModel Load (0.1ms)[0m [1mSELECT "test_models".* FROM "test_models" WHERE (id IN (3,4))[0m
|
479
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
480
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
481
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
482
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "test_models" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-04-15 03:27:46.427216"], ["name", "MyString"], ["updated_at", "2014-04-15 03:27:46.427216"]]
|
483
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
484
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
485
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
487
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
488
|
+
[1m[36mSQL (0.0ms)[0m [1mDELETE FROM "test_models" WHERE "test_models"."id" = ?[0m [["id", 4]]
|
489
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
490
|
+
[1m[36mTestModel Load (0.1ms)[0m [1mSELECT "test_models".* FROM "test_models" WHERE (id IN (4))[0m
|
491
|
+
[1m[35m (0.4ms)[0m 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>
|