txtblx 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (77) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.md +63 -0
  4. data/Rakefile +32 -0
  5. data/app/assets/javascripts/txtblx/application.js +13 -0
  6. data/app/assets/stylesheets/txtblx/application.css +15 -0
  7. data/app/controllers/txtblx/application_controller.rb +4 -0
  8. data/app/helpers/txtblx/application_helper.rb +4 -0
  9. data/app/helpers/txtblx/textblocks_helper.rb +14 -0
  10. data/app/models/txtblx/textblock.rb +24 -0
  11. data/app/views/layouts/txtblx/application.html.erb +14 -0
  12. data/config/locales/activerecord.de.yml +12 -0
  13. data/config/locales/txtblx.de.yml +3 -0
  14. data/config/locales/txtblx.en.yml +3 -0
  15. data/config/routes.rb +2 -0
  16. data/db/migrate/20150405222157_create_txtblx_textblocks.rb +14 -0
  17. data/lib/tasks/txtblx_tasks.rake +4 -0
  18. data/lib/txtblx/ability_mixin.rb +11 -0
  19. data/lib/txtblx/admin/textblocks.rb +59 -0
  20. data/lib/txtblx/configuration.rb +13 -0
  21. data/lib/txtblx/engine.rb +16 -0
  22. data/lib/txtblx/version.rb +3 -0
  23. data/lib/txtblx.rb +13 -0
  24. data/spec/dummy/README.rdoc +28 -0
  25. data/spec/dummy/Rakefile +6 -0
  26. data/spec/dummy/app/assets/javascripts/application.js +13 -0
  27. data/spec/dummy/app/assets/stylesheets/application.css +15 -0
  28. data/spec/dummy/app/controllers/application_controller.rb +8 -0
  29. data/spec/dummy/app/controllers/dummies_controller.rb +5 -0
  30. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  31. data/spec/dummy/app/views/dummies/index.html.erb +3 -0
  32. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  33. data/spec/dummy/bin/bundle +3 -0
  34. data/spec/dummy/bin/rails +4 -0
  35. data/spec/dummy/bin/rake +4 -0
  36. data/spec/dummy/bin/setup +29 -0
  37. data/spec/dummy/config/application.rb +32 -0
  38. data/spec/dummy/config/boot.rb +5 -0
  39. data/spec/dummy/config/database.yml +25 -0
  40. data/spec/dummy/config/environment.rb +5 -0
  41. data/spec/dummy/config/environments/development.rb +41 -0
  42. data/spec/dummy/config/environments/production.rb +79 -0
  43. data/spec/dummy/config/environments/test.rb +42 -0
  44. data/spec/dummy/config/initializers/assets.rb +11 -0
  45. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  46. data/spec/dummy/config/initializers/cookies_serializer.rb +3 -0
  47. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  48. data/spec/dummy/config/initializers/inflections.rb +16 -0
  49. data/spec/dummy/config/initializers/mime_types.rb +4 -0
  50. data/spec/dummy/config/initializers/session_store.rb +3 -0
  51. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  52. data/spec/dummy/config/locales/en.yml +23 -0
  53. data/spec/dummy/config/routes.rb +6 -0
  54. data/spec/dummy/config/secrets.yml +22 -0
  55. data/spec/dummy/config.ru +4 -0
  56. data/spec/dummy/db/development.sqlite3 +0 -0
  57. data/spec/dummy/db/migrate/20150406173449_create_snaps_tags.snaps.rb +13 -0
  58. data/spec/dummy/db/schema.rb +36 -0
  59. data/spec/dummy/db/test.sqlite3 +0 -0
  60. data/spec/dummy/log/development.log +25 -0
  61. data/spec/dummy/log/test.log +2647 -0
  62. data/spec/dummy/public/404.html +67 -0
  63. data/spec/dummy/public/422.html +67 -0
  64. data/spec/dummy/public/500.html +66 -0
  65. data/spec/dummy/public/favicon.ico +0 -0
  66. data/spec/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  67. data/spec/dummy/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  68. data/spec/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  69. data/spec/dummy/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  70. data/spec/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  71. data/spec/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  72. data/spec/factories/txtblx_textblocks.rb +16 -0
  73. data/spec/features/display_spec.rb +13 -0
  74. data/spec/helpers/textblocks_helper_spec.rb +22 -0
  75. data/spec/models/txtblx/textblock_spec.rb +19 -0
  76. data/spec/spec_helper.rb +31 -0
  77. metadata +285 -0
@@ -0,0 +1,2647 @@
1
+  (0.4ms) begin transaction
2
+  (0.1ms) rollback transaction
3
+  (0.4ms) begin transaction
4
+  (0.1ms) rollback transaction
5
+  (33.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
6
+  (0.1ms) select sqlite_version(*)
7
+  (27.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
8
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
9
+ Migrating to CreateSnapsTags (20150321131740)
10
+  (0.1ms) begin transaction
11
+  (0.3ms) CREATE TABLE "snaps_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "record_id" integer, "record_type" varchar, "tag" varchar, "superseded_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
12
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150321131740"]]
13
+  (30.7ms) commit transaction
14
+ Migrating to CreateTxtblxTextblocks (20150405222157)
15
+  (0.1ms) begin transaction
16
+  (0.4ms) CREATE TABLE "txtblx_textblocks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "perma_id" integer, "key" varchar, "description" varchar, "text" text, "text_html" text, "path" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
17
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150405222157"]]
18
+  (35.5ms) commit transaction
19
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
20
+  (0.4ms) begin transaction
21
+  (0.1ms) SAVEPOINT active_record_1
22
+ SQL (0.3ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-05 23:22:04.316765"], ["updated_at", "2015-04-05 23:22:04.316765"]]
23
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-05 23:22:04.339988' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
24
+ ON txtblx_textblocks.id = snaps_tags.record_id
25
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
26
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
27
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-05 23:22:04.344907"], ["updated_at", "2015-04-05 23:22:04.344907"]]
28
+  (0.0ms) RELEASE SAVEPOINT active_record_1
29
+ Started GET "/" for 127.0.0.1 at 2015-04-06 01:22:04 +0200
30
+  (0.2ms) rollback transaction
31
+  (0.5ms) begin transaction
32
+  (0.1ms) SAVEPOINT active_record_1
33
+ SQL (0.4ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-05 23:27:45.283199"], ["updated_at", "2015-04-05 23:27:45.283199"]]
34
+ SQL (0.3ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-05 23:27:45.307955' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
35
+ ON txtblx_textblocks.id = snaps_tags.record_id
36
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
37
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
38
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-05 23:27:45.314355"], ["updated_at", "2015-04-05 23:27:45.314355"]]
39
+  (0.1ms) RELEASE SAVEPOINT active_record_1
40
+ Started GET "/" for 127.0.0.1 at 2015-04-06 01:27:45 +0200
41
+  (0.2ms) rollback transaction
42
+  (0.4ms) begin transaction
43
+  (0.1ms) SAVEPOINT active_record_1
44
+ SQL (0.3ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-05 23:28:33.181839"], ["updated_at", "2015-04-05 23:28:33.181839"]]
45
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-05 23:28:33.203958' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
46
+ ON txtblx_textblocks.id = snaps_tags.record_id
47
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
48
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
49
+ SQL (0.2ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-05 23:28:33.208807"], ["updated_at", "2015-04-05 23:28:33.208807"]]
50
+  (0.1ms) RELEASE SAVEPOINT active_record_1
51
+ Started GET "/" for 127.0.0.1 at 2015-04-06 01:28:33 +0200
52
+ Processing by DummiesController#index as HTML
53
+ Completed 500 Internal Server Error in 44ms (ActiveRecord: 0.0ms)
54
+  (0.3ms) rollback transaction
55
+  (0.4ms) begin transaction
56
+  (0.1ms) SAVEPOINT active_record_1
57
+ SQL (0.4ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-05 23:30:22.360305"], ["updated_at", "2015-04-05 23:30:22.360305"]]
58
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-05 23:30:22.383270' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
59
+ ON txtblx_textblocks.id = snaps_tags.record_id
60
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
61
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
62
+ SQL (0.2ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-05 23:30:22.388200"], ["updated_at", "2015-04-05 23:30:22.388200"]]
63
+  (0.1ms) RELEASE SAVEPOINT active_record_1
64
+ Started GET "/" for 127.0.0.1 at 2015-04-06 01:30:22 +0200
65
+ Processing by DummiesController#index as HTML
66
+ Rendered dummies/index.html.erb within layouts/application (1.7ms)
67
+ Completed 500 Internal Server Error in 61ms (ActiveRecord: 0.0ms)
68
+  (0.2ms) rollback transaction
69
+  (0.5ms) begin transaction
70
+  (0.1ms) SAVEPOINT active_record_1
71
+ SQL (0.4ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-05 23:31:47.825216"], ["updated_at", "2015-04-05 23:31:47.825216"]]
72
+ SQL (0.3ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-05 23:31:47.850754' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
73
+ ON txtblx_textblocks.id = snaps_tags.record_id
74
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
75
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
76
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-05 23:31:47.856515"], ["updated_at", "2015-04-05 23:31:47.856515"]]
77
+  (0.1ms) RELEASE SAVEPOINT active_record_1
78
+ Started GET "/" for 127.0.0.1 at 2015-04-06 01:31:47 +0200
79
+ Processing by DummiesController#index as HTML
80
+ Rendered dummies/index.html.erb within layouts/application (51.2ms)
81
+ Completed 500 Internal Server Error in 59ms (ActiveRecord: 0.0ms)
82
+  (0.2ms) rollback transaction
83
+  (0.3ms) begin transaction
84
+  (0.1ms) SAVEPOINT active_record_1
85
+ SQL (0.3ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-05 23:33:56.435214"], ["updated_at", "2015-04-05 23:33:56.435214"]]
86
+ SQL (0.3ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-05 23:33:56.457536' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
87
+ ON txtblx_textblocks.id = snaps_tags.record_id
88
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
89
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
90
+ SQL (0.2ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-05 23:33:56.462572"], ["updated_at", "2015-04-05 23:33:56.462572"]]
91
+  (0.1ms) RELEASE SAVEPOINT active_record_1
92
+ Started GET "/" for 127.0.0.1 at 2015-04-06 01:33:56 +0200
93
+ Processing by DummiesController#index as HTML
94
+ Rendered dummies/index.html.erb within layouts/application (41.2ms)
95
+ Completed 200 OK in 52ms (Views: 51.9ms | ActiveRecord: 0.0ms)
96
+  (0.2ms) rollback transaction
97
+  (0.3ms) begin transaction
98
+  (0.1ms) SAVEPOINT active_record_1
99
+ SQL (0.4ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-05 23:34:11.405402"], ["updated_at", "2015-04-05 23:34:11.405402"]]
100
+ SQL (0.3ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-05 23:34:11.427920' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
101
+ ON txtblx_textblocks.id = snaps_tags.record_id
102
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
103
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
104
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-05 23:34:11.433408"], ["updated_at", "2015-04-05 23:34:11.433408"]]
105
+  (0.0ms) RELEASE SAVEPOINT active_record_1
106
+ Started GET "/" for 127.0.0.1 at 2015-04-06 01:34:11 +0200
107
+ Processing by DummiesController#index as HTML
108
+ Rendered dummies/index.html.erb within layouts/application (0.9ms)
109
+ Completed 200 OK in 51ms (Views: 50.6ms | ActiveRecord: 0.0ms)
110
+  (0.2ms) rollback transaction
111
+  (0.4ms) begin transaction
112
+  (0.1ms) SAVEPOINT active_record_1
113
+ SQL (0.5ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-05 23:34:49.261608"], ["updated_at", "2015-04-05 23:34:49.261608"]]
114
+ SQL (0.3ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-05 23:34:49.289918' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
115
+ ON txtblx_textblocks.id = snaps_tags.record_id
116
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
117
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
118
+ SQL (0.2ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-05 23:34:49.296633"], ["updated_at", "2015-04-05 23:34:49.296633"]]
119
+  (0.1ms) RELEASE SAVEPOINT active_record_1
120
+ Started GET "/" for 127.0.0.1 at 2015-04-06 01:34:49 +0200
121
+ Processing by DummiesController#index as HTML
122
+ Rendered dummies/index.html.erb within layouts/application (58.9ms)
123
+ Completed 500 Internal Server Error in 66ms (ActiveRecord: 0.0ms)
124
+  (0.2ms) rollback transaction
125
+  (0.4ms) begin transaction
126
+  (0.1ms) SAVEPOINT active_record_1
127
+ SQL (0.4ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-05 23:37:50.308964"], ["updated_at", "2015-04-05 23:37:50.308964"]]
128
+ SQL (0.3ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-05 23:37:50.332344' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
129
+ ON txtblx_textblocks.id = snaps_tags.record_id
130
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
131
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
132
+ SQL (0.2ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-05 23:37:50.338390"], ["updated_at", "2015-04-05 23:37:50.338390"]]
133
+  (0.1ms) RELEASE SAVEPOINT active_record_1
134
+ Started GET "/" for 127.0.0.1 at 2015-04-06 01:37:50 +0200
135
+ Processing by DummiesController#index as HTML
136
+ Rendered dummies/index.html.erb within layouts/application (51.7ms)
137
+ Completed 500 Internal Server Error in 58ms (ActiveRecord: 0.0ms)
138
+  (0.2ms) rollback transaction
139
+  (0.3ms) begin transaction
140
+  (0.1ms) SAVEPOINT active_record_1
141
+ SQL (0.3ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-05 23:40:47.273089"], ["updated_at", "2015-04-05 23:40:47.273089"]]
142
+ SQL (0.3ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-05 23:40:47.298356' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
143
+ ON txtblx_textblocks.id = snaps_tags.record_id
144
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
145
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
146
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-05 23:40:47.304550"], ["updated_at", "2015-04-05 23:40:47.304550"]]
147
+  (0.1ms) RELEASE SAVEPOINT active_record_1
148
+ Started GET "/" for 127.0.0.1 at 2015-04-06 01:40:47 +0200
149
+ Processing by DummiesController#index as HTML
150
+ Txtblx::Textblock Load (0.3ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
151
+ ON txtblx_textblocks.id = t_published.record_id
152
+ AND t_published.record_type = 'Txtblx::Textblock'
153
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
154
+ Rendered dummies/index.html.erb within layouts/application (49.5ms)
155
+ Completed 500 Internal Server Error in 55ms (ActiveRecord: 0.3ms)
156
+  (0.2ms) rollback transaction
157
+  (0.3ms) begin transaction
158
+  (0.1ms) SAVEPOINT active_record_1
159
+ SQL (0.3ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-05 23:42:30.209906"], ["updated_at", "2015-04-05 23:42:30.209906"]]
160
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-05 23:42:30.232391' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
161
+ ON txtblx_textblocks.id = snaps_tags.record_id
162
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
163
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
164
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-05 23:42:30.237991"], ["updated_at", "2015-04-05 23:42:30.237991"]]
165
+  (0.1ms) RELEASE SAVEPOINT active_record_1
166
+ Started GET "/" for 127.0.0.1 at 2015-04-06 01:42:30 +0200
167
+ Processing by DummiesController#index as HTML
168
+ Txtblx::Textblock Load (0.3ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
169
+ ON txtblx_textblocks.id = t_published.record_id
170
+ AND t_published.record_type = 'Txtblx::Textblock'
171
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
172
+ Rendered dummies/index.html.erb within layouts/application (48.4ms)
173
+ Completed 500 Internal Server Error in 54ms (ActiveRecord: 0.3ms)
174
+  (0.1ms) rollback transaction
175
+  (0.5ms) begin transaction
176
+  (0.1ms) SAVEPOINT active_record_1
177
+ SQL (0.4ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-05 23:44:05.622569"], ["updated_at", "2015-04-05 23:44:05.622569"]]
178
+ SQL (0.3ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-05 23:44:05.649962' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
179
+ ON txtblx_textblocks.id = snaps_tags.record_id
180
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
181
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
182
+ SQL (0.2ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-05 23:44:05.655978"], ["updated_at", "2015-04-05 23:44:05.655978"]]
183
+  (0.1ms) RELEASE SAVEPOINT active_record_1
184
+ Started GET "/" for 127.0.0.1 at 2015-04-06 01:44:05 +0200
185
+ Processing by DummiesController#index as HTML
186
+ Txtblx::Textblock Load (0.2ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" ORDER BY "txtblx_textblocks"."id" ASC LIMIT 1
187
+ Rendered dummies/index.html.erb within layouts/application (51.0ms)
188
+ Completed 200 OK in 65ms (Views: 64.2ms | ActiveRecord: 0.2ms)
189
+  (0.2ms) rollback transaction
190
+  (0.4ms) begin transaction
191
+  (0.1ms) SAVEPOINT active_record_1
192
+ SQL (0.3ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-05 23:45:34.576268"], ["updated_at", "2015-04-05 23:45:34.576268"]]
193
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-05 23:45:34.614062' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
194
+ ON txtblx_textblocks.id = snaps_tags.record_id
195
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
196
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
197
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-05 23:45:34.620273"], ["updated_at", "2015-04-05 23:45:34.620273"]]
198
+  (0.1ms) RELEASE SAVEPOINT active_record_1
199
+  (0.0ms) SAVEPOINT active_record_1
200
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-05 23:45:34.576268"], ["updated_at", "2015-04-05 23:45:34.623148"]]
201
+  (4.1ms) RELEASE SAVEPOINT active_record_1
202
+  (0.1ms) SAVEPOINT active_record_1
203
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-05 23:45:34.630322' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
204
+ ON txtblx_textblocks.id = snaps_tags.record_id
205
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
206
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
207
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-05 23:45:34.631146"], ["updated_at", "2015-04-05 23:45:34.631146"]]
208
+  (0.1ms) RELEASE SAVEPOINT active_record_1
209
+ Started GET "/" for 127.0.0.1 at 2015-04-06 01:45:34 +0200
210
+ Processing by DummiesController#index as HTML
211
+ Txtblx::Textblock Load (0.2ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" ORDER BY "txtblx_textblocks"."id" ASC LIMIT 1
212
+ Txtblx::Textblock Load (0.3ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
213
+ ON txtblx_textblocks.id = t_published.record_id
214
+ AND t_published.record_type = 'Txtblx::Textblock'
215
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
216
+ Rendered dummies/index.html.erb within layouts/application (47.8ms)
217
+ Completed 200 OK in 61ms (Views: 60.5ms | ActiveRecord: 0.4ms)
218
+  (0.2ms) rollback transaction
219
+  (1.1ms) begin transaction
220
+  (0.1ms) SAVEPOINT active_record_1
221
+ SQL (0.4ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 16:29:28.350759"], ["updated_at", "2015-04-06 16:29:28.350759"]]
222
+ SQL (0.3ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 16:29:28.380227' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
223
+ ON txtblx_textblocks.id = snaps_tags.record_id
224
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
225
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
226
+ SQL (0.2ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 16:29:28.386141"], ["updated_at", "2015-04-06 16:29:28.386141"]]
227
+  (0.1ms) RELEASE SAVEPOINT active_record_1
228
+  (0.1ms) SAVEPOINT active_record_1
229
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 16:29:28.350759"], ["updated_at", "2015-04-06 16:29:28.389619"]]
230
+  (0.1ms) RELEASE SAVEPOINT active_record_1
231
+  (0.0ms) SAVEPOINT active_record_1
232
+ SQL (0.3ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 16:29:28.393270' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
233
+ ON txtblx_textblocks.id = snaps_tags.record_id
234
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
235
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
236
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 16:29:28.394601"], ["updated_at", "2015-04-06 16:29:28.394601"]]
237
+  (0.1ms) RELEASE SAVEPOINT active_record_1
238
+ Started GET "/" for 127.0.0.1 at 2015-04-06 18:29:28 +0200
239
+ Processing by DummiesController#index as HTML
240
+ Txtblx::Textblock Load (0.2ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" ORDER BY "txtblx_textblocks"."id" ASC LIMIT 1
241
+ Txtblx::Textblock Load (0.2ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
242
+ ON txtblx_textblocks.id = t_published.record_id
243
+ AND t_published.record_type = 'Txtblx::Textblock'
244
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
245
+ Rendered dummies/index.html.erb within layouts/application (5.7ms)
246
+ Completed 200 OK in 59ms (Views: 58.0ms | ActiveRecord: 0.4ms)
247
+  (0.3ms) rollback transaction
248
+  (0.4ms) begin transaction
249
+  (0.1ms) SAVEPOINT active_record_1
250
+ SQL (0.4ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 16:40:47.023758"], ["updated_at", "2015-04-06 16:40:47.023758"]]
251
+ SQL (0.3ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 16:40:47.048070' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
252
+ ON txtblx_textblocks.id = snaps_tags.record_id
253
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
254
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
255
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 16:40:47.053747"], ["updated_at", "2015-04-06 16:40:47.053747"]]
256
+  (0.0ms) RELEASE SAVEPOINT active_record_1
257
+  (0.0ms) SAVEPOINT active_record_1
258
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 16:40:47.023758"], ["updated_at", "2015-04-06 16:40:47.056085"]]
259
+  (0.1ms) RELEASE SAVEPOINT active_record_1
260
+  (0.0ms) SAVEPOINT active_record_1
261
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 16:40:47.058567' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
262
+ ON txtblx_textblocks.id = snaps_tags.record_id
263
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
264
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
265
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 16:40:47.059387"], ["updated_at", "2015-04-06 16:40:47.059387"]]
266
+  (0.1ms) RELEASE SAVEPOINT active_record_1
267
+ Started GET "/" for 127.0.0.1 at 2015-04-06 18:40:47 +0200
268
+ Processing by DummiesController#index as HTML
269
+ Txtblx::Textblock Load (0.2ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" ORDER BY "txtblx_textblocks"."id" ASC LIMIT 1
270
+ Txtblx::Textblock Load (0.2ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
271
+ ON txtblx_textblocks.id = t_published.record_id
272
+ AND t_published.record_type = 'Txtblx::Textblock'
273
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
274
+ Rendered dummies/index.html.erb within layouts/application (5.3ms)
275
+ Completed 200 OK in 57ms (Views: 56.3ms | ActiveRecord: 0.3ms)
276
+  (0.1ms) rollback transaction
277
+  (0.1ms) begin transaction
278
+  (0.1ms) SAVEPOINT active_record_1
279
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 16:40:47.131430"], ["updated_at", "2015-04-06 16:40:47.131430"]]
280
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 16:40:47.133950' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
281
+ ON txtblx_textblocks.id = snaps_tags.record_id
282
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
283
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
284
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 16:40:47.134751"], ["updated_at", "2015-04-06 16:40:47.134751"]]
285
+  (0.0ms) RELEASE SAVEPOINT active_record_1
286
+  (0.0ms) SAVEPOINT active_record_1
287
+ SQL (0.1ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 16:40:47.131430"], ["updated_at", "2015-04-06 16:40:47.136650"]]
288
+  (0.0ms) RELEASE SAVEPOINT active_record_1
289
+  (0.0ms) SAVEPOINT active_record_1
290
+ SQL (0.1ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 16:40:47.138663' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
291
+ ON txtblx_textblocks.id = snaps_tags.record_id
292
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
293
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
294
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 16:40:47.139265"], ["updated_at", "2015-04-06 16:40:47.139265"]]
295
+  (0.0ms) RELEASE SAVEPOINT active_record_1
296
+  (0.1ms) rollback transaction
297
+  (0.4ms) begin transaction
298
+  (0.1ms) SAVEPOINT active_record_1
299
+ SQL (0.3ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 16:41:48.874706"], ["updated_at", "2015-04-06 16:41:48.874706"]]
300
+ SQL (0.3ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 16:41:48.896377' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
301
+ ON txtblx_textblocks.id = snaps_tags.record_id
302
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
303
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
304
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 16:41:48.901374"], ["updated_at", "2015-04-06 16:41:48.901374"]]
305
+  (0.0ms) RELEASE SAVEPOINT active_record_1
306
+  (0.0ms) SAVEPOINT active_record_1
307
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 16:41:48.874706"], ["updated_at", "2015-04-06 16:41:48.903678"]]
308
+  (0.0ms) RELEASE SAVEPOINT active_record_1
309
+  (0.1ms) SAVEPOINT active_record_1
310
+ SQL (0.1ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 16:41:48.906245' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
311
+ ON txtblx_textblocks.id = snaps_tags.record_id
312
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
313
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
314
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 16:41:48.906908"], ["updated_at", "2015-04-06 16:41:48.906908"]]
315
+  (0.0ms) RELEASE SAVEPOINT active_record_1
316
+ Started GET "/" for 127.0.0.1 at 2015-04-06 18:41:48 +0200
317
+ Processing by DummiesController#index as HTML
318
+ Txtblx::Textblock Load (0.2ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" ORDER BY "txtblx_textblocks"."id" ASC LIMIT 1
319
+ Txtblx::Textblock Load (0.3ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
320
+ ON txtblx_textblocks.id = t_published.record_id
321
+ AND t_published.record_type = 'Txtblx::Textblock'
322
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
323
+ Rendered dummies/index.html.erb within layouts/application (7.3ms)
324
+ Completed 200 OK in 20ms (Views: 19.1ms | ActiveRecord: 0.5ms)
325
+  (0.2ms) rollback transaction
326
+  (0.1ms) begin transaction
327
+  (0.1ms) SAVEPOINT active_record_1
328
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 16:41:48.979804"], ["updated_at", "2015-04-06 16:41:48.979804"]]
329
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 16:41:48.982003' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
330
+ ON txtblx_textblocks.id = snaps_tags.record_id
331
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
332
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
333
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 16:41:48.983016"], ["updated_at", "2015-04-06 16:41:48.983016"]]
334
+  (0.0ms) RELEASE SAVEPOINT active_record_1
335
+  (0.0ms) SAVEPOINT active_record_1
336
+ SQL (0.3ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 16:41:48.979804"], ["updated_at", "2015-04-06 16:41:48.985050"]]
337
+  (0.0ms) RELEASE SAVEPOINT active_record_1
338
+  (0.0ms) SAVEPOINT active_record_1
339
+ SQL (0.1ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 16:41:48.987252' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
340
+ ON txtblx_textblocks.id = snaps_tags.record_id
341
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
342
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
343
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 16:41:48.987863"], ["updated_at", "2015-04-06 16:41:48.987863"]]
344
+  (0.0ms) RELEASE SAVEPOINT active_record_1
345
+  (0.1ms) rollback transaction
346
+  (0.3ms) begin transaction
347
+  (0.1ms) SAVEPOINT active_record_1
348
+ SQL (0.3ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 16:44:04.310638"], ["updated_at", "2015-04-06 16:44:04.310638"]]
349
+ SQL (0.3ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 16:44:04.332477' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
350
+ ON txtblx_textblocks.id = snaps_tags.record_id
351
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
352
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
353
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 16:44:04.337445"], ["updated_at", "2015-04-06 16:44:04.337445"]]
354
+  (0.0ms) RELEASE SAVEPOINT active_record_1
355
+  (0.0ms) SAVEPOINT active_record_1
356
+ SQL (0.1ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 16:44:04.310638"], ["updated_at", "2015-04-06 16:44:04.339792"]]
357
+  (0.0ms) RELEASE SAVEPOINT active_record_1
358
+  (0.0ms) SAVEPOINT active_record_1
359
+ SQL (0.1ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 16:44:04.342307' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
360
+ ON txtblx_textblocks.id = snaps_tags.record_id
361
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
362
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
363
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 16:44:04.342937"], ["updated_at", "2015-04-06 16:44:04.342937"]]
364
+  (0.6ms) RELEASE SAVEPOINT active_record_1
365
+ Started GET "/" for 127.0.0.1 at 2015-04-06 18:44:04 +0200
366
+ Processing by DummiesController#index as HTML
367
+ Txtblx::Textblock Load (0.2ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" ORDER BY "txtblx_textblocks"."id" ASC LIMIT 1
368
+ Txtblx::Textblock Load (0.2ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
369
+ ON txtblx_textblocks.id = t_published.record_id
370
+ AND t_published.record_type = 'Txtblx::Textblock'
371
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
372
+ Rendered dummies/index.html.erb within layouts/application (5.2ms)
373
+ Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.3ms)
374
+  (0.2ms) rollback transaction
375
+  (0.1ms) begin transaction
376
+  (0.1ms) SAVEPOINT active_record_1
377
+ SQL (0.1ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 16:44:04.413645"], ["updated_at", "2015-04-06 16:44:04.413645"]]
378
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 16:44:04.415671' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
379
+ ON txtblx_textblocks.id = snaps_tags.record_id
380
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
381
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
382
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 16:44:04.416425"], ["updated_at", "2015-04-06 16:44:04.416425"]]
383
+  (0.0ms) RELEASE SAVEPOINT active_record_1
384
+  (0.0ms) SAVEPOINT active_record_1
385
+ SQL (0.1ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 16:44:04.413645"], ["updated_at", "2015-04-06 16:44:04.418203"]]
386
+  (0.0ms) RELEASE SAVEPOINT active_record_1
387
+  (0.0ms) SAVEPOINT active_record_1
388
+ SQL (0.1ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 16:44:04.420094' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
389
+ ON txtblx_textblocks.id = snaps_tags.record_id
390
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
391
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
392
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 16:44:04.420663"], ["updated_at", "2015-04-06 16:44:04.420663"]]
393
+  (0.1ms) RELEASE SAVEPOINT active_record_1
394
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" ORDER BY "txtblx_textblocks"."id" ASC LIMIT 1
395
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
396
+ ON txtblx_textblocks.id = t_published.record_id
397
+ AND t_published.record_type = 'Txtblx::Textblock'
398
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
399
+  (0.4ms) rollback transaction
400
+  (0.4ms) begin transaction
401
+  (0.1ms) SAVEPOINT active_record_1
402
+ SQL (0.4ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 16:45:17.628272"], ["updated_at", "2015-04-06 16:45:17.628272"]]
403
+ SQL (0.3ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 16:45:17.653776' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
404
+ ON txtblx_textblocks.id = snaps_tags.record_id
405
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
406
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
407
+ SQL (0.2ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 16:45:17.660046"], ["updated_at", "2015-04-06 16:45:17.660046"]]
408
+  (0.1ms) RELEASE SAVEPOINT active_record_1
409
+  (0.1ms) SAVEPOINT active_record_1
410
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 16:45:17.628272"], ["updated_at", "2015-04-06 16:45:17.663028"]]
411
+  (45.2ms) RELEASE SAVEPOINT active_record_1
412
+  (0.8ms) SAVEPOINT active_record_1
413
+ SQL (0.3ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 16:45:17.712893' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
414
+ ON txtblx_textblocks.id = snaps_tags.record_id
415
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
416
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
417
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 16:45:17.714323"], ["updated_at", "2015-04-06 16:45:17.714323"]]
418
+  (0.1ms) RELEASE SAVEPOINT active_record_1
419
+ Txtblx::Textblock Load (0.2ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" ORDER BY "txtblx_textblocks"."id" ASC LIMIT 1
420
+ Txtblx::Textblock Load (0.2ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
421
+ ON txtblx_textblocks.id = t_published.record_id
422
+ AND t_published.record_type = 'Txtblx::Textblock'
423
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
424
+  (0.2ms) rollback transaction
425
+  (0.1ms) begin transaction
426
+  (0.1ms) SAVEPOINT active_record_1
427
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 16:45:17.728941"], ["updated_at", "2015-04-06 16:45:17.728941"]]
428
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 16:45:17.731594' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
429
+ ON txtblx_textblocks.id = snaps_tags.record_id
430
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
431
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
432
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 16:45:17.732572"], ["updated_at", "2015-04-06 16:45:17.732572"]]
433
+  (0.1ms) RELEASE SAVEPOINT active_record_1
434
+  (0.0ms) SAVEPOINT active_record_1
435
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 16:45:17.728941"], ["updated_at", "2015-04-06 16:45:17.734998"]]
436
+  (0.0ms) RELEASE SAVEPOINT active_record_1
437
+  (0.1ms) SAVEPOINT active_record_1
438
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 16:45:17.737527' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
439
+ ON txtblx_textblocks.id = snaps_tags.record_id
440
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
441
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
442
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 16:45:17.738321"], ["updated_at", "2015-04-06 16:45:17.738321"]]
443
+  (0.0ms) RELEASE SAVEPOINT active_record_1
444
+ Started GET "/" for 127.0.0.1 at 2015-04-06 18:45:17 +0200
445
+ Processing by DummiesController#index as HTML
446
+ Txtblx::Textblock Load (0.2ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" ORDER BY "txtblx_textblocks"."id" ASC LIMIT 1
447
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
448
+ ON txtblx_textblocks.id = t_published.record_id
449
+ AND t_published.record_type = 'Txtblx::Textblock'
450
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
451
+ Rendered dummies/index.html.erb within layouts/application (3.3ms)
452
+ Completed 200 OK in 14ms (Views: 13.6ms | ActiveRecord: 0.3ms)
453
+  (0.2ms) rollback transaction
454
+  (0.4ms) begin transaction
455
+  (0.1ms) SAVEPOINT active_record_1
456
+ SQL (0.3ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 16:54:02.258757"], ["updated_at", "2015-04-06 16:54:02.258757"]]
457
+ SQL (0.3ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 16:54:02.283175' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
458
+ ON txtblx_textblocks.id = snaps_tags.record_id
459
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
460
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
461
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 16:54:02.288169"], ["updated_at", "2015-04-06 16:54:02.288169"]]
462
+  (0.7ms) RELEASE SAVEPOINT active_record_1
463
+  (0.0ms) SAVEPOINT active_record_1
464
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 16:54:02.258757"], ["updated_at", "2015-04-06 16:54:02.338100"]]
465
+  (0.0ms) RELEASE SAVEPOINT active_record_1
466
+  (0.0ms) SAVEPOINT active_record_1
467
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 16:54:02.340695' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
468
+ ON txtblx_textblocks.id = snaps_tags.record_id
469
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
470
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
471
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 16:54:02.341519"], ["updated_at", "2015-04-06 16:54:02.341519"]]
472
+  (0.0ms) RELEASE SAVEPOINT active_record_1
473
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" ORDER BY "txtblx_textblocks"."id" ASC LIMIT 1
474
+ Txtblx::Textblock Load (0.2ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
475
+ ON txtblx_textblocks.id = t_published.record_id
476
+ AND t_published.record_type = 'Txtblx::Textblock'
477
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
478
+  (0.1ms) rollback transaction
479
+  (0.1ms) begin transaction
480
+ Txtblx::Textblock Load (0.2ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" ORDER BY "txtblx_textblocks"."id" ASC LIMIT 1
481
+ Txtblx::Textblock Load (0.0ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
482
+ ON txtblx_textblocks.id = t_published.record_id
483
+ AND t_published.record_type = 'Txtblx::Textblock'
484
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
485
+  (0.1ms) rollback transaction
486
+  (0.1ms) begin transaction
487
+  (0.1ms) SAVEPOINT active_record_1
488
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 16:54:02.357304"], ["updated_at", "2015-04-06 16:54:02.357304"]]
489
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 16:54:02.359951' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
490
+ ON txtblx_textblocks.id = snaps_tags.record_id
491
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
492
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
493
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 16:54:02.360939"], ["updated_at", "2015-04-06 16:54:02.360939"]]
494
+  (0.0ms) RELEASE SAVEPOINT active_record_1
495
+  (0.0ms) SAVEPOINT active_record_1
496
+ SQL (0.1ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 16:54:02.357304"], ["updated_at", "2015-04-06 16:54:02.362918"]]
497
+  (0.0ms) RELEASE SAVEPOINT active_record_1
498
+  (0.0ms) SAVEPOINT active_record_1
499
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 16:54:02.365181' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
500
+ ON txtblx_textblocks.id = snaps_tags.record_id
501
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
502
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
503
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 16:54:02.365891"], ["updated_at", "2015-04-06 16:54:02.365891"]]
504
+  (0.0ms) RELEASE SAVEPOINT active_record_1
505
+ Started GET "/" for 127.0.0.1 at 2015-04-06 18:54:02 +0200
506
+ Processing by DummiesController#index as HTML
507
+ Txtblx::Textblock Load (0.2ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" ORDER BY "txtblx_textblocks"."id" ASC LIMIT 1
508
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
509
+ ON txtblx_textblocks.id = t_published.record_id
510
+ AND t_published.record_type = 'Txtblx::Textblock'
511
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
512
+ Rendered dummies/index.html.erb within layouts/application (2.7ms)
513
+ Completed 200 OK in 12ms (Views: 11.6ms | ActiveRecord: 0.2ms)
514
+  (0.2ms) rollback transaction
515
+  (0.4ms) begin transaction
516
+  (0.1ms) SAVEPOINT active_record_1
517
+ SQL (0.4ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 17:01:39.801180"], ["updated_at", "2015-04-06 17:01:39.801180"]]
518
+ SQL (0.4ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 17:01:39.827867' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
519
+ ON txtblx_textblocks.id = snaps_tags.record_id
520
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
521
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
522
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 17:01:39.877875"], ["updated_at", "2015-04-06 17:01:39.877875"]]
523
+  (0.0ms) RELEASE SAVEPOINT active_record_1
524
+  (0.0ms) SAVEPOINT active_record_1
525
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 17:01:39.801180"], ["updated_at", "2015-04-06 17:01:39.880567"]]
526
+  (0.0ms) RELEASE SAVEPOINT active_record_1
527
+  (0.0ms) SAVEPOINT active_record_1
528
+ SQL (0.1ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 17:01:39.883045' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
529
+ ON txtblx_textblocks.id = snaps_tags.record_id
530
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
531
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
532
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 17:01:39.883714"], ["updated_at", "2015-04-06 17:01:39.883714"]]
533
+  (0.0ms) RELEASE SAVEPOINT active_record_1
534
+ Txtblx::Textblock Load (0.2ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
535
+ ON txtblx_textblocks.id = t_published.record_id
536
+ AND t_published.record_type = 'Txtblx::Textblock'
537
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
538
+  (0.2ms) rollback transaction
539
+  (0.0ms) begin transaction
540
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
541
+ ON txtblx_textblocks.id = t_published.record_id
542
+ AND t_published.record_type = 'Txtblx::Textblock'
543
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
544
+  (0.1ms) rollback transaction
545
+  (0.1ms) begin transaction
546
+  (0.1ms) SAVEPOINT active_record_1
547
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 17:01:39.910660"], ["updated_at", "2015-04-06 17:01:39.910660"]]
548
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 17:01:39.912967' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
549
+ ON txtblx_textblocks.id = snaps_tags.record_id
550
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
551
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
552
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 17:01:39.913810"], ["updated_at", "2015-04-06 17:01:39.913810"]]
553
+  (0.0ms) RELEASE SAVEPOINT active_record_1
554
+  (0.0ms) SAVEPOINT active_record_1
555
+ SQL (0.1ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 17:01:39.910660"], ["updated_at", "2015-04-06 17:01:39.915850"]]
556
+  (0.0ms) RELEASE SAVEPOINT active_record_1
557
+  (0.0ms) SAVEPOINT active_record_1
558
+ SQL (0.1ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 17:01:39.918003' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
559
+ ON txtblx_textblocks.id = snaps_tags.record_id
560
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
561
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
562
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 17:01:39.918607"], ["updated_at", "2015-04-06 17:01:39.918607"]]
563
+  (0.0ms) RELEASE SAVEPOINT active_record_1
564
+ Started GET "/" for 127.0.0.1 at 2015-04-06 19:01:39 +0200
565
+ Processing by DummiesController#index as HTML
566
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
567
+ ON txtblx_textblocks.id = t_published.record_id
568
+ AND t_published.record_type = 'Txtblx::Textblock'
569
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
570
+ Rendered dummies/index.html.erb within layouts/application (2.8ms)
571
+ Completed 200 OK in 15ms (Views: 14.0ms | ActiveRecord: 0.1ms)
572
+  (0.2ms) rollback transaction
573
+  (0.4ms) begin transaction
574
+ Txtblx::Textblock Load (0.3ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
575
+ ON txtblx_textblocks.id = t_published.record_id
576
+ AND t_published.record_type = 'Txtblx::Textblock'
577
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
578
+  (0.1ms) rollback transaction
579
+  (0.1ms) begin transaction
580
+  (0.3ms) SAVEPOINT active_record_1
581
+ SQL (0.3ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 17:02:23.083424"], ["updated_at", "2015-04-06 17:02:23.083424"]]
582
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 17:02:23.100299' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
583
+ ON txtblx_textblocks.id = snaps_tags.record_id
584
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
585
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
586
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 17:02:23.101608"], ["updated_at", "2015-04-06 17:02:23.101608"]]
587
+  (0.1ms) RELEASE SAVEPOINT active_record_1
588
+  (0.0ms) SAVEPOINT active_record_1
589
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 17:02:23.083424"], ["updated_at", "2015-04-06 17:02:23.104557"]]
590
+  (0.1ms) RELEASE SAVEPOINT active_record_1
591
+  (0.1ms) SAVEPOINT active_record_1
592
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 17:02:23.107720' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
593
+ ON txtblx_textblocks.id = snaps_tags.record_id
594
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
595
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
596
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 17:02:23.108731"], ["updated_at", "2015-04-06 17:02:23.108731"]]
597
+  (0.1ms) RELEASE SAVEPOINT active_record_1
598
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
599
+ ON txtblx_textblocks.id = t_published.record_id
600
+ AND t_published.record_type = 'Txtblx::Textblock'
601
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
602
+  (0.2ms) rollback transaction
603
+  (0.1ms) begin transaction
604
+  (0.1ms) SAVEPOINT active_record_1
605
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 17:02:23.117677"], ["updated_at", "2015-04-06 17:02:23.117677"]]
606
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 17:02:23.120317' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
607
+ ON txtblx_textblocks.id = snaps_tags.record_id
608
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
609
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
610
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 17:02:23.121372"], ["updated_at", "2015-04-06 17:02:23.121372"]]
611
+  (0.1ms) RELEASE SAVEPOINT active_record_1
612
+  (0.0ms) SAVEPOINT active_record_1
613
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 17:02:23.117677"], ["updated_at", "2015-04-06 17:02:23.123707"]]
614
+  (0.1ms) RELEASE SAVEPOINT active_record_1
615
+  (0.0ms) SAVEPOINT active_record_1
616
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 17:02:23.126185' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
617
+ ON txtblx_textblocks.id = snaps_tags.record_id
618
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
619
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
620
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 17:02:23.127132"], ["updated_at", "2015-04-06 17:02:23.127132"]]
621
+  (0.0ms) RELEASE SAVEPOINT active_record_1
622
+ Started GET "/" for 127.0.0.1 at 2015-04-06 19:02:23 +0200
623
+ Processing by DummiesController#index as HTML
624
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
625
+ ON txtblx_textblocks.id = t_published.record_id
626
+ AND t_published.record_type = 'Txtblx::Textblock'
627
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
628
+ Rendered dummies/index.html.erb within layouts/application (3.0ms)
629
+ Completed 200 OK in 15ms (Views: 14.0ms | ActiveRecord: 0.1ms)
630
+  (0.2ms) rollback transaction
631
+  (0.3ms) begin transaction
632
+  (0.1ms) SAVEPOINT active_record_1
633
+ SQL (0.3ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 17:04:15.250979"], ["updated_at", "2015-04-06 17:04:15.250979"]]
634
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 17:04:15.273967' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
635
+ ON txtblx_textblocks.id = snaps_tags.record_id
636
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
637
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
638
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 17:04:15.279571"], ["updated_at", "2015-04-06 17:04:15.279571"]]
639
+  (0.9ms) RELEASE SAVEPOINT active_record_1
640
+  (0.1ms) SAVEPOINT active_record_1
641
+ SQL (0.3ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 17:04:15.250979"], ["updated_at", "2015-04-06 17:04:15.326631"]]
642
+  (0.1ms) RELEASE SAVEPOINT active_record_1
643
+  (0.0ms) SAVEPOINT active_record_1
644
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 17:04:15.330376' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
645
+ ON txtblx_textblocks.id = snaps_tags.record_id
646
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
647
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
648
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 17:04:15.331499"], ["updated_at", "2015-04-06 17:04:15.331499"]]
649
+  (0.1ms) RELEASE SAVEPOINT active_record_1
650
+ Txtblx::Textblock Load (0.2ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
651
+ ON txtblx_textblocks.id = t_published.record_id
652
+ AND t_published.record_type = 'Txtblx::Textblock'
653
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
654
+  (0.2ms) rollback transaction
655
+  (0.0ms) begin transaction
656
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
657
+ ON txtblx_textblocks.id = t_published.record_id
658
+ AND t_published.record_type = 'Txtblx::Textblock'
659
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
660
+  (0.1ms) rollback transaction
661
+  (0.1ms) begin transaction
662
+  (0.1ms) SAVEPOINT active_record_1
663
+ SQL (0.1ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 17:04:15.349903"], ["updated_at", "2015-04-06 17:04:15.349903"]]
664
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 17:04:15.351927' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
665
+ ON txtblx_textblocks.id = snaps_tags.record_id
666
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
667
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
668
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 17:04:15.352661"], ["updated_at", "2015-04-06 17:04:15.352661"]]
669
+  (0.0ms) RELEASE SAVEPOINT active_record_1
670
+  (0.0ms) SAVEPOINT active_record_1
671
+ SQL (0.1ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 17:04:15.349903"], ["updated_at", "2015-04-06 17:04:15.354670"]]
672
+  (0.1ms) RELEASE SAVEPOINT active_record_1
673
+  (0.0ms) SAVEPOINT active_record_1
674
+ SQL (0.1ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 17:04:15.356953' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
675
+ ON txtblx_textblocks.id = snaps_tags.record_id
676
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
677
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
678
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 17:04:15.357590"], ["updated_at", "2015-04-06 17:04:15.357590"]]
679
+  (0.1ms) RELEASE SAVEPOINT active_record_1
680
+ Started GET "/" for 127.0.0.1 at 2015-04-06 19:04:15 +0200
681
+ Processing by DummiesController#index as HTML
682
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
683
+ ON txtblx_textblocks.id = t_published.record_id
684
+ AND t_published.record_type = 'Txtblx::Textblock'
685
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
686
+ Rendered dummies/index.html.erb within layouts/application (2.4ms)
687
+ Completed 200 OK in 12ms (Views: 11.2ms | ActiveRecord: 0.1ms)
688
+  (0.2ms) rollback transaction
689
+  (0.3ms) begin transaction
690
+  (0.1ms) SAVEPOINT active_record_1
691
+ SQL (0.3ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 17:04:53.259720"], ["updated_at", "2015-04-06 17:04:53.259720"]]
692
+ SQL (0.3ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 17:04:53.282387' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
693
+ ON txtblx_textblocks.id = snaps_tags.record_id
694
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
695
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
696
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 17:04:53.287081"], ["updated_at", "2015-04-06 17:04:53.287081"]]
697
+  (0.0ms) RELEASE SAVEPOINT active_record_1
698
+  (0.0ms) SAVEPOINT active_record_1
699
+ SQL (0.1ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 17:04:53.259720"], ["updated_at", "2015-04-06 17:04:53.289355"]]
700
+  (0.8ms) RELEASE SAVEPOINT active_record_1
701
+  (0.0ms) SAVEPOINT active_record_1
702
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 17:04:53.332553' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
703
+ ON txtblx_textblocks.id = snaps_tags.record_id
704
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
705
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
706
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 17:04:53.333642"], ["updated_at", "2015-04-06 17:04:53.333642"]]
707
+  (0.1ms) RELEASE SAVEPOINT active_record_1
708
+ Started GET "/" for 127.0.0.1 at 2015-04-06 19:04:53 +0200
709
+ Processing by DummiesController#index as HTML
710
+ Txtblx::Textblock Load (0.2ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
711
+ ON txtblx_textblocks.id = t_published.record_id
712
+ AND t_published.record_type = 'Txtblx::Textblock'
713
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
714
+ Rendered dummies/index.html.erb within layouts/application (4.5ms)
715
+ Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.2ms)
716
+  (0.2ms) rollback transaction
717
+  (0.1ms) begin transaction
718
+  (0.1ms) SAVEPOINT active_record_1
719
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 17:04:53.364719"], ["updated_at", "2015-04-06 17:04:53.364719"]]
720
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 17:04:53.366818' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
721
+ ON txtblx_textblocks.id = snaps_tags.record_id
722
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
723
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
724
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 17:04:53.367656"], ["updated_at", "2015-04-06 17:04:53.367656"]]
725
+  (0.0ms) RELEASE SAVEPOINT active_record_1
726
+  (0.0ms) SAVEPOINT active_record_1
727
+ SQL (0.1ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 17:04:53.364719"], ["updated_at", "2015-04-06 17:04:53.369472"]]
728
+  (0.0ms) RELEASE SAVEPOINT active_record_1
729
+  (0.0ms) SAVEPOINT active_record_1
730
+ SQL (0.1ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 17:04:53.371356' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
731
+ ON txtblx_textblocks.id = snaps_tags.record_id
732
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
733
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
734
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 17:04:53.371927"], ["updated_at", "2015-04-06 17:04:53.371927"]]
735
+  (0.0ms) RELEASE SAVEPOINT active_record_1
736
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
737
+ ON txtblx_textblocks.id = t_published.record_id
738
+ AND t_published.record_type = 'Txtblx::Textblock'
739
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
740
+  (0.1ms) rollback transaction
741
+  (0.0ms) begin transaction
742
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
743
+ ON txtblx_textblocks.id = t_published.record_id
744
+ AND t_published.record_type = 'Txtblx::Textblock'
745
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
746
+  (0.1ms) rollback transaction
747
+  (0.3ms) begin transaction
748
+  (0.1ms) SAVEPOINT active_record_1
749
+ SQL (0.4ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 17:06:34.833984"], ["updated_at", "2015-04-06 17:06:34.833984"]]
750
+ SQL (0.4ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 17:06:34.858559' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
751
+ ON txtblx_textblocks.id = snaps_tags.record_id
752
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
753
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
754
+ SQL (0.2ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 17:06:34.904245"], ["updated_at", "2015-04-06 17:06:34.904245"]]
755
+  (0.1ms) RELEASE SAVEPOINT active_record_1
756
+  (0.0ms) SAVEPOINT active_record_1
757
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 17:06:34.833984"], ["updated_at", "2015-04-06 17:06:34.907321"]]
758
+  (0.0ms) RELEASE SAVEPOINT active_record_1
759
+  (0.0ms) SAVEPOINT active_record_1
760
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 17:06:34.910190' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
761
+ ON txtblx_textblocks.id = snaps_tags.record_id
762
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
763
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
764
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 17:06:34.910905"], ["updated_at", "2015-04-06 17:06:34.910905"]]
765
+  (0.0ms) RELEASE SAVEPOINT active_record_1
766
+ Started GET "/" for 127.0.0.1 at 2015-04-06 19:06:34 +0200
767
+ Processing by DummiesController#index as HTML
768
+ Txtblx::Textblock Load (0.2ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
769
+ ON txtblx_textblocks.id = t_published.record_id
770
+ AND t_published.record_type = 'Txtblx::Textblock'
771
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
772
+ Rendered dummies/index.html.erb within layouts/application (4.4ms)
773
+ Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.2ms)
774
+  (0.2ms) rollback transaction
775
+  (0.1ms) begin transaction
776
+  (0.1ms) SAVEPOINT active_record_1
777
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 17:06:34.940451"], ["updated_at", "2015-04-06 17:06:34.940451"]]
778
+ SQL (0.1ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 17:06:34.942523' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
779
+ ON txtblx_textblocks.id = snaps_tags.record_id
780
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
781
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
782
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 17:06:34.943263"], ["updated_at", "2015-04-06 17:06:34.943263"]]
783
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784
+  (0.0ms) SAVEPOINT active_record_1
785
+ SQL (0.1ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 17:06:34.940451"], ["updated_at", "2015-04-06 17:06:34.945084"]]
786
+  (0.1ms) RELEASE SAVEPOINT active_record_1
787
+  (0.0ms) SAVEPOINT active_record_1
788
+ SQL (0.3ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 17:06:34.947171' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
789
+ ON txtblx_textblocks.id = snaps_tags.record_id
790
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
791
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
792
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 17:06:34.947934"], ["updated_at", "2015-04-06 17:06:34.947934"]]
793
+  (0.0ms) RELEASE SAVEPOINT active_record_1
794
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
795
+ ON txtblx_textblocks.id = t_published.record_id
796
+ AND t_published.record_type = 'Txtblx::Textblock'
797
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
798
+  (0.1ms) rollback transaction
799
+  (0.0ms) begin transaction
800
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
801
+ ON txtblx_textblocks.id = t_published.record_id
802
+ AND t_published.record_type = 'Txtblx::Textblock'
803
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
804
+  (0.1ms) rollback transaction
805
+  (0.4ms) begin transaction
806
+  (0.1ms) SAVEPOINT active_record_1
807
+ SQL (0.4ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 17:35:30.996831"], ["updated_at", "2015-04-06 17:35:30.996831"]]
808
+ SQL (0.3ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 17:35:31.027152' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
809
+ ON txtblx_textblocks.id = snaps_tags.record_id
810
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
811
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
812
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 17:35:31.033341"], ["updated_at", "2015-04-06 17:35:31.033341"]]
813
+  (0.1ms) RELEASE SAVEPOINT active_record_1
814
+  (0.1ms) SAVEPOINT active_record_1
815
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 17:35:30.996831"], ["updated_at", "2015-04-06 17:35:31.035965"]]
816
+  (0.1ms) RELEASE SAVEPOINT active_record_1
817
+  (0.1ms) SAVEPOINT active_record_1
818
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 17:35:31.038728' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
819
+ ON txtblx_textblocks.id = snaps_tags.record_id
820
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
821
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
822
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 17:35:31.039491"], ["updated_at", "2015-04-06 17:35:31.039491"]]
823
+  (0.0ms) RELEASE SAVEPOINT active_record_1
824
+ Started GET "/" for 127.0.0.1 at 2015-04-06 19:35:31 +0200
825
+ Processing by DummiesController#index as HTML
826
+ Txtblx::Textblock Load (0.3ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
827
+ ON txtblx_textblocks.id = t_published.record_id
828
+ AND t_published.record_type = 'Txtblx::Textblock'
829
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
830
+ Rendered dummies/index.html.erb within layouts/application (5.5ms)
831
+ Completed 200 OK in 61ms (Views: 60.7ms | ActiveRecord: 0.3ms)
832
+  (0.2ms) rollback transaction
833
+  (0.1ms) begin transaction
834
+  (0.1ms) SAVEPOINT active_record_1
835
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 17:35:31.129264"], ["updated_at", "2015-04-06 17:35:31.129264"]]
836
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 17:35:31.131660' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
837
+ ON txtblx_textblocks.id = snaps_tags.record_id
838
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
839
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
840
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 17:35:31.132564"], ["updated_at", "2015-04-06 17:35:31.132564"]]
841
+  (0.1ms) RELEASE SAVEPOINT active_record_1
842
+  (0.0ms) SAVEPOINT active_record_1
843
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 17:35:31.129264"], ["updated_at", "2015-04-06 17:35:31.134807"]]
844
+  (0.1ms) RELEASE SAVEPOINT active_record_1
845
+  (0.0ms) SAVEPOINT active_record_1
846
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 17:35:31.137255' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
847
+ ON txtblx_textblocks.id = snaps_tags.record_id
848
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
849
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
850
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 17:35:31.137988"], ["updated_at", "2015-04-06 17:35:31.137988"]]
851
+  (0.0ms) RELEASE SAVEPOINT active_record_1
852
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
853
+ ON txtblx_textblocks.id = t_published.record_id
854
+ AND t_published.record_type = 'Txtblx::Textblock'
855
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
856
+  (0.2ms) rollback transaction
857
+  (0.1ms) begin transaction
858
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
859
+ ON txtblx_textblocks.id = t_published.record_id
860
+ AND t_published.record_type = 'Txtblx::Textblock'
861
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
862
+  (0.1ms) rollback transaction
863
+  (0.9ms) begin transaction
864
+ Txtblx::Textblock Load (0.2ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
865
+ ON txtblx_textblocks.id = t_published.record_id
866
+ AND t_published.record_type = 'Txtblx::Textblock'
867
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
868
+  (0.1ms) rollback transaction
869
+  (0.1ms) begin transaction
870
+  (0.1ms) SAVEPOINT active_record_1
871
+ SQL (0.3ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 18:04:10.228291"], ["updated_at", "2015-04-06 18:04:10.228291"]]
872
+ SQL (0.3ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 18:04:10.289295' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
873
+ ON txtblx_textblocks.id = snaps_tags.record_id
874
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
875
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
876
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 18:04:10.290781"], ["updated_at", "2015-04-06 18:04:10.290781"]]
877
+  (0.1ms) RELEASE SAVEPOINT active_record_1
878
+  (0.0ms) SAVEPOINT active_record_1
879
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 18:04:10.228291"], ["updated_at", "2015-04-06 18:04:10.293907"]]
880
+  (0.1ms) RELEASE SAVEPOINT active_record_1
881
+  (0.0ms) SAVEPOINT active_record_1
882
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 18:04:10.297147' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
883
+ ON txtblx_textblocks.id = snaps_tags.record_id
884
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
885
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
886
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 18:04:10.298009"], ["updated_at", "2015-04-06 18:04:10.298009"]]
887
+  (0.1ms) RELEASE SAVEPOINT active_record_1
888
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
889
+ ON txtblx_textblocks.id = t_published.record_id
890
+ AND t_published.record_type = 'Txtblx::Textblock'
891
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
892
+  (0.1ms) rollback transaction
893
+  (0.1ms) begin transaction
894
+  (0.1ms) SAVEPOINT active_record_1
895
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 18:04:10.305721"], ["updated_at", "2015-04-06 18:04:10.305721"]]
896
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 18:04:10.308043' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
897
+ ON txtblx_textblocks.id = snaps_tags.record_id
898
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
899
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
900
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 18:04:10.308988"], ["updated_at", "2015-04-06 18:04:10.308988"]]
901
+  (0.1ms) RELEASE SAVEPOINT active_record_1
902
+  (0.0ms) SAVEPOINT active_record_1
903
+ SQL (0.1ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 18:04:10.305721"], ["updated_at", "2015-04-06 18:04:10.311523"]]
904
+  (0.0ms) RELEASE SAVEPOINT active_record_1
905
+  (0.0ms) SAVEPOINT active_record_1
906
+ SQL (0.1ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 18:04:10.313669' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
907
+ ON txtblx_textblocks.id = snaps_tags.record_id
908
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
909
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
910
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 18:04:10.314332"], ["updated_at", "2015-04-06 18:04:10.314332"]]
911
+  (0.0ms) RELEASE SAVEPOINT active_record_1
912
+ Started GET "/" for 127.0.0.1 at 2015-04-06 20:04:10 +0200
913
+ Processing by DummiesController#index as HTML
914
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
915
+ ON txtblx_textblocks.id = t_published.record_id
916
+ AND t_published.record_type = 'Txtblx::Textblock'
917
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
918
+ Rendered dummies/index.html.erb within layouts/application (2.4ms)
919
+ Completed 200 OK in 12ms (Views: 11.2ms | ActiveRecord: 0.1ms)
920
+  (0.2ms) rollback transaction
921
+  (0.9ms) begin transaction
922
+ Txtblx::Textblock Load (0.2ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
923
+ ON txtblx_textblocks.id = t_published.record_id
924
+ AND t_published.record_type = 'Txtblx::Textblock'
925
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
926
+  (0.1ms) rollback transaction
927
+  (0.1ms) begin transaction
928
+  (0.1ms) SAVEPOINT active_record_1
929
+ SQL (0.3ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 18:45:10.423851"], ["updated_at", "2015-04-06 18:45:10.423851"]]
930
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 18:45:10.440741' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
931
+ ON txtblx_textblocks.id = snaps_tags.record_id
932
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
933
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
934
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 18:45:10.441884"], ["updated_at", "2015-04-06 18:45:10.441884"]]
935
+  (0.0ms) RELEASE SAVEPOINT active_record_1
936
+  (0.0ms) SAVEPOINT active_record_1
937
+ SQL (0.1ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 18:45:10.423851"], ["updated_at", "2015-04-06 18:45:10.444066"]]
938
+  (0.0ms) RELEASE SAVEPOINT active_record_1
939
+  (0.0ms) SAVEPOINT active_record_1
940
+ SQL (0.1ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 18:45:10.446338' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
941
+ ON txtblx_textblocks.id = snaps_tags.record_id
942
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
943
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
944
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 18:45:10.446925"], ["updated_at", "2015-04-06 18:45:10.446925"]]
945
+  (0.0ms) RELEASE SAVEPOINT active_record_1
946
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
947
+ ON txtblx_textblocks.id = t_published.record_id
948
+ AND t_published.record_type = 'Txtblx::Textblock'
949
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
950
+  (0.1ms) rollback transaction
951
+  (0.1ms) begin transaction
952
+  (0.0ms) SAVEPOINT active_record_1
953
+ SQL (0.1ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 18:45:10.452602"], ["updated_at", "2015-04-06 18:45:10.452602"]]
954
+ SQL (0.1ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 18:45:10.454498' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
955
+ ON txtblx_textblocks.id = snaps_tags.record_id
956
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
957
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
958
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 18:45:10.455220"], ["updated_at", "2015-04-06 18:45:10.455220"]]
959
+  (0.0ms) RELEASE SAVEPOINT active_record_1
960
+  (0.0ms) SAVEPOINT active_record_1
961
+ SQL (0.1ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 18:45:10.452602"], ["updated_at", "2015-04-06 18:45:10.457038"]]
962
+  (0.0ms) RELEASE SAVEPOINT active_record_1
963
+  (0.0ms) SAVEPOINT active_record_1
964
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 18:45:10.459106' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
965
+ ON txtblx_textblocks.id = snaps_tags.record_id
966
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
967
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
968
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 18:45:10.459846"], ["updated_at", "2015-04-06 18:45:10.459846"]]
969
+  (0.0ms) RELEASE SAVEPOINT active_record_1
970
+ Started GET "/" for 127.0.0.1 at 2015-04-06 20:45:10 +0200
971
+ Processing by DummiesController#index as HTML
972
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
973
+ ON txtblx_textblocks.id = t_published.record_id
974
+ AND t_published.record_type = 'Txtblx::Textblock'
975
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
976
+ Rendered dummies/index.html.erb within layouts/application (3.0ms)
977
+ Completed 200 OK in 13ms (Views: 12.9ms | ActiveRecord: 0.1ms)
978
+  (0.3ms) rollback transaction
979
+  (0.1ms) begin transaction
980
+  (0.1ms) rollback transaction
981
+  (0.4ms) begin transaction
982
+  (0.1ms) SAVEPOINT active_record_1
983
+ SQL (0.3ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "some.key"], ["description", ""], ["text", "Some Text"], ["text_html", ""], ["path", "MyString"], ["created_at", "2015-04-06 18:46:32.175429"], ["updated_at", "2015-04-06 18:46:32.175429"]]
984
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 18:46:32.196527' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
985
+ ON txtblx_textblocks.id = snaps_tags.record_id
986
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
987
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
988
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 18:46:32.202080"], ["updated_at", "2015-04-06 18:46:32.202080"]]
989
+  (0.7ms) RELEASE SAVEPOINT active_record_1
990
+  (0.1ms) rollback transaction
991
+  (0.1ms) begin transaction
992
+  (0.1ms) SAVEPOINT active_record_1
993
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 18:46:32.251178"], ["updated_at", "2015-04-06 18:46:32.251178"]]
994
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 18:46:32.253280' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
995
+ ON txtblx_textblocks.id = snaps_tags.record_id
996
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
997
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
998
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 18:46:32.254080"], ["updated_at", "2015-04-06 18:46:32.254080"]]
999
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1000
+  (0.0ms) SAVEPOINT active_record_1
1001
+ SQL (0.1ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 18:46:32.251178"], ["updated_at", "2015-04-06 18:46:32.256149"]]
1002
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1003
+  (0.0ms) SAVEPOINT active_record_1
1004
+ SQL (0.3ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 18:46:32.258413' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1005
+ ON txtblx_textblocks.id = snaps_tags.record_id
1006
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1007
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
1008
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 18:46:32.259345"], ["updated_at", "2015-04-06 18:46:32.259345"]]
1009
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1010
+ Txtblx::Textblock Load (0.2ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
1011
+ ON txtblx_textblocks.id = t_published.record_id
1012
+ AND t_published.record_type = 'Txtblx::Textblock'
1013
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
1014
+  (0.2ms) rollback transaction
1015
+  (0.0ms) begin transaction
1016
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
1017
+ ON txtblx_textblocks.id = t_published.record_id
1018
+ AND t_published.record_type = 'Txtblx::Textblock'
1019
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
1020
+  (0.1ms) rollback transaction
1021
+  (0.1ms) begin transaction
1022
+  (0.1ms) SAVEPOINT active_record_1
1023
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 18:46:32.277751"], ["updated_at", "2015-04-06 18:46:32.277751"]]
1024
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 18:46:32.279820' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1025
+ ON txtblx_textblocks.id = snaps_tags.record_id
1026
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1027
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
1028
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 18:46:32.280681"], ["updated_at", "2015-04-06 18:46:32.280681"]]
1029
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1030
+  (0.0ms) SAVEPOINT active_record_1
1031
+ SQL (0.1ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 18:46:32.277751"], ["updated_at", "2015-04-06 18:46:32.282606"]]
1032
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1033
+  (0.0ms) SAVEPOINT active_record_1
1034
+ SQL (0.1ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 18:46:32.284715' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1035
+ ON txtblx_textblocks.id = snaps_tags.record_id
1036
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1037
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
1038
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 18:46:32.285361"], ["updated_at", "2015-04-06 18:46:32.285361"]]
1039
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1040
+ Started GET "/" for 127.0.0.1 at 2015-04-06 20:46:32 +0200
1041
+ Processing by DummiesController#index as HTML
1042
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
1043
+ ON txtblx_textblocks.id = t_published.record_id
1044
+ AND t_published.record_type = 'Txtblx::Textblock'
1045
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
1046
+ Rendered dummies/index.html.erb within layouts/application (2.9ms)
1047
+ Completed 200 OK in 13ms (Views: 12.7ms | ActiveRecord: 0.1ms)
1048
+  (0.2ms) rollback transaction
1049
+  (0.1ms) begin transaction
1050
+  (0.1ms) SAVEPOINT active_record_1
1051
+ SQL (0.3ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:04:18.977924"], ["updated_at", "2015-04-06 19:04:18.977924"]]
1052
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:04:19.045111' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1053
+ ON txtblx_textblocks.id = snaps_tags.record_id
1054
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1055
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
1056
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:04:19.050513"], ["updated_at", "2015-04-06 19:04:19.050513"]]
1057
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1058
+  (0.0ms) SAVEPOINT active_record_1
1059
+ SQL (0.1ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:04:18.977924"], ["updated_at", "2015-04-06 19:04:19.052910"]]
1060
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1061
+  (0.0ms) SAVEPOINT active_record_1
1062
+ SQL (0.1ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:04:19.055223' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1063
+ ON txtblx_textblocks.id = snaps_tags.record_id
1064
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1065
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
1066
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:04:19.055849"], ["updated_at", "2015-04-06 19:04:19.055849"]]
1067
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1068
+ Started GET "/" for 127.0.0.1 at 2015-04-06 21:04:19 +0200
1069
+ Processing by DummiesController#index as HTML
1070
+ Txtblx::Textblock Load (0.2ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
1071
+ ON txtblx_textblocks.id = t_published.record_id
1072
+ AND t_published.record_type = 'Txtblx::Textblock'
1073
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
1074
+ Rendered dummies/index.html.erb within layouts/application (5.3ms)
1075
+ Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.2ms)
1076
+  (0.2ms) rollback transaction
1077
+  (0.1ms) begin transaction
1078
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
1079
+ ON txtblx_textblocks.id = t_published.record_id
1080
+ AND t_published.record_type = 'Txtblx::Textblock'
1081
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
1082
+  (0.1ms) rollback transaction
1083
+  (0.0ms) begin transaction
1084
+  (0.1ms) SAVEPOINT active_record_1
1085
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:04:19.092530"], ["updated_at", "2015-04-06 19:04:19.092530"]]
1086
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:04:19.095079' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1087
+ ON txtblx_textblocks.id = snaps_tags.record_id
1088
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1089
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
1090
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:04:19.096084"], ["updated_at", "2015-04-06 19:04:19.096084"]]
1091
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1092
+  (0.1ms) SAVEPOINT active_record_1
1093
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:04:19.092530"], ["updated_at", "2015-04-06 19:04:19.098331"]]
1094
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1095
+  (0.0ms) SAVEPOINT active_record_1
1096
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:04:19.100980' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1097
+ ON txtblx_textblocks.id = snaps_tags.record_id
1098
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1099
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
1100
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:04:19.101856"], ["updated_at", "2015-04-06 19:04:19.101856"]]
1101
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1102
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
1103
+ ON txtblx_textblocks.id = t_published.record_id
1104
+ AND t_published.record_type = 'Txtblx::Textblock'
1105
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
1106
+  (0.2ms) rollback transaction
1107
+  (0.1ms) begin transaction
1108
+  (0.1ms) SAVEPOINT active_record_1
1109
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "some.key"], ["description", ""], ["text", "Some Text"], ["text_html", ""], ["path", "MyString"], ["created_at", "2015-04-06 19:04:19.209221"], ["updated_at", "2015-04-06 19:04:19.209221"]]
1110
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:04:19.211504' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1111
+ ON txtblx_textblocks.id = snaps_tags.record_id
1112
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1113
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
1114
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:04:19.212312"], ["updated_at", "2015-04-06 19:04:19.212312"]]
1115
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1116
+  (0.1ms) rollback transaction
1117
+  (0.1ms) begin transaction
1118
+  (0.1ms) SAVEPOINT active_record_1
1119
+ SQL (0.3ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "some.key"], ["description", ""], ["text", "Some Text"], ["text_html", ""], ["path", "MyString"], ["created_at", "2015-04-06 19:05:00.995607"], ["updated_at", "2015-04-06 19:05:00.995607"]]
1120
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:05:01.055772' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1121
+ ON txtblx_textblocks.id = snaps_tags.record_id
1122
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1123
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
1124
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:05:01.060468"], ["updated_at", "2015-04-06 19:05:01.060468"]]
1125
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1126
+  (0.1ms) rollback transaction
1127
+  (0.1ms) begin transaction
1128
+  (0.1ms) SAVEPOINT active_record_1
1129
+ SQL (0.1ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:05:01.065219"], ["updated_at", "2015-04-06 19:05:01.065219"]]
1130
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:05:01.067275' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1131
+ ON txtblx_textblocks.id = snaps_tags.record_id
1132
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1133
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
1134
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:05:01.068173"], ["updated_at", "2015-04-06 19:05:01.068173"]]
1135
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1136
+  (0.0ms) SAVEPOINT active_record_1
1137
+ SQL (0.1ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:05:01.065219"], ["updated_at", "2015-04-06 19:05:01.070206"]]
1138
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1139
+  (0.0ms) SAVEPOINT active_record_1
1140
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:05:01.072149' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1141
+ ON txtblx_textblocks.id = snaps_tags.record_id
1142
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1143
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
1144
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:05:01.072824"], ["updated_at", "2015-04-06 19:05:01.072824"]]
1145
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1146
+ Started GET "/" for 127.0.0.1 at 2015-04-06 21:05:01 +0200
1147
+ Processing by DummiesController#index as HTML
1148
+ Txtblx::Textblock Load (0.2ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
1149
+ ON txtblx_textblocks.id = t_published.record_id
1150
+ AND t_published.record_type = 'Txtblx::Textblock'
1151
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
1152
+ Rendered dummies/index.html.erb within layouts/application (4.4ms)
1153
+ Completed 200 OK in 13ms (Views: 12.8ms | ActiveRecord: 0.2ms)
1154
+  (0.1ms) rollback transaction
1155
+  (0.1ms) begin transaction
1156
+  (0.1ms) SAVEPOINT active_record_1
1157
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:05:01.100933"], ["updated_at", "2015-04-06 19:05:01.100933"]]
1158
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:05:01.103837' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1159
+ ON txtblx_textblocks.id = snaps_tags.record_id
1160
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1161
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
1162
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:05:01.104997"], ["updated_at", "2015-04-06 19:05:01.104997"]]
1163
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1164
+  (0.1ms) SAVEPOINT active_record_1
1165
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:05:01.100933"], ["updated_at", "2015-04-06 19:05:01.107673"]]
1166
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1167
+  (0.1ms) SAVEPOINT active_record_1
1168
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:05:01.110643' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1169
+ ON txtblx_textblocks.id = snaps_tags.record_id
1170
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1171
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
1172
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:05:01.111493"], ["updated_at", "2015-04-06 19:05:01.111493"]]
1173
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1174
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
1175
+ ON txtblx_textblocks.id = t_published.record_id
1176
+ AND t_published.record_type = 'Txtblx::Textblock'
1177
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
1178
+  (0.2ms) rollback transaction
1179
+  (0.0ms) begin transaction
1180
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
1181
+ ON txtblx_textblocks.id = t_published.record_id
1182
+ AND t_published.record_type = 'Txtblx::Textblock'
1183
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
1184
+  (0.1ms) rollback transaction
1185
+  (0.1ms) begin transaction
1186
+ Txtblx::Textblock Load (0.3ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
1187
+ ON txtblx_textblocks.id = t_published.record_id
1188
+ AND t_published.record_type = 'Txtblx::Textblock'
1189
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
1190
+  (0.1ms) rollback transaction
1191
+  (0.0ms) begin transaction
1192
+  (0.1ms) SAVEPOINT active_record_1
1193
+ SQL (0.4ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:06:03.560760"], ["updated_at", "2015-04-06 19:06:03.560760"]]
1194
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:06:03.577885' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1195
+ ON txtblx_textblocks.id = snaps_tags.record_id
1196
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1197
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
1198
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:06:03.579194"], ["updated_at", "2015-04-06 19:06:03.579194"]]
1199
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1200
+  (0.0ms) SAVEPOINT active_record_1
1201
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:06:03.560760"], ["updated_at", "2015-04-06 19:06:03.582233"]]
1202
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1203
+  (0.0ms) SAVEPOINT active_record_1
1204
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:06:03.585084' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1205
+ ON txtblx_textblocks.id = snaps_tags.record_id
1206
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1207
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
1208
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:06:03.585857"], ["updated_at", "2015-04-06 19:06:03.585857"]]
1209
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1210
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
1211
+ ON txtblx_textblocks.id = t_published.record_id
1212
+ AND t_published.record_type = 'Txtblx::Textblock'
1213
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
1214
+  (0.2ms) rollback transaction
1215
+  (0.1ms) begin transaction
1216
+  (0.1ms) SAVEPOINT active_record_1
1217
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:06:03.593345"], ["updated_at", "2015-04-06 19:06:03.593345"]]
1218
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:06:03.595773' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1219
+ ON txtblx_textblocks.id = snaps_tags.record_id
1220
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1221
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
1222
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:06:03.596642"], ["updated_at", "2015-04-06 19:06:03.596642"]]
1223
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1224
+  (0.0ms) SAVEPOINT active_record_1
1225
+ SQL (0.1ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:06:03.593345"], ["updated_at", "2015-04-06 19:06:03.598896"]]
1226
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1227
+  (0.0ms) SAVEPOINT active_record_1
1228
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:06:03.601340' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1229
+ ON txtblx_textblocks.id = snaps_tags.record_id
1230
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1231
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
1232
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:06:03.602146"], ["updated_at", "2015-04-06 19:06:03.602146"]]
1233
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1234
+ Started GET "/" for 127.0.0.1 at 2015-04-06 21:06:03 +0200
1235
+ Processing by DummiesController#index as HTML
1236
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
1237
+ ON txtblx_textblocks.id = t_published.record_id
1238
+ AND t_published.record_type = 'Txtblx::Textblock'
1239
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
1240
+ Rendered dummies/index.html.erb within layouts/application (2.9ms)
1241
+ Completed 200 OK in 14ms (Views: 13.3ms | ActiveRecord: 0.1ms)
1242
+  (0.3ms) rollback transaction
1243
+  (0.1ms) begin transaction
1244
+  (0.1ms) SAVEPOINT active_record_1
1245
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "some.key"], ["description", ""], ["text", "Some Text"], ["text_html", ""], ["path", "MyString"], ["created_at", "2015-04-06 19:06:03.737352"], ["updated_at", "2015-04-06 19:06:03.737352"]]
1246
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:06:03.739824' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1247
+ ON txtblx_textblocks.id = snaps_tags.record_id
1248
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1249
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
1250
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:06:03.740747"], ["updated_at", "2015-04-06 19:06:03.740747"]]
1251
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1252
+  (0.1ms) rollback transaction
1253
+  (0.1ms) begin transaction
1254
+  (0.1ms) SAVEPOINT active_record_1
1255
+ SQL (0.3ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "some.key"], ["description", ""], ["text", "Some Text"], ["text_html", ""], ["path", "MyString"], ["created_at", "2015-04-06 19:07:23.397045"], ["updated_at", "2015-04-06 19:07:23.397045"]]
1256
+ SQL (0.3ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:07:23.463512' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1257
+ ON txtblx_textblocks.id = snaps_tags.record_id
1258
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1259
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
1260
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:07:23.469661"], ["updated_at", "2015-04-06 19:07:23.469661"]]
1261
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1262
+  (0.0ms) SAVEPOINT active_record_1
1263
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1264
+  (0.1ms) rollback transaction
1265
+  (0.1ms) begin transaction
1266
+  (0.1ms) SAVEPOINT active_record_1
1267
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:07:23.475455"], ["updated_at", "2015-04-06 19:07:23.475455"]]
1268
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:07:23.477496' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1269
+ ON txtblx_textblocks.id = snaps_tags.record_id
1270
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1271
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
1272
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:07:23.478255"], ["updated_at", "2015-04-06 19:07:23.478255"]]
1273
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1274
+  (0.0ms) SAVEPOINT active_record_1
1275
+ SQL (0.1ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:07:23.475455"], ["updated_at", "2015-04-06 19:07:23.480105"]]
1276
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1277
+  (0.0ms) SAVEPOINT active_record_1
1278
+ SQL (0.1ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:07:23.482075' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1279
+ ON txtblx_textblocks.id = snaps_tags.record_id
1280
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1281
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
1282
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:07:23.482638"], ["updated_at", "2015-04-06 19:07:23.482638"]]
1283
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1284
+ Started GET "/" for 127.0.0.1 at 2015-04-06 21:07:23 +0200
1285
+ Processing by DummiesController#index as HTML
1286
+ Txtblx::Textblock Load (0.2ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
1287
+ ON txtblx_textblocks.id = t_published.record_id
1288
+ AND t_published.record_type = 'Txtblx::Textblock'
1289
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
1290
+ Rendered dummies/index.html.erb within layouts/application (4.5ms)
1291
+ Completed 200 OK in 15ms (Views: 14.6ms | ActiveRecord: 0.2ms)
1292
+  (0.2ms) rollback transaction
1293
+  (0.1ms) begin transaction
1294
+  (0.1ms) SAVEPOINT active_record_1
1295
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:07:23.512611"], ["updated_at", "2015-04-06 19:07:23.512611"]]
1296
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:07:23.514871' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1297
+ ON txtblx_textblocks.id = snaps_tags.record_id
1298
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1299
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
1300
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:07:23.515672"], ["updated_at", "2015-04-06 19:07:23.515672"]]
1301
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1302
+  (0.0ms) SAVEPOINT active_record_1
1303
+ SQL (0.1ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:07:23.512611"], ["updated_at", "2015-04-06 19:07:23.517674"]]
1304
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1305
+  (0.0ms) SAVEPOINT active_record_1
1306
+ SQL (0.1ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:07:23.519743' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1307
+ ON txtblx_textblocks.id = snaps_tags.record_id
1308
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1309
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
1310
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:07:23.520373"], ["updated_at", "2015-04-06 19:07:23.520373"]]
1311
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1312
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
1313
+ ON txtblx_textblocks.id = t_published.record_id
1314
+ AND t_published.record_type = 'Txtblx::Textblock'
1315
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
1316
+  (0.2ms) rollback transaction
1317
+  (0.1ms) begin transaction
1318
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
1319
+ ON txtblx_textblocks.id = t_published.record_id
1320
+ AND t_published.record_type = 'Txtblx::Textblock'
1321
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
1322
+  (0.1ms) rollback transaction
1323
+  (0.1ms) begin transaction
1324
+  (0.1ms) SAVEPOINT active_record_1
1325
+ SQL (0.4ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "some.key"], ["description", ""], ["text", "Some Text"], ["text_html", ""], ["path", "MyString"], ["created_at", "2015-04-06 19:10:22.609221"], ["updated_at", "2015-04-06 19:10:22.609221"]]
1326
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:10:22.690062' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1327
+ ON txtblx_textblocks.id = snaps_tags.record_id
1328
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1329
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
1330
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:10:22.695028"], ["updated_at", "2015-04-06 19:10:22.695028"]]
1331
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1332
+  (0.0ms) SAVEPOINT active_record_1
1333
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1334
+  (0.1ms) rollback transaction
1335
+  (0.1ms) begin transaction
1336
+  (0.1ms) SAVEPOINT active_record_1
1337
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:10:22.703266"], ["updated_at", "2015-04-06 19:10:22.703266"]]
1338
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:10:22.705398' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1339
+ ON txtblx_textblocks.id = snaps_tags.record_id
1340
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1341
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
1342
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:10:22.706153"], ["updated_at", "2015-04-06 19:10:22.706153"]]
1343
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1344
+  (0.0ms) SAVEPOINT active_record_1
1345
+ SQL (0.1ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:10:22.703266"], ["updated_at", "2015-04-06 19:10:22.707970"]]
1346
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1347
+  (0.0ms) SAVEPOINT active_record_1
1348
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:10:22.710141' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1349
+ ON txtblx_textblocks.id = snaps_tags.record_id
1350
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1351
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
1352
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:10:22.710820"], ["updated_at", "2015-04-06 19:10:22.710820"]]
1353
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1354
+ Txtblx::Textblock Load (0.2ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
1355
+ ON txtblx_textblocks.id = t_published.record_id
1356
+ AND t_published.record_type = 'Txtblx::Textblock'
1357
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
1358
+  (0.1ms) rollback transaction
1359
+  (0.0ms) begin transaction
1360
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
1361
+ ON txtblx_textblocks.id = t_published.record_id
1362
+ AND t_published.record_type = 'Txtblx::Textblock'
1363
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
1364
+  (0.1ms) rollback transaction
1365
+  (0.1ms) begin transaction
1366
+  (0.1ms) SAVEPOINT active_record_1
1367
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:10:22.727972"], ["updated_at", "2015-04-06 19:10:22.727972"]]
1368
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:10:22.730203' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1369
+ ON txtblx_textblocks.id = snaps_tags.record_id
1370
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1371
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
1372
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:10:22.731096"], ["updated_at", "2015-04-06 19:10:22.731096"]]
1373
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1374
+  (0.1ms) SAVEPOINT active_record_1
1375
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:10:22.727972"], ["updated_at", "2015-04-06 19:10:22.733840"]]
1376
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1377
+  (0.0ms) SAVEPOINT active_record_1
1378
+ SQL (0.3ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:10:22.736913' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1379
+ ON txtblx_textblocks.id = snaps_tags.record_id
1380
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1381
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
1382
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:10:22.737949"], ["updated_at", "2015-04-06 19:10:22.737949"]]
1383
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1384
+ Started GET "/" for 127.0.0.1 at 2015-04-06 21:10:22 +0200
1385
+ Processing by DummiesController#index as HTML
1386
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
1387
+ ON txtblx_textblocks.id = t_published.record_id
1388
+ AND t_published.record_type = 'Txtblx::Textblock'
1389
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
1390
+ Rendered dummies/index.html.erb within layouts/application (2.5ms)
1391
+ Completed 200 OK in 13ms (Views: 12.7ms | ActiveRecord: 0.1ms)
1392
+  (0.2ms) rollback transaction
1393
+  (0.1ms) begin transaction
1394
+  (0.1ms) SAVEPOINT active_record_1
1395
+ SQL (0.3ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:11:06.451040"], ["updated_at", "2015-04-06 19:11:06.451040"]]
1396
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:11:06.517098' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1397
+ ON txtblx_textblocks.id = snaps_tags.record_id
1398
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1399
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
1400
+ SQL (0.3ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:11:06.521865"], ["updated_at", "2015-04-06 19:11:06.521865"]]
1401
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1402
+  (0.0ms) SAVEPOINT active_record_1
1403
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:11:06.451040"], ["updated_at", "2015-04-06 19:11:06.524527"]]
1404
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1405
+  (0.1ms) SAVEPOINT active_record_1
1406
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:11:06.533023' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1407
+ ON txtblx_textblocks.id = snaps_tags.record_id
1408
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1409
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
1410
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:11:06.534023"], ["updated_at", "2015-04-06 19:11:06.534023"]]
1411
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1412
+ Txtblx::Textblock Load (0.2ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
1413
+ ON txtblx_textblocks.id = t_published.record_id
1414
+ AND t_published.record_type = 'Txtblx::Textblock'
1415
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
1416
+  (0.2ms) rollback transaction
1417
+  (0.1ms) begin transaction
1418
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
1419
+ ON txtblx_textblocks.id = t_published.record_id
1420
+ AND t_published.record_type = 'Txtblx::Textblock'
1421
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
1422
+  (0.1ms) rollback transaction
1423
+  (0.1ms) begin transaction
1424
+  (0.1ms) SAVEPOINT active_record_1
1425
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:11:06.555357"], ["updated_at", "2015-04-06 19:11:06.555357"]]
1426
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:11:06.558029' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1427
+ ON txtblx_textblocks.id = snaps_tags.record_id
1428
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1429
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
1430
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:11:06.559105"], ["updated_at", "2015-04-06 19:11:06.559105"]]
1431
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1432
+  (0.1ms) SAVEPOINT active_record_1
1433
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:11:06.555357"], ["updated_at", "2015-04-06 19:11:06.561502"]]
1434
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1435
+  (0.0ms) SAVEPOINT active_record_1
1436
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:11:06.563987' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1437
+ ON txtblx_textblocks.id = snaps_tags.record_id
1438
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1439
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
1440
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:11:06.564774"], ["updated_at", "2015-04-06 19:11:06.564774"]]
1441
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1442
+ Started GET "/" for 127.0.0.1 at 2015-04-06 21:11:06 +0200
1443
+ Processing by DummiesController#index as HTML
1444
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
1445
+ ON txtblx_textblocks.id = t_published.record_id
1446
+ AND t_published.record_type = 'Txtblx::Textblock'
1447
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
1448
+ Rendered dummies/index.html.erb within layouts/application (3.0ms)
1449
+ Completed 200 OK in 15ms (Views: 14.0ms | ActiveRecord: 0.1ms)
1450
+  (0.2ms) rollback transaction
1451
+  (0.1ms) begin transaction
1452
+  (0.1ms) SAVEPOINT active_record_1
1453
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "some.key"], ["description", ""], ["text", "Some Text"], ["text_html", ""], ["path", "MyString"], ["created_at", "2015-04-06 19:11:06.702404"], ["updated_at", "2015-04-06 19:11:06.702404"]]
1454
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:11:06.705028' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1455
+ ON txtblx_textblocks.id = snaps_tags.record_id
1456
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1457
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
1458
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:11:06.705975"], ["updated_at", "2015-04-06 19:11:06.705975"]]
1459
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1460
+  (0.0ms) SAVEPOINT active_record_1
1461
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1462
+ Txtblx::Textblock Load (0.2ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" WHERE "txtblx_textblocks"."id" = ? LIMIT 1 [["id", 1]]
1463
+  (0.1ms) rollback transaction
1464
+  (0.1ms) begin transaction
1465
+  (0.1ms) SAVEPOINT active_record_1
1466
+ SQL (0.4ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:11:42.405259"], ["updated_at", "2015-04-06 19:11:42.405259"]]
1467
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:11:42.470638' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1468
+ ON txtblx_textblocks.id = snaps_tags.record_id
1469
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1470
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
1471
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:11:42.475403"], ["updated_at", "2015-04-06 19:11:42.475403"]]
1472
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1473
+  (0.0ms) SAVEPOINT active_record_1
1474
+ SQL (0.1ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:11:42.405259"], ["updated_at", "2015-04-06 19:11:42.477610"]]
1475
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1476
+  (0.0ms) SAVEPOINT active_record_1
1477
+ SQL (0.1ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:11:42.479935' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1478
+ ON txtblx_textblocks.id = snaps_tags.record_id
1479
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1480
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
1481
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:11:42.480558"], ["updated_at", "2015-04-06 19:11:42.480558"]]
1482
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1483
+ Started GET "/" for 127.0.0.1 at 2015-04-06 21:11:42 +0200
1484
+ Processing by DummiesController#index as HTML
1485
+ Txtblx::Textblock Load (0.2ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
1486
+ ON txtblx_textblocks.id = t_published.record_id
1487
+ AND t_published.record_type = 'Txtblx::Textblock'
1488
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
1489
+ Rendered dummies/index.html.erb within layouts/application (4.2ms)
1490
+ Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.2ms)
1491
+  (0.2ms) rollback transaction
1492
+  (0.1ms) begin transaction
1493
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
1494
+ ON txtblx_textblocks.id = t_published.record_id
1495
+ AND t_published.record_type = 'Txtblx::Textblock'
1496
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
1497
+  (0.1ms) rollback transaction
1498
+  (0.0ms) begin transaction
1499
+  (0.1ms) SAVEPOINT active_record_1
1500
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:11:42.518447"], ["updated_at", "2015-04-06 19:11:42.518447"]]
1501
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:11:42.520844' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1502
+ ON txtblx_textblocks.id = snaps_tags.record_id
1503
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1504
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
1505
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:11:42.521907"], ["updated_at", "2015-04-06 19:11:42.521907"]]
1506
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1507
+  (0.1ms) SAVEPOINT active_record_1
1508
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:11:42.518447"], ["updated_at", "2015-04-06 19:11:42.524350"]]
1509
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1510
+  (0.0ms) SAVEPOINT active_record_1
1511
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:11:42.526676' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1512
+ ON txtblx_textblocks.id = snaps_tags.record_id
1513
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1514
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
1515
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:11:42.527356"], ["updated_at", "2015-04-06 19:11:42.527356"]]
1516
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1517
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
1518
+ ON txtblx_textblocks.id = t_published.record_id
1519
+ AND t_published.record_type = 'Txtblx::Textblock'
1520
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
1521
+  (0.2ms) rollback transaction
1522
+  (0.1ms) begin transaction
1523
+  (0.1ms) SAVEPOINT active_record_1
1524
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "some.key"], ["description", ""], ["text", "Some Text"], ["text_html", ""], ["path", "MyString"], ["created_at", "2015-04-06 19:11:42.629441"], ["updated_at", "2015-04-06 19:11:42.629441"]]
1525
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:11:42.632065' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1526
+ ON txtblx_textblocks.id = snaps_tags.record_id
1527
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1528
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
1529
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:11:42.633007"], ["updated_at", "2015-04-06 19:11:42.633007"]]
1530
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1531
+  (0.0ms) SAVEPOINT active_record_1
1532
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1533
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" WHERE "txtblx_textblocks"."id" = ? LIMIT 1 [["id", 1]]
1534
+  (0.1ms) rollback transaction
1535
+  (0.1ms) begin transaction
1536
+  (0.1ms) SAVEPOINT active_record_1
1537
+ SQL (0.4ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:13:40.631293"], ["updated_at", "2015-04-06 19:13:40.631293"]]
1538
+ SQL (0.4ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:13:40.698256' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1539
+ ON txtblx_textblocks.id = snaps_tags.record_id
1540
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1541
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
1542
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:13:40.705155"], ["updated_at", "2015-04-06 19:13:40.705155"]]
1543
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1544
+  (0.1ms) SAVEPOINT active_record_1
1545
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:13:40.631293"], ["updated_at", "2015-04-06 19:13:40.708141"]]
1546
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1547
+  (0.0ms) SAVEPOINT active_record_1
1548
+ SQL (0.1ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:13:40.710647' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1549
+ ON txtblx_textblocks.id = snaps_tags.record_id
1550
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1551
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
1552
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:13:40.711354"], ["updated_at", "2015-04-06 19:13:40.711354"]]
1553
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1554
+ Started GET "/" for 127.0.0.1 at 2015-04-06 21:13:40 +0200
1555
+ Processing by DummiesController#index as HTML
1556
+ Txtblx::Textblock Load (0.3ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
1557
+ ON txtblx_textblocks.id = t_published.record_id
1558
+ AND t_published.record_type = 'Txtblx::Textblock'
1559
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
1560
+ Rendered dummies/index.html.erb within layouts/application (5.7ms)
1561
+ Completed 200 OK in 18ms (Views: 17.4ms | ActiveRecord: 0.3ms)
1562
+  (0.2ms) rollback transaction
1563
+  (0.1ms) begin transaction
1564
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
1565
+ ON txtblx_textblocks.id = t_published.record_id
1566
+ AND t_published.record_type = 'Txtblx::Textblock'
1567
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
1568
+  (0.1ms) rollback transaction
1569
+  (0.0ms) begin transaction
1570
+  (0.1ms) SAVEPOINT active_record_1
1571
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:13:40.753014"], ["updated_at", "2015-04-06 19:13:40.753014"]]
1572
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:13:40.755106' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1573
+ ON txtblx_textblocks.id = snaps_tags.record_id
1574
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1575
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
1576
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:13:40.755892"], ["updated_at", "2015-04-06 19:13:40.755892"]]
1577
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1578
+  (0.0ms) SAVEPOINT active_record_1
1579
+ SQL (0.1ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:13:40.753014"], ["updated_at", "2015-04-06 19:13:40.757833"]]
1580
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1581
+  (0.0ms) SAVEPOINT active_record_1
1582
+ SQL (0.3ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:13:40.759841' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1583
+ ON txtblx_textblocks.id = snaps_tags.record_id
1584
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1585
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
1586
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:13:40.762405"], ["updated_at", "2015-04-06 19:13:40.762405"]]
1587
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1588
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
1589
+ ON txtblx_textblocks.id = t_published.record_id
1590
+ AND t_published.record_type = 'Txtblx::Textblock'
1591
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
1592
+  (0.2ms) rollback transaction
1593
+  (0.1ms) begin transaction
1594
+  (0.1ms) SAVEPOINT active_record_1
1595
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "some.key"], ["description", ""], ["text", "Some Text"], ["text_html", ""], ["path", "MyString"], ["created_at", "2015-04-06 19:13:40.853427"], ["updated_at", "2015-04-06 19:13:40.853427"]]
1596
+ SQL (0.1ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:13:40.855491' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1597
+ ON txtblx_textblocks.id = snaps_tags.record_id
1598
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1599
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
1600
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:13:40.856266"], ["updated_at", "2015-04-06 19:13:40.856266"]]
1601
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1602
+  (0.0ms) SAVEPOINT active_record_1
1603
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1604
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" WHERE "txtblx_textblocks"."id" = ? LIMIT 1 [["id", 1]]
1605
+  (0.1ms) rollback transaction
1606
+  (0.1ms) begin transaction
1607
+  (0.1ms) SAVEPOINT active_record_1
1608
+ SQL (0.3ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:14:29.300313"], ["updated_at", "2015-04-06 19:14:29.300313"]]
1609
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:14:29.361385' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1610
+ ON txtblx_textblocks.id = snaps_tags.record_id
1611
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1612
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
1613
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:14:29.366173"], ["updated_at", "2015-04-06 19:14:29.366173"]]
1614
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1615
+  (0.0ms) SAVEPOINT active_record_1
1616
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:14:29.300313"], ["updated_at", "2015-04-06 19:14:29.368393"]]
1617
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1618
+  (0.0ms) SAVEPOINT active_record_1
1619
+ SQL (0.1ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:14:29.370749' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1620
+ ON txtblx_textblocks.id = snaps_tags.record_id
1621
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1622
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
1623
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:14:29.371388"], ["updated_at", "2015-04-06 19:14:29.371388"]]
1624
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1625
+ Started GET "/" for 127.0.0.1 at 2015-04-06 21:14:29 +0200
1626
+ Processing by DummiesController#index as HTML
1627
+ Txtblx::Textblock Load (0.2ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
1628
+ ON txtblx_textblocks.id = t_published.record_id
1629
+ AND t_published.record_type = 'Txtblx::Textblock'
1630
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
1631
+ Rendered dummies/index.html.erb within layouts/application (4.4ms)
1632
+ Completed 200 OK in 16ms (Views: 15.8ms | ActiveRecord: 0.2ms)
1633
+  (0.2ms) rollback transaction
1634
+  (0.1ms) begin transaction
1635
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
1636
+ ON txtblx_textblocks.id = t_published.record_id
1637
+ AND t_published.record_type = 'Txtblx::Textblock'
1638
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
1639
+  (0.1ms) rollback transaction
1640
+  (0.1ms) begin transaction
1641
+  (0.1ms) SAVEPOINT active_record_1
1642
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:14:29.410910"], ["updated_at", "2015-04-06 19:14:29.410910"]]
1643
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:14:29.413563' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1644
+ ON txtblx_textblocks.id = snaps_tags.record_id
1645
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1646
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
1647
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:14:29.414560"], ["updated_at", "2015-04-06 19:14:29.414560"]]
1648
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1649
+  (0.1ms) SAVEPOINT active_record_1
1650
+ SQL (0.1ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:14:29.410910"], ["updated_at", "2015-04-06 19:14:29.417116"]]
1651
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1652
+  (0.0ms) SAVEPOINT active_record_1
1653
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:14:29.419221' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1654
+ ON txtblx_textblocks.id = snaps_tags.record_id
1655
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1656
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
1657
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:14:29.420233"], ["updated_at", "2015-04-06 19:14:29.420233"]]
1658
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1659
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
1660
+ ON txtblx_textblocks.id = t_published.record_id
1661
+ AND t_published.record_type = 'Txtblx::Textblock'
1662
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
1663
+  (0.1ms) rollback transaction
1664
+  (0.1ms) begin transaction
1665
+  (0.1ms) SAVEPOINT active_record_1
1666
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "some.key"], ["description", ""], ["text", "Some Text"], ["text_html", ""], ["path", "MyString"], ["created_at", "2015-04-06 19:14:29.508894"], ["updated_at", "2015-04-06 19:14:29.508894"]]
1667
+ SQL (0.1ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:14:29.510964' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1668
+ ON txtblx_textblocks.id = snaps_tags.record_id
1669
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1670
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
1671
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:14:29.511706"], ["updated_at", "2015-04-06 19:14:29.511706"]]
1672
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1673
+  (0.0ms) SAVEPOINT active_record_1
1674
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1675
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" WHERE "txtblx_textblocks"."id" = ? LIMIT 1 [["id", 1]]
1676
+  (0.1ms) rollback transaction
1677
+  (0.1ms) begin transaction
1678
+  (0.1ms) SAVEPOINT active_record_1
1679
+ SQL (0.3ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:16:47.582720"], ["updated_at", "2015-04-06 19:16:47.582720"]]
1680
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:16:47.648069' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1681
+ ON txtblx_textblocks.id = snaps_tags.record_id
1682
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1683
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
1684
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:16:47.653065"], ["updated_at", "2015-04-06 19:16:47.653065"]]
1685
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1686
+  (0.0ms) SAVEPOINT active_record_1
1687
+ SQL (0.1ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:16:47.582720"], ["updated_at", "2015-04-06 19:16:47.655278"]]
1688
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1689
+  (0.0ms) SAVEPOINT active_record_1
1690
+ SQL (0.1ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:16:47.657526' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1691
+ ON txtblx_textblocks.id = snaps_tags.record_id
1692
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1693
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
1694
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:16:47.658146"], ["updated_at", "2015-04-06 19:16:47.658146"]]
1695
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1696
+ Started GET "/" for 127.0.0.1 at 2015-04-06 21:16:47 +0200
1697
+ Processing by DummiesController#index as HTML
1698
+ Txtblx::Textblock Load (0.4ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
1699
+ ON txtblx_textblocks.id = t_published.record_id
1700
+ AND t_published.record_type = 'Txtblx::Textblock'
1701
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
1702
+ Rendered dummies/index.html.erb within layouts/application (5.2ms)
1703
+ Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.4ms)
1704
+  (0.2ms) rollback transaction
1705
+  (0.1ms) begin transaction
1706
+  (0.1ms) SAVEPOINT active_record_1
1707
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "some.key"], ["description", ""], ["text", "Some Text"], ["text_html", ""], ["path", "MyString"], ["created_at", "2015-04-06 19:16:47.772862"], ["updated_at", "2015-04-06 19:16:47.772862"]]
1708
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:16:47.775166' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1709
+ ON txtblx_textblocks.id = snaps_tags.record_id
1710
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1711
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
1712
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:16:47.775961"], ["updated_at", "2015-04-06 19:16:47.775961"]]
1713
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1714
+  (0.0ms) SAVEPOINT active_record_1
1715
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1716
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" WHERE "txtblx_textblocks"."id" = ? LIMIT 1 [["id", 1]]
1717
+  (0.1ms) rollback transaction
1718
+  (0.1ms) begin transaction
1719
+  (0.1ms) SAVEPOINT active_record_1
1720
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:16:47.783246"], ["updated_at", "2015-04-06 19:16:47.783246"]]
1721
+ SQL (0.1ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:16:47.785266' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1722
+ ON txtblx_textblocks.id = snaps_tags.record_id
1723
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1724
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
1725
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:16:47.785993"], ["updated_at", "2015-04-06 19:16:47.785993"]]
1726
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1727
+  (0.0ms) SAVEPOINT active_record_1
1728
+ SQL (0.1ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:16:47.783246"], ["updated_at", "2015-04-06 19:16:47.787735"]]
1729
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1730
+  (0.1ms) SAVEPOINT active_record_1
1731
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:16:47.790235' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1732
+ ON txtblx_textblocks.id = snaps_tags.record_id
1733
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1734
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
1735
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:16:47.790986"], ["updated_at", "2015-04-06 19:16:47.790986"]]
1736
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1737
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
1738
+ ON txtblx_textblocks.id = t_published.record_id
1739
+ AND t_published.record_type = 'Txtblx::Textblock'
1740
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
1741
+  (0.1ms) rollback transaction
1742
+  (0.0ms) begin transaction
1743
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
1744
+ ON txtblx_textblocks.id = t_published.record_id
1745
+ AND t_published.record_type = 'Txtblx::Textblock'
1746
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
1747
+  (0.1ms) rollback transaction
1748
+  (0.1ms) begin transaction
1749
+ Txtblx::Textblock Load (0.2ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
1750
+ ON txtblx_textblocks.id = t_published.record_id
1751
+ AND t_published.record_type = 'Txtblx::Textblock'
1752
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
1753
+  (0.1ms) rollback transaction
1754
+  (0.1ms) begin transaction
1755
+  (0.1ms) SAVEPOINT active_record_1
1756
+ SQL (0.3ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:17:36.055980"], ["updated_at", "2015-04-06 19:17:36.055980"]]
1757
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:17:36.071406' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1758
+ ON txtblx_textblocks.id = snaps_tags.record_id
1759
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1760
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
1761
+ SQL (0.2ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:17:36.072545"], ["updated_at", "2015-04-06 19:17:36.072545"]]
1762
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1763
+  (0.0ms) SAVEPOINT active_record_1
1764
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:17:36.055980"], ["updated_at", "2015-04-06 19:17:36.075505"]]
1765
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1766
+  (0.1ms) SAVEPOINT active_record_1
1767
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:17:36.078949' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1768
+ ON txtblx_textblocks.id = snaps_tags.record_id
1769
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1770
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
1771
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:17:36.079673"], ["updated_at", "2015-04-06 19:17:36.079673"]]
1772
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1773
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
1774
+ ON txtblx_textblocks.id = t_published.record_id
1775
+ AND t_published.record_type = 'Txtblx::Textblock'
1776
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
1777
+  (0.1ms) rollback transaction
1778
+  (0.1ms) begin transaction
1779
+  (0.1ms) SAVEPOINT active_record_1
1780
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "some.key"], ["description", ""], ["text", "Some Text"], ["text_html", ""], ["path", "MyString"], ["created_at", "2015-04-06 19:17:36.171721"], ["updated_at", "2015-04-06 19:17:36.171721"]]
1781
+ SQL (0.1ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:17:36.173755' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1782
+ ON txtblx_textblocks.id = snaps_tags.record_id
1783
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1784
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
1785
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:17:36.174508"], ["updated_at", "2015-04-06 19:17:36.174508"]]
1786
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1787
+  (0.0ms) SAVEPOINT active_record_1
1788
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1789
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" WHERE "txtblx_textblocks"."id" = ? LIMIT 1 [["id", 1]]
1790
+  (0.2ms) rollback transaction
1791
+  (0.1ms) begin transaction
1792
+  (0.1ms) SAVEPOINT active_record_1
1793
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:17:36.181843"], ["updated_at", "2015-04-06 19:17:36.181843"]]
1794
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:17:36.184524' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1795
+ ON txtblx_textblocks.id = snaps_tags.record_id
1796
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1797
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
1798
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:17:36.185607"], ["updated_at", "2015-04-06 19:17:36.185607"]]
1799
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1800
+  (0.1ms) SAVEPOINT active_record_1
1801
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:17:36.181843"], ["updated_at", "2015-04-06 19:17:36.188166"]]
1802
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1803
+  (0.0ms) SAVEPOINT active_record_1
1804
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:17:36.190521' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1805
+ ON txtblx_textblocks.id = snaps_tags.record_id
1806
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1807
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
1808
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:17:36.191171"], ["updated_at", "2015-04-06 19:17:36.191171"]]
1809
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1810
+ Started GET "/" for 127.0.0.1 at 2015-04-06 21:17:36 +0200
1811
+ Processing by DummiesController#index as HTML
1812
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
1813
+ ON txtblx_textblocks.id = t_published.record_id
1814
+ AND t_published.record_type = 'Txtblx::Textblock'
1815
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
1816
+ Rendered dummies/index.html.erb within layouts/application (2.7ms)
1817
+ Completed 200 OK in 14ms (Views: 13.6ms | ActiveRecord: 0.1ms)
1818
+  (0.2ms) rollback transaction
1819
+  (0.1ms) begin transaction
1820
+  (0.1ms) SAVEPOINT active_record_1
1821
+  (0.1ms) SELECT MAX("txtblx_textblocks"."perma_id") FROM "txtblx_textblocks"
1822
+ SQL (0.7ms) INSERT INTO "txtblx_textblocks" ("key", "text", "text_html", "perma_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["key", "some key"], ["text", "some text"], ["text_html", "<p>some text</p>"], ["perma_id", 1], ["created_at", "2015-04-06 19:41:29.201013"], ["updated_at", "2015-04-06 19:41:29.201013"]]
1823
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:41:29.273229' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1824
+ ON txtblx_textblocks.id = snaps_tags.record_id
1825
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1826
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
1827
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:41:29.279230"], ["updated_at", "2015-04-06 19:41:29.279230"]]
1828
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1829
+  (0.0ms) SAVEPOINT active_record_1
1830
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1831
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" WHERE "txtblx_textblocks"."id" = ? LIMIT 1 [["id", 1]]
1832
+  (0.1ms) rollback transaction
1833
+  (0.1ms) begin transaction
1834
+ Txtblx::Textblock Load (0.2ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
1835
+ ON txtblx_textblocks.id = t_published.record_id
1836
+ AND t_published.record_type = 'Txtblx::Textblock'
1837
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
1838
+  (0.1ms) rollback transaction
1839
+  (0.1ms) begin transaction
1840
+  (0.1ms) SAVEPOINT active_record_1
1841
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:41:29.299360"], ["updated_at", "2015-04-06 19:41:29.299360"]]
1842
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:41:29.301626' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1843
+ ON txtblx_textblocks.id = snaps_tags.record_id
1844
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1845
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
1846
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:41:29.302569"], ["updated_at", "2015-04-06 19:41:29.302569"]]
1847
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1848
+  (0.0ms) SAVEPOINT active_record_1
1849
+ SQL (0.1ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:41:29.299360"], ["updated_at", "2015-04-06 19:41:29.304705"]]
1850
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1851
+  (0.0ms) SAVEPOINT active_record_1
1852
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:41:29.307144' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1853
+ ON txtblx_textblocks.id = snaps_tags.record_id
1854
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1855
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
1856
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:41:29.307816"], ["updated_at", "2015-04-06 19:41:29.307816"]]
1857
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1858
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
1859
+ ON txtblx_textblocks.id = t_published.record_id
1860
+ AND t_published.record_type = 'Txtblx::Textblock'
1861
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
1862
+  (0.1ms) rollback transaction
1863
+  (0.1ms) begin transaction
1864
+  (0.1ms) SAVEPOINT active_record_1
1865
+ SQL (0.1ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:41:29.314098"], ["updated_at", "2015-04-06 19:41:29.314098"]]
1866
+ SQL (0.1ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:41:29.316044' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1867
+ ON txtblx_textblocks.id = snaps_tags.record_id
1868
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1869
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
1870
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:41:29.316778"], ["updated_at", "2015-04-06 19:41:29.316778"]]
1871
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1872
+  (0.0ms) SAVEPOINT active_record_1
1873
+ SQL (0.1ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:41:29.314098"], ["updated_at", "2015-04-06 19:41:29.318662"]]
1874
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1875
+  (0.0ms) SAVEPOINT active_record_1
1876
+ SQL (0.1ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:41:29.320717' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1877
+ ON txtblx_textblocks.id = snaps_tags.record_id
1878
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1879
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
1880
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:41:29.321358"], ["updated_at", "2015-04-06 19:41:29.321358"]]
1881
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1882
+ Started GET "/" for 127.0.0.1 at 2015-04-06 21:41:29 +0200
1883
+ Processing by DummiesController#index as HTML
1884
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
1885
+ ON txtblx_textblocks.id = t_published.record_id
1886
+ AND t_published.record_type = 'Txtblx::Textblock'
1887
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
1888
+ Rendered dummies/index.html.erb within layouts/application (3.4ms)
1889
+ Completed 200 OK in 17ms (Views: 16.8ms | ActiveRecord: 0.1ms)
1890
+  (0.2ms) rollback transaction
1891
+  (0.1ms) begin transaction
1892
+  (0.1ms) SAVEPOINT active_record_1
1893
+  (0.1ms) SELECT MAX("txtblx_textblocks"."perma_id") FROM "txtblx_textblocks"
1894
+ SQL (0.3ms) INSERT INTO "txtblx_textblocks" ("key", "text", "text_html", "perma_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["key", "some key"], ["text", "some text"], ["text_html", "<p>some text</p>"], ["perma_id", 1], ["created_at", "2015-04-06 19:44:06.836300"], ["updated_at", "2015-04-06 19:44:06.836300"]]
1895
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:44:06.905707' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1896
+ ON txtblx_textblocks.id = snaps_tags.record_id
1897
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1898
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
1899
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:44:06.911458"], ["updated_at", "2015-04-06 19:44:06.911458"]]
1900
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1901
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" WHERE "txtblx_textblocks"."id" = ? LIMIT 1 [["id", 1]]
1902
+  (0.2ms) rollback transaction
1903
+  (0.1ms) begin transaction
1904
+  (0.1ms) SAVEPOINT active_record_1
1905
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:44:06.920479"], ["updated_at", "2015-04-06 19:44:06.920479"]]
1906
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:44:06.922887' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1907
+ ON txtblx_textblocks.id = snaps_tags.record_id
1908
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1909
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
1910
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:44:06.923750"], ["updated_at", "2015-04-06 19:44:06.923750"]]
1911
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1912
+  (0.0ms) SAVEPOINT active_record_1
1913
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:44:06.920479"], ["updated_at", "2015-04-06 19:44:06.925976"]]
1914
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1915
+  (0.0ms) SAVEPOINT active_record_1
1916
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:44:06.928318' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1917
+ ON txtblx_textblocks.id = snaps_tags.record_id
1918
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1919
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
1920
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:44:06.929069"], ["updated_at", "2015-04-06 19:44:06.929069"]]
1921
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1922
+ Started GET "/" for 127.0.0.1 at 2015-04-06 21:44:06 +0200
1923
+ Processing by DummiesController#index as HTML
1924
+ Txtblx::Textblock Load (0.2ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
1925
+ ON txtblx_textblocks.id = t_published.record_id
1926
+ AND t_published.record_type = 'Txtblx::Textblock'
1927
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
1928
+ Rendered dummies/index.html.erb within layouts/application (3.2ms)
1929
+ Completed 200 OK in 14ms (Views: 13.7ms | ActiveRecord: 0.2ms)
1930
+  (0.2ms) rollback transaction
1931
+  (0.1ms) begin transaction
1932
+  (0.1ms) SAVEPOINT active_record_1
1933
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:44:06.959166"], ["updated_at", "2015-04-06 19:44:06.959166"]]
1934
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:44:06.961641' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1935
+ ON txtblx_textblocks.id = snaps_tags.record_id
1936
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1937
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
1938
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:44:06.962543"], ["updated_at", "2015-04-06 19:44:06.962543"]]
1939
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1940
+  (0.0ms) SAVEPOINT active_record_1
1941
+ SQL (0.1ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:44:06.959166"], ["updated_at", "2015-04-06 19:44:06.964726"]]
1942
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1943
+  (0.0ms) SAVEPOINT active_record_1
1944
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:44:06.967110' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1945
+ ON txtblx_textblocks.id = snaps_tags.record_id
1946
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1947
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
1948
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:44:06.967816"], ["updated_at", "2015-04-06 19:44:06.967816"]]
1949
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1950
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
1951
+ ON txtblx_textblocks.id = t_published.record_id
1952
+ AND t_published.record_type = 'Txtblx::Textblock'
1953
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
1954
+  (0.2ms) rollback transaction
1955
+  (0.0ms) begin transaction
1956
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
1957
+ ON txtblx_textblocks.id = t_published.record_id
1958
+ AND t_published.record_type = 'Txtblx::Textblock'
1959
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
1960
+  (0.1ms) rollback transaction
1961
+  (0.1ms) begin transaction
1962
+  (0.1ms) SAVEPOINT active_record_1
1963
+ SQL (0.3ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:44:24.876604"], ["updated_at", "2015-04-06 19:44:24.876604"]]
1964
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:44:24.938134' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1965
+ ON txtblx_textblocks.id = snaps_tags.record_id
1966
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1967
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
1968
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:44:24.942803"], ["updated_at", "2015-04-06 19:44:24.942803"]]
1969
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1970
+  (0.0ms) SAVEPOINT active_record_1
1971
+ SQL (0.1ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:44:24.876604"], ["updated_at", "2015-04-06 19:44:24.945019"]]
1972
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1973
+  (0.0ms) SAVEPOINT active_record_1
1974
+ SQL (0.1ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:44:24.947234' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1975
+ ON txtblx_textblocks.id = snaps_tags.record_id
1976
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
1977
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
1978
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:44:24.947851"], ["updated_at", "2015-04-06 19:44:24.947851"]]
1979
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1980
+ Started GET "/" for 127.0.0.1 at 2015-04-06 21:44:24 +0200
1981
+ Processing by DummiesController#index as HTML
1982
+ Txtblx::Textblock Load (0.2ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
1983
+ ON txtblx_textblocks.id = t_published.record_id
1984
+ AND t_published.record_type = 'Txtblx::Textblock'
1985
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
1986
+ Rendered dummies/index.html.erb within layouts/application (4.4ms)
1987
+ Completed 200 OK in 14ms (Views: 13.9ms | ActiveRecord: 0.2ms)
1988
+  (0.2ms) rollback transaction
1989
+  (0.1ms) begin transaction
1990
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
1991
+ ON txtblx_textblocks.id = t_published.record_id
1992
+ AND t_published.record_type = 'Txtblx::Textblock'
1993
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
1994
+  (0.1ms) rollback transaction
1995
+  (0.1ms) begin transaction
1996
+  (0.1ms) SAVEPOINT active_record_1
1997
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:44:24.984934"], ["updated_at", "2015-04-06 19:44:24.984934"]]
1998
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:44:24.987141' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
1999
+ ON txtblx_textblocks.id = snaps_tags.record_id
2000
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
2001
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
2002
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:44:24.987903"], ["updated_at", "2015-04-06 19:44:24.987903"]]
2003
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2004
+  (0.0ms) SAVEPOINT active_record_1
2005
+ SQL (0.1ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:44:24.984934"], ["updated_at", "2015-04-06 19:44:24.989750"]]
2006
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2007
+  (0.0ms) SAVEPOINT active_record_1
2008
+ SQL (0.1ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:44:24.991943' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
2009
+ ON txtblx_textblocks.id = snaps_tags.record_id
2010
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
2011
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
2012
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:44:24.992601"], ["updated_at", "2015-04-06 19:44:24.992601"]]
2013
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2014
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
2015
+ ON txtblx_textblocks.id = t_published.record_id
2016
+ AND t_published.record_type = 'Txtblx::Textblock'
2017
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
2018
+  (0.1ms) rollback transaction
2019
+  (0.1ms) begin transaction
2020
+  (0.1ms) SAVEPOINT active_record_1
2021
+  (0.2ms) SELECT MAX("txtblx_textblocks"."perma_id") FROM "txtblx_textblocks"
2022
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("key", "text", "text_html", "perma_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["key", "some key"], ["text", "some text"], ["text_html", "<p>some text</p>"], ["perma_id", 1], ["created_at", "2015-04-06 19:44:25.078960"], ["updated_at", "2015-04-06 19:44:25.078960"]]
2023
+ SQL (0.1ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:44:25.080946' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
2024
+ ON txtblx_textblocks.id = snaps_tags.record_id
2025
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
2026
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
2027
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:44:25.081661"], ["updated_at", "2015-04-06 19:44:25.081661"]]
2028
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2029
+  (0.1ms) rollback transaction
2030
+  (0.1ms) begin transaction
2031
+  (0.1ms) SAVEPOINT active_record_1
2032
+  (0.1ms) SELECT MAX("txtblx_textblocks"."perma_id") FROM "txtblx_textblocks"
2033
+ SQL (0.3ms) INSERT INTO "txtblx_textblocks" ("key", "text", "text_html", "perma_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["key", "some key"], ["text", "some text"], ["text_html", "<p>some text</p>"], ["perma_id", 1], ["created_at", "2015-04-06 19:46:00.600932"], ["updated_at", "2015-04-06 19:46:00.600932"]]
2034
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:46:00.679597' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
2035
+ ON txtblx_textblocks.id = snaps_tags.record_id
2036
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
2037
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
2038
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:46:00.685159"], ["updated_at", "2015-04-06 19:46:00.685159"]]
2039
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2040
+  (0.1ms) rollback transaction
2041
+  (0.1ms) begin transaction
2042
+  (0.1ms) SAVEPOINT active_record_1
2043
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:46:00.690696"], ["updated_at", "2015-04-06 19:46:00.690696"]]
2044
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:46:00.693035' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
2045
+ ON txtblx_textblocks.id = snaps_tags.record_id
2046
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
2047
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
2048
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:46:00.693882"], ["updated_at", "2015-04-06 19:46:00.693882"]]
2049
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2050
+  (0.0ms) SAVEPOINT active_record_1
2051
+ SQL (0.1ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:46:00.690696"], ["updated_at", "2015-04-06 19:46:00.696083"]]
2052
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2053
+  (0.0ms) SAVEPOINT active_record_1
2054
+ SQL (0.1ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:46:00.698483' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
2055
+ ON txtblx_textblocks.id = snaps_tags.record_id
2056
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
2057
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
2058
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:46:00.699173"], ["updated_at", "2015-04-06 19:46:00.699173"]]
2059
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2060
+ Started GET "/" for 127.0.0.1 at 2015-04-06 21:46:00 +0200
2061
+ Processing by DummiesController#index as HTML
2062
+ Txtblx::Textblock Load (0.2ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
2063
+ ON txtblx_textblocks.id = t_published.record_id
2064
+ AND t_published.record_type = 'Txtblx::Textblock'
2065
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
2066
+ Rendered dummies/index.html.erb within layouts/application (5.1ms)
2067
+ Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.2ms)
2068
+  (0.2ms) rollback transaction
2069
+  (0.1ms) begin transaction
2070
+  (0.1ms) SAVEPOINT active_record_1
2071
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:46:00.731063"], ["updated_at", "2015-04-06 19:46:00.731063"]]
2072
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:46:00.733556' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
2073
+ ON txtblx_textblocks.id = snaps_tags.record_id
2074
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
2075
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
2076
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:46:00.734456"], ["updated_at", "2015-04-06 19:46:00.734456"]]
2077
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2078
+  (0.0ms) SAVEPOINT active_record_1
2079
+ SQL (0.1ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:46:00.731063"], ["updated_at", "2015-04-06 19:46:00.736607"]]
2080
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2081
+  (0.0ms) SAVEPOINT active_record_1
2082
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:46:00.739085' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
2083
+ ON txtblx_textblocks.id = snaps_tags.record_id
2084
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
2085
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
2086
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:46:00.739817"], ["updated_at", "2015-04-06 19:46:00.739817"]]
2087
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2088
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
2089
+ ON txtblx_textblocks.id = t_published.record_id
2090
+ AND t_published.record_type = 'Txtblx::Textblock'
2091
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
2092
+  (0.2ms) rollback transaction
2093
+  (0.1ms) begin transaction
2094
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
2095
+ ON txtblx_textblocks.id = t_published.record_id
2096
+ AND t_published.record_type = 'Txtblx::Textblock'
2097
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
2098
+  (0.1ms) rollback transaction
2099
+  (0.1ms) begin transaction
2100
+  (0.1ms) SAVEPOINT active_record_1
2101
+  (0.1ms) SELECT MAX("txtblx_textblocks"."perma_id") FROM "txtblx_textblocks"
2102
+ SQL (0.3ms) INSERT INTO "txtblx_textblocks" ("key", "text", "text_html", "perma_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["key", "some key"], ["text", "some text"], ["text_html", "<p>some text</p>"], ["perma_id", 1], ["created_at", "2015-04-06 19:46:23.159385"], ["updated_at", "2015-04-06 19:46:23.159385"]]
2103
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:46:23.225035' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
2104
+ ON txtblx_textblocks.id = snaps_tags.record_id
2105
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
2106
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
2107
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:46:23.229867"], ["updated_at", "2015-04-06 19:46:23.229867"]]
2108
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2109
+  (0.1ms) rollback transaction
2110
+  (0.1ms) begin transaction
2111
+ Txtblx::Textblock Load (0.2ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
2112
+ ON txtblx_textblocks.id = t_published.record_id
2113
+ AND t_published.record_type = 'Txtblx::Textblock'
2114
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
2115
+  (0.1ms) rollback transaction
2116
+  (0.1ms) begin transaction
2117
+  (0.1ms) SAVEPOINT active_record_1
2118
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:46:23.245734"], ["updated_at", "2015-04-06 19:46:23.245734"]]
2119
+ SQL (0.1ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:46:23.247827' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
2120
+ ON txtblx_textblocks.id = snaps_tags.record_id
2121
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
2122
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
2123
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:46:23.248551"], ["updated_at", "2015-04-06 19:46:23.248551"]]
2124
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2125
+  (0.0ms) SAVEPOINT active_record_1
2126
+ SQL (0.1ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:46:23.245734"], ["updated_at", "2015-04-06 19:46:23.250485"]]
2127
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2128
+  (0.0ms) SAVEPOINT active_record_1
2129
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:46:23.252424' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
2130
+ ON txtblx_textblocks.id = snaps_tags.record_id
2131
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
2132
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
2133
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:46:23.253034"], ["updated_at", "2015-04-06 19:46:23.253034"]]
2134
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2135
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
2136
+ ON txtblx_textblocks.id = t_published.record_id
2137
+ AND t_published.record_type = 'Txtblx::Textblock'
2138
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
2139
+  (0.1ms) rollback transaction
2140
+  (0.1ms) begin transaction
2141
+  (0.1ms) SAVEPOINT active_record_1
2142
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:46:23.260245"], ["updated_at", "2015-04-06 19:46:23.260245"]]
2143
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:46:23.262667' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
2144
+ ON txtblx_textblocks.id = snaps_tags.record_id
2145
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
2146
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
2147
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:46:23.263613"], ["updated_at", "2015-04-06 19:46:23.263613"]]
2148
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2149
+  (0.1ms) SAVEPOINT active_record_1
2150
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:46:23.260245"], ["updated_at", "2015-04-06 19:46:23.266057"]]
2151
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2152
+  (0.0ms) SAVEPOINT active_record_1
2153
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:46:23.268650' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
2154
+ ON txtblx_textblocks.id = snaps_tags.record_id
2155
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
2156
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
2157
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:46:23.269455"], ["updated_at", "2015-04-06 19:46:23.269455"]]
2158
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2159
+ Started GET "/" for 127.0.0.1 at 2015-04-06 21:46:23 +0200
2160
+ Processing by DummiesController#index as HTML
2161
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
2162
+ ON txtblx_textblocks.id = t_published.record_id
2163
+ AND t_published.record_type = 'Txtblx::Textblock'
2164
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
2165
+ Rendered dummies/index.html.erb within layouts/application (2.8ms)
2166
+ Completed 200 OK in 14ms (Views: 13.5ms | ActiveRecord: 0.1ms)
2167
+  (0.2ms) rollback transaction
2168
+  (0.1ms) begin transaction
2169
+ Txtblx::Textblock Load (0.4ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
2170
+ ON txtblx_textblocks.id = t_published.record_id
2171
+ AND t_published.record_type = 'Txtblx::Textblock'
2172
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
2173
+  (0.1ms) rollback transaction
2174
+  (0.0ms) begin transaction
2175
+  (0.1ms) SAVEPOINT active_record_1
2176
+ SQL (0.3ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:53:12.492596"], ["updated_at", "2015-04-06 19:53:12.492596"]]
2177
+ SQL (0.3ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:53:12.510053' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
2178
+ ON txtblx_textblocks.id = snaps_tags.record_id
2179
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
2180
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
2181
+ SQL (0.2ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:53:12.511552"], ["updated_at", "2015-04-06 19:53:12.511552"]]
2182
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2183
+  (0.1ms) SAVEPOINT active_record_1
2184
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:53:12.492596"], ["updated_at", "2015-04-06 19:53:12.514583"]]
2185
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2186
+  (0.0ms) SAVEPOINT active_record_1
2187
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:53:12.517288' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
2188
+ ON txtblx_textblocks.id = snaps_tags.record_id
2189
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
2190
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
2191
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:53:12.518089"], ["updated_at", "2015-04-06 19:53:12.518089"]]
2192
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2193
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
2194
+ ON txtblx_textblocks.id = t_published.record_id
2195
+ AND t_published.record_type = 'Txtblx::Textblock'
2196
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
2197
+  (0.2ms) rollback transaction
2198
+  (0.1ms) begin transaction
2199
+  (0.1ms) SAVEPOINT active_record_1
2200
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:53:12.527890"], ["updated_at", "2015-04-06 19:53:12.527890"]]
2201
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:53:12.531259' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
2202
+ ON txtblx_textblocks.id = snaps_tags.record_id
2203
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
2204
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
2205
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:53:12.532295"], ["updated_at", "2015-04-06 19:53:12.532295"]]
2206
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2207
+  (0.1ms) SAVEPOINT active_record_1
2208
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:53:12.527890"], ["updated_at", "2015-04-06 19:53:12.534952"]]
2209
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2210
+  (0.1ms) SAVEPOINT active_record_1
2211
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:53:12.537715' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
2212
+ ON txtblx_textblocks.id = snaps_tags.record_id
2213
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
2214
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
2215
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:53:12.538544"], ["updated_at", "2015-04-06 19:53:12.538544"]]
2216
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2217
+ Started GET "/" for 127.0.0.1 at 2015-04-06 21:53:12 +0200
2218
+ Processing by DummiesController#index as HTML
2219
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
2220
+ ON txtblx_textblocks.id = t_published.record_id
2221
+ AND t_published.record_type = 'Txtblx::Textblock'
2222
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
2223
+ Rendered dummies/index.html.erb within layouts/application (8.2ms)
2224
+ Completed 200 OK in 27ms (Views: 26.7ms | ActiveRecord: 0.1ms)
2225
+  (0.2ms) rollback transaction
2226
+  (0.1ms) begin transaction
2227
+  (0.1ms) SAVEPOINT active_record_1
2228
+  (0.1ms) SELECT MAX("txtblx_textblocks"."perma_id") FROM "txtblx_textblocks"
2229
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("key", "text", "text_html", "perma_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["key", "some key"], ["text", "some text with http://example.com"], ["text_html", "<p>some text with <a href=\"http://example.com\" target=\"_blank\" rel=\"nofollow\">http://example.com</a></p>"], ["perma_id", 1], ["created_at", "2015-04-06 19:53:12.734997"], ["updated_at", "2015-04-06 19:53:12.734997"]]
2230
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:53:12.737398' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
2231
+ ON txtblx_textblocks.id = snaps_tags.record_id
2232
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
2233
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
2234
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:53:12.738156"], ["updated_at", "2015-04-06 19:53:12.738156"]]
2235
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2236
+  (0.1ms) rollback transaction
2237
+  (0.1ms) begin transaction
2238
+  (0.1ms) SAVEPOINT active_record_1
2239
+  (0.1ms) SELECT MAX("txtblx_textblocks"."perma_id") FROM "txtblx_textblocks"
2240
+ SQL (0.1ms) INSERT INTO "txtblx_textblocks" ("key", "text", "text_html", "perma_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["key", "some key"], ["text", "some text"], ["text_html", "<p>some text</p>"], ["perma_id", 1], ["created_at", "2015-04-06 19:53:12.742167"], ["updated_at", "2015-04-06 19:53:12.742167"]]
2241
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:53:12.744036' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
2242
+ ON txtblx_textblocks.id = snaps_tags.record_id
2243
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
2244
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
2245
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:53:12.744802"], ["updated_at", "2015-04-06 19:53:12.744802"]]
2246
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2247
+  (0.1ms) rollback transaction
2248
+  (0.1ms) begin transaction
2249
+ Txtblx::Textblock Load (0.3ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
2250
+ ON txtblx_textblocks.id = t_published.record_id
2251
+ AND t_published.record_type = 'Txtblx::Textblock'
2252
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
2253
+  (0.1ms) rollback transaction
2254
+  (0.1ms) begin transaction
2255
+  (0.1ms) SAVEPOINT active_record_1
2256
+ SQL (0.3ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 20:03:00.091181"], ["updated_at", "2015-04-06 20:03:00.091181"]]
2257
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 20:03:00.105175' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
2258
+ ON txtblx_textblocks.id = snaps_tags.record_id
2259
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
2260
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
2261
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 20:03:00.106152"], ["updated_at", "2015-04-06 20:03:00.106152"]]
2262
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2263
+  (0.0ms) SAVEPOINT active_record_1
2264
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 20:03:00.091181"], ["updated_at", "2015-04-06 20:03:00.108332"]]
2265
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2266
+  (0.0ms) SAVEPOINT active_record_1
2267
+ SQL (0.1ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 20:03:00.110749' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
2268
+ ON txtblx_textblocks.id = snaps_tags.record_id
2269
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
2270
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
2271
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 20:03:00.111380"], ["updated_at", "2015-04-06 20:03:00.111380"]]
2272
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2273
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
2274
+ ON txtblx_textblocks.id = t_published.record_id
2275
+ AND t_published.record_type = 'Txtblx::Textblock'
2276
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
2277
+  (0.1ms) rollback transaction
2278
+  (0.1ms) begin transaction
2279
+  (0.1ms) SAVEPOINT active_record_1
2280
+  (0.1ms) SELECT MAX("txtblx_textblocks"."perma_id") FROM "txtblx_textblocks"
2281
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("key", "text", "text_html", "perma_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["key", "some key"], ["text", "some text inlcuding http://example.com"], ["text_html", "<p>some text inlcuding <a href=\"http://example.com\" target=\"_blank\" rel=\"nofollow\">http://example.com</a></p>"], ["perma_id", 1], ["created_at", "2015-04-06 20:03:00.207973"], ["updated_at", "2015-04-06 20:03:00.207973"]]
2282
+ SQL (0.1ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 20:03:00.210024' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
2283
+ ON txtblx_textblocks.id = snaps_tags.record_id
2284
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
2285
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
2286
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 20:03:00.210738"], ["updated_at", "2015-04-06 20:03:00.210738"]]
2287
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2288
+  (0.1ms) rollback transaction
2289
+  (0.0ms) begin transaction
2290
+  (0.0ms) SAVEPOINT active_record_1
2291
+  (0.1ms) SELECT MAX("txtblx_textblocks"."perma_id") FROM "txtblx_textblocks"
2292
+ SQL (0.1ms) INSERT INTO "txtblx_textblocks" ("key", "text", "text_html", "perma_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["key", "some key"], ["text", "some text"], ["text_html", "<p>some text</p>"], ["perma_id", 1], ["created_at", "2015-04-06 20:03:00.215098"], ["updated_at", "2015-04-06 20:03:00.215098"]]
2293
+ SQL (0.1ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 20:03:00.216803' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
2294
+ ON txtblx_textblocks.id = snaps_tags.record_id
2295
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
2296
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
2297
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 20:03:00.217472"], ["updated_at", "2015-04-06 20:03:00.217472"]]
2298
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2299
+  (0.1ms) rollback transaction
2300
+  (0.1ms) begin transaction
2301
+  (0.1ms) SAVEPOINT active_record_1
2302
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 20:03:00.221833"], ["updated_at", "2015-04-06 20:03:00.221833"]]
2303
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 20:03:00.223864' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
2304
+ ON txtblx_textblocks.id = snaps_tags.record_id
2305
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
2306
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
2307
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 20:03:00.224678"], ["updated_at", "2015-04-06 20:03:00.224678"]]
2308
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2309
+  (0.0ms) SAVEPOINT active_record_1
2310
+ SQL (0.1ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 20:03:00.221833"], ["updated_at", "2015-04-06 20:03:00.226593"]]
2311
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2312
+  (0.0ms) SAVEPOINT active_record_1
2313
+ SQL (0.1ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 20:03:00.228593' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
2314
+ ON txtblx_textblocks.id = snaps_tags.record_id
2315
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
2316
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
2317
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 20:03:00.229213"], ["updated_at", "2015-04-06 20:03:00.229213"]]
2318
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2319
+ Started GET "/" for 127.0.0.1 at 2015-04-06 22:03:00 +0200
2320
+ Processing by DummiesController#index as HTML
2321
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
2322
+ ON txtblx_textblocks.id = t_published.record_id
2323
+ AND t_published.record_type = 'Txtblx::Textblock'
2324
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
2325
+ Rendered dummies/index.html.erb within layouts/application (2.5ms)
2326
+ Completed 200 OK in 11ms (Views: 11.0ms | ActiveRecord: 0.1ms)
2327
+  (0.2ms) rollback transaction
2328
+  (0.1ms) begin transaction
2329
+  (0.1ms) SAVEPOINT active_record_1
2330
+ SQL (0.3ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 20:21:04.043724"], ["updated_at", "2015-04-06 20:21:04.043724"]]
2331
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 20:21:04.067229' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
2332
+ ON txtblx_textblocks.id = snaps_tags.record_id
2333
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
2334
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
2335
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 20:21:04.069067"], ["updated_at", "2015-04-06 20:21:04.069067"]]
2336
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2337
+  (0.0ms) SAVEPOINT active_record_1
2338
+ SQL (0.1ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 20:21:04.043724"], ["updated_at", "2015-04-06 20:21:04.071358"]]
2339
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2340
+  (0.0ms) SAVEPOINT active_record_1
2341
+ SQL (0.1ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 20:21:04.073640' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
2342
+ ON txtblx_textblocks.id = snaps_tags.record_id
2343
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
2344
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
2345
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 20:21:04.074285"], ["updated_at", "2015-04-06 20:21:04.074285"]]
2346
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2347
+ Started GET "/" for 127.0.0.1 at 2015-04-06 22:21:04 +0200
2348
+ Processing by DummiesController#index as HTML
2349
+ Txtblx::Textblock Load (0.3ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
2350
+ ON txtblx_textblocks.id = t_published.record_id
2351
+ AND t_published.record_type = 'Txtblx::Textblock'
2352
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
2353
+ Rendered dummies/index.html.erb within layouts/application (5.0ms)
2354
+ Completed 200 OK in 58ms (Views: 57.8ms | ActiveRecord: 0.3ms)
2355
+  (0.2ms) rollback transaction
2356
+  (0.1ms) begin transaction
2357
+  (0.1ms) SAVEPOINT active_record_1
2358
+  (0.1ms) SELECT MAX("txtblx_textblocks"."perma_id") FROM "txtblx_textblocks"
2359
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("key", "text", "text_html", "perma_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["key", "some key"], ["text", "some text"], ["text_html", "<p>some text</p>"], ["perma_id", 1], ["created_at", "2015-04-06 20:21:04.231902"], ["updated_at", "2015-04-06 20:21:04.231902"]]
2360
+ SQL (0.1ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 20:21:04.233924' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
2361
+ ON txtblx_textblocks.id = snaps_tags.record_id
2362
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
2363
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
2364
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 20:21:04.234700"], ["updated_at", "2015-04-06 20:21:04.234700"]]
2365
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2366
+  (0.1ms) rollback transaction
2367
+  (0.0ms) begin transaction
2368
+  (0.0ms) SAVEPOINT active_record_1
2369
+  (0.1ms) SELECT MAX("txtblx_textblocks"."perma_id") FROM "txtblx_textblocks"
2370
+ SQL (0.1ms) INSERT INTO "txtblx_textblocks" ("key", "text", "text_html", "perma_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["key", "some key"], ["text", "some text inlcuding http://example.com"], ["text_html", "<p>some text inlcuding <a href=\"http://example.com\" target=\"_blank\" rel=\"nofollow\">http://example.com</a></p>"], ["perma_id", 1], ["created_at", "2015-04-06 20:21:04.238361"], ["updated_at", "2015-04-06 20:21:04.238361"]]
2371
+ SQL (0.1ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 20:21:04.239754' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
2372
+ ON txtblx_textblocks.id = snaps_tags.record_id
2373
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
2374
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
2375
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 20:21:04.240355"], ["updated_at", "2015-04-06 20:21:04.240355"]]
2376
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2377
+  (0.1ms) rollback transaction
2378
+  (0.1ms) begin transaction
2379
+  (0.1ms) SAVEPOINT active_record_1
2380
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 20:21:04.246566"], ["updated_at", "2015-04-06 20:21:04.246566"]]
2381
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 20:21:04.249038' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
2382
+ ON txtblx_textblocks.id = snaps_tags.record_id
2383
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
2384
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
2385
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 20:21:04.250004"], ["updated_at", "2015-04-06 20:21:04.250004"]]
2386
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2387
+  (0.0ms) SAVEPOINT active_record_1
2388
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 20:21:04.246566"], ["updated_at", "2015-04-06 20:21:04.252329"]]
2389
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2390
+  (0.0ms) SAVEPOINT active_record_1
2391
+ SQL (0.1ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 20:21:04.254472' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
2392
+ ON txtblx_textblocks.id = snaps_tags.record_id
2393
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
2394
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
2395
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 20:21:04.255085"], ["updated_at", "2015-04-06 20:21:04.255085"]]
2396
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2397
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
2398
+ ON txtblx_textblocks.id = t_published.record_id
2399
+ AND t_published.record_type = 'Txtblx::Textblock'
2400
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
2401
+  (0.1ms) rollback transaction
2402
+  (0.0ms) begin transaction
2403
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
2404
+ ON txtblx_textblocks.id = t_published.record_id
2405
+ AND t_published.record_type = 'Txtblx::Textblock'
2406
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
2407
+  (0.1ms) rollback transaction
2408
+  (0.1ms) begin transaction
2409
+  (0.1ms) SAVEPOINT active_record_1
2410
+ SQL (0.3ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 22:14:08.663671"], ["updated_at", "2015-04-06 22:14:08.663671"]]
2411
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 22:14:08.689226' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
2412
+ ON txtblx_textblocks.id = snaps_tags.record_id
2413
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
2414
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
2415
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 22:14:08.691389"], ["updated_at", "2015-04-06 22:14:08.691389"]]
2416
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2417
+  (0.0ms) SAVEPOINT active_record_1
2418
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 22:14:08.663671"], ["updated_at", "2015-04-06 22:14:08.694122"]]
2419
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2420
+  (0.0ms) SAVEPOINT active_record_1
2421
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 22:14:08.696762' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
2422
+ ON txtblx_textblocks.id = snaps_tags.record_id
2423
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
2424
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
2425
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 22:14:08.697503"], ["updated_at", "2015-04-06 22:14:08.697503"]]
2426
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2427
+ Started GET "/" for 127.0.0.1 at 2015-04-07 00:14:08 +0200
2428
+ Processing by DummiesController#index as HTML
2429
+ Txtblx::Textblock Load (0.3ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
2430
+ ON txtblx_textblocks.id = t_published.record_id
2431
+ AND t_published.record_type = 'Txtblx::Textblock'
2432
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
2433
+ Rendered dummies/index.html.erb within layouts/application (5.8ms)
2434
+ Completed 200 OK in 21ms (Views: 20.0ms | ActiveRecord: 0.3ms)
2435
+  (0.2ms) rollback transaction
2436
+  (0.1ms) begin transaction
2437
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
2438
+ ON txtblx_textblocks.id = t_published.record_id
2439
+ AND t_published.record_type = 'Txtblx::Textblock'
2440
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
2441
+  (0.1ms) rollback transaction
2442
+  (0.1ms) begin transaction
2443
+  (0.1ms) SAVEPOINT active_record_1
2444
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 22:14:08.926199"], ["updated_at", "2015-04-06 22:14:08.926199"]]
2445
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 22:14:08.929043' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
2446
+ ON txtblx_textblocks.id = snaps_tags.record_id
2447
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
2448
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
2449
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 22:14:08.930154"], ["updated_at", "2015-04-06 22:14:08.930154"]]
2450
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2451
+  (0.1ms) SAVEPOINT active_record_1
2452
+ SQL (0.1ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 22:14:08.926199"], ["updated_at", "2015-04-06 22:14:08.932786"]]
2453
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2454
+  (0.0ms) SAVEPOINT active_record_1
2455
+ SQL (0.1ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 22:14:08.934902' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
2456
+ ON txtblx_textblocks.id = snaps_tags.record_id
2457
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
2458
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
2459
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 22:14:08.935486"], ["updated_at", "2015-04-06 22:14:08.935486"]]
2460
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2461
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
2462
+ ON txtblx_textblocks.id = t_published.record_id
2463
+ AND t_published.record_type = 'Txtblx::Textblock'
2464
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
2465
+  (0.1ms) rollback transaction
2466
+  (0.1ms) begin transaction
2467
+  (0.1ms) SAVEPOINT active_record_1
2468
+  (0.1ms) SELECT MAX("txtblx_textblocks"."perma_id") FROM "txtblx_textblocks"
2469
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("key", "text", "text_html", "perma_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["key", "some key"], ["text", "some text inlcuding http://example.com"], ["text_html", "<p>some text inlcuding <a href=\"http://example.com\" target=\"_blank\" rel=\"nofollow\">http://example.com</a></p>"], ["perma_id", 1], ["created_at", "2015-04-06 22:14:09.027520"], ["updated_at", "2015-04-06 22:14:09.027520"]]
2470
+ SQL (0.1ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 22:14:09.029504' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
2471
+ ON txtblx_textblocks.id = snaps_tags.record_id
2472
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
2473
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
2474
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 22:14:09.030209"], ["updated_at", "2015-04-06 22:14:09.030209"]]
2475
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2476
+  (0.1ms) rollback transaction
2477
+  (0.0ms) begin transaction
2478
+  (0.0ms) SAVEPOINT active_record_1
2479
+  (0.1ms) SELECT MAX("txtblx_textblocks"."perma_id") FROM "txtblx_textblocks"
2480
+ SQL (0.1ms) INSERT INTO "txtblx_textblocks" ("key", "text", "text_html", "perma_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["key", "some key"], ["text", "some text"], ["text_html", "<p>some text</p>"], ["perma_id", 1], ["created_at", "2015-04-06 22:14:09.033762"], ["updated_at", "2015-04-06 22:14:09.033762"]]
2481
+ SQL (0.1ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 22:14:09.035170' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
2482
+ ON txtblx_textblocks.id = snaps_tags.record_id
2483
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
2484
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
2485
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 22:14:09.035748"], ["updated_at", "2015-04-06 22:14:09.035748"]]
2486
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2487
+  (0.1ms) rollback transaction
2488
+  (0.1ms) begin transaction
2489
+  (0.1ms) SAVEPOINT active_record_1
2490
+ SQL (0.3ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 22:44:40.071774"], ["updated_at", "2015-04-06 22:44:40.071774"]]
2491
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 22:44:40.095502' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
2492
+ ON txtblx_textblocks.id = snaps_tags.record_id
2493
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
2494
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
2495
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 22:44:40.097438"], ["updated_at", "2015-04-06 22:44:40.097438"]]
2496
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2497
+  (0.0ms) SAVEPOINT active_record_1
2498
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 22:44:40.099936"], ["updated_at", "2015-04-06 22:44:40.099936"]]
2499
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2500
+  (0.0ms) SAVEPOINT active_record_1
2501
+ SQL (0.1ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 22:44:40.102491' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
2502
+ ON txtblx_textblocks.id = snaps_tags.record_id
2503
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
2504
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
2505
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 22:44:40.103189"], ["updated_at", "2015-04-06 22:44:40.103189"]]
2506
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2507
+ Started GET "/" for 127.0.0.1 at 2015-04-07 00:44:40 +0200
2508
+ Processing by DummiesController#index as HTML
2509
+ Txtblx::Textblock Load (0.2ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags
2510
+ ON txtblx_textblocks.id = snaps_tags.record_id
2511
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
2512
+ AND snaps_tags.tag = 'published' WHERE (snaps_tags.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
2513
+ Rendered dummies/index.html.erb within layouts/application (4.8ms)
2514
+ Completed 200 OK in 60ms (Views: 59.0ms | ActiveRecord: 0.2ms)
2515
+  (0.2ms) rollback transaction
2516
+  (0.1ms) begin transaction
2517
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags
2518
+ ON txtblx_textblocks.id = snaps_tags.record_id
2519
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
2520
+ AND snaps_tags.tag = 'published' WHERE (snaps_tags.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
2521
+  (0.1ms) rollback transaction
2522
+  (0.0ms) begin transaction
2523
+  (0.1ms) SAVEPOINT active_record_1
2524
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 22:44:40.302146"], ["updated_at", "2015-04-06 22:44:40.302146"]]
2525
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 22:44:40.304189' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
2526
+ ON txtblx_textblocks.id = snaps_tags.record_id
2527
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
2528
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
2529
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 22:44:40.304943"], ["updated_at", "2015-04-06 22:44:40.304943"]]
2530
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2531
+  (0.0ms) SAVEPOINT active_record_1
2532
+ SQL (0.1ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 22:44:40.306733"], ["updated_at", "2015-04-06 22:44:40.306733"]]
2533
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2534
+  (0.0ms) SAVEPOINT active_record_1
2535
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 22:44:40.308835' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
2536
+ ON txtblx_textblocks.id = snaps_tags.record_id
2537
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
2538
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
2539
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 22:44:40.309519"], ["updated_at", "2015-04-06 22:44:40.309519"]]
2540
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2541
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags
2542
+ ON txtblx_textblocks.id = snaps_tags.record_id
2543
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
2544
+ AND snaps_tags.tag = 'published' WHERE (snaps_tags.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
2545
+  (0.1ms) rollback transaction
2546
+  (0.1ms) begin transaction
2547
+  (0.1ms) SAVEPOINT active_record_1
2548
+  (0.1ms) SELECT MAX("txtblx_textblocks"."perma_id") FROM "txtblx_textblocks"
2549
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("key", "text", "text_html", "perma_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["key", "some key"], ["text", "some text inlcuding http://example.com"], ["text_html", "<p>some text inlcuding <a href=\"http://example.com\" target=\"_blank\" rel=\"nofollow\">http://example.com</a></p>"], ["perma_id", 1], ["created_at", "2015-04-06 22:44:40.416639"], ["updated_at", "2015-04-06 22:44:40.416639"]]
2550
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 22:44:40.419140' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
2551
+ ON txtblx_textblocks.id = snaps_tags.record_id
2552
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
2553
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
2554
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 22:44:40.420101"], ["updated_at", "2015-04-06 22:44:40.420101"]]
2555
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2556
+  (0.1ms) rollback transaction
2557
+  (0.0ms) begin transaction
2558
+  (0.0ms) SAVEPOINT active_record_1
2559
+  (0.1ms) SELECT MAX("txtblx_textblocks"."perma_id") FROM "txtblx_textblocks"
2560
+ SQL (0.1ms) INSERT INTO "txtblx_textblocks" ("key", "text", "text_html", "perma_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["key", "some key"], ["text", "some text"], ["text_html", "<p>some text</p>"], ["perma_id", 1], ["created_at", "2015-04-06 22:44:40.423878"], ["updated_at", "2015-04-06 22:44:40.423878"]]
2561
+ SQL (0.1ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 22:44:40.425254' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
2562
+ ON txtblx_textblocks.id = snaps_tags.record_id
2563
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
2564
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
2565
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 22:44:40.425837"], ["updated_at", "2015-04-06 22:44:40.425837"]]
2566
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2567
+  (0.1ms) rollback transaction
2568
+  (0.1ms) begin transaction
2569
+  (0.1ms) SAVEPOINT active_record_1
2570
+ SQL (0.4ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-07 14:03:58.816650"], ["updated_at", "2015-04-07 14:03:58.816650"]]
2571
+ SQL (0.3ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-07 14:03:58.840564' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
2572
+ ON txtblx_textblocks.id = snaps_tags.record_id
2573
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
2574
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
2575
+ SQL (0.2ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-07 14:03:58.843001"], ["updated_at", "2015-04-07 14:03:58.843001"]]
2576
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2577
+  (0.0ms) SAVEPOINT active_record_1
2578
+ SQL (0.1ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-07 14:03:58.816650"], ["updated_at", "2015-04-07 14:03:58.845797"]]
2579
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2580
+  (0.0ms) SAVEPOINT active_record_1
2581
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-07 14:03:58.848626' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
2582
+ ON txtblx_textblocks.id = snaps_tags.record_id
2583
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
2584
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
2585
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-07 14:03:58.849386"], ["updated_at", "2015-04-07 14:03:58.849386"]]
2586
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2587
+ Started GET "/" for 127.0.0.1 at 2015-04-07 16:03:58 +0200
2588
+ Processing by DummiesController#index as HTML
2589
+ Txtblx::Textblock Load (0.2ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
2590
+ ON txtblx_textblocks.id = t_published.record_id
2591
+ AND t_published.record_type = 'Txtblx::Textblock'
2592
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
2593
+ Rendered dummies/index.html.erb within layouts/application (4.9ms)
2594
+ Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.2ms)
2595
+  (0.2ms) rollback transaction
2596
+  (0.1ms) begin transaction
2597
+  (0.1ms) SAVEPOINT active_record_1
2598
+  (0.1ms) SELECT MAX("txtblx_textblocks"."perma_id") FROM "txtblx_textblocks"
2599
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("key", "text", "text_html", "perma_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["key", "some key"], ["text", "some text"], ["text_html", "<p>some text</p>"], ["perma_id", 1], ["created_at", "2015-04-07 14:03:58.986638"], ["updated_at", "2015-04-07 14:03:58.986638"]]
2600
+ SQL (0.3ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-07 14:03:58.989319' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
2601
+ ON txtblx_textblocks.id = snaps_tags.record_id
2602
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
2603
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
2604
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-07 14:03:58.990770"], ["updated_at", "2015-04-07 14:03:58.990770"]]
2605
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2606
+  (0.1ms) rollback transaction
2607
+  (0.1ms) begin transaction
2608
+  (0.1ms) SAVEPOINT active_record_1
2609
+  (0.1ms) SELECT MAX("txtblx_textblocks"."perma_id") FROM "txtblx_textblocks"
2610
+ SQL (0.1ms) INSERT INTO "txtblx_textblocks" ("key", "text", "text_html", "perma_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["key", "some key"], ["text", "some text inlcuding http://example.com"], ["text_html", "<p>some text inlcuding <a href=\"http://example.com\" target=\"_blank\" rel=\"nofollow\">http://example.com</a></p>"], ["perma_id", 1], ["created_at", "2015-04-07 14:03:58.995861"], ["updated_at", "2015-04-07 14:03:58.995861"]]
2611
+ SQL (0.1ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-07 14:03:58.997445' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
2612
+ ON txtblx_textblocks.id = snaps_tags.record_id
2613
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
2614
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
2615
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-07 14:03:58.998130"], ["updated_at", "2015-04-07 14:03:58.998130"]]
2616
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2617
+  (0.2ms) rollback transaction
2618
+  (0.1ms) begin transaction
2619
+  (0.1ms) SAVEPOINT active_record_1
2620
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-07 14:03:59.051219"], ["updated_at", "2015-04-07 14:03:59.051219"]]
2621
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-07 14:03:59.053354' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
2622
+ ON txtblx_textblocks.id = snaps_tags.record_id
2623
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
2624
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
2625
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-07 14:03:59.054131"], ["updated_at", "2015-04-07 14:03:59.054131"]]
2626
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2627
+  (0.0ms) SAVEPOINT active_record_1
2628
+ SQL (0.2ms) INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-07 14:03:59.051219"], ["updated_at", "2015-04-07 14:03:59.056043"]]
2629
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2630
+  (0.0ms) SAVEPOINT active_record_1
2631
+ SQL (0.2ms) UPDATE "snaps_tags" SET "superseded_at" = '2015-04-07 14:03:59.058167' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
2632
+ ON txtblx_textblocks.id = snaps_tags.record_id
2633
+ AND snaps_tags.record_type = 'Txtblx::Textblock'
2634
+ AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
2635
+ SQL (0.1ms) INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-07 14:03:59.058869"], ["updated_at", "2015-04-07 14:03:59.058869"]]
2636
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2637
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
2638
+ ON txtblx_textblocks.id = t_published.record_id
2639
+ AND t_published.record_type = 'Txtblx::Textblock'
2640
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
2641
+  (0.1ms) rollback transaction
2642
+  (0.0ms) begin transaction
2643
+ Txtblx::Textblock Load (0.1ms) SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
2644
+ ON txtblx_textblocks.id = t_published.record_id
2645
+ AND t_published.record_type = 'Txtblx::Textblock'
2646
+ AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
2647
+  (0.1ms) rollback transaction