banner_lite 0.0.3 → 0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Rakefile +9 -0
- data/app/controllers/banner_lite/{banners_controller.rb → image_banners_controller.rb} +9 -9
- data/app/controllers/banner_lite/text_banners_controller.rb +53 -0
- data/app/helpers/banner_lite/{banners_helper.rb → image_banners_helper.rb} +3 -3
- data/app/helpers/banner_lite/text_banners_helper.rb +12 -0
- data/app/models/banner_lite/banner.rb +0 -29
- data/app/models/banner_lite/image_banner.rb +32 -0
- data/app/models/banner_lite/text_banner.rb +5 -0
- data/app/views/banner_lite/{banners → image_banners}/_form.html.erb +0 -0
- data/app/views/banner_lite/{banners → image_banners}/edit.html.erb +1 -1
- data/app/views/banner_lite/{banners → image_banners}/index.html.erb +2 -2
- data/app/views/banner_lite/{banners → image_banners}/new.html.erb +1 -1
- data/app/views/banner_lite/image_banners/preview.html.erb +1 -0
- data/app/views/banner_lite/{banners → image_banners}/show.html.erb +2 -2
- data/app/views/banner_lite/text_banners/_form.html.erb +33 -0
- data/app/views/banner_lite/text_banners/edit.html.erb +6 -0
- data/app/views/banner_lite/text_banners/index.html.erb +31 -0
- data/app/views/banner_lite/text_banners/new.html.erb +5 -0
- data/app/views/banner_lite/text_banners/preview.html.erb +1 -0
- data/app/views/banner_lite/text_banners/show.html.erb +24 -0
- data/config/routes.rb +6 -1
- data/db/migrate/20140901033058_add_banner_text_to_banner_lite_banners.rb +13 -0
- data/lib/banner_lite/engine.rb +2 -1
- data/lib/banner_lite/version.rb +1 -1
- data/spec/controllers/banner_lite/image_banners_controller_spec.rb +141 -0
- data/spec/controllers/banner_lite/text_banners_controller_spec.rb +138 -0
- data/spec/factories/image_banners.rb +8 -0
- data/spec/factories/text_banners.rb +8 -0
- data/spec/features/image_banners_spec.rb +18 -0
- data/spec/fixtures/files/dummy.png +0 -0
- data/spec/helpers/banner_lite/image_banners_helper_spec.rb +6 -0
- data/spec/helpers/banner_lite/text_banners_helper_spec.rb +6 -0
- data/spec/models/banner_lite/image_banner_spec.rb +15 -0
- data/spec/models/banner_lite/text_banner_spec.rb +15 -0
- data/spec/spec_helper.rb +50 -0
- data/spec/test_app/README.rdoc +28 -0
- data/spec/test_app/Rakefile +6 -0
- data/spec/test_app/app/assets/javascripts/application.js +13 -0
- data/spec/test_app/app/assets/stylesheets/application.css +15 -0
- data/spec/test_app/app/controllers/application_controller.rb +5 -0
- data/spec/test_app/app/helpers/application_helper.rb +2 -0
- data/spec/test_app/app/views/layouts/application.html.erb +14 -0
- data/spec/test_app/bin/bundle +3 -0
- data/spec/test_app/bin/rails +4 -0
- data/spec/test_app/bin/rake +4 -0
- data/spec/test_app/config/application.rb +29 -0
- data/spec/test_app/config/boot.rb +5 -0
- data/spec/test_app/config/database.yml +25 -0
- data/spec/test_app/config/environment.rb +5 -0
- data/spec/test_app/config/environments/development.rb +29 -0
- data/spec/test_app/config/environments/production.rb +80 -0
- data/spec/test_app/config/environments/test.rb +36 -0
- data/spec/test_app/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/test_app/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/test_app/config/initializers/inflections.rb +16 -0
- data/spec/test_app/config/initializers/mime_types.rb +5 -0
- data/spec/test_app/config/initializers/session_store.rb +3 -0
- data/spec/test_app/config/initializers/wrap_parameters.rb +14 -0
- data/spec/test_app/config/locales/en.yml +23 -0
- data/spec/test_app/config/routes.rb +4 -0
- data/spec/test_app/config/secrets.yml +20 -0
- data/spec/test_app/config.ru +4 -0
- data/spec/test_app/db/development.sqlite3 +0 -0
- data/spec/test_app/db/schema.rb +25 -0
- data/spec/test_app/db/test.sqlite3 +0 -0
- data/spec/test_app/log/development.log +2022 -0
- data/spec/test_app/log/test.log +2944 -0
- data/spec/test_app/public/404.html +67 -0
- data/spec/test_app/public/422.html +67 -0
- data/spec/test_app/public/500.html +66 -0
- data/spec/test_app/public/favicon.ico +0 -0
- data/spec/test_app/spec/fixtures/files/image.png +0 -0
- data/spec/test_app/tmp/cache/assets/development/sprockets/003a38e9fd7ca25c13cedf53bf372ae6 +0 -0
- data/spec/test_app/tmp/cache/assets/development/sprockets/03ac7af390932302330c5edf40f1a0c4 +0 -0
- data/spec/test_app/tmp/cache/assets/development/sprockets/04407df44edd603d47fc64d43aba1105 +0 -0
- data/spec/test_app/tmp/cache/assets/development/sprockets/10a0a05683e0182480089f585e73d994 +0 -0
- data/spec/test_app/tmp/cache/assets/development/sprockets/168e239e81a66290e62ea7b88ae0a6f0 +0 -0
- data/spec/test_app/tmp/cache/assets/development/sprockets/5c7aaccf5c3cfe31473143cad225e0a3 +0 -0
- data/spec/test_app/tmp/cache/assets/development/sprockets/63b2a7b060b4143f09c1f65fa4d05cec +0 -0
- data/spec/test_app/tmp/cache/assets/development/sprockets/6b6316f40abcc8e662f825828fb86a60 +0 -0
- data/spec/test_app/tmp/cache/assets/development/sprockets/6e59c9d94357e0bad4932c0d6e08aae4 +0 -0
- data/spec/test_app/tmp/cache/assets/development/sprockets/8473b4217b725147b48cc7c35a5613f1 +0 -0
- data/spec/test_app/tmp/cache/assets/development/sprockets/9a37adb41b90d5a705ad5ac5b36908a5 +0 -0
- data/spec/test_app/tmp/cache/assets/development/sprockets/a282da187ba14975a311bdee34282b68 +0 -0
- data/spec/test_app/tmp/cache/assets/development/sprockets/b140558c17c5a6a0b4d0db1aa9eec7d9 +0 -0
- data/spec/test_app/tmp/cache/assets/development/sprockets/bd2620ba816de25a2d516af4f4d3d9fa +0 -0
- data/spec/test_app/tmp/cache/assets/development/sprockets/bd7f920a6fb16d903905510c1b54ac58 +0 -0
- data/spec/test_app/tmp/cache/assets/development/sprockets/dad42ce6da98af2bb068880ecf0c4e3b +0 -0
- data/spec/test_app/tmp/cache/assets/development/sprockets/f1ea951eed23da8d08839fed76489094 +0 -0
- data/spec/test_app/tmp/cache/assets/development/sprockets/f8d343216bb921b4b9f3ff80a279ade1 +0 -0
- data/spec/test_app/tmp/cache/assets/test/sprockets/003a38e9fd7ca25c13cedf53bf372ae6 +0 -0
- data/spec/test_app/tmp/cache/assets/test/sprockets/03ac7af390932302330c5edf40f1a0c4 +0 -0
- data/spec/test_app/tmp/cache/assets/test/sprockets/04407df44edd603d47fc64d43aba1105 +0 -0
- data/spec/test_app/tmp/cache/assets/test/sprockets/10a0a05683e0182480089f585e73d994 +0 -0
- data/spec/test_app/tmp/cache/assets/test/sprockets/168e239e81a66290e62ea7b88ae0a6f0 +0 -0
- data/spec/test_app/tmp/cache/assets/test/sprockets/28d0637a096857502bb280f6159054d5 +0 -0
- data/spec/test_app/tmp/cache/assets/test/sprockets/3061646d05a58b102019803c24a45bfb +0 -0
- data/spec/test_app/tmp/cache/assets/test/sprockets/3bf4f025073a083e355b74670ab85dad +0 -0
- data/spec/test_app/tmp/cache/assets/test/sprockets/5c7aaccf5c3cfe31473143cad225e0a3 +0 -0
- data/spec/test_app/tmp/cache/assets/test/sprockets/63b2a7b060b4143f09c1f65fa4d05cec +0 -0
- data/spec/test_app/tmp/cache/assets/test/sprockets/6b6316f40abcc8e662f825828fb86a60 +0 -0
- data/spec/test_app/tmp/cache/assets/test/sprockets/6e59c9d94357e0bad4932c0d6e08aae4 +0 -0
- data/spec/test_app/tmp/cache/assets/test/sprockets/8473b4217b725147b48cc7c35a5613f1 +0 -0
- data/spec/test_app/tmp/cache/assets/test/sprockets/9a37adb41b90d5a705ad5ac5b36908a5 +0 -0
- data/spec/test_app/tmp/cache/assets/test/sprockets/a282da187ba14975a311bdee34282b68 +0 -0
- data/spec/test_app/tmp/cache/assets/test/sprockets/bd7f920a6fb16d903905510c1b54ac58 +0 -0
- data/spec/test_app/tmp/cache/assets/test/sprockets/dad42ce6da98af2bb068880ecf0c4e3b +0 -0
- data/spec/test_app/tmp/cache/assets/test/sprockets/e1fd1402695e7f441a0b016d610e5a01 +0 -0
- data/spec/test_app/tmp/cache/assets/test/sprockets/f1ea951eed23da8d08839fed76489094 +0 -0
- data/spec/test_app/tmp/cache/assets/test/sprockets/f8d343216bb921b4b9f3ff80a279ade1 +0 -0
- metadata +209 -12
- data/app/views/banner_lite/banners/preview.html.erb +0 -1
@@ -0,0 +1,2944 @@
|
|
1
|
+
[1m[36m (1.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
2
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
3
|
+
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
4
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
5
|
+
Migrating to CreateBannerLiteBanners (20140221065958)
|
6
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
7
|
+
[1m[35m (0.4ms)[0m CREATE TABLE "banner_lite_banners" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "url" varchar(255), "file_name" varchar(255), "active_from" datetime, "active_until" datetime)
|
8
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140221065958"]]
|
9
|
+
[1m[35m (0.7ms)[0m commit transaction
|
10
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
11
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
12
|
+
[1m[35m (0.1ms)[0m begin transaction
|
13
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
14
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "banner_lite_banners" ("url") VALUES (?) [["url", "MyString"]]
|
15
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
16
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
17
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
18
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
19
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "banner_lite_banners" ("url") VALUES (?)[0m [["url", "MyString"]]
|
20
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
21
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
22
|
+
[1m[35m (0.0ms)[0m begin transaction
|
23
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
24
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("url") VALUES (?) [["url", "MyString"]]
|
25
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
26
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
27
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
28
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
29
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "banner_lite_banners" ("url") VALUES (?)[0m [["url", "MyString"]]
|
30
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
31
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
32
|
+
[1m[35m (0.1ms)[0m begin transaction
|
33
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
34
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("url") VALUES (?) [["url", "MyString"]]
|
35
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
36
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
37
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
38
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
39
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
40
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
41
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "banner_lite_banners" ("url") VALUES (?)[0m [["url", "MyString"]]
|
42
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
43
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
44
|
+
[1m[35m (0.0ms)[0m begin transaction
|
45
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
46
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("url") VALUES (?) [["url", "MyString"]]
|
47
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
48
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
49
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
50
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
51
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
52
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
53
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
54
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "banner_lite_banners"
|
55
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
56
|
+
[1m[35m (0.0ms)[0m begin transaction
|
57
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
58
|
+
[1m[35m (0.0ms)[0m begin transaction
|
59
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
60
|
+
[1m[35m (0.1ms)[0m begin transaction
|
61
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
62
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "banner_lite_banners" ("url") VALUES (?) [["url", "MyString"]]
|
63
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
64
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "banner_lite_banners"
|
65
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
66
|
+
[1m[35m (0.0ms)[0m begin transaction
|
67
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
68
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("url") VALUES (?) [["url", "MyString"]]
|
69
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
70
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
71
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
72
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
73
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "banner_lite_banners" ("url") VALUES (?)[0m [["url", "MyString"]]
|
74
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
75
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
76
|
+
[1m[35m (0.1ms)[0m begin transaction
|
77
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
78
|
+
[1m[35m (0.1ms)[0m begin transaction
|
79
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
80
|
+
[1m[35m (0.0ms)[0m begin transaction
|
81
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
82
|
+
[1m[35m (0.0ms)[0m begin transaction
|
83
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
84
|
+
[1m[35m (0.0ms)[0m begin transaction
|
85
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
86
|
+
[1m[35m (0.0ms)[0m begin transaction
|
87
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
88
|
+
[1m[35m (0.0ms)[0m begin transaction
|
89
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
90
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
91
|
+
[1m[35m (0.1ms)[0m begin transaction
|
92
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
93
|
+
[1m[35m (0.0ms)[0m begin transaction
|
94
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
95
|
+
[1m[35mSQL (1.6ms)[0m INSERT INTO "banner_lite_banners" ("url") VALUES (?) [["url", "MyString"]]
|
96
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
97
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "banner_lite_banners"
|
98
|
+
[1m[36m (2.7ms)[0m [1mrollback transaction[0m
|
99
|
+
[1m[35m (0.1ms)[0m begin transaction
|
100
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
101
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "banner_lite_banners" ("url") VALUES (?) [["url", "MyString"]]
|
102
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
103
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
104
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
105
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
106
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "banner_lite_banners" ("url") VALUES (?)[0m [["url", "MyString"]]
|
107
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
108
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
109
|
+
[1m[35m (0.0ms)[0m begin transaction
|
110
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("url") VALUES (?) [["url", "MyString"]]
|
112
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
113
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
114
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
115
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
116
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "banner_lite_banners" ("url") VALUES (?)[0m [["url", "MyString"]]
|
117
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
118
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
119
|
+
[1m[35m (0.0ms)[0m begin transaction
|
120
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
121
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("url") VALUES (?) [["url", "MyString"]]
|
122
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
123
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
124
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
125
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
126
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "banner_lite_banners" ("url") VALUES (?)[0m [["url", "MyString"]]
|
127
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
128
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
129
|
+
[1m[35m (0.1ms)[0m begin transaction
|
130
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
131
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("url") VALUES (?) [["url", "MyString"]]
|
132
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
133
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
134
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
135
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
136
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
137
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
138
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
139
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "banner_lite_banners"
|
140
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
141
|
+
[1m[35m (0.0ms)[0m begin transaction
|
142
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
143
|
+
[1m[35m (0.0ms)[0m begin transaction
|
144
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
145
|
+
[1m[35m (0.0ms)[0m begin transaction
|
146
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
147
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("url") VALUES (?) [["url", "MyString"]]
|
148
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
149
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
150
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
151
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
152
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "banner_lite_banners" ("url") VALUES (?)[0m [["url", "MyString"]]
|
153
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
154
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
155
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
156
|
+
[1m[35m (0.1ms)[0m begin transaction
|
157
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
158
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "banner_lite_banners" ("url") VALUES (?) [["url", "MyString"]]
|
159
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
160
|
+
[1m[35m (1.4ms)[0m rollback transaction
|
161
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
162
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
163
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "banner_lite_banners" ("url") VALUES (?)[0m [["url", "MyString"]]
|
164
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
165
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
166
|
+
[1m[35m (0.1ms)[0m begin transaction
|
167
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
168
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "banner_lite_banners" ("url") VALUES (?) [["url", "MyString"]]
|
169
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
170
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
171
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
172
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
173
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "banner_lite_banners" ("url") VALUES (?)[0m [["url", "MyString"]]
|
174
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
175
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
176
|
+
[1m[35m (0.0ms)[0m begin transaction
|
177
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
178
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("url") VALUES (?) [["url", "MyString"]]
|
179
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
180
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
181
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
182
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
183
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "banner_lite_banners" ("url") VALUES (?)[0m [["url", "MyString"]]
|
184
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
185
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
186
|
+
[1m[35m (0.0ms)[0m begin transaction
|
187
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "banner_lite_banners"[0m
|
188
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
189
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
190
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
191
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
192
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
193
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
194
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
195
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
196
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
197
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
198
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
199
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "banner_lite_banners" ("url") VALUES (?)[0m [["url", "MyString"]]
|
200
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
201
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
202
|
+
[1m[35m (0.0ms)[0m begin transaction
|
203
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
204
|
+
[1m[35m (0.0ms)[0m begin transaction
|
205
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
206
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("url") VALUES (?) [["url", "MyString"]]
|
207
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
208
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "banner_lite_banners"
|
209
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
210
|
+
[1m[35m (0.0ms)[0m begin transaction
|
211
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
212
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("url") VALUES (?) [["url", "MyString"]]
|
213
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
214
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
215
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
216
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
217
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "banner_lite_banners" ("url") VALUES (?)[0m [["url", "MyString"]]
|
218
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
219
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
220
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
221
|
+
[1m[35m (0.1ms)[0m begin transaction
|
222
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
223
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "banner_lite_banners" ("url") VALUES (?) [["url", "MyString"]]
|
224
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
225
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
226
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
227
|
+
[1m[35m (0.1ms)[0m begin transaction
|
228
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
229
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "banner_lite_banners" ("url") VALUES (?) [["url", "MyString"]]
|
230
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
231
|
+
[1m[35m (1.4ms)[0m rollback transaction
|
232
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
233
|
+
[1m[35m (0.1ms)[0m begin transaction
|
234
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
235
|
+
[1m[35mSQL (1.0ms)[0m INSERT INTO "banner_lite_banners" ("url") VALUES (?) [["url", "MyString"]]
|
236
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
237
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
238
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
239
|
+
[1m[35m (0.1ms)[0m begin transaction
|
240
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
241
|
+
[1m[35mSQL (1.1ms)[0m INSERT INTO "banner_lite_banners" ("url") VALUES (?) [["url", "MyString"]]
|
242
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
243
|
+
[1m[35m (1.1ms)[0m rollback transaction
|
244
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
245
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
246
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "banner_lite_banners" ("url") VALUES (?)[0m [["url", "MyString"]]
|
247
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
248
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
249
|
+
[1m[35m (0.0ms)[0m begin transaction
|
250
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
251
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("url") VALUES (?) [["url", "MyString"]]
|
252
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
253
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
254
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
255
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
256
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "banner_lite_banners" ("url") VALUES (?)[0m [["url", "MyString"]]
|
257
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
258
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
259
|
+
[1m[35m (0.0ms)[0m begin transaction
|
260
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
261
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("url") VALUES (?) [["url", "MyString"]]
|
262
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
263
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
264
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
265
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
266
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
267
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
268
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "banner_lite_banners" ("url") VALUES (?)[0m [["url", "MyString"]]
|
269
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
270
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
271
|
+
[1m[35m (0.0ms)[0m begin transaction
|
272
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
273
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("url") VALUES (?) [["url", "MyString"]]
|
274
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
275
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
276
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
277
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
278
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
279
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
280
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
281
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "banner_lite_banners"
|
282
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
283
|
+
[1m[35m (0.0ms)[0m begin transaction
|
284
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
285
|
+
[1m[35m (0.1ms)[0m begin transaction
|
286
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
287
|
+
[1m[35m (0.0ms)[0m begin transaction
|
288
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
289
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("url") VALUES (?) [["url", "MyString"]]
|
290
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
291
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
292
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
293
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
294
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "banner_lite_banners" ("url") VALUES (?)[0m [["url", "MyString"]]
|
295
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
296
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "banner_lite_banners"[0m
|
297
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
298
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
299
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
300
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "banner_lite_banners" ("url") VALUES (?)[0m [["url", "MyString"]]
|
301
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
302
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
303
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
304
|
+
[1m[35m (0.1ms)[0m begin transaction
|
305
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
306
|
+
[1m[35m (0.1ms)[0m begin transaction
|
307
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
308
|
+
[1m[35m (0.0ms)[0m begin transaction
|
309
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
310
|
+
[1m[35m (0.0ms)[0m begin transaction
|
311
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "banner_lite_banners"[0m
|
312
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
313
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
314
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
315
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
316
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
317
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "banner_lite_banners" ("url") VALUES (?)[0m [["url", "MyString"]]
|
318
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
319
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
320
|
+
[1m[35m (0.1ms)[0m begin transaction
|
321
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
322
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("url") VALUES (?) [["url", "MyString"]]
|
323
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
324
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
325
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
326
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
327
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "banner_lite_banners" ("url") VALUES (?)[0m [["url", "MyString"]]
|
328
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
329
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
330
|
+
[1m[35m (0.0ms)[0m begin transaction
|
331
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
332
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("url") VALUES (?) [["url", "MyString"]]
|
333
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
334
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
335
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
336
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
337
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "banner_lite_banners" ("url") VALUES (?)[0m [["url", "MyString"]]
|
338
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
339
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
340
|
+
[1m[35m (0.1ms)[0m begin transaction
|
341
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
342
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("url") VALUES (?) [["url", "MyString"]]
|
343
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
344
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
345
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
346
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
347
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "banner_lite_banners" ("url") VALUES (?)[0m [["url", "MyString"]]
|
348
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
350
|
+
[1m[35m (0.0ms)[0m begin transaction
|
351
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
352
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("url") VALUES (?) [["url", "MyString"]]
|
353
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
354
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
355
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
356
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
357
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "banner_lite_banners" ("url") VALUES (?)[0m [["url", "MyString"]]
|
358
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
359
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
360
|
+
[1m[35m (0.0ms)[0m begin transaction
|
361
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
362
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("url") VALUES (?) [["url", "MyString"]]
|
363
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
364
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "banner_lite_banners"
|
365
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
366
|
+
[1m[35m (0.0ms)[0m begin transaction
|
367
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
368
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
369
|
+
[1m[35m (0.1ms)[0m begin transaction
|
370
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
371
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "banner_lite_banners" ("url") VALUES (?) [["url", "MyString"]]
|
372
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
373
|
+
Processing by BannerLite::BannersController#index as HTML
|
374
|
+
Rendered /Users/irohiroki/github/krayinc/seichi/banner_lite/app/views/banner_lite/banners/index.html.erb within layouts/banner_lite/application (0.3ms)
|
375
|
+
Completed 200 OK in 36ms (Views: 35.6ms | ActiveRecord: 0.0ms)
|
376
|
+
[1m[35mBannerLite::Banner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners"
|
377
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
378
|
+
[1m[35m (0.0ms)[0m begin transaction
|
379
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
380
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("url") VALUES (?) [["url", "MyString"]]
|
381
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
382
|
+
Processing by BannerLite::BannersController#show as HTML
|
383
|
+
Parameters: {"id"=>"1"}
|
384
|
+
[1m[35mBannerLite::Banner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
385
|
+
Completed 200 OK in 3ms (Views: 1.8ms | ActiveRecord: 0.1ms)
|
386
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
387
|
+
[1m[35m (0.0ms)[0m begin transaction
|
388
|
+
Processing by BannerLite::BannersController#new as HTML
|
389
|
+
Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
390
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
391
|
+
[1m[35m (0.0ms)[0m begin transaction
|
392
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
393
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("url") VALUES (?) [["url", "MyString"]]
|
394
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
395
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "banner_lite_banners"
|
396
|
+
Processing by BannerLite::BannersController#destroy as HTML
|
397
|
+
Parameters: {"id"=>"1"}
|
398
|
+
[1m[36mBannerLite::Banner Load (0.0ms)[0m [1mSELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? LIMIT 1[0m [["id", 1]]
|
399
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
400
|
+
[1m[36mSQL (1.0ms)[0m [1mDELETE FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ?[0m [["id", 1]]
|
401
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
402
|
+
Redirected to http://test.host/banner_lite/banners
|
403
|
+
Completed 302 Found in 6ms (ActiveRecord: 1.1ms)
|
404
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "banner_lite_banners"[0m
|
405
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
406
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
407
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
408
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "banner_lite_banners" ("url") VALUES (?)[0m [["url", "MyString"]]
|
409
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
410
|
+
Processing by BannerLite::BannersController#destroy as HTML
|
411
|
+
Parameters: {"id"=>"1"}
|
412
|
+
[1m[36mBannerLite::Banner Load (0.0ms)[0m [1mSELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? LIMIT 1[0m [["id", 1]]
|
413
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
414
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ?[0m [["id", 1]]
|
415
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
416
|
+
Redirected to http://test.host/banner_lite/banners
|
417
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.3ms)
|
418
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
419
|
+
[1m[35m (0.0ms)[0m begin transaction
|
420
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
421
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("url") VALUES (?) [["url", "MyString"]]
|
422
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
423
|
+
Processing by BannerLite::BannersController#update as HTML
|
424
|
+
Parameters: {"banner"=>{"url"=>"MyString"}, "id"=>"1"}
|
425
|
+
[1m[35mBannerLite::Banner Load (0.0ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
426
|
+
Completed 200 OK in 3ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
427
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
428
|
+
[1m[35m (0.1ms)[0m begin transaction
|
429
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
430
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("url") VALUES (?) [["url", "MyString"]]
|
431
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
432
|
+
Processing by BannerLite::BannersController#update as HTML
|
433
|
+
Parameters: {"banner"=>{"url"=>"MyString"}, "id"=>"1"}
|
434
|
+
[1m[35mBannerLite::Banner Load (0.0ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
435
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
436
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
437
|
+
Redirected to http://test.host/banner_lite/banners/1
|
438
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.1ms)
|
439
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
440
|
+
[1m[35m (0.0ms)[0m begin transaction
|
441
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
442
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("url") VALUES (?) [["url", "MyString"]]
|
443
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
444
|
+
Processing by BannerLite::BannersController#update as HTML
|
445
|
+
Parameters: {"banner"=>{"url"=>"MyString"}, "id"=>"1"}
|
446
|
+
[1m[35mBannerLite::Banner Load (0.0ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
447
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
448
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
449
|
+
Redirected to http://test.host/banner_lite/banners/1
|
450
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.1ms)
|
451
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
452
|
+
[1m[35m (0.1ms)[0m begin transaction
|
453
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
454
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "banner_lite_banners" ("url") VALUES (?) [["url", "MyString"]]
|
455
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
456
|
+
Processing by BannerLite::BannersController#update as HTML
|
457
|
+
Parameters: {"banner"=>{"url"=>"invalid value"}, "id"=>"1"}
|
458
|
+
[1m[35mBannerLite::Banner Load (0.0ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
459
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
460
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
461
|
+
Completed 200 OK in 2ms (Views: 0.6ms | ActiveRecord: 0.1ms)
|
462
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
463
|
+
[1m[35m (0.1ms)[0m begin transaction
|
464
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
465
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "banner_lite_banners" ("url") VALUES (?) [["url", "MyString"]]
|
466
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
467
|
+
Processing by BannerLite::BannersController#update as HTML
|
468
|
+
Parameters: {"banner"=>{"url"=>"invalid value"}, "id"=>"1"}
|
469
|
+
[1m[35mBannerLite::Banner Load (0.0ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
470
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
471
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
472
|
+
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.1ms)
|
473
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
474
|
+
[1m[35m (0.1ms)[0m begin transaction
|
475
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "banner_lite_banners"[0m
|
476
|
+
Processing by BannerLite::BannersController#create as HTML
|
477
|
+
Parameters: {"banner"=>{"url"=>"MyString"}}
|
478
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
479
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "banner_lite_banners" ("url") VALUES (?)[0m [["url", "MyString"]]
|
480
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
481
|
+
Redirected to http://test.host/banner_lite/banners/1
|
482
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.3ms)
|
483
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "banner_lite_banners"[0m
|
484
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
485
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
486
|
+
Processing by BannerLite::BannersController#create as HTML
|
487
|
+
Parameters: {"banner"=>{"url"=>"MyString"}}
|
488
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
489
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "banner_lite_banners" ("url") VALUES (?)[0m [["url", "MyString"]]
|
490
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
491
|
+
Redirected to http://test.host/banner_lite/banners/1
|
492
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.8ms)
|
493
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
494
|
+
[1m[35m (0.1ms)[0m begin transaction
|
495
|
+
Processing by BannerLite::BannersController#create as HTML
|
496
|
+
Parameters: {"banner"=>{"url"=>"MyString"}}
|
497
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
498
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "banner_lite_banners" ("url") VALUES (?) [["url", "MyString"]]
|
499
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
500
|
+
Redirected to http://test.host/banner_lite/banners/1
|
501
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.3ms)
|
502
|
+
[1m[35mBannerLite::Banner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" ORDER BY "banner_lite_banners"."id" DESC LIMIT 1
|
503
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
504
|
+
[1m[35m (0.1ms)[0m begin transaction
|
505
|
+
Processing by BannerLite::BannersController#create as HTML
|
506
|
+
Parameters: {"banner"=>{"url"=>"invalid value"}}
|
507
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
508
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
509
|
+
[1m[35m (0.0ms)[0m begin transaction
|
510
|
+
Processing by BannerLite::BannersController#create as HTML
|
511
|
+
Parameters: {"banner"=>{"url"=>"invalid value"}}
|
512
|
+
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
513
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
514
|
+
[1m[35m (0.0ms)[0m begin transaction
|
515
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
516
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("url") VALUES (?) [["url", "MyString"]]
|
517
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
518
|
+
Processing by BannerLite::BannersController#edit as HTML
|
519
|
+
Parameters: {"id"=>"1"}
|
520
|
+
[1m[35mBannerLite::Banner Load (0.0ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
521
|
+
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
522
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
523
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
524
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
525
|
+
[1m[35m (0.1ms)[0m begin transaction
|
526
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
527
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
528
|
+
[1m[35m (0.1ms)[0m begin transaction
|
529
|
+
Started GET "/banners/new" for 127.0.0.1 at 2014-02-25 15:44:50 +0900
|
530
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
531
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
532
|
+
[1m[35m (0.1ms)[0m begin transaction
|
533
|
+
Started GET "/banner_lite/banners/new" for 127.0.0.1 at 2014-02-25 15:45:37 +0900
|
534
|
+
Processing by BannerLite::BannersController#new as HTML
|
535
|
+
Rendered /Users/irohiroki/github/krayinc/seichi/banner_lite/app/views/banner_lite/banners/_form.html.erb (32.7ms)
|
536
|
+
Rendered /Users/irohiroki/github/krayinc/seichi/banner_lite/app/views/banner_lite/banners/new.html.erb within layouts/banner_lite/application (39.3ms)
|
537
|
+
Completed 500 Internal Server Error in 65ms
|
538
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
539
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
540
|
+
[1m[35m (0.1ms)[0m begin transaction
|
541
|
+
Started GET "/banner_lite/banners/new" for 127.0.0.1 at 2014-02-25 15:59:07 +0900
|
542
|
+
Processing by BannerLite::BannersController#new as HTML
|
543
|
+
Rendered /Users/irohiroki/github/krayinc/seichi/banner_lite/app/views/banner_lite/banners/_form.html.erb (27.8ms)
|
544
|
+
Rendered /Users/irohiroki/github/krayinc/seichi/banner_lite/app/views/banner_lite/banners/new.html.erb within layouts/banner_lite/application (32.8ms)
|
545
|
+
Completed 200 OK in 70ms (Views: 67.6ms | ActiveRecord: 0.3ms)
|
546
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
547
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
548
|
+
[1m[35m (0.1ms)[0m begin transaction
|
549
|
+
Started GET "/banner_lite/banners/new" for 127.0.0.1 at 2014-02-25 16:00:30 +0900
|
550
|
+
Processing by BannerLite::BannersController#new as HTML
|
551
|
+
Rendered /Users/irohiroki/github/krayinc/seichi/banner_lite/app/views/banner_lite/banners/_form.html.erb (20.4ms)
|
552
|
+
Rendered /Users/irohiroki/github/krayinc/seichi/banner_lite/app/views/banner_lite/banners/new.html.erb within layouts/banner_lite/application (23.8ms)
|
553
|
+
Completed 200 OK in 38ms (Views: 36.6ms | ActiveRecord: 0.2ms)
|
554
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
555
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
556
|
+
[1m[35m (0.1ms)[0m begin transaction
|
557
|
+
Started GET "/banner_lite/banners/new" for 127.0.0.1 at 2014-02-25 16:13:34 +0900
|
558
|
+
Processing by BannerLite::BannersController#new as HTML
|
559
|
+
Rendered /Users/irohiroki/github/krayinc/seichi/banner_lite/app/views/banner_lite/banners/_form.html.erb (29.6ms)
|
560
|
+
Rendered /Users/irohiroki/github/krayinc/seichi/banner_lite/app/views/banner_lite/banners/new.html.erb within layouts/banner_lite/application (34.8ms)
|
561
|
+
Completed 200 OK in 64ms (Views: 60.3ms | ActiveRecord: 0.4ms)
|
562
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
563
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
564
|
+
[1m[35m (0.1ms)[0m begin transaction
|
565
|
+
Started GET "/banner_lite/banners/new" for 127.0.0.1 at 2014-02-25 16:14:39 +0900
|
566
|
+
Processing by BannerLite::BannersController#new as HTML
|
567
|
+
Rendered /Users/irohiroki/github/krayinc/seichi/banner_lite/app/views/banner_lite/banners/_form.html.erb (23.6ms)
|
568
|
+
Rendered /Users/irohiroki/github/krayinc/seichi/banner_lite/app/views/banner_lite/banners/new.html.erb within layouts/banner_lite/application (27.0ms)
|
569
|
+
Completed 200 OK in 43ms (Views: 40.9ms | ActiveRecord: 0.2ms)
|
570
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
571
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
572
|
+
[1m[35m (0.1ms)[0m begin transaction
|
573
|
+
Started GET "/banner_lite/banners/new" for 127.0.0.1 at 2014-02-25 16:16:08 +0900
|
574
|
+
Processing by BannerLite::BannersController#new as HTML
|
575
|
+
Rendered /Users/irohiroki/github/krayinc/seichi/banner_lite/app/views/banner_lite/banners/_form.html.erb (21.1ms)
|
576
|
+
Rendered /Users/irohiroki/github/krayinc/seichi/banner_lite/app/views/banner_lite/banners/new.html.erb within layouts/banner_lite/application (24.4ms)
|
577
|
+
Completed 200 OK in 40ms (Views: 38.3ms | ActiveRecord: 0.2ms)
|
578
|
+
Started POST "/banner_lite/banners" for 127.0.0.1 at 2014-02-25 16:16:08 +0900
|
579
|
+
Processing by BannerLite::BannersController#create as HTML
|
580
|
+
Parameters: {"utf8"=>"✓", "banner"=>{"url"=>"http://rubyonrails.org", "file"=>#<ActionDispatch::Http::UploadedFile:0x007fa523068108 @tempfile=#<Tempfile:/var/folders/ls/9bh0b9sj2tx8hdcb9zqkfz4r0000gn/T/RackMultipart20140225-1615-1p2q5uf>, @original_filename="image.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"banner[file]\"; filename=\"image.png\"\r\nContent-Type: image/png\r\nContent-Length: 901\r\n">, "active_from(1i)"=>"2014", "active_from(2i)"=>"2", "active_from(3i)"=>"25", "active_from(4i)"=>"07", "active_from(5i)"=>"16", "active_until(1i)"=>"2014", "active_until(2i)"=>"2", "active_until(3i)"=>"25", "active_until(4i)"=>"07", "active_until(5i)"=>"16"}, "commit"=>"Create Banner"}
|
581
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
582
|
+
[1m[35mSQL (1.0ms)[0m INSERT INTO "banner_lite_banners" ("active_from", "active_until", "file_name", "url") VALUES (?, ?, ?, ?) [["active_from", "2014-02-25 07:16:00.000000"], ["active_until", "2014-02-25 07:16:00.000000"], ["file_name", "image.png"], ["url", "http://rubyonrails.org"]]
|
583
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
584
|
+
Redirected to http://www.example.com/banner_lite/banners/1
|
585
|
+
Completed 302 Found in 23ms (ActiveRecord: 1.1ms)
|
586
|
+
Started GET "/banner_lite/banners/1" for 127.0.0.1 at 2014-02-25 16:16:08 +0900
|
587
|
+
Processing by BannerLite::BannersController#show as HTML
|
588
|
+
Parameters: {"id"=>"1"}
|
589
|
+
[1m[35mBannerLite::Banner Load (0.2ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
590
|
+
Rendered /Users/irohiroki/github/krayinc/seichi/banner_lite/app/views/banner_lite/banners/show.html.erb within layouts/banner_lite/application (2.3ms)
|
591
|
+
Completed 200 OK in 7ms (Views: 4.9ms | ActiveRecord: 0.2ms)
|
592
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
593
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
594
|
+
[1m[35m (0.1ms)[0m begin transaction
|
595
|
+
Started GET "/banner_lite/banners/new" for 127.0.0.1 at 2014-02-25 16:17:54 +0900
|
596
|
+
Processing by BannerLite::BannersController#new as HTML
|
597
|
+
Rendered /Users/irohiroki/github/krayinc/seichi/banner_lite/app/views/banner_lite/banners/_form.html.erb (23.4ms)
|
598
|
+
Rendered /Users/irohiroki/github/krayinc/seichi/banner_lite/app/views/banner_lite/banners/new.html.erb within layouts/banner_lite/application (26.8ms)
|
599
|
+
Completed 200 OK in 44ms (Views: 41.1ms | ActiveRecord: 0.4ms)
|
600
|
+
Started POST "/banner_lite/banners" for 127.0.0.1 at 2014-02-25 16:17:54 +0900
|
601
|
+
Processing by BannerLite::BannersController#create as HTML
|
602
|
+
Parameters: {"utf8"=>"✓", "banner"=>{"url"=>"http://rubyonrails.org", "file"=>#<ActionDispatch::Http::UploadedFile:0x007fc21d1bb980 @tempfile=#<Tempfile:/var/folders/ls/9bh0b9sj2tx8hdcb9zqkfz4r0000gn/T/RackMultipart20140225-1734-waah1w>, @original_filename="image.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"banner[file]\"; filename=\"image.png\"\r\nContent-Type: image/png\r\nContent-Length: 901\r\n">, "active_from(1i)"=>"2014", "active_from(2i)"=>"2", "active_from(3i)"=>"25", "active_from(4i)"=>"07", "active_from(5i)"=>"17", "active_until(1i)"=>"2014", "active_until(2i)"=>"2", "active_until(3i)"=>"25", "active_until(4i)"=>"07", "active_until(5i)"=>"17"}, "commit"=>"Create Banner"}
|
603
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
604
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "banner_lite_banners" ("active_from", "active_until", "file_name", "url") VALUES (?, ?, ?, ?) [["active_from", "2014-02-25 07:17:00.000000"], ["active_until", "2014-02-25 07:17:00.000000"], ["file_name", "image.png"], ["url", "http://rubyonrails.org"]]
|
605
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
606
|
+
Completed 500 Internal Server Error in 5ms
|
607
|
+
[1m[35m (1.9ms)[0m rollback transaction
|
608
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
609
|
+
[1m[35m (0.1ms)[0m begin transaction
|
610
|
+
Started GET "/banner_lite/banners/new" for 127.0.0.1 at 2014-02-25 16:28:39 +0900
|
611
|
+
Processing by BannerLite::BannersController#new as HTML
|
612
|
+
Rendered /Users/irohiroki/github/krayinc/seichi/banner_lite/app/views/banner_lite/banners/_form.html.erb (24.5ms)
|
613
|
+
Rendered /Users/irohiroki/github/krayinc/seichi/banner_lite/app/views/banner_lite/banners/new.html.erb within layouts/banner_lite/application (27.7ms)
|
614
|
+
Completed 200 OK in 43ms (Views: 40.6ms | ActiveRecord: 0.2ms)
|
615
|
+
Started POST "/banner_lite/banners" for 127.0.0.1 at 2014-02-25 16:28:39 +0900
|
616
|
+
Processing by BannerLite::BannersController#create as HTML
|
617
|
+
Parameters: {"utf8"=>"✓", "banner"=>{"url"=>"http://rubyonrails.org", "file"=>#<ActionDispatch::Http::UploadedFile:0x007faab3f67dd0 @tempfile=#<Tempfile:/var/folders/ls/9bh0b9sj2tx8hdcb9zqkfz4r0000gn/T/RackMultipart20140225-2355-1hwidlj>, @original_filename="image.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"banner[file]\"; filename=\"image.png\"\r\nContent-Type: image/png\r\nContent-Length: 901\r\n">, "active_from(1i)"=>"2014", "active_from(2i)"=>"2", "active_from(3i)"=>"25", "active_from(4i)"=>"07", "active_from(5i)"=>"28", "active_until(1i)"=>"2014", "active_until(2i)"=>"2", "active_until(3i)"=>"25", "active_until(4i)"=>"07", "active_until(5i)"=>"28"}, "commit"=>"Create Banner"}
|
618
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
619
|
+
[1m[35mSQL (1.0ms)[0m INSERT INTO "banner_lite_banners" ("active_from", "active_until", "file_name", "url") VALUES (?, ?, ?, ?) [["active_from", "2014-02-25 07:28:00.000000"], ["active_until", "2014-02-25 07:28:00.000000"], ["file_name", "image.png"], ["url", "http://rubyonrails.org"]]
|
620
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
621
|
+
Redirected to http://www.example.com/banner_lite/banners/1
|
622
|
+
Completed 302 Found in 20ms (ActiveRecord: 1.1ms)
|
623
|
+
Started GET "/banner_lite/banners/1" for 127.0.0.1 at 2014-02-25 16:28:39 +0900
|
624
|
+
Processing by BannerLite::BannersController#show as HTML
|
625
|
+
Parameters: {"id"=>"1"}
|
626
|
+
[1m[35mBannerLite::Banner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
627
|
+
Rendered /Users/irohiroki/github/krayinc/seichi/banner_lite/app/views/banner_lite/banners/show.html.erb within layouts/banner_lite/application (1.6ms)
|
628
|
+
Completed 200 OK in 5ms (Views: 3.5ms | ActiveRecord: 0.1ms)
|
629
|
+
Started GET "/banner_lite/banners" for 127.0.0.1 at 2014-02-25 16:28:39 +0900
|
630
|
+
Processing by BannerLite::BannersController#index as HTML
|
631
|
+
[1m[36mBannerLite::Banner Load (0.1ms)[0m [1mSELECT "banner_lite_banners".* FROM "banner_lite_banners"[0m
|
632
|
+
Rendered /Users/irohiroki/github/krayinc/seichi/banner_lite/app/views/banner_lite/banners/index.html.erb within layouts/banner_lite/application (1.8ms)
|
633
|
+
Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.1ms)
|
634
|
+
Started DELETE "/banner_lite/banners/1" for 127.0.0.1 at 2014-02-25 16:28:39 +0900
|
635
|
+
Processing by BannerLite::BannersController#destroy as HTML
|
636
|
+
Parameters: {"id"=>"1"}
|
637
|
+
[1m[35mBannerLite::Banner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
638
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
639
|
+
[1m[35mSQL (1.1ms)[0m DELETE FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? [["id", 1]]
|
640
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
641
|
+
Redirected to http://www.example.com/banner_lite/banners
|
642
|
+
Completed 302 Found in 3ms (ActiveRecord: 1.2ms)
|
643
|
+
Started GET "/banner_lite/banners" for 127.0.0.1 at 2014-02-25 16:28:39 +0900
|
644
|
+
Processing by BannerLite::BannersController#index as HTML
|
645
|
+
[1m[35mBannerLite::Banner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners"
|
646
|
+
Rendered /Users/irohiroki/github/krayinc/seichi/banner_lite/app/views/banner_lite/banners/index.html.erb within layouts/banner_lite/application (0.5ms)
|
647
|
+
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.1ms)
|
648
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "banner_lite_banners"[0m
|
649
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
650
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
651
|
+
[1m[35m (0.1ms)[0m begin transaction
|
652
|
+
Started GET "/banner_lite/banners/new" for 127.0.0.1 at 2014-02-25 16:28:58 +0900
|
653
|
+
Processing by BannerLite::BannersController#new as HTML
|
654
|
+
Rendered /Users/irohiroki/github/krayinc/seichi/banner_lite/app/views/banner_lite/banners/_form.html.erb (26.3ms)
|
655
|
+
Rendered /Users/irohiroki/github/krayinc/seichi/banner_lite/app/views/banner_lite/banners/new.html.erb within layouts/banner_lite/application (31.4ms)
|
656
|
+
Completed 200 OK in 51ms (Views: 48.3ms | ActiveRecord: 0.3ms)
|
657
|
+
Started POST "/banner_lite/banners" for 127.0.0.1 at 2014-02-25 16:28:58 +0900
|
658
|
+
Processing by BannerLite::BannersController#create as HTML
|
659
|
+
Parameters: {"utf8"=>"✓", "banner"=>{"url"=>"http://rubyonrails.org", "file"=>#<ActionDispatch::Http::UploadedFile:0x007f9993a732d8 @tempfile=#<Tempfile:/var/folders/ls/9bh0b9sj2tx8hdcb9zqkfz4r0000gn/T/RackMultipart20140225-2437-hvirlx>, @original_filename="image.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"banner[file]\"; filename=\"image.png\"\r\nContent-Type: image/png\r\nContent-Length: 901\r\n">, "active_from(1i)"=>"2014", "active_from(2i)"=>"2", "active_from(3i)"=>"25", "active_from(4i)"=>"07", "active_from(5i)"=>"28", "active_until(1i)"=>"2014", "active_until(2i)"=>"2", "active_until(3i)"=>"25", "active_until(4i)"=>"07", "active_until(5i)"=>"28"}, "commit"=>"Create Banner"}
|
660
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
661
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "banner_lite_banners" ("active_from", "active_until", "file_name", "url") VALUES (?, ?, ?, ?) [["active_from", "2014-02-25 07:28:00.000000"], ["active_until", "2014-02-25 07:28:00.000000"], ["file_name", "image.png"], ["url", "http://rubyonrails.org"]]
|
662
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
663
|
+
Redirected to http://www.example.com/banner_lite/banners/1
|
664
|
+
Completed 302 Found in 20ms (ActiveRecord: 0.6ms)
|
665
|
+
Started GET "/banner_lite/banners/1" for 127.0.0.1 at 2014-02-25 16:28:58 +0900
|
666
|
+
Processing by BannerLite::BannersController#show as HTML
|
667
|
+
Parameters: {"id"=>"1"}
|
668
|
+
[1m[35mBannerLite::Banner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
669
|
+
Rendered /Users/irohiroki/github/krayinc/seichi/banner_lite/app/views/banner_lite/banners/show.html.erb within layouts/banner_lite/application (1.5ms)
|
670
|
+
Completed 200 OK in 6ms (Views: 2.9ms | ActiveRecord: 0.1ms)
|
671
|
+
[1m[36mBannerLite::Banner Load (0.1ms)[0m [1mSELECT "banner_lite_banners".* FROM "banner_lite_banners" ORDER BY "banner_lite_banners"."id" DESC LIMIT 1[0m
|
672
|
+
Started GET "/banner_lite/banners" for 127.0.0.1 at 2014-02-25 16:28:58 +0900
|
673
|
+
Processing by BannerLite::BannersController#index as HTML
|
674
|
+
[1m[35mBannerLite::Banner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners"
|
675
|
+
Rendered /Users/irohiroki/github/krayinc/seichi/banner_lite/app/views/banner_lite/banners/index.html.erb within layouts/banner_lite/application (1.9ms)
|
676
|
+
Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.1ms)
|
677
|
+
Started DELETE "/banner_lite/banners/1" for 127.0.0.1 at 2014-02-25 16:28:58 +0900
|
678
|
+
Processing by BannerLite::BannersController#destroy as HTML
|
679
|
+
Parameters: {"id"=>"1"}
|
680
|
+
[1m[36mBannerLite::Banner Load (0.1ms)[0m [1mSELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? LIMIT 1[0m [["id", 1]]
|
681
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
682
|
+
[1m[36mSQL (1.8ms)[0m [1mDELETE FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ?[0m [["id", 1]]
|
683
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
684
|
+
Redirected to http://www.example.com/banner_lite/banners
|
685
|
+
Completed 302 Found in 5ms (ActiveRecord: 2.0ms)
|
686
|
+
Started GET "/banner_lite/banners" for 127.0.0.1 at 2014-02-25 16:28:58 +0900
|
687
|
+
Processing by BannerLite::BannersController#index as HTML
|
688
|
+
[1m[36mBannerLite::Banner Load (0.1ms)[0m [1mSELECT "banner_lite_banners".* FROM "banner_lite_banners"[0m
|
689
|
+
Rendered /Users/irohiroki/github/krayinc/seichi/banner_lite/app/views/banner_lite/banners/index.html.erb within layouts/banner_lite/application (0.5ms)
|
690
|
+
Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.1ms)
|
691
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
692
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
693
|
+
[1m[35m (0.1ms)[0m begin transaction
|
694
|
+
Started GET "/banner_lite/banners/new" for 127.0.0.1 at 2014-02-25 16:30:39 +0900
|
695
|
+
Processing by BannerLite::BannersController#new as HTML
|
696
|
+
Rendered /Users/irohiroki/github/krayinc/seichi/banner_lite/app/views/banner_lite/banners/_form.html.erb (20.9ms)
|
697
|
+
Rendered /Users/irohiroki/github/krayinc/seichi/banner_lite/app/views/banner_lite/banners/new.html.erb within layouts/banner_lite/application (24.1ms)
|
698
|
+
Completed 200 OK in 39ms (Views: 37.0ms | ActiveRecord: 0.2ms)
|
699
|
+
Started POST "/banner_lite/banners" for 127.0.0.1 at 2014-02-25 16:30:39 +0900
|
700
|
+
Processing by BannerLite::BannersController#create as HTML
|
701
|
+
Parameters: {"utf8"=>"✓", "banner"=>{"url"=>"http://rubyonrails.org", "file"=>#<ActionDispatch::Http::UploadedFile:0x007fe28cb3f698 @tempfile=#<Tempfile:/var/folders/ls/9bh0b9sj2tx8hdcb9zqkfz4r0000gn/T/RackMultipart20140225-2971-7tfbis>, @original_filename="image.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"banner[file]\"; filename=\"image.png\"\r\nContent-Type: image/png\r\nContent-Length: 901\r\n">, "active_from(1i)"=>"2014", "active_from(2i)"=>"2", "active_from(3i)"=>"25", "active_from(4i)"=>"07", "active_from(5i)"=>"30", "active_until(1i)"=>"2014", "active_until(2i)"=>"2", "active_until(3i)"=>"25", "active_until(4i)"=>"07", "active_until(5i)"=>"30"}, "commit"=>"Create Banner"}
|
702
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
703
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "banner_lite_banners" ("active_from", "active_until", "file_name", "url") VALUES (?, ?, ?, ?) [["active_from", "2014-02-25 07:30:00.000000"], ["active_until", "2014-02-25 07:30:00.000000"], ["file_name", "image.png"], ["url", "http://rubyonrails.org"]]
|
704
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
705
|
+
Redirected to http://www.example.com/banner_lite/banners/1
|
706
|
+
Completed 302 Found in 21ms (ActiveRecord: 0.5ms)
|
707
|
+
Started GET "/banner_lite/banners/1" for 127.0.0.1 at 2014-02-25 16:30:39 +0900
|
708
|
+
Processing by BannerLite::BannersController#show as HTML
|
709
|
+
Parameters: {"id"=>"1"}
|
710
|
+
[1m[35mBannerLite::Banner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
711
|
+
Rendered /Users/irohiroki/github/krayinc/seichi/banner_lite/app/views/banner_lite/banners/show.html.erb within layouts/banner_lite/application (1.6ms)
|
712
|
+
Completed 200 OK in 4ms (Views: 2.9ms | ActiveRecord: 0.1ms)
|
713
|
+
[1m[36mBannerLite::Banner Load (0.1ms)[0m [1mSELECT "banner_lite_banners".* FROM "banner_lite_banners" ORDER BY "banner_lite_banners"."id" DESC LIMIT 1[0m
|
714
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
715
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
716
|
+
[1m[35m (0.1ms)[0m begin transaction
|
717
|
+
Started GET "/banner_lite/banners/new" for 127.0.0.1 at 2014-02-25 16:31:17 +0900
|
718
|
+
Processing by BannerLite::BannersController#new as HTML
|
719
|
+
Rendered /Users/irohiroki/github/krayinc/seichi/banner_lite/app/views/banner_lite/banners/_form.html.erb (26.8ms)
|
720
|
+
Rendered /Users/irohiroki/github/krayinc/seichi/banner_lite/app/views/banner_lite/banners/new.html.erb within layouts/banner_lite/application (30.0ms)
|
721
|
+
Completed 200 OK in 46ms (Views: 44.5ms | ActiveRecord: 0.2ms)
|
722
|
+
Started POST "/banner_lite/banners" for 127.0.0.1 at 2014-02-25 16:31:17 +0900
|
723
|
+
Processing by BannerLite::BannersController#create as HTML
|
724
|
+
Parameters: {"utf8"=>"✓", "banner"=>{"url"=>"http://rubyonrails.org", "file"=>#<ActionDispatch::Http::UploadedFile:0x007fbc35902ce0 @tempfile=#<Tempfile:/var/folders/ls/9bh0b9sj2tx8hdcb9zqkfz4r0000gn/T/RackMultipart20140225-3023-721lsu>, @original_filename="image.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"banner[file]\"; filename=\"image.png\"\r\nContent-Type: image/png\r\nContent-Length: 901\r\n">, "active_from(1i)"=>"2014", "active_from(2i)"=>"2", "active_from(3i)"=>"25", "active_from(4i)"=>"07", "active_from(5i)"=>"31", "active_until(1i)"=>"2014", "active_until(2i)"=>"2", "active_until(3i)"=>"25", "active_until(4i)"=>"07", "active_until(5i)"=>"31"}, "commit"=>"Create Banner"}
|
725
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
726
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "banner_lite_banners" ("active_from", "active_until", "file_name", "url") VALUES (?, ?, ?, ?) [["active_from", "2014-02-25 07:31:00.000000"], ["active_until", "2014-02-25 07:31:00.000000"], ["file_name", "image.png"], ["url", "http://rubyonrails.org"]]
|
727
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
728
|
+
Completed 500 Internal Server Error in 4ms
|
729
|
+
[1m[35m (1.5ms)[0m rollback transaction
|
730
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
731
|
+
[1m[35m (0.1ms)[0m begin transaction
|
732
|
+
Started GET "/banner_lite/banners/new" for 127.0.0.1 at 2014-02-25 16:31:30 +0900
|
733
|
+
Processing by BannerLite::BannersController#new as HTML
|
734
|
+
Rendered /Users/irohiroki/github/krayinc/seichi/banner_lite/app/views/banner_lite/banners/_form.html.erb (20.3ms)
|
735
|
+
Rendered /Users/irohiroki/github/krayinc/seichi/banner_lite/app/views/banner_lite/banners/new.html.erb within layouts/banner_lite/application (23.4ms)
|
736
|
+
Completed 200 OK in 38ms (Views: 36.3ms | ActiveRecord: 0.2ms)
|
737
|
+
Started POST "/banner_lite/banners" for 127.0.0.1 at 2014-02-25 16:31:31 +0900
|
738
|
+
Processing by BannerLite::BannersController#create as HTML
|
739
|
+
Parameters: {"utf8"=>"✓", "banner"=>{"url"=>"http://rubyonrails.org", "file"=>#<ActionDispatch::Http::UploadedFile:0x007f921b1a2d68 @tempfile=#<Tempfile:/var/folders/ls/9bh0b9sj2tx8hdcb9zqkfz4r0000gn/T/RackMultipart20140225-3049-hl3anv>, @original_filename="image.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"banner[file]\"; filename=\"image.png\"\r\nContent-Type: image/png\r\nContent-Length: 901\r\n">, "active_from(1i)"=>"2014", "active_from(2i)"=>"2", "active_from(3i)"=>"25", "active_from(4i)"=>"07", "active_from(5i)"=>"31", "active_until(1i)"=>"2014", "active_until(2i)"=>"2", "active_until(3i)"=>"25", "active_until(4i)"=>"07", "active_until(5i)"=>"31"}, "commit"=>"Create Banner"}
|
740
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
741
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "banner_lite_banners" ("active_from", "active_until", "file_name", "url") VALUES (?, ?, ?, ?) [["active_from", "2014-02-25 07:31:00.000000"], ["active_until", "2014-02-25 07:31:00.000000"], ["file_name", "image.png"], ["url", "http://rubyonrails.org"]]
|
742
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
743
|
+
Redirected to http://www.example.com/banner_lite/banners/1
|
744
|
+
Completed 302 Found in 22ms (ActiveRecord: 0.4ms)
|
745
|
+
Started GET "/banner_lite/banners/1" for 127.0.0.1 at 2014-02-25 16:31:31 +0900
|
746
|
+
Processing by BannerLite::BannersController#show as HTML
|
747
|
+
Parameters: {"id"=>"1"}
|
748
|
+
[1m[35mBannerLite::Banner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
749
|
+
Rendered /Users/irohiroki/github/krayinc/seichi/banner_lite/app/views/banner_lite/banners/show.html.erb within layouts/banner_lite/application (1.4ms)
|
750
|
+
Completed 200 OK in 4ms (Views: 2.7ms | ActiveRecord: 0.1ms)
|
751
|
+
[1m[36mBannerLite::Banner Load (0.1ms)[0m [1mSELECT "banner_lite_banners".* FROM "banner_lite_banners" ORDER BY "banner_lite_banners"."id" DESC LIMIT 1[0m
|
752
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
753
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
754
|
+
[1m[35m (0.1ms)[0m begin transaction
|
755
|
+
Started GET "/banner_lite/banners/new" for 127.0.0.1 at 2014-02-25 16:35:07 +0900
|
756
|
+
Processing by BannerLite::BannersController#new as HTML
|
757
|
+
Rendered /Users/irohiroki/github/krayinc/seichi/banner_lite/app/views/banner_lite/banners/_form.html.erb (24.0ms)
|
758
|
+
Rendered /Users/irohiroki/github/krayinc/seichi/banner_lite/app/views/banner_lite/banners/new.html.erb within layouts/banner_lite/application (27.2ms)
|
759
|
+
Completed 200 OK in 42ms (Views: 40.3ms | ActiveRecord: 0.2ms)
|
760
|
+
Started POST "/banner_lite/banners" for 127.0.0.1 at 2014-02-25 16:35:07 +0900
|
761
|
+
Processing by BannerLite::BannersController#create as HTML
|
762
|
+
Parameters: {"utf8"=>"✓", "banner"=>{"url"=>"http://rubyonrails.org", "file"=>#<ActionDispatch::Http::UploadedFile:0x007fd495a57438 @tempfile=#<Tempfile:/var/folders/ls/9bh0b9sj2tx8hdcb9zqkfz4r0000gn/T/RackMultipart20140225-3191-updfba>, @original_filename="image.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"banner[file]\"; filename=\"image.png\"\r\nContent-Type: image/png\r\nContent-Length: 901\r\n">, "active_from(1i)"=>"2014", "active_from(2i)"=>"2", "active_from(3i)"=>"25", "active_from(4i)"=>"07", "active_from(5i)"=>"35", "active_until(1i)"=>"2014", "active_until(2i)"=>"2", "active_until(3i)"=>"25", "active_until(4i)"=>"07", "active_until(5i)"=>"35"}, "commit"=>"Create Banner"}
|
763
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
764
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "banner_lite_banners" ("active_from", "active_until", "file_name", "url") VALUES (?, ?, ?, ?) [["active_from", "2014-02-25 07:35:00.000000"], ["active_until", "2014-02-25 07:35:00.000000"], ["file_name", "image.png"], ["url", "http://rubyonrails.org"]]
|
765
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
766
|
+
Completed 500 Internal Server Error in 4ms
|
767
|
+
[1m[35m (1.7ms)[0m rollback transaction
|
768
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
769
|
+
[1m[35m (0.1ms)[0m begin transaction
|
770
|
+
Started GET "/banner_lite/banners/new" for 127.0.0.1 at 2014-02-25 16:35:16 +0900
|
771
|
+
Processing by BannerLite::BannersController#new as HTML
|
772
|
+
Rendered /Users/irohiroki/github/krayinc/seichi/banner_lite/app/views/banner_lite/banners/_form.html.erb (26.1ms)
|
773
|
+
Rendered /Users/irohiroki/github/krayinc/seichi/banner_lite/app/views/banner_lite/banners/new.html.erb within layouts/banner_lite/application (29.2ms)
|
774
|
+
Completed 200 OK in 45ms (Views: 42.9ms | ActiveRecord: 0.2ms)
|
775
|
+
Started POST "/banner_lite/banners" for 127.0.0.1 at 2014-02-25 16:35:16 +0900
|
776
|
+
Processing by BannerLite::BannersController#create as HTML
|
777
|
+
Parameters: {"utf8"=>"✓", "banner"=>{"url"=>"http://rubyonrails.org", "file"=>#<ActionDispatch::Http::UploadedFile:0x007f84e36bf020 @tempfile=#<Tempfile:/var/folders/ls/9bh0b9sj2tx8hdcb9zqkfz4r0000gn/T/RackMultipart20140225-3217-y5dp1z>, @original_filename="image.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"banner[file]\"; filename=\"image.png\"\r\nContent-Type: image/png\r\nContent-Length: 901\r\n">, "active_from(1i)"=>"2014", "active_from(2i)"=>"2", "active_from(3i)"=>"25", "active_from(4i)"=>"07", "active_from(5i)"=>"35", "active_until(1i)"=>"2014", "active_until(2i)"=>"2", "active_until(3i)"=>"25", "active_until(4i)"=>"07", "active_until(5i)"=>"35"}, "commit"=>"Create Banner"}
|
778
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
779
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "banner_lite_banners" ("active_from", "active_until", "file_name", "url") VALUES (?, ?, ?, ?) [["active_from", "2014-02-25 07:35:00.000000"], ["active_until", "2014-02-25 07:35:00.000000"], ["file_name", "image.png"], ["url", "http://rubyonrails.org"]]
|
780
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
781
|
+
Redirected to http://www.example.com/banner_lite/banners/1
|
782
|
+
Completed 302 Found in 18ms (ActiveRecord: 0.4ms)
|
783
|
+
Started GET "/banner_lite/banners/1" for 127.0.0.1 at 2014-02-25 16:35:16 +0900
|
784
|
+
Processing by BannerLite::BannersController#show as HTML
|
785
|
+
Parameters: {"id"=>"1"}
|
786
|
+
[1m[35mBannerLite::Banner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
787
|
+
Rendered /Users/irohiroki/github/krayinc/seichi/banner_lite/app/views/banner_lite/banners/show.html.erb within layouts/banner_lite/application (1.6ms)
|
788
|
+
Completed 200 OK in 4ms (Views: 3.0ms | ActiveRecord: 0.1ms)
|
789
|
+
[1m[36mBannerLite::Banner Load (0.1ms)[0m [1mSELECT "banner_lite_banners".* FROM "banner_lite_banners" ORDER BY "banner_lite_banners"."id" DESC LIMIT 1[0m
|
790
|
+
Started GET "/banner_lite/banners" for 127.0.0.1 at 2014-02-25 16:35:16 +0900
|
791
|
+
Processing by BannerLite::BannersController#index as HTML
|
792
|
+
[1m[35mBannerLite::Banner Load (0.2ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners"
|
793
|
+
Rendered /Users/irohiroki/github/krayinc/seichi/banner_lite/app/views/banner_lite/banners/index.html.erb within layouts/banner_lite/application (3.2ms)
|
794
|
+
Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.2ms)
|
795
|
+
Started DELETE "/banner_lite/banners/1" for 127.0.0.1 at 2014-02-25 16:35:16 +0900
|
796
|
+
Processing by BannerLite::BannersController#destroy as HTML
|
797
|
+
Parameters: {"id"=>"1"}
|
798
|
+
[1m[36mBannerLite::Banner Load (0.1ms)[0m [1mSELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? LIMIT 1[0m [["id", 1]]
|
799
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
800
|
+
[1m[36mSQL (0.8ms)[0m [1mDELETE FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ?[0m [["id", 1]]
|
801
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
802
|
+
Redirected to http://www.example.com/banner_lite/banners
|
803
|
+
Completed 302 Found in 3ms (ActiveRecord: 1.0ms)
|
804
|
+
Started GET "/banner_lite/banners" for 127.0.0.1 at 2014-02-25 16:35:16 +0900
|
805
|
+
Processing by BannerLite::BannersController#index as HTML
|
806
|
+
[1m[36mBannerLite::Banner Load (0.1ms)[0m [1mSELECT "banner_lite_banners".* FROM "banner_lite_banners"[0m
|
807
|
+
Rendered /Users/irohiroki/github/krayinc/seichi/banner_lite/app/views/banner_lite/banners/index.html.erb within layouts/banner_lite/application (0.6ms)
|
808
|
+
Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.1ms)
|
809
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
810
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
811
|
+
[1m[35m (0.1ms)[0m begin transaction
|
812
|
+
Started GET "/banner_lite/banners/new" for 127.0.0.1 at 2014-02-25 16:35:21 +0900
|
813
|
+
Processing by BannerLite::BannersController#new as HTML
|
814
|
+
Rendered /Users/irohiroki/github/krayinc/seichi/banner_lite/app/views/banner_lite/banners/_form.html.erb (25.6ms)
|
815
|
+
Rendered /Users/irohiroki/github/krayinc/seichi/banner_lite/app/views/banner_lite/banners/new.html.erb within layouts/banner_lite/application (30.5ms)
|
816
|
+
Completed 200 OK in 47ms (Views: 45.0ms | ActiveRecord: 0.2ms)
|
817
|
+
Started POST "/banner_lite/banners" for 127.0.0.1 at 2014-02-25 16:35:21 +0900
|
818
|
+
Processing by BannerLite::BannersController#create as HTML
|
819
|
+
Parameters: {"utf8"=>"✓", "banner"=>{"url"=>"http://rubyonrails.org", "file"=>#<ActionDispatch::Http::UploadedFile:0x007fd5ed1133a0 @tempfile=#<Tempfile:/var/folders/ls/9bh0b9sj2tx8hdcb9zqkfz4r0000gn/T/RackMultipart20140225-3242-1jhp9ex>, @original_filename="image.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"banner[file]\"; filename=\"image.png\"\r\nContent-Type: image/png\r\nContent-Length: 901\r\n">, "active_from(1i)"=>"2014", "active_from(2i)"=>"2", "active_from(3i)"=>"25", "active_from(4i)"=>"07", "active_from(5i)"=>"35", "active_until(1i)"=>"2014", "active_until(2i)"=>"2", "active_until(3i)"=>"25", "active_until(4i)"=>"07", "active_until(5i)"=>"35"}, "commit"=>"Create Banner"}
|
820
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
821
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "banner_lite_banners" ("active_from", "active_until", "file_name", "url") VALUES (?, ?, ?, ?) [["active_from", "2014-02-25 07:35:00.000000"], ["active_until", "2014-02-25 07:35:00.000000"], ["file_name", "image.png"], ["url", "http://rubyonrails.org"]]
|
822
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
823
|
+
Redirected to http://www.example.com/banner_lite/banners/1
|
824
|
+
Completed 302 Found in 21ms (ActiveRecord: 0.5ms)
|
825
|
+
Started GET "/banner_lite/banners/1" for 127.0.0.1 at 2014-02-25 16:35:21 +0900
|
826
|
+
Processing by BannerLite::BannersController#show as HTML
|
827
|
+
Parameters: {"id"=>"1"}
|
828
|
+
[1m[35mBannerLite::Banner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
829
|
+
Rendered /Users/irohiroki/github/krayinc/seichi/banner_lite/app/views/banner_lite/banners/show.html.erb within layouts/banner_lite/application (1.6ms)
|
830
|
+
Completed 200 OK in 5ms (Views: 3.2ms | ActiveRecord: 0.1ms)
|
831
|
+
[1m[36mBannerLite::Banner Load (0.1ms)[0m [1mSELECT "banner_lite_banners".* FROM "banner_lite_banners" ORDER BY "banner_lite_banners"."id" DESC LIMIT 1[0m
|
832
|
+
Started GET "/banner_lite/banners" for 127.0.0.1 at 2014-02-25 16:35:21 +0900
|
833
|
+
Processing by BannerLite::BannersController#index as HTML
|
834
|
+
[1m[35mBannerLite::Banner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners"
|
835
|
+
Rendered /Users/irohiroki/github/krayinc/seichi/banner_lite/app/views/banner_lite/banners/index.html.erb within layouts/banner_lite/application (2.0ms)
|
836
|
+
Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.1ms)
|
837
|
+
Started DELETE "/banner_lite/banners/1" for 127.0.0.1 at 2014-02-25 16:35:21 +0900
|
838
|
+
Processing by BannerLite::BannersController#destroy as HTML
|
839
|
+
Parameters: {"id"=>"1"}
|
840
|
+
[1m[36mBannerLite::Banner Load (0.1ms)[0m [1mSELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? LIMIT 1[0m [["id", 1]]
|
841
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
842
|
+
[1m[36mSQL (1.0ms)[0m [1mDELETE FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ?[0m [["id", 1]]
|
843
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
844
|
+
Redirected to http://www.example.com/banner_lite/banners
|
845
|
+
Completed 302 Found in 3ms (ActiveRecord: 1.2ms)
|
846
|
+
Started GET "/banner_lite/banners" for 127.0.0.1 at 2014-02-25 16:35:21 +0900
|
847
|
+
Processing by BannerLite::BannersController#index as HTML
|
848
|
+
[1m[36mBannerLite::Banner Load (0.1ms)[0m [1mSELECT "banner_lite_banners".* FROM "banner_lite_banners"[0m
|
849
|
+
Rendered /Users/irohiroki/github/krayinc/seichi/banner_lite/app/views/banner_lite/banners/index.html.erb within layouts/banner_lite/application (0.5ms)
|
850
|
+
Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.1ms)
|
851
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
852
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
853
|
+
[1m[35m (0.1ms)[0m begin transaction
|
854
|
+
Started GET "/banner_lite/banners/new" for 127.0.0.1 at 2014-02-25 16:36:17 +0900
|
855
|
+
Processing by BannerLite::BannersController#new as HTML
|
856
|
+
Rendered /Users/irohiroki/github/krayinc/seichi/banner_lite/app/views/banner_lite/banners/_form.html.erb (27.0ms)
|
857
|
+
Rendered /Users/irohiroki/github/krayinc/seichi/banner_lite/app/views/banner_lite/banners/new.html.erb within layouts/banner_lite/application (30.1ms)
|
858
|
+
Completed 200 OK in 45ms (Views: 43.3ms | ActiveRecord: 0.2ms)
|
859
|
+
Started POST "/banner_lite/banners" for 127.0.0.1 at 2014-02-25 16:36:17 +0900
|
860
|
+
Processing by BannerLite::BannersController#create as HTML
|
861
|
+
Parameters: {"utf8"=>"✓", "banner"=>{"url"=>"http://rubyonrails.org", "file"=>#<ActionDispatch::Http::UploadedFile:0x007ff462f602f8 @tempfile=#<Tempfile:/var/folders/ls/9bh0b9sj2tx8hdcb9zqkfz4r0000gn/T/RackMultipart20140225-3463-19mjtmn>, @original_filename="image.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"banner[file]\"; filename=\"image.png\"\r\nContent-Type: image/png\r\nContent-Length: 901\r\n">, "active_from(1i)"=>"2014", "active_from(2i)"=>"2", "active_from(3i)"=>"25", "active_from(4i)"=>"07", "active_from(5i)"=>"36", "active_until(1i)"=>"2014", "active_until(2i)"=>"2", "active_until(3i)"=>"25", "active_until(4i)"=>"07", "active_until(5i)"=>"36"}, "commit"=>"Create Banner"}
|
862
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
863
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "banner_lite_banners" ("active_from", "active_until", "file_name", "url") VALUES (?, ?, ?, ?) [["active_from", "2014-02-25 07:36:00.000000"], ["active_until", "2014-02-25 07:36:00.000000"], ["file_name", "image.png"], ["url", "http://rubyonrails.org"]]
|
864
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
865
|
+
Redirected to http://www.example.com/banner_lite/banners/1
|
866
|
+
Completed 302 Found in 24ms (ActiveRecord: 0.4ms)
|
867
|
+
Started GET "/banner_lite/banners/1" for 127.0.0.1 at 2014-02-25 16:36:17 +0900
|
868
|
+
Processing by BannerLite::BannersController#show as HTML
|
869
|
+
Parameters: {"id"=>"1"}
|
870
|
+
[1m[35mBannerLite::Banner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
871
|
+
Rendered /Users/irohiroki/github/krayinc/seichi/banner_lite/app/views/banner_lite/banners/show.html.erb within layouts/banner_lite/application (1.7ms)
|
872
|
+
Completed 200 OK in 5ms (Views: 3.1ms | ActiveRecord: 0.1ms)
|
873
|
+
[1m[36mBannerLite::Banner Load (0.1ms)[0m [1mSELECT "banner_lite_banners".* FROM "banner_lite_banners" ORDER BY "banner_lite_banners"."id" DESC LIMIT 1[0m
|
874
|
+
Started GET "/banner_lite/banners" for 127.0.0.1 at 2014-02-25 16:36:17 +0900
|
875
|
+
Processing by BannerLite::BannersController#index as HTML
|
876
|
+
[1m[35mBannerLite::Banner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners"
|
877
|
+
Rendered /Users/irohiroki/github/krayinc/seichi/banner_lite/app/views/banner_lite/banners/index.html.erb within layouts/banner_lite/application (1.9ms)
|
878
|
+
Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.1ms)
|
879
|
+
Started DELETE "/banner_lite/banners/1" for 127.0.0.1 at 2014-02-25 16:36:17 +0900
|
880
|
+
Processing by BannerLite::BannersController#destroy as HTML
|
881
|
+
Parameters: {"id"=>"1"}
|
882
|
+
[1m[36mBannerLite::Banner Load (0.1ms)[0m [1mSELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? LIMIT 1[0m [["id", 1]]
|
883
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
884
|
+
[1m[36mSQL (0.8ms)[0m [1mDELETE FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ?[0m [["id", 1]]
|
885
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
886
|
+
Redirected to http://www.example.com/banner_lite/banners
|
887
|
+
Completed 302 Found in 3ms (ActiveRecord: 1.0ms)
|
888
|
+
Started GET "/banner_lite/banners" for 127.0.0.1 at 2014-02-25 16:36:17 +0900
|
889
|
+
Processing by BannerLite::BannersController#index as HTML
|
890
|
+
[1m[36mBannerLite::Banner Load (0.1ms)[0m [1mSELECT "banner_lite_banners".* FROM "banner_lite_banners"[0m
|
891
|
+
Rendered /Users/irohiroki/github/krayinc/seichi/banner_lite/app/views/banner_lite/banners/index.html.erb within layouts/banner_lite/application (0.5ms)
|
892
|
+
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.1ms)
|
893
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
894
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
895
|
+
[1m[35m (0.1ms)[0m begin transaction
|
896
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
897
|
+
[1m[35mSQL (0.9ms)[0m INSERT INTO "banner_lite_banners" ("active_from", "active_until") VALUES (?, ?) [["active_from", "2014-01-25 08:03:40.230353"], ["active_until", "2014-02-25 08:03:39.231831"]]
|
898
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
899
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
900
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "banner_lite_banners" ("active_from", "active_until") VALUES (?, ?)[0m [["active_from", "2014-02-25 08:03:39.243268"], ["active_until", "2014-02-25 08:03:45.243299"]]
|
901
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
902
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
903
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "banner_lite_banners" ("active_from", "active_until") VALUES (?, ?) [["active_from", "2014-02-25 08:03:45.244957"], ["active_until", "2014-03-25 08:03:40.244987"]]
|
904
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
905
|
+
[1m[35mBannerLite::Banner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE ("banner_lite_banners"."active_from" <= '2014-02-25 08:03:40.245922' AND "banner_lite_banners"."active_until" > '2014-02-25 08:03:40.245922')
|
906
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
907
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
908
|
+
[1m[35m (0.2ms)[0m begin transaction
|
909
|
+
Started GET "/banner_lite/banners/new" for 127.0.0.1 at 2014-03-04 12:14:06 +0900
|
910
|
+
Processing by BannerLite::BannersController#new as HTML
|
911
|
+
Rendered /Users/irohiroki/github/krayinc/banner_lite/app/views/banner_lite/banners/_form.html.erb (60.5ms)
|
912
|
+
Rendered /Users/irohiroki/github/krayinc/banner_lite/app/views/banner_lite/banners/new.html.erb within layouts/banner_lite/application (75.4ms)
|
913
|
+
Completed 200 OK in 141ms (Views: 139.1ms | ActiveRecord: 0.4ms)
|
914
|
+
Started POST "/banner_lite/banners" for 127.0.0.1 at 2014-03-04 12:14:06 +0900
|
915
|
+
Processing by BannerLite::BannersController#create as HTML
|
916
|
+
Parameters: {"utf8"=>"✓", "banner"=>{"url"=>"http://rubyonrails.org", "file"=>#<ActionDispatch::Http::UploadedFile:0x007ff27a8f7e50 @tempfile=#<Tempfile:/var/folders/ls/9bh0b9sj2tx8hdcb9zqkfz4r0000gn/T/RackMultipart20140304-12556-1ejky0v>, @original_filename="image.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"banner[file]\"; filename=\"image.png\"\r\nContent-Type: image/png\r\nContent-Length: 901\r\n">, "active_from(1i)"=>"2014", "active_from(2i)"=>"3", "active_from(3i)"=>"4", "active_from(4i)"=>"03", "active_from(5i)"=>"14", "active_until(1i)"=>"2014", "active_until(2i)"=>"3", "active_until(3i)"=>"4", "active_until(4i)"=>"03", "active_until(5i)"=>"14"}, "commit"=>"Create Banner"}
|
917
|
+
[1m[36m (1.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
918
|
+
[1m[35mSQL (1.0ms)[0m INSERT INTO "banner_lite_banners" ("active_from", "active_until", "file_name", "url") VALUES (?, ?, ?, ?) [["active_from", "2014-03-04 03:14:00.000000"], ["active_until", "2014-03-04 03:14:00.000000"], ["file_name", "image.png"], ["url", "http://rubyonrails.org"]]
|
919
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
920
|
+
Redirected to http://www.example.com/banner_lite/banners/1
|
921
|
+
Completed 302 Found in 37ms (ActiveRecord: 2.4ms)
|
922
|
+
Started GET "/banner_lite/banners/1" for 127.0.0.1 at 2014-03-04 12:14:06 +0900
|
923
|
+
Processing by BannerLite::BannersController#show as HTML
|
924
|
+
Parameters: {"id"=>"1"}
|
925
|
+
[1m[35mBannerLite::Banner Load (0.3ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
926
|
+
Rendered /Users/irohiroki/github/krayinc/banner_lite/app/views/banner_lite/banners/show.html.erb within layouts/banner_lite/application (3.1ms)
|
927
|
+
Completed 200 OK in 9ms (Views: 6.6ms | ActiveRecord: 0.3ms)
|
928
|
+
[1m[36mBannerLite::Banner Load (0.2ms)[0m [1mSELECT "banner_lite_banners".* FROM "banner_lite_banners" ORDER BY "banner_lite_banners"."id" DESC LIMIT 1[0m
|
929
|
+
Started GET "/banner_lite/banners" for 127.0.0.1 at 2014-03-04 12:14:06 +0900
|
930
|
+
Processing by BannerLite::BannersController#index as HTML
|
931
|
+
[1m[35mBannerLite::Banner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners"
|
932
|
+
Rendered /Users/irohiroki/github/krayinc/banner_lite/app/views/banner_lite/banners/index.html.erb within layouts/banner_lite/application (17.2ms)
|
933
|
+
Completed 200 OK in 26ms (Views: 25.8ms | ActiveRecord: 0.1ms)
|
934
|
+
Started DELETE "/banner_lite/banners/1" for 127.0.0.1 at 2014-03-04 12:14:06 +0900
|
935
|
+
Processing by BannerLite::BannersController#destroy as HTML
|
936
|
+
Parameters: {"id"=>"1"}
|
937
|
+
[1m[36mBannerLite::Banner Load (0.1ms)[0m [1mSELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? LIMIT 1[0m [["id", 1]]
|
938
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
939
|
+
[1m[36mSQL (0.8ms)[0m [1mDELETE FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ?[0m [["id", 1]]
|
940
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
941
|
+
Redirected to http://www.example.com/banner_lite/banners
|
942
|
+
Completed 302 Found in 4ms (ActiveRecord: 1.0ms)
|
943
|
+
Started GET "/banner_lite/banners" for 127.0.0.1 at 2014-03-04 12:14:06 +0900
|
944
|
+
Processing by BannerLite::BannersController#index as HTML
|
945
|
+
[1m[36mBannerLite::Banner Load (0.1ms)[0m [1mSELECT "banner_lite_banners".* FROM "banner_lite_banners"[0m
|
946
|
+
Rendered /Users/irohiroki/github/krayinc/banner_lite/app/views/banner_lite/banners/index.html.erb within layouts/banner_lite/application (0.5ms)
|
947
|
+
Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.1ms)
|
948
|
+
[1m[35m (1.3ms)[0m rollback transaction
|
949
|
+
[1m[36m (1.2ms)[0m [1mbegin transaction[0m
|
950
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
951
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
952
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
953
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
954
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
955
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
956
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
957
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
958
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
959
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
960
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
961
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
962
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
963
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
964
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
965
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
966
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
967
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
968
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
969
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
970
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
971
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
972
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
973
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
974
|
+
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "banner_lite_banners"
|
975
|
+
Processing by BannerLite::BannersController#create as HTML
|
976
|
+
Parameters: {"banner"=>{"url"=>"MyString"}}
|
977
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
978
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
979
|
+
Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 0.1ms)
|
980
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "banner_lite_banners"[0m
|
981
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
982
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
983
|
+
Processing by BannerLite::BannersController#create as HTML
|
984
|
+
Parameters: {"banner"=>{"url"=>"MyString"}}
|
985
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
986
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
987
|
+
Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 0.1ms)
|
988
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
989
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
990
|
+
Processing by BannerLite::BannersController#create as HTML
|
991
|
+
Parameters: {"banner"=>{"url"=>"MyString"}}
|
992
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
993
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
994
|
+
Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.1ms)
|
995
|
+
[1m[35mBannerLite::Banner Load (0.2ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" ORDER BY "banner_lite_banners"."id" DESC LIMIT 1
|
996
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
997
|
+
[1m[35m (0.1ms)[0m begin transaction
|
998
|
+
Processing by BannerLite::BannersController#create as HTML
|
999
|
+
Parameters: {"banner"=>{"url"=>"invalid value"}}
|
1000
|
+
Completed 200 OK in 9ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
1001
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
1002
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1003
|
+
Processing by BannerLite::BannersController#create as HTML
|
1004
|
+
Parameters: {"banner"=>{"url"=>"invalid value"}}
|
1005
|
+
Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
1006
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1007
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1008
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1009
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1010
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1011
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1012
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1013
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1014
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1015
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1016
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1017
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1018
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1019
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1020
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1021
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1022
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1023
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1024
|
+
Processing by BannerLite::BannersController#new as HTML
|
1025
|
+
Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
|
1026
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
1027
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1028
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
1029
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1030
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1031
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1032
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1033
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1034
|
+
[1m[36mBannerLite::Banner Load (0.2ms)[0m [1mSELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE ("banner_lite_banners"."active_from" <= '2014-03-04 03:14:06.546901' AND "banner_lite_banners"."active_until" > '2014-03-04 03:14:06.546901')[0m
|
1035
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1036
|
+
[1m[36mActiveRecord::SchemaMigration Load (7.7ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1037
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1038
|
+
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "banner_lite_banners"[0m
|
1039
|
+
Processing by BannerLite::BannersController#create as HTML
|
1040
|
+
Parameters: {"banner"=>{"url"=>"MyString"}}
|
1041
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
1042
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1043
|
+
Rendered /Users/irohiroki/github/krayinc/banner_lite/app/views/banner_lite/banners/new.html.erb within layouts/banner_lite/application (0.4ms)
|
1044
|
+
Completed 200 OK in 40ms (Views: 14.0ms | ActiveRecord: 0.3ms)
|
1045
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "banner_lite_banners"
|
1046
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1047
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1048
|
+
Processing by BannerLite::BannersController#create as HTML
|
1049
|
+
Parameters: {"banner"=>{"url"=>"MyString"}}
|
1050
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1051
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1052
|
+
Completed 200 OK in 6ms (Views: 3.0ms | ActiveRecord: 0.2ms)
|
1053
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1054
|
+
[1m[35m (0.3ms)[0m begin transaction
|
1055
|
+
Processing by BannerLite::BannersController#create as HTML
|
1056
|
+
Parameters: {"banner"=>{"url"=>"MyString"}}
|
1057
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
1058
|
+
[1m[35m (0.2ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1059
|
+
Completed 200 OK in 7ms (Views: 2.3ms | ActiveRecord: 0.4ms)
|
1060
|
+
[1m[36mBannerLite::Banner Load (0.3ms)[0m [1mSELECT "banner_lite_banners".* FROM "banner_lite_banners" ORDER BY "banner_lite_banners"."id" DESC LIMIT 1[0m
|
1061
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1062
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1063
|
+
Processing by BannerLite::BannersController#create as HTML
|
1064
|
+
Parameters: {"banner"=>{"url"=>"invalid value"}}
|
1065
|
+
Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
1066
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1067
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1068
|
+
Processing by BannerLite::BannersController#create as HTML
|
1069
|
+
Parameters: {"banner"=>{"url"=>"invalid value"}}
|
1070
|
+
Completed 200 OK in 8ms (Views: 6.6ms | ActiveRecord: 0.0ms)
|
1071
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
1072
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1073
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1074
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1075
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1076
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1077
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1078
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1079
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1080
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1081
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1082
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1083
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
1084
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1085
|
+
[1m[35m (0.3ms)[0m SAVEPOINT active_record_1
|
1086
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1087
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
1088
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1089
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1090
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1091
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1092
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1093
|
+
Processing by BannerLite::BannersController#new as HTML
|
1094
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
1095
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1096
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1097
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1098
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1099
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
1100
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1101
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1102
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1103
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1104
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1105
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1106
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1107
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1108
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1109
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1110
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1111
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
1112
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1113
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1114
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1115
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1116
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1117
|
+
Started GET "/banner_lite/banners/new" for 127.0.0.1 at 2014-03-04 12:15:35 +0900
|
1118
|
+
Processing by BannerLite::BannersController#new as HTML
|
1119
|
+
Rendered /Users/irohiroki/github/krayinc/banner_lite/app/views/banner_lite/banners/_form.html.erb (34.8ms)
|
1120
|
+
Completed 200 OK in 71ms (Views: 70.9ms | ActiveRecord: 0.0ms)
|
1121
|
+
Started POST "/banner_lite/banners" for 127.0.0.1 at 2014-03-04 12:15:35 +0900
|
1122
|
+
Processing by BannerLite::BannersController#create as HTML
|
1123
|
+
Parameters: {"utf8"=>"✓", "banner"=>{"url"=>"http://rubyonrails.org", "file"=>#<ActionDispatch::Http::UploadedFile:0x007fa2e37d6cd8 @tempfile=#<Tempfile:/var/folders/ls/9bh0b9sj2tx8hdcb9zqkfz4r0000gn/T/RackMultipart20140304-12646-rtllgh>, @original_filename="image.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"banner[file]\"; filename=\"image.png\"\r\nContent-Type: image/png\r\nContent-Length: 901\r\n">, "active_from(1i)"=>"2014", "active_from(2i)"=>"3", "active_from(3i)"=>"4", "active_from(4i)"=>"03", "active_from(5i)"=>"15", "active_until(1i)"=>"2014", "active_until(2i)"=>"3", "active_until(3i)"=>"4", "active_until(4i)"=>"03", "active_until(5i)"=>"15"}, "commit"=>"Create Banner"}
|
1124
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1125
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "banner_lite_banners" ("active_from", "active_until", "file_name", "url") VALUES (?, ?, ?, ?)[0m [["active_from", "2014-03-04 03:15:00.000000"], ["active_until", "2014-03-04 03:15:00.000000"], ["file_name", "image.png"], ["url", "http://rubyonrails.org"]]
|
1126
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
1127
|
+
Redirected to http://www.example.com/banner_lite/banners/1
|
1128
|
+
Completed 302 Found in 33ms (ActiveRecord: 1.0ms)
|
1129
|
+
Started GET "/banner_lite/banners/1" for 127.0.0.1 at 2014-03-04 12:15:35 +0900
|
1130
|
+
Processing by BannerLite::BannersController#show as HTML
|
1131
|
+
Parameters: {"id"=>"1"}
|
1132
|
+
[1m[36mBannerLite::Banner Load (0.2ms)[0m [1mSELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? LIMIT 1[0m [["id", 1]]
|
1133
|
+
Completed 200 OK in 6ms (Views: 4.4ms | ActiveRecord: 0.2ms)
|
1134
|
+
[1m[35mBannerLite::Banner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" ORDER BY "banner_lite_banners"."id" DESC LIMIT 1
|
1135
|
+
Started GET "/banner_lite/banners" for 127.0.0.1 at 2014-03-04 12:15:35 +0900
|
1136
|
+
Processing by BannerLite::BannersController#index as HTML
|
1137
|
+
[1m[36mBannerLite::Banner Load (0.1ms)[0m [1mSELECT "banner_lite_banners".* FROM "banner_lite_banners"[0m
|
1138
|
+
Completed 200 OK in 14ms (Views: 13.5ms | ActiveRecord: 0.1ms)
|
1139
|
+
Started DELETE "/banner_lite/banners/1" for 127.0.0.1 at 2014-03-04 12:15:35 +0900
|
1140
|
+
Processing by BannerLite::BannersController#destroy as HTML
|
1141
|
+
Parameters: {"id"=>"1"}
|
1142
|
+
[1m[35mBannerLite::Banner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
1143
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1144
|
+
[1m[35mSQL (0.8ms)[0m DELETE FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? [["id", 1]]
|
1145
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1146
|
+
Redirected to http://www.example.com/banner_lite/banners
|
1147
|
+
Completed 302 Found in 4ms (ActiveRecord: 1.0ms)
|
1148
|
+
Started GET "/banner_lite/banners" for 127.0.0.1 at 2014-03-04 12:15:35 +0900
|
1149
|
+
Processing by BannerLite::BannersController#index as HTML
|
1150
|
+
[1m[35mBannerLite::Banner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners"
|
1151
|
+
Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.1ms)
|
1152
|
+
[1m[36m (0.8ms)[0m [1mrollback transaction[0m
|
1153
|
+
[1m[35m (0.2ms)[0m begin transaction
|
1154
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1155
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1156
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1157
|
+
[1m[35m (2.9ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1158
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1159
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1160
|
+
[1m[36mBannerLite::Banner Load (0.2ms)[0m [1mSELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE ("banner_lite_banners"."active_from" <= '2014-03-04 03:15:35.468215' AND "banner_lite_banners"."active_until" > '2014-03-04 03:15:35.468215')[0m
|
1161
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1162
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1163
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1164
|
+
Processing by BannerLite::BannersController#create as HTML
|
1165
|
+
Parameters: {"banner"=>{"url"=>"MyString"}}
|
1166
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1167
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1168
|
+
Rendered /Users/irohiroki/github/krayinc/banner_lite/app/views/banner_lite/banners/new.html.erb within layouts/banner_lite/application (0.3ms)
|
1169
|
+
Completed 200 OK in 22ms (Views: 8.9ms | ActiveRecord: 0.3ms)
|
1170
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1171
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1172
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "banner_lite_banners"[0m
|
1173
|
+
Processing by BannerLite::BannersController#create as HTML
|
1174
|
+
Parameters: {"banner"=>{"url"=>"MyString"}}
|
1175
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1176
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1177
|
+
Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.1ms)
|
1178
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "banner_lite_banners"
|
1179
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1180
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1181
|
+
Processing by BannerLite::BannersController#create as HTML
|
1182
|
+
Parameters: {"banner"=>{"url"=>"MyString"}}
|
1183
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1184
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1185
|
+
Completed 200 OK in 2ms (Views: 0.6ms | ActiveRecord: 0.1ms)
|
1186
|
+
[1m[36mBannerLite::Banner Load (0.1ms)[0m [1mSELECT "banner_lite_banners".* FROM "banner_lite_banners" ORDER BY "banner_lite_banners"."id" DESC LIMIT 1[0m
|
1187
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1188
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1189
|
+
Processing by BannerLite::BannersController#create as HTML
|
1190
|
+
Parameters: {"banner"=>{"url"=>"invalid value"}}
|
1191
|
+
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
1192
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1193
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1194
|
+
Processing by BannerLite::BannersController#create as HTML
|
1195
|
+
Parameters: {"banner"=>{"url"=>"invalid value"}}
|
1196
|
+
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
1197
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1198
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1199
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1200
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1201
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1202
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1203
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1204
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1205
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1206
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1207
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1208
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1209
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1210
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1211
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1212
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1213
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1214
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1215
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1216
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1217
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1218
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
1219
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1220
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1221
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1222
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1223
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1224
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1225
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1226
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1227
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1228
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1229
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1230
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1231
|
+
Processing by BannerLite::BannersController#new as HTML
|
1232
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
1233
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1234
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1235
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1236
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1237
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1238
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1239
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1240
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1241
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1242
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1243
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1244
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1245
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1246
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1247
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1248
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1249
|
+
[1m[35mBannerLite::Banner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE ("banner_lite_banners"."active_from" <= '2014-03-27 03:44:07.890450' AND "banner_lite_banners"."active_until" > '2014-03-27 03:44:07.890450')
|
1250
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1251
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1252
|
+
Started GET "/banner_lite/banners/new" for 127.0.0.1 at 2014-03-27 12:44:07 +0900
|
1253
|
+
Processing by BannerLite::BannersController#new as HTML
|
1254
|
+
Rendered /Users/irohiroki/github/krayinc/banner_lite/app/views/banner_lite/banners/_form.html.erb (27.4ms)
|
1255
|
+
Completed 200 OK in 51ms (Views: 50.6ms | ActiveRecord: 0.0ms)
|
1256
|
+
Started POST "/banner_lite/banners" for 127.0.0.1 at 2014-03-27 12:44:07 +0900
|
1257
|
+
Processing by BannerLite::BannersController#create as HTML
|
1258
|
+
Parameters: {"utf8"=>"✓", "banner"=>{"url"=>"http://rubyonrails.org", "file"=>#<ActionDispatch::Http::UploadedFile:0x007f9ce22d5f38 @tempfile=#<Tempfile:/var/folders/ls/9bh0b9sj2tx8hdcb9zqkfz4r0000gn/T/RackMultipart20140327-68058-ysnogp>, @original_filename="image.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"banner[file]\"; filename=\"image.png\"\r\nContent-Type: image/png\r\nContent-Length: 901\r\n">, "active_from(1i)"=>"2014", "active_from(2i)"=>"3", "active_from(3i)"=>"27", "active_from(4i)"=>"03", "active_from(5i)"=>"44", "active_until(1i)"=>"2014", "active_until(2i)"=>"3", "active_until(3i)"=>"27", "active_until(4i)"=>"03", "active_until(5i)"=>"44"}, "commit"=>"Create Banner"}
|
1259
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1260
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "banner_lite_banners" ("active_from", "active_until", "file_name", "url") VALUES (?, ?, ?, ?) [["active_from", "2014-03-27 03:44:00.000000"], ["active_until", "2014-03-27 03:44:00.000000"], ["file_name", "image.png"], ["url", "http://rubyonrails.org"]]
|
1261
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1262
|
+
Redirected to http://www.example.com/banner_lite/banners/1
|
1263
|
+
Completed 302 Found in 14ms (ActiveRecord: 0.6ms)
|
1264
|
+
Started GET "/banner_lite/banners/1" for 127.0.0.1 at 2014-03-27 12:44:07 +0900
|
1265
|
+
Processing by BannerLite::BannersController#show as HTML
|
1266
|
+
Parameters: {"id"=>"1"}
|
1267
|
+
[1m[35mBannerLite::Banner Load (0.2ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
1268
|
+
Completed 200 OK in 5ms (Views: 3.6ms | ActiveRecord: 0.2ms)
|
1269
|
+
[1m[36mBannerLite::Banner Load (0.1ms)[0m [1mSELECT "banner_lite_banners".* FROM "banner_lite_banners" ORDER BY "banner_lite_banners"."id" DESC LIMIT 1[0m
|
1270
|
+
Started GET "/banner_lite/banners" for 127.0.0.1 at 2014-03-27 12:44:07 +0900
|
1271
|
+
Processing by BannerLite::BannersController#index as HTML
|
1272
|
+
[1m[35mBannerLite::Banner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners"
|
1273
|
+
Completed 200 OK in 4ms (Views: 4.1ms | ActiveRecord: 0.1ms)
|
1274
|
+
Started DELETE "/banner_lite/banners/1" for 127.0.0.1 at 2014-03-27 12:44:08 +0900
|
1275
|
+
Processing by BannerLite::BannersController#destroy as HTML
|
1276
|
+
Parameters: {"id"=>"1"}
|
1277
|
+
[1m[36mBannerLite::Banner Load (0.1ms)[0m [1mSELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? LIMIT 1[0m [["id", 1]]
|
1278
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1279
|
+
[1m[36mSQL (2.0ms)[0m [1mDELETE FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ?[0m [["id", 1]]
|
1280
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1281
|
+
Redirected to http://www.example.com/banner_lite/banners
|
1282
|
+
Completed 302 Found in 5ms (ActiveRecord: 2.1ms)
|
1283
|
+
Started GET "/banner_lite/banners" for 127.0.0.1 at 2014-03-27 12:44:08 +0900
|
1284
|
+
Processing by BannerLite::BannersController#index as HTML
|
1285
|
+
[1m[36mBannerLite::Banner Load (0.1ms)[0m [1mSELECT "banner_lite_banners".* FROM "banner_lite_banners"[0m
|
1286
|
+
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.1ms)
|
1287
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
1288
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1289
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1290
|
+
Started GET "/banner_lite/banners/new" for 127.0.0.1 at 2014-03-27 12:47:15 +0900
|
1291
|
+
Processing by BannerLite::BannersController#new as HTML
|
1292
|
+
Rendered /Users/irohiroki/github/krayinc/banner_lite/app/views/banner_lite/banners/_form.html.erb (36.9ms)
|
1293
|
+
Rendered /Users/irohiroki/github/krayinc/banner_lite/app/views/banner_lite/banners/new.html.erb within layouts/banner_lite/application (42.8ms)
|
1294
|
+
Completed 200 OK in 76ms (Views: 74.3ms | ActiveRecord: 0.3ms)
|
1295
|
+
Started POST "/banner_lite/banners" for 127.0.0.1 at 2014-03-27 12:47:15 +0900
|
1296
|
+
Processing by BannerLite::BannersController#create as HTML
|
1297
|
+
Parameters: {"utf8"=>"✓", "banner"=>{"url"=>"http://rubyonrails.org", "file"=>#<ActionDispatch::Http::UploadedFile:0x007feae5afe470 @tempfile=#<Tempfile:/var/folders/ls/9bh0b9sj2tx8hdcb9zqkfz4r0000gn/T/RackMultipart20140327-68618-1e98bt3>, @original_filename="image.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"banner[file]\"; filename=\"image.png\"\r\nContent-Type: image/png\r\nContent-Length: 901\r\n">, "active_from(1i)"=>"2014", "active_from(2i)"=>"3", "active_from(3i)"=>"27", "active_from(4i)"=>"03", "active_from(5i)"=>"47", "active_until(1i)"=>"2014", "active_until(2i)"=>"3", "active_until(3i)"=>"27", "active_until(4i)"=>"03", "active_until(5i)"=>"47"}, "commit"=>"Create Banner"}
|
1298
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1299
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "banner_lite_banners" ("active_from", "active_until", "file_name", "url") VALUES (?, ?, ?, ?) [["active_from", "2014-03-27 03:47:00.000000"], ["active_until", "2014-03-27 03:47:00.000000"], ["file_name", "image.png"], ["url", "http://rubyonrails.org"]]
|
1300
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1301
|
+
Redirected to http://www.example.com/banner_lite/banners/1
|
1302
|
+
Completed 302 Found in 14ms (ActiveRecord: 0.5ms)
|
1303
|
+
Started GET "/banner_lite/banners/1" for 127.0.0.1 at 2014-03-27 12:47:15 +0900
|
1304
|
+
Processing by BannerLite::BannersController#show as HTML
|
1305
|
+
Parameters: {"id"=>"1"}
|
1306
|
+
[1m[35mBannerLite::Banner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
1307
|
+
Rendered /Users/irohiroki/github/krayinc/banner_lite/app/views/banner_lite/banners/show.html.erb within layouts/banner_lite/application (1.7ms)
|
1308
|
+
Completed 200 OK in 5ms (Views: 3.5ms | ActiveRecord: 0.1ms)
|
1309
|
+
[1m[36mBannerLite::Banner Load (0.1ms)[0m [1mSELECT "banner_lite_banners".* FROM "banner_lite_banners" ORDER BY "banner_lite_banners"."id" DESC LIMIT 1[0m
|
1310
|
+
Started GET "/banner_lite/banners" for 127.0.0.1 at 2014-03-27 12:47:15 +0900
|
1311
|
+
Processing by BannerLite::BannersController#index as HTML
|
1312
|
+
[1m[35mBannerLite::Banner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners"
|
1313
|
+
Rendered /Users/irohiroki/github/krayinc/banner_lite/app/views/banner_lite/banners/index.html.erb within layouts/banner_lite/application (2.1ms)
|
1314
|
+
Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.1ms)
|
1315
|
+
Started DELETE "/banner_lite/banners/1" for 127.0.0.1 at 2014-03-27 12:47:15 +0900
|
1316
|
+
Processing by BannerLite::BannersController#destroy as HTML
|
1317
|
+
Parameters: {"id"=>"1"}
|
1318
|
+
[1m[36mBannerLite::Banner Load (0.1ms)[0m [1mSELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? LIMIT 1[0m [["id", 1]]
|
1319
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1320
|
+
[1m[36mSQL (0.9ms)[0m [1mDELETE FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ?[0m [["id", 1]]
|
1321
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1322
|
+
Redirected to http://www.example.com/banner_lite/banners
|
1323
|
+
Completed 302 Found in 3ms (ActiveRecord: 1.0ms)
|
1324
|
+
Started GET "/banner_lite/banners" for 127.0.0.1 at 2014-03-27 12:47:15 +0900
|
1325
|
+
Processing by BannerLite::BannersController#index as HTML
|
1326
|
+
[1m[36mBannerLite::Banner Load (0.2ms)[0m [1mSELECT "banner_lite_banners".* FROM "banner_lite_banners"[0m
|
1327
|
+
Rendered /Users/irohiroki/github/krayinc/banner_lite/app/views/banner_lite/banners/index.html.erb within layouts/banner_lite/application (0.7ms)
|
1328
|
+
Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.2ms)
|
1329
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
1330
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1331
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1332
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1333
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1334
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1335
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1336
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1337
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1338
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1339
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1340
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1341
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1342
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1343
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1344
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1345
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1346
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1347
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1348
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1349
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1350
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1351
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1352
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1353
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1354
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1355
|
+
Processing by BannerLite::BannersController#create as HTML
|
1356
|
+
Parameters: {"banner"=>{"url"=>"invalid value"}}
|
1357
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
1358
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1359
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1360
|
+
Processing by BannerLite::BannersController#create as HTML
|
1361
|
+
Parameters: {"banner"=>{"url"=>"invalid value"}}
|
1362
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
1363
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1364
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1365
|
+
Processing by BannerLite::BannersController#create as HTML
|
1366
|
+
Parameters: {"banner"=>{"url"=>"MyString"}}
|
1367
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1368
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1369
|
+
Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.1ms)
|
1370
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1371
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1372
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "banner_lite_banners"
|
1373
|
+
Processing by BannerLite::BannersController#create as HTML
|
1374
|
+
Parameters: {"banner"=>{"url"=>"MyString"}}
|
1375
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1376
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1377
|
+
Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.1ms)
|
1378
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "banner_lite_banners"[0m
|
1379
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1380
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1381
|
+
Processing by BannerLite::BannersController#create as HTML
|
1382
|
+
Parameters: {"banner"=>{"url"=>"MyString"}}
|
1383
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1384
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1385
|
+
Completed 200 OK in 3ms (Views: 1.0ms | ActiveRecord: 0.1ms)
|
1386
|
+
[1m[35mBannerLite::Banner Load (0.2ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" ORDER BY "banner_lite_banners"."id" DESC LIMIT 1
|
1387
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1388
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1389
|
+
Processing by BannerLite::BannersController#new as HTML
|
1390
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
1391
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1392
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1393
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1394
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1395
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1396
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1397
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1398
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1399
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1400
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1401
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1402
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1403
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1404
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1405
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1406
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1407
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1408
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1409
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1410
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1411
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1412
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1413
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1414
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1415
|
+
[1m[36mBannerLite::Banner Load (0.1ms)[0m [1mSELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE ("banner_lite_banners"."active_from" <= '2014-03-27 03:47:15.571239' AND "banner_lite_banners"."active_until" > '2014-03-27 03:47:15.571239')[0m
|
1416
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1417
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1418
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1419
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1420
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1421
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1422
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1423
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1424
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1425
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1426
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1427
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1428
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1429
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1430
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1431
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1432
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1433
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1434
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1435
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1436
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1437
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1438
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1439
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1440
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1441
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1442
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1443
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "banner_lite_banners"[0m
|
1444
|
+
Processing by BannerLite::BannersController#create as HTML
|
1445
|
+
Parameters: {"banner"=>{"url"=>"MyString"}}
|
1446
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1447
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1448
|
+
Completed 200 OK in 7ms (Views: 5.2ms | ActiveRecord: 0.1ms)
|
1449
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "banner_lite_banners"
|
1450
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1451
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1452
|
+
Processing by BannerLite::BannersController#create as HTML
|
1453
|
+
Parameters: {"banner"=>{"url"=>"MyString"}}
|
1454
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1455
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1456
|
+
Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.1ms)
|
1457
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1458
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1459
|
+
Processing by BannerLite::BannersController#create as HTML
|
1460
|
+
Parameters: {"banner"=>{"url"=>"MyString"}}
|
1461
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1462
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1463
|
+
Completed 200 OK in 2ms (Views: 0.6ms | ActiveRecord: 0.1ms)
|
1464
|
+
[1m[36mBannerLite::Banner Load (0.1ms)[0m [1mSELECT "banner_lite_banners".* FROM "banner_lite_banners" ORDER BY "banner_lite_banners"."id" DESC LIMIT 1[0m
|
1465
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1466
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1467
|
+
Processing by BannerLite::BannersController#create as HTML
|
1468
|
+
Parameters: {"banner"=>{"url"=>"invalid value"}}
|
1469
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
1470
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1471
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1472
|
+
Processing by BannerLite::BannersController#create as HTML
|
1473
|
+
Parameters: {"banner"=>{"url"=>"invalid value"}}
|
1474
|
+
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
1475
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1476
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1477
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1478
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1479
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1480
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1481
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
1482
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1483
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1484
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1485
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1486
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1487
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1488
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1489
|
+
Processing by BannerLite::BannersController#new as HTML
|
1490
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
1491
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1492
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1493
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1494
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1495
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1496
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1497
|
+
Started GET "/banner_lite/banners/new" for 127.0.0.1 at 2014-03-27 12:48:57 +0900
|
1498
|
+
Processing by BannerLite::BannersController#new as HTML
|
1499
|
+
Rendered /Users/irohiroki/github/krayinc/banner_lite/app/views/banner_lite/banners/_form.html.erb (18.6ms)
|
1500
|
+
Completed 200 OK in 32ms (Views: 31.5ms | ActiveRecord: 0.0ms)
|
1501
|
+
Started POST "/banner_lite/banners" for 127.0.0.1 at 2014-03-27 12:48:57 +0900
|
1502
|
+
Processing by BannerLite::BannersController#create as HTML
|
1503
|
+
Parameters: {"utf8"=>"✓", "banner"=>{"url"=>"http://rubyonrails.org", "file"=>#<ActionDispatch::Http::UploadedFile:0x007f9d349fac58 @tempfile=#<Tempfile:/var/folders/ls/9bh0b9sj2tx8hdcb9zqkfz4r0000gn/T/RackMultipart20140327-68948-h1n2zl>, @original_filename="image.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"banner[file]\"; filename=\"image.png\"\r\nContent-Type: image/png\r\nContent-Length: 901\r\n">, "active_from(1i)"=>"2014", "active_from(2i)"=>"3", "active_from(3i)"=>"27", "active_from(4i)"=>"03", "active_from(5i)"=>"48", "active_until(1i)"=>"2014", "active_until(2i)"=>"3", "active_until(3i)"=>"27", "active_until(4i)"=>"03", "active_until(5i)"=>"48"}, "commit"=>"Create Banner"}
|
1504
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1505
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "banner_lite_banners" ("active_from", "active_until", "file_name", "url") VALUES (?, ?, ?, ?)[0m [["active_from", "2014-03-27 03:48:00.000000"], ["active_until", "2014-03-27 03:48:00.000000"], ["file_name", "image.png"], ["url", "http://rubyonrails.org"]]
|
1506
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1507
|
+
Redirected to http://www.example.com/banner_lite/banners/1
|
1508
|
+
Completed 302 Found in 13ms (ActiveRecord: 0.4ms)
|
1509
|
+
Started GET "/banner_lite/banners/1" for 127.0.0.1 at 2014-03-27 12:48:57 +0900
|
1510
|
+
Processing by BannerLite::BannersController#show as HTML
|
1511
|
+
Parameters: {"id"=>"1"}
|
1512
|
+
[1m[36mBannerLite::Banner Load (0.1ms)[0m [1mSELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? LIMIT 1[0m [["id", 1]]
|
1513
|
+
Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.1ms)
|
1514
|
+
[1m[35mBannerLite::Banner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" ORDER BY "banner_lite_banners"."id" DESC LIMIT 1
|
1515
|
+
Started GET "/banner_lite/banners" for 127.0.0.1 at 2014-03-27 12:48:57 +0900
|
1516
|
+
Processing by BannerLite::BannersController#index as HTML
|
1517
|
+
[1m[36mBannerLite::Banner Load (0.1ms)[0m [1mSELECT "banner_lite_banners".* FROM "banner_lite_banners"[0m
|
1518
|
+
Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.1ms)
|
1519
|
+
Started DELETE "/banner_lite/banners/1" for 127.0.0.1 at 2014-03-27 12:48:57 +0900
|
1520
|
+
Processing by BannerLite::BannersController#destroy as HTML
|
1521
|
+
Parameters: {"id"=>"1"}
|
1522
|
+
[1m[35mBannerLite::Banner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
1523
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1524
|
+
[1m[35mSQL (0.9ms)[0m DELETE FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? [["id", 1]]
|
1525
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1526
|
+
Redirected to http://www.example.com/banner_lite/banners
|
1527
|
+
Completed 302 Found in 4ms (ActiveRecord: 1.1ms)
|
1528
|
+
Started GET "/banner_lite/banners" for 127.0.0.1 at 2014-03-27 12:48:57 +0900
|
1529
|
+
Processing by BannerLite::BannersController#index as HTML
|
1530
|
+
[1m[35mBannerLite::Banner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners"
|
1531
|
+
Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.1ms)
|
1532
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
1533
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1534
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1535
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1536
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1537
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1538
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1539
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1540
|
+
[1m[36mBannerLite::Banner Load (0.2ms)[0m [1mSELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE ("banner_lite_banners"."active_from" <= '2014-03-27 03:48:57.714635' AND "banner_lite_banners"."active_until" > '2014-03-27 03:48:57.714635')[0m
|
1541
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1542
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1543
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1544
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1545
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1546
|
+
Processing by BannerLite::BannersController#new as HTML
|
1547
|
+
Completed 200 OK in 9ms (Views: 7.8ms | ActiveRecord: 0.2ms)
|
1548
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1549
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1550
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1551
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1552
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1553
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1554
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1555
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1556
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1557
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1558
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "banner_lite_banners"[0m
|
1559
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1560
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1561
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1562
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1563
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1564
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1565
|
+
Processing by BannerLite::BannersController#create as HTML
|
1566
|
+
Parameters: {"banner"=>{"url"=>"invalid value"}}
|
1567
|
+
Completed 200 OK in 4ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
1568
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1569
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1570
|
+
Processing by BannerLite::BannersController#create as HTML
|
1571
|
+
Parameters: {"banner"=>{"url"=>"invalid value"}}
|
1572
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
1573
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1574
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1575
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1576
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1577
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1578
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1579
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1580
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1581
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1582
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1583
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1584
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1585
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1586
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1587
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1588
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1589
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1590
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1591
|
+
[1m[35mBannerLite::Banner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE ("banner_lite_banners"."active_from" <= '2014-03-27 03:58:57.999745' AND "banner_lite_banners"."active_until" > '2014-03-27 03:58:57.999745')
|
1592
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1593
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1594
|
+
Started GET "/banner_lite/banners/new" for 127.0.0.1 at 2014-03-27 12:58:58 +0900
|
1595
|
+
Processing by BannerLite::BannersController#new as HTML
|
1596
|
+
Rendered /Users/irohiroki/github/krayinc/banner_lite/app/views/banner_lite/banners/_form.html.erb (25.9ms)
|
1597
|
+
Completed 200 OK in 50ms (Views: 49.3ms | ActiveRecord: 0.0ms)
|
1598
|
+
Started POST "/banner_lite/banners" for 127.0.0.1 at 2014-03-27 12:58:58 +0900
|
1599
|
+
Processing by BannerLite::BannersController#create as HTML
|
1600
|
+
Parameters: {"utf8"=>"✓", "banner"=>{"url"=>"http://rubyonrails.org", "file"=>#<ActionDispatch::Http::UploadedFile:0x007fd8bae54170 @tempfile=#<Tempfile:/var/folders/ls/9bh0b9sj2tx8hdcb9zqkfz4r0000gn/T/RackMultipart20140327-69646-1h1mb9z>, @original_filename="image.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"banner[file]\"; filename=\"image.png\"\r\nContent-Type: image/png\r\nContent-Length: 901\r\n">, "active_from(1i)"=>"2014", "active_from(2i)"=>"3", "active_from(3i)"=>"27", "active_from(4i)"=>"03", "active_from(5i)"=>"58", "active_until(1i)"=>"2014", "active_until(2i)"=>"3", "active_until(3i)"=>"27", "active_until(4i)"=>"03", "active_until(5i)"=>"58"}, "commit"=>"Create Banner"}
|
1601
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1602
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "banner_lite_banners" ("active_from", "active_until", "file_name", "url") VALUES (?, ?, ?, ?) [["active_from", "2014-03-27 03:58:00.000000"], ["active_until", "2014-03-27 03:58:00.000000"], ["file_name", "image.png"], ["url", "http://rubyonrails.org"]]
|
1603
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1604
|
+
Redirected to http://www.example.com/banner_lite/banners/1
|
1605
|
+
Completed 302 Found in 13ms (ActiveRecord: 0.5ms)
|
1606
|
+
Started GET "/banner_lite/banners/1" for 127.0.0.1 at 2014-03-27 12:58:58 +0900
|
1607
|
+
Processing by BannerLite::BannersController#show as HTML
|
1608
|
+
Parameters: {"id"=>"1"}
|
1609
|
+
[1m[35mBannerLite::Banner Load (0.2ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
1610
|
+
Completed 200 OK in 5ms (Views: 3.3ms | ActiveRecord: 0.1ms)
|
1611
|
+
[1m[36mBannerLite::Banner Load (0.1ms)[0m [1mSELECT "banner_lite_banners".* FROM "banner_lite_banners" ORDER BY "banner_lite_banners"."id" DESC LIMIT 1[0m
|
1612
|
+
Started GET "/banner_lite/banners" for 127.0.0.1 at 2014-03-27 12:58:58 +0900
|
1613
|
+
Processing by BannerLite::BannersController#index as HTML
|
1614
|
+
[1m[35mBannerLite::Banner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners"
|
1615
|
+
Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.1ms)
|
1616
|
+
Started DELETE "/banner_lite/banners/1" for 127.0.0.1 at 2014-03-27 12:58:58 +0900
|
1617
|
+
Processing by BannerLite::BannersController#destroy as HTML
|
1618
|
+
Parameters: {"id"=>"1"}
|
1619
|
+
[1m[36mBannerLite::Banner Load (0.0ms)[0m [1mSELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? LIMIT 1[0m [["id", 1]]
|
1620
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1621
|
+
[1m[36mSQL (0.9ms)[0m [1mDELETE FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ?[0m [["id", 1]]
|
1622
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
1623
|
+
Redirected to http://www.example.com/banner_lite/banners
|
1624
|
+
Completed 302 Found in 3ms (ActiveRecord: 1.1ms)
|
1625
|
+
Started GET "/banner_lite/banners" for 127.0.0.1 at 2014-03-27 12:58:58 +0900
|
1626
|
+
Processing by BannerLite::BannersController#index as HTML
|
1627
|
+
[1m[36mBannerLite::Banner Load (0.1ms)[0m [1mSELECT "banner_lite_banners".* FROM "banner_lite_banners"[0m
|
1628
|
+
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.1ms)
|
1629
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
1630
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1631
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1632
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1633
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1634
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1635
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1636
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1637
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1638
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1639
|
+
[1m[35mSQL (1.1ms)[0m INSERT INTO "banner_lite_banners" ("active_from", "active_until", "file_name", "url") VALUES (?, ?, ?, ?) [["active_from", "2014-02-28 07:20:52.640234"], ["active_until", "2014-03-31 07:20:51.640420"], ["file_name", "dummy.png"], ["url", "http://example.com"]]
|
1640
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1641
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1642
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "banner_lite_banners" ("active_from", "active_until", "file_name", "url") VALUES (?, ?, ?, ?)[0m [["active_from", "2014-03-31 07:20:51.653116"], ["active_until", "2014-03-31 07:20:57.653144"], ["file_name", "dummy.png"], ["url", "http://example.com"]]
|
1643
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1644
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1645
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "banner_lite_banners" ("active_from", "active_until", "file_name", "url") VALUES (?, ?, ?, ?) [["active_from", "2014-03-31 07:20:57.655547"], ["active_until", "2014-04-30 07:20:52.655579"], ["file_name", "dummy.png"], ["url", "http://example.com"]]
|
1646
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1647
|
+
[1m[35mBannerLite::Banner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE ("banner_lite_banners"."active_from" <= '2014-03-31 07:20:52.657052' AND "banner_lite_banners"."active_until" > '2014-03-31 07:20:52.657052')
|
1648
|
+
[1m[36m (0.8ms)[0m [1mrollback transaction[0m
|
1649
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1650
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1651
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1652
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1653
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1654
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1655
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1656
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1657
|
+
Processing by BannerLite::BannersController#new as HTML
|
1658
|
+
Completed 200 OK in 10ms (Views: 8.4ms | ActiveRecord: 0.3ms)
|
1659
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1660
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1661
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1662
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1663
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1664
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1665
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1666
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1667
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1668
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1669
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1670
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1671
|
+
[1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "banner_lite_banners"[0m
|
1672
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1673
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1674
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1675
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1676
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1677
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1678
|
+
Processing by BannerLite::BannersController#create as HTML
|
1679
|
+
Parameters: {"banner"=>{"url"=>"invalid value"}}
|
1680
|
+
Completed 200 OK in 4ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
1681
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1682
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1683
|
+
Processing by BannerLite::BannersController#create as HTML
|
1684
|
+
Parameters: {"banner"=>{"url"=>"invalid value"}}
|
1685
|
+
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
1686
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1687
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1688
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1689
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1690
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1691
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1692
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1693
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1694
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1695
|
+
Processing by BannerLite::BannersController#create as HTML
|
1696
|
+
Parameters: {"banner"=>{"url"=>"invalid value"}}
|
1697
|
+
Completed 200 OK in 10ms (Views: 5.8ms | ActiveRecord: 0.3ms)
|
1698
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1699
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1700
|
+
Processing by BannerLite::BannersController#create as HTML
|
1701
|
+
Parameters: {"banner"=>{"url"=>"invalid value"}}
|
1702
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
1703
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1704
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1705
|
+
[1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM "banner_lite_banners"[0m
|
1706
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1707
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1708
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1709
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1710
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1711
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1712
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1713
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1714
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1715
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1716
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1717
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1718
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1719
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1720
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1721
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1722
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1723
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1724
|
+
Processing by BannerLite::BannersController#new as HTML
|
1725
|
+
Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
1726
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1727
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1728
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1729
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1730
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1731
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1732
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1733
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1734
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1735
|
+
Processing by BannerLite::BannersController#create as HTML
|
1736
|
+
Parameters: {"banner"=>{"url"=>"invalid value"}}
|
1737
|
+
Rendered /Users/irohiroki/github/krayinc/banner_lite/app/views/banner_lite/banners/new.html.erb within layouts/banner_lite/application (0.3ms)
|
1738
|
+
Completed 200 OK in 12ms (Views: 6.8ms | ActiveRecord: 0.2ms)
|
1739
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1740
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1741
|
+
Processing by BannerLite::BannersController#create as HTML
|
1742
|
+
Parameters: {"banner"=>{"url"=>"invalid value"}}
|
1743
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
1744
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1745
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1746
|
+
[1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM "banner_lite_banners"[0m
|
1747
|
+
Processing by BannerLite::BannersController#create as HTML
|
1748
|
+
Parameters: {"banner"=>{"url"=>"MyString", "file"=>#<Rack::Test::UploadedFile:0x007fd5b48c8700 @content_type="image/jpeg", @original_filename="dummy.png", @tempfile=#<Tempfile:/var/folders/ls/9bh0b9sj2tx8hdcb9zqkfz4r0000gn/T/dummy.png20140331-95253-y0kh1m>>}}
|
1749
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1750
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "banner_lite_banners" ("file_name", "url") VALUES (?, ?)[0m [["file_name", "dummy.png"], ["url", "MyString"]]
|
1751
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1752
|
+
Redirected to http://test.host/banner_lite/banners/1
|
1753
|
+
Completed 302 Found in 7ms (ActiveRecord: 0.9ms)
|
1754
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "banner_lite_banners"[0m
|
1755
|
+
[1m[35m (1.8ms)[0m rollback transaction
|
1756
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1757
|
+
Processing by BannerLite::BannersController#create as HTML
|
1758
|
+
Parameters: {"banner"=>{"url"=>"MyString", "file"=>#<Rack::Test::UploadedFile:0x007fd5b2fa46c0 @content_type="image/jpeg", @original_filename="dummy.png", @tempfile=#<Tempfile:/var/folders/ls/9bh0b9sj2tx8hdcb9zqkfz4r0000gn/T/dummy.png20140331-95253-oetu2n>>}}
|
1759
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1760
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "banner_lite_banners" ("file_name", "url") VALUES (?, ?)[0m [["file_name", "dummy.png"], ["url", "MyString"]]
|
1761
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1762
|
+
Redirected to http://test.host/banner_lite/banners/1
|
1763
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.4ms)
|
1764
|
+
[1m[36mBannerLite::Banner Load (0.1ms)[0m [1mSELECT "banner_lite_banners".* FROM "banner_lite_banners" ORDER BY "banner_lite_banners"."id" DESC LIMIT 1[0m
|
1765
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
1766
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1767
|
+
Processing by BannerLite::BannersController#create as HTML
|
1768
|
+
Parameters: {"banner"=>{"url"=>"MyString", "file"=>#<Rack::Test::UploadedFile:0x007fd5b2effad0 @content_type="image/jpeg", @original_filename="dummy.png", @tempfile=#<Tempfile:/var/folders/ls/9bh0b9sj2tx8hdcb9zqkfz4r0000gn/T/dummy.png20140331-95253-1pmaqc7>>}}
|
1769
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1770
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "banner_lite_banners" ("file_name", "url") VALUES (?, ?)[0m [["file_name", "dummy.png"], ["url", "MyString"]]
|
1771
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1772
|
+
Redirected to http://test.host/banner_lite/banners/1
|
1773
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.4ms)
|
1774
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
1775
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1776
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1777
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("file_name", "url") VALUES (?, ?) [["file_name", "dummy.png"], ["url", "MyString"]]
|
1778
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1779
|
+
Processing by BannerLite::BannersController#update as HTML
|
1780
|
+
Parameters: {"banner"=>{"url"=>"invalid value"}, "id"=>"1"}
|
1781
|
+
[1m[35mBannerLite::Banner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
1782
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1783
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1784
|
+
Completed 200 OK in 3ms (Views: 1.9ms | ActiveRecord: 0.2ms)
|
1785
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
1786
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1787
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1788
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("file_name", "url") VALUES (?, ?) [["file_name", "dummy.png"], ["url", "MyString"]]
|
1789
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1790
|
+
Processing by BannerLite::BannersController#update as HTML
|
1791
|
+
Parameters: {"banner"=>{"url"=>"invalid value"}, "id"=>"1"}
|
1792
|
+
[1m[35mBannerLite::Banner Load (0.0ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
1793
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1794
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1795
|
+
Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.1ms)
|
1796
|
+
[1m[36m (1.2ms)[0m [1mrollback transaction[0m
|
1797
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1798
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1799
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "banner_lite_banners" ("file_name", "url") VALUES (?, ?) [["file_name", "dummy.png"], ["url", "MyString"]]
|
1800
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1801
|
+
Processing by BannerLite::BannersController#update as HTML
|
1802
|
+
Parameters: {"banner"=>{"url"=>"MyString"}, "id"=>"1"}
|
1803
|
+
[1m[35mBannerLite::Banner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
1804
|
+
Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.1ms)
|
1805
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
1806
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1807
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1808
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("file_name", "url") VALUES (?, ?) [["file_name", "dummy.png"], ["url", "MyString"]]
|
1809
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1810
|
+
Processing by BannerLite::BannersController#update as HTML
|
1811
|
+
Parameters: {"banner"=>{"url"=>"MyString", "file"=>#<Rack::Test::UploadedFile:0x007fd5b2a5f7c8 @content_type="image/jpeg", @original_filename="dummy.png", @tempfile=#<Tempfile:/var/folders/ls/9bh0b9sj2tx8hdcb9zqkfz4r0000gn/T/dummy.png20140331-95253-gy1p35>>}, "id"=>"1"}
|
1812
|
+
[1m[35mBannerLite::Banner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
1813
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1814
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1815
|
+
Redirected to http://test.host/banner_lite/banners/1
|
1816
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.1ms)
|
1817
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
1818
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1819
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1820
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("file_name", "url") VALUES (?, ?) [["file_name", "dummy.png"], ["url", "MyString"]]
|
1821
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1822
|
+
Processing by BannerLite::BannersController#update as HTML
|
1823
|
+
Parameters: {"banner"=>{"url"=>"MyString", "file"=>#<Rack::Test::UploadedFile:0x007fd5b2418310 @content_type="image/jpeg", @original_filename="dummy.png", @tempfile=#<Tempfile:/var/folders/ls/9bh0b9sj2tx8hdcb9zqkfz4r0000gn/T/dummy.png20140331-95253-1lakuoy>>}, "id"=>"1"}
|
1824
|
+
[1m[35mBannerLite::Banner Load (0.0ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
1825
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1826
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1827
|
+
Redirected to http://test.host/banner_lite/banners/1
|
1828
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.1ms)
|
1829
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
1830
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1831
|
+
Processing by BannerLite::BannersController#new as HTML
|
1832
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
1833
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1834
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1835
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1836
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("file_name", "url") VALUES (?, ?) [["file_name", "dummy.png"], ["url", "MyString"]]
|
1837
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1838
|
+
Processing by BannerLite::BannersController#index as HTML
|
1839
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
1840
|
+
[1m[35mBannerLite::Banner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners"
|
1841
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
1842
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1843
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1844
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("file_name", "url") VALUES (?, ?) [["file_name", "dummy.png"], ["url", "MyString"]]
|
1845
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1846
|
+
Processing by BannerLite::BannersController#destroy as HTML
|
1847
|
+
Parameters: {"id"=>"1"}
|
1848
|
+
[1m[35mBannerLite::Banner Load (0.3ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
1849
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
1850
|
+
[1m[35mSQL (0.9ms)[0m DELETE FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? [["id", 1]]
|
1851
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1852
|
+
Redirected to http://test.host/banner_lite/banners
|
1853
|
+
Completed 302 Found in 8ms (ActiveRecord: 1.4ms)
|
1854
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
1855
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1856
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1857
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "banner_lite_banners" ("file_name", "url") VALUES (?, ?)[0m [["file_name", "dummy.png"], ["url", "MyString"]]
|
1858
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1859
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "banner_lite_banners"[0m
|
1860
|
+
Processing by BannerLite::BannersController#destroy as HTML
|
1861
|
+
Parameters: {"id"=>"1"}
|
1862
|
+
[1m[35mBannerLite::Banner Load (0.0ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
1863
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1864
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? [["id", 1]]
|
1865
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1866
|
+
Redirected to http://test.host/banner_lite/banners
|
1867
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.4ms)
|
1868
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "banner_lite_banners"
|
1869
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
1870
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1871
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1872
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "banner_lite_banners" ("file_name", "url") VALUES (?, ?) [["file_name", "dummy.png"], ["url", "MyString"]]
|
1873
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1874
|
+
Processing by BannerLite::BannersController#edit as HTML
|
1875
|
+
Parameters: {"id"=>"1"}
|
1876
|
+
[1m[35mBannerLite::Banner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
1877
|
+
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.1ms)
|
1878
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
1879
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1880
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1881
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "banner_lite_banners" ("file_name", "url") VALUES (?, ?) [["file_name", "dummy.png"], ["url", "MyString"]]
|
1882
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1883
|
+
Processing by BannerLite::BannersController#show as HTML
|
1884
|
+
Parameters: {"id"=>"1"}
|
1885
|
+
[1m[35mBannerLite::Banner Load (0.2ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
1886
|
+
Completed 200 OK in 5ms (Views: 3.2ms | ActiveRecord: 0.2ms)
|
1887
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
1888
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1889
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1890
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1891
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "banner_lite_banners" ("file_name", "url") VALUES (?, ?) [["file_name", "dummy.png"], ["url", "MyString"]]
|
1892
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1893
|
+
Processing by BannerLite::BannersController#destroy as HTML
|
1894
|
+
Parameters: {"id"=>"1"}
|
1895
|
+
[1m[35mBannerLite::Banner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
1896
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1897
|
+
[1m[35mSQL (1.1ms)[0m DELETE FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? [["id", 1]]
|
1898
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1899
|
+
Redirected to http://test.host/banner_lite/banners
|
1900
|
+
Completed 302 Found in 7ms (ActiveRecord: 1.3ms)
|
1901
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
1902
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1903
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1904
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "banner_lite_banners" ("file_name", "url") VALUES (?, ?)[0m [["file_name", "dummy.png"], ["url", "MyString"]]
|
1905
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1906
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "banner_lite_banners"[0m
|
1907
|
+
Processing by BannerLite::BannersController#destroy as HTML
|
1908
|
+
Parameters: {"id"=>"1"}
|
1909
|
+
[1m[35mBannerLite::Banner Load (0.0ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
1910
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1911
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? [["id", 1]]
|
1912
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1913
|
+
Redirected to http://test.host/banner_lite/banners
|
1914
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.3ms)
|
1915
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "banner_lite_banners"
|
1916
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
1917
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1918
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1919
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("file_name", "url") VALUES (?, ?) [["file_name", "dummy.png"], ["url", "MyString"]]
|
1920
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1921
|
+
Processing by BannerLite::BannersController#update as HTML
|
1922
|
+
Parameters: {"banner"=>{"url"=>"invalid value"}, "id"=>"1"}
|
1923
|
+
[1m[35mBannerLite::Banner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
1924
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1925
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1926
|
+
Completed 200 OK in 8ms (Views: 6.4ms | ActiveRecord: 0.1ms)
|
1927
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
1928
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1929
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1930
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("file_name", "url") VALUES (?, ?) [["file_name", "dummy.png"], ["url", "MyString"]]
|
1931
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1932
|
+
Processing by BannerLite::BannersController#update as HTML
|
1933
|
+
Parameters: {"banner"=>{"url"=>"invalid value"}, "id"=>"1"}
|
1934
|
+
[1m[35mBannerLite::Banner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
1935
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1936
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1937
|
+
Completed 200 OK in 3ms (Views: 1.0ms | ActiveRecord: 0.2ms)
|
1938
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
1939
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1940
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1941
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "banner_lite_banners" ("file_name", "url") VALUES (?, ?) [["file_name", "dummy.png"], ["url", "MyString"]]
|
1942
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1943
|
+
Processing by BannerLite::BannersController#update as HTML
|
1944
|
+
Parameters: {"banner"=>{"url"=>"MyString", "file"=>#<Rack::Test::UploadedFile:0x007f82049a1568 @content_type="image/jpeg", @original_filename="dummy.png", @tempfile=#<Tempfile:/var/folders/ls/9bh0b9sj2tx8hdcb9zqkfz4r0000gn/T/dummy.png20140331-96040-tvfe0t>>}, "id"=>"1"}
|
1945
|
+
[1m[35mBannerLite::Banner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
1946
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1947
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1948
|
+
Redirected to http://test.host/banner_lite/banners/1
|
1949
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.1ms)
|
1950
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
1951
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1952
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1953
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "banner_lite_banners" ("file_name", "url") VALUES (?, ?) [["file_name", "dummy.png"], ["url", "MyString"]]
|
1954
|
+
[1m[36m (0.3ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1955
|
+
Processing by BannerLite::BannersController#update as HTML
|
1956
|
+
Parameters: {"banner"=>{"url"=>"MyString", "file"=>#<Rack::Test::UploadedFile:0x007f8202cfe168 @content_type="image/jpeg", @original_filename="dummy.png", @tempfile=#<Tempfile:/var/folders/ls/9bh0b9sj2tx8hdcb9zqkfz4r0000gn/T/dummy.png20140331-96040-xfibo2>>}, "id"=>"1"}
|
1957
|
+
[1m[35mBannerLite::Banner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
1958
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1959
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1960
|
+
Redirected to http://test.host/banner_lite/banners/1
|
1961
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
|
1962
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
1963
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1964
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1965
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("file_name", "url") VALUES (?, ?) [["file_name", "dummy.png"], ["url", "MyString"]]
|
1966
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1967
|
+
Processing by BannerLite::BannersController#update as HTML
|
1968
|
+
Parameters: {"banner"=>{"url"=>"MyString"}, "id"=>"1"}
|
1969
|
+
[1m[35mBannerLite::Banner Load (0.0ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
1970
|
+
Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
1971
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
1972
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1973
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1974
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("file_name", "url") VALUES (?, ?) [["file_name", "dummy.png"], ["url", "MyString"]]
|
1975
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1976
|
+
Processing by BannerLite::BannersController#edit as HTML
|
1977
|
+
Parameters: {"id"=>"1"}
|
1978
|
+
[1m[35mBannerLite::Banner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
1979
|
+
Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.1ms)
|
1980
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
1981
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1982
|
+
Processing by BannerLite::BannersController#create as HTML
|
1983
|
+
Parameters: {"banner"=>{"url"=>"invalid value"}}
|
1984
|
+
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
1985
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1986
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1987
|
+
Processing by BannerLite::BannersController#create as HTML
|
1988
|
+
Parameters: {"banner"=>{"url"=>"invalid value"}}
|
1989
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
1990
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1991
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1992
|
+
Processing by BannerLite::BannersController#create as HTML
|
1993
|
+
Parameters: {"banner"=>{"url"=>"MyString", "file"=>#<Rack::Test::UploadedFile:0x007f820313d300 @content_type="image/jpeg", @original_filename="dummy.png", @tempfile=#<Tempfile:/var/folders/ls/9bh0b9sj2tx8hdcb9zqkfz4r0000gn/T/dummy.png20140331-96040-z2544d>>}}
|
1994
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1995
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "banner_lite_banners" ("file_name", "url") VALUES (?, ?) [["file_name", "dummy.png"], ["url", "MyString"]]
|
1996
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1997
|
+
Redirected to http://test.host/banner_lite/banners/1
|
1998
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.4ms)
|
1999
|
+
[1m[35mBannerLite::Banner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" ORDER BY "banner_lite_banners"."id" DESC LIMIT 1
|
2000
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
2001
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2002
|
+
Processing by BannerLite::BannersController#create as HTML
|
2003
|
+
Parameters: {"banner"=>{"url"=>"MyString", "file"=>#<Rack::Test::UploadedFile:0x007f8202b58818 @content_type="image/jpeg", @original_filename="dummy.png", @tempfile=#<Tempfile:/var/folders/ls/9bh0b9sj2tx8hdcb9zqkfz4r0000gn/T/dummy.png20140331-96040-1sxd049>>}}
|
2004
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2005
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "banner_lite_banners" ("file_name", "url") VALUES (?, ?) [["file_name", "dummy.png"], ["url", "MyString"]]
|
2006
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2007
|
+
Redirected to http://test.host/banner_lite/banners/1
|
2008
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
|
2009
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
2010
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2011
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "banner_lite_banners"
|
2012
|
+
Processing by BannerLite::BannersController#create as HTML
|
2013
|
+
Parameters: {"banner"=>{"url"=>"MyString", "file"=>#<Rack::Test::UploadedFile:0x007f8202833890 @content_type="image/jpeg", @original_filename="dummy.png", @tempfile=#<Tempfile:/var/folders/ls/9bh0b9sj2tx8hdcb9zqkfz4r0000gn/T/dummy.png20140331-96040-i1o8dz>>}}
|
2014
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2015
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "banner_lite_banners" ("file_name", "url") VALUES (?, ?) [["file_name", "dummy.png"], ["url", "MyString"]]
|
2016
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2017
|
+
Redirected to http://test.host/banner_lite/banners/1
|
2018
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.4ms)
|
2019
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "banner_lite_banners"
|
2020
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
2021
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2022
|
+
Processing by BannerLite::BannersController#new as HTML
|
2023
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
2024
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2025
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2026
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2027
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("file_name", "url") VALUES (?, ?) [["file_name", "dummy.png"], ["url", "MyString"]]
|
2028
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2029
|
+
Processing by BannerLite::BannersController#show as HTML
|
2030
|
+
Parameters: {"id"=>"1"}
|
2031
|
+
[1m[35mBannerLite::Banner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
2032
|
+
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.1ms)
|
2033
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
2034
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2035
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2036
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "banner_lite_banners" ("file_name", "url") VALUES (?, ?) [["file_name", "dummy.png"], ["url", "MyString"]]
|
2037
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2038
|
+
Processing by BannerLite::BannersController#index as HTML
|
2039
|
+
Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
2040
|
+
[1m[35mBannerLite::Banner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners"
|
2041
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
2042
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2043
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2044
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2045
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "banner_lite_banners" ("file_name", "url") VALUES (?, ?) [["file_name", "dummy.png"], ["url", "MyString"]]
|
2046
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2047
|
+
Processing by BannerLite::BannersController#edit as HTML
|
2048
|
+
Parameters: {"id"=>"1"}
|
2049
|
+
[1m[35mBannerLite::Banner Load (0.2ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
2050
|
+
Rendered /Users/irohiroki/github/krayinc/banner_lite/app/views/banner_lite/banners/edit.html.erb within layouts/banner_lite/application (0.3ms)
|
2051
|
+
Completed 200 OK in 9ms (Views: 7.1ms | ActiveRecord: 0.2ms)
|
2052
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
2053
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2054
|
+
Processing by BannerLite::BannersController#create as HTML
|
2055
|
+
Parameters: {"banner"=>{"url"=>"MyString", "file"=>#<Rack::Test::UploadedFile:0x007fd783f37bd8 @content_type="image/jpeg", @original_filename="dummy.png", @tempfile=#<Tempfile:/var/folders/ls/9bh0b9sj2tx8hdcb9zqkfz4r0000gn/T/dummy.png20140331-96107-1j8g49r>>}}
|
2056
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2057
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("file_name", "url") VALUES (?, ?) [["file_name", "dummy.png"], ["url", "MyString"]]
|
2058
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2059
|
+
Redirected to http://test.host/banner_lite/banners/1
|
2060
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.4ms)
|
2061
|
+
[1m[35mBannerLite::Banner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" ORDER BY "banner_lite_banners"."id" DESC LIMIT 1
|
2062
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
2063
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2064
|
+
Processing by BannerLite::BannersController#create as HTML
|
2065
|
+
Parameters: {"banner"=>{"url"=>"MyString", "file"=>#<Rack::Test::UploadedFile:0x007fd783e756c8 @content_type="image/jpeg", @original_filename="dummy.png", @tempfile=#<Tempfile:/var/folders/ls/9bh0b9sj2tx8hdcb9zqkfz4r0000gn/T/dummy.png20140331-96107-99hsdy>>}}
|
2066
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2067
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "banner_lite_banners" ("file_name", "url") VALUES (?, ?) [["file_name", "dummy.png"], ["url", "MyString"]]
|
2068
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2069
|
+
Redirected to http://test.host/banner_lite/banners/1
|
2070
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
|
2071
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
2072
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2073
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "banner_lite_banners"
|
2074
|
+
Processing by BannerLite::BannersController#create as HTML
|
2075
|
+
Parameters: {"banner"=>{"url"=>"MyString", "file"=>#<Rack::Test::UploadedFile:0x007fd7831ac130 @content_type="image/jpeg", @original_filename="dummy.png", @tempfile=#<Tempfile:/var/folders/ls/9bh0b9sj2tx8hdcb9zqkfz4r0000gn/T/dummy.png20140331-96107-cegy8p>>}}
|
2076
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2077
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("file_name", "url") VALUES (?, ?) [["file_name", "dummy.png"], ["url", "MyString"]]
|
2078
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2079
|
+
Redirected to http://test.host/banner_lite/banners/1
|
2080
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.3ms)
|
2081
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "banner_lite_banners"
|
2082
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
2083
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2084
|
+
Processing by BannerLite::BannersController#create as HTML
|
2085
|
+
Parameters: {"banner"=>{"url"=>"invalid value"}}
|
2086
|
+
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
2087
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2088
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2089
|
+
Processing by BannerLite::BannersController#create as HTML
|
2090
|
+
Parameters: {"banner"=>{"url"=>"invalid value"}}
|
2091
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
2092
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2093
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2094
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2095
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "banner_lite_banners" ("file_name", "url") VALUES (?, ?) [["file_name", "dummy.png"], ["url", "MyString"]]
|
2096
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2097
|
+
Processing by BannerLite::BannersController#index as HTML
|
2098
|
+
Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
2099
|
+
[1m[35mBannerLite::Banner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners"
|
2100
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
2101
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2102
|
+
Processing by BannerLite::BannersController#new as HTML
|
2103
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
2104
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2105
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2106
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2107
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "banner_lite_banners" ("file_name", "url") VALUES (?, ?) [["file_name", "dummy.png"], ["url", "MyString"]]
|
2108
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2109
|
+
Processing by BannerLite::BannersController#show as HTML
|
2110
|
+
Parameters: {"id"=>"1"}
|
2111
|
+
[1m[35mBannerLite::Banner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
2112
|
+
Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.1ms)
|
2113
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
2114
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2115
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2116
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("file_name", "url") VALUES (?, ?) [["file_name", "dummy.png"], ["url", "MyString"]]
|
2117
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2118
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "banner_lite_banners"
|
2119
|
+
Processing by BannerLite::BannersController#destroy as HTML
|
2120
|
+
Parameters: {"id"=>"1"}
|
2121
|
+
[1m[36mBannerLite::Banner Load (0.1ms)[0m [1mSELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? LIMIT 1[0m [["id", 1]]
|
2122
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2123
|
+
[1m[36mSQL (0.8ms)[0m [1mDELETE FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ?[0m [["id", 1]]
|
2124
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2125
|
+
Redirected to http://test.host/banner_lite/banners
|
2126
|
+
Completed 302 Found in 11ms (ActiveRecord: 0.9ms)
|
2127
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "banner_lite_banners"[0m
|
2128
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
2129
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2130
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2131
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "banner_lite_banners" ("file_name", "url") VALUES (?, ?)[0m [["file_name", "dummy.png"], ["url", "MyString"]]
|
2132
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2133
|
+
Processing by BannerLite::BannersController#destroy as HTML
|
2134
|
+
Parameters: {"id"=>"1"}
|
2135
|
+
[1m[36mBannerLite::Banner Load (0.0ms)[0m [1mSELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? LIMIT 1[0m [["id", 1]]
|
2136
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2137
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ?[0m [["id", 1]]
|
2138
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2139
|
+
Redirected to http://test.host/banner_lite/banners
|
2140
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.4ms)
|
2141
|
+
[1m[36m (0.8ms)[0m [1mrollback transaction[0m
|
2142
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2143
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2144
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("file_name", "url") VALUES (?, ?) [["file_name", "dummy.png"], ["url", "MyString"]]
|
2145
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2146
|
+
Processing by BannerLite::BannersController#update as HTML
|
2147
|
+
Parameters: {"banner"=>{"url"=>"MyString", "file"=>#<Rack::Test::UploadedFile:0x007fd785ce7278 @content_type="image/jpeg", @original_filename="dummy.png", @tempfile=#<Tempfile:/var/folders/ls/9bh0b9sj2tx8hdcb9zqkfz4r0000gn/T/dummy.png20140331-96107-14tvctz>>}, "id"=>"1"}
|
2148
|
+
[1m[35mBannerLite::Banner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
2149
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2150
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2151
|
+
Redirected to http://test.host/banner_lite/banners/1
|
2152
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.1ms)
|
2153
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
2154
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2155
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2156
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("file_name", "url") VALUES (?, ?) [["file_name", "dummy.png"], ["url", "MyString"]]
|
2157
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2158
|
+
Processing by BannerLite::BannersController#update as HTML
|
2159
|
+
Parameters: {"banner"=>{"url"=>"MyString", "file"=>#<Rack::Test::UploadedFile:0x007fd785fb7980 @content_type="image/jpeg", @original_filename="dummy.png", @tempfile=#<Tempfile:/var/folders/ls/9bh0b9sj2tx8hdcb9zqkfz4r0000gn/T/dummy.png20140331-96107-1e3uzbs>>}, "id"=>"1"}
|
2160
|
+
[1m[35mBannerLite::Banner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
2161
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2162
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2163
|
+
Redirected to http://test.host/banner_lite/banners/1
|
2164
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.2ms)
|
2165
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
2166
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2167
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2168
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("file_name", "url") VALUES (?, ?) [["file_name", "dummy.png"], ["url", "MyString"]]
|
2169
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2170
|
+
Processing by BannerLite::BannersController#update as HTML
|
2171
|
+
Parameters: {"banner"=>{"url"=>"MyString"}, "id"=>"1"}
|
2172
|
+
[1m[35mBannerLite::Banner Load (0.0ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
2173
|
+
Completed 200 OK in 2ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
2174
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
2175
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2176
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2177
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("file_name", "url") VALUES (?, ?) [["file_name", "dummy.png"], ["url", "MyString"]]
|
2178
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2179
|
+
Processing by BannerLite::BannersController#update as HTML
|
2180
|
+
Parameters: {"banner"=>{"url"=>"invalid value"}, "id"=>"1"}
|
2181
|
+
[1m[35mBannerLite::Banner Load (0.0ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
2182
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2183
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
2184
|
+
Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.1ms)
|
2185
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
2186
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2187
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2188
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "banner_lite_banners" ("file_name", "url") VALUES (?, ?) [["file_name", "dummy.png"], ["url", "MyString"]]
|
2189
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2190
|
+
Processing by BannerLite::BannersController#update as HTML
|
2191
|
+
Parameters: {"banner"=>{"url"=>"invalid value"}, "id"=>"1"}
|
2192
|
+
[1m[35mBannerLite::Banner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
2193
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2194
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
2195
|
+
Completed 200 OK in 3ms (Views: 0.7ms | ActiveRecord: 0.2ms)
|
2196
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
2197
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2198
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2199
|
+
Migrating to AddBannerTextToBannerLiteBanners (20140901033058)
|
2200
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2201
|
+
[1m[36m (0.5ms)[0m [1mALTER TABLE "banner_lite_banners" ADD "banner_text" varchar(255)[0m
|
2202
|
+
[1m[35m (0.1ms)[0m ALTER TABLE "banner_lite_banners" ADD "type" varchar(255)
|
2203
|
+
[1m[36mSQL (1.8ms)[0m [1mUPDATE "banner_lite_banners" SET "type" = 'BannerLite::ImageBanner'[0m
|
2204
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140901033058"]]
|
2205
|
+
[1m[36m (2.6ms)[0m [1mcommit transaction[0m
|
2206
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
2207
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2208
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2209
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2210
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "banner_lite_banners" ("file_name", "type", "url") VALUES (?, ?, ?) [["file_name", "dummy.png"], ["type", "BannerLite::ImageBanner"], ["url", "MyString"]]
|
2211
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2212
|
+
Processing by BannerLite::ImageBannersController#index as HTML
|
2213
|
+
Rendered /Users/irohiroki/github/krayinc/banner_lite/app/views/banner_lite/image_banners/index.html.erb within layouts/banner_lite/application (0.3ms)
|
2214
|
+
Completed 200 OK in 9ms (Views: 8.7ms | ActiveRecord: 0.0ms)
|
2215
|
+
[1m[35mBannerLite::ImageBanner Load (0.2ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::ImageBanner')
|
2216
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
2217
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2218
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2219
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("file_name", "type", "url") VALUES (?, ?, ?) [["file_name", "dummy.png"], ["type", "BannerLite::ImageBanner"], ["url", "MyString"]]
|
2220
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2221
|
+
Processing by BannerLite::ImageBannersController#edit as HTML
|
2222
|
+
Parameters: {"id"=>"1"}
|
2223
|
+
[1m[35mBannerLite::ImageBanner Load (0.2ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::ImageBanner') AND "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
2224
|
+
Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.2ms)
|
2225
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
2226
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2227
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2228
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("file_name", "type", "url") VALUES (?, ?, ?) [["file_name", "dummy.png"], ["type", "BannerLite::ImageBanner"], ["url", "MyString"]]
|
2229
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2230
|
+
Processing by BannerLite::ImageBannersController#destroy as HTML
|
2231
|
+
Parameters: {"id"=>"1"}
|
2232
|
+
[1m[35mBannerLite::ImageBanner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::ImageBanner') AND "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
2233
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2234
|
+
[1m[35mSQL (0.9ms)[0m DELETE FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::ImageBanner') AND "banner_lite_banners"."id" = ? [["id", 1]]
|
2235
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2236
|
+
Redirected to http://test.host/banner_lite/image_banners
|
2237
|
+
Completed 302 Found in 6ms (ActiveRecord: 1.1ms)
|
2238
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
2239
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2240
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2241
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "banner_lite_banners" ("file_name", "type", "url") VALUES (?, ?, ?)[0m [["file_name", "dummy.png"], ["type", "BannerLite::ImageBanner"], ["url", "MyString"]]
|
2242
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2243
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::ImageBanner')[0m
|
2244
|
+
Processing by BannerLite::ImageBannersController#destroy as HTML
|
2245
|
+
Parameters: {"id"=>"1"}
|
2246
|
+
[1m[35mBannerLite::ImageBanner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::ImageBanner') AND "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
2247
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2248
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::ImageBanner') AND "banner_lite_banners"."id" = ? [["id", 1]]
|
2249
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2250
|
+
Redirected to http://test.host/banner_lite/image_banners
|
2251
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.5ms)
|
2252
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::ImageBanner')
|
2253
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
2254
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2255
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2256
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "banner_lite_banners" ("file_name", "type", "url") VALUES (?, ?, ?) [["file_name", "dummy.png"], ["type", "BannerLite::ImageBanner"], ["url", "MyString"]]
|
2257
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2258
|
+
Processing by BannerLite::ImageBannersController#show as HTML
|
2259
|
+
Parameters: {"id"=>"1"}
|
2260
|
+
[1m[35mBannerLite::ImageBanner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::ImageBanner') AND "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
2261
|
+
Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.1ms)
|
2262
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
2263
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2264
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2265
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "banner_lite_banners" ("file_name", "type", "url") VALUES (?, ?, ?) [["file_name", "dummy.png"], ["type", "BannerLite::ImageBanner"], ["url", "MyString"]]
|
2266
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2267
|
+
Processing by BannerLite::ImageBannersController#update as HTML
|
2268
|
+
Parameters: {"image_banner"=>{"url"=>"invalid value"}, "id"=>"1"}
|
2269
|
+
[1m[35mBannerLite::ImageBanner Load (0.3ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::ImageBanner') AND "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
2270
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2271
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
2272
|
+
Completed 200 OK in 4ms (Views: 0.8ms | ActiveRecord: 0.5ms)
|
2273
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
2274
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2275
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2276
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("file_name", "type", "url") VALUES (?, ?, ?) [["file_name", "dummy.png"], ["type", "BannerLite::ImageBanner"], ["url", "MyString"]]
|
2277
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2278
|
+
Processing by BannerLite::ImageBannersController#update as HTML
|
2279
|
+
Parameters: {"image_banner"=>{"url"=>"invalid value"}, "id"=>"1"}
|
2280
|
+
[1m[35mBannerLite::ImageBanner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::ImageBanner') AND "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
2281
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2282
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
2283
|
+
Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.2ms)
|
2284
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
2285
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2286
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2287
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("file_name", "type", "url") VALUES (?, ?, ?) [["file_name", "dummy.png"], ["type", "BannerLite::ImageBanner"], ["url", "MyString"]]
|
2288
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2289
|
+
Processing by BannerLite::ImageBannersController#update as HTML
|
2290
|
+
Parameters: {"image_banner"=>{"url"=>"MyString"}, "id"=>"1"}
|
2291
|
+
[1m[35mBannerLite::ImageBanner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::ImageBanner') AND "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
2292
|
+
Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.1ms)
|
2293
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
2294
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2295
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2296
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("file_name", "type", "url") VALUES (?, ?, ?) [["file_name", "dummy.png"], ["type", "BannerLite::ImageBanner"], ["url", "MyString"]]
|
2297
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2298
|
+
Processing by BannerLite::ImageBannersController#update as HTML
|
2299
|
+
Parameters: {"image_banner"=>{"url"=>"MyString", "file"=>#<Rack::Test::UploadedFile:0x007faffe019338 @content_type="image/jpeg", @original_filename="dummy.png", @tempfile=#<Tempfile:/var/folders/ls/9bh0b9sj2tx8hdcb9zqkfz4r0000gn/T/dummy.png20140903-31465-x2t6un>>}, "id"=>"1"}
|
2300
|
+
[1m[35mBannerLite::ImageBanner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::ImageBanner') AND "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
2301
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2302
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2303
|
+
Redirected to http://test.host/banner_lite/image_banners/1
|
2304
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.2ms)
|
2305
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
2306
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2307
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2308
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("file_name", "type", "url") VALUES (?, ?, ?) [["file_name", "dummy.png"], ["type", "BannerLite::ImageBanner"], ["url", "MyString"]]
|
2309
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2310
|
+
Processing by BannerLite::ImageBannersController#update as HTML
|
2311
|
+
Parameters: {"image_banner"=>{"url"=>"MyString", "file"=>#<Rack::Test::UploadedFile:0x007faffcf6a3e8 @content_type="image/jpeg", @original_filename="dummy.png", @tempfile=#<Tempfile:/var/folders/ls/9bh0b9sj2tx8hdcb9zqkfz4r0000gn/T/dummy.png20140903-31465-19px8ek>>}, "id"=>"1"}
|
2312
|
+
[1m[35mBannerLite::ImageBanner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::ImageBanner') AND "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
2313
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2314
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2315
|
+
Redirected to http://test.host/banner_lite/image_banners/1
|
2316
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
|
2317
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
2318
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2319
|
+
Processing by BannerLite::ImageBannersController#new as HTML
|
2320
|
+
Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
|
2321
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2322
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2323
|
+
Processing by BannerLite::ImageBannersController#create as HTML
|
2324
|
+
Parameters: {"image_banner"=>{"url"=>"invalid value"}}
|
2325
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
2326
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2327
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2328
|
+
Processing by BannerLite::ImageBannersController#create as HTML
|
2329
|
+
Parameters: {"image_banner"=>{"url"=>"invalid value"}}
|
2330
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
2331
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2332
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2333
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::ImageBanner')[0m
|
2334
|
+
Processing by BannerLite::ImageBannersController#create as HTML
|
2335
|
+
Parameters: {"image_banner"=>{"url"=>"MyString", "file"=>#<Rack::Test::UploadedFile:0x007faffa9eb658 @content_type="image/jpeg", @original_filename="dummy.png", @tempfile=#<Tempfile:/var/folders/ls/9bh0b9sj2tx8hdcb9zqkfz4r0000gn/T/dummy.png20140903-31465-12a4xk>>}}
|
2336
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2337
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "banner_lite_banners" ("file_name", "type", "url") VALUES (?, ?, ?)[0m [["file_name", "dummy.png"], ["type", "BannerLite::ImageBanner"], ["url", "MyString"]]
|
2338
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2339
|
+
Redirected to http://test.host/banner_lite/image_banners/1
|
2340
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.3ms)
|
2341
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::ImageBanner')[0m
|
2342
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
2343
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2344
|
+
Processing by BannerLite::ImageBannersController#create as HTML
|
2345
|
+
Parameters: {"image_banner"=>{"url"=>"MyString", "file"=>#<Rack::Test::UploadedFile:0x007faffa9586a0 @content_type="image/jpeg", @original_filename="dummy.png", @tempfile=#<Tempfile:/var/folders/ls/9bh0b9sj2tx8hdcb9zqkfz4r0000gn/T/dummy.png20140903-31465-xfaizg>>}}
|
2346
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2347
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "banner_lite_banners" ("file_name", "type", "url") VALUES (?, ?, ?)[0m [["file_name", "dummy.png"], ["type", "BannerLite::ImageBanner"], ["url", "MyString"]]
|
2348
|
+
[1m[35m (0.5ms)[0m RELEASE SAVEPOINT active_record_1
|
2349
|
+
Redirected to http://test.host/banner_lite/image_banners/1
|
2350
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.8ms)
|
2351
|
+
[1m[36mBannerLite::ImageBanner Load (0.2ms)[0m [1mSELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::ImageBanner') ORDER BY "banner_lite_banners"."id" DESC LIMIT 1[0m
|
2352
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
2353
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2354
|
+
Processing by BannerLite::ImageBannersController#create as HTML
|
2355
|
+
Parameters: {"image_banner"=>{"url"=>"MyString", "file"=>#<Rack::Test::UploadedFile:0x007faffcf2bb70 @content_type="image/jpeg", @original_filename="dummy.png", @tempfile=#<Tempfile:/var/folders/ls/9bh0b9sj2tx8hdcb9zqkfz4r0000gn/T/dummy.png20140903-31465-1kdhczi>>}}
|
2356
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2357
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "banner_lite_banners" ("file_name", "type", "url") VALUES (?, ?, ?)[0m [["file_name", "dummy.png"], ["type", "BannerLite::ImageBanner"], ["url", "MyString"]]
|
2358
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2359
|
+
Redirected to http://test.host/banner_lite/image_banners/1
|
2360
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.5ms)
|
2361
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
2362
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2363
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2364
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2365
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2366
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "banner_lite_banners" ("banner_text", "type", "url") VALUES (?, ?, ?) [["banner_text", "Visit our special site!"], ["type", "BannerLite::TextBanner"], ["url", "http://www.google.co.jp"]]
|
2367
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2368
|
+
Processing by BannerLite::TextBannersController#index as HTML
|
2369
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
2370
|
+
[1m[35mBannerLite::TextBanner Load (0.2ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::TextBanner')
|
2371
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
2372
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2373
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2374
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("banner_text", "type", "url") VALUES (?, ?, ?) [["banner_text", "Visit our special site!"], ["type", "BannerLite::TextBanner"], ["url", "http://www.google.co.jp"]]
|
2375
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2376
|
+
Processing by BannerLite::TextBannersController#edit as HTML
|
2377
|
+
Parameters: {"id"=>"1"}
|
2378
|
+
[1m[35mBannerLite::TextBanner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::TextBanner') AND "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
2379
|
+
Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.1ms)
|
2380
|
+
[1m[36m (0.8ms)[0m [1mrollback transaction[0m
|
2381
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2382
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2383
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("banner_text", "type", "url") VALUES (?, ?, ?) [["banner_text", "Visit our special site!"], ["type", "BannerLite::TextBanner"], ["url", "http://www.google.co.jp"]]
|
2384
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2385
|
+
Processing by BannerLite::TextBannersController#destroy as HTML
|
2386
|
+
Parameters: {"id"=>"1"}
|
2387
|
+
[1m[35mBannerLite::TextBanner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::TextBanner') AND "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
2388
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2389
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::TextBanner') AND "banner_lite_banners"."id" = ? [["id", 1]]
|
2390
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2391
|
+
Redirected to http://test.host/banner_lite/text_banners
|
2392
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.5ms)
|
2393
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
2394
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2395
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2396
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "banner_lite_banners" ("banner_text", "type", "url") VALUES (?, ?, ?)[0m [["banner_text", "Visit our special site!"], ["type", "BannerLite::TextBanner"], ["url", "http://www.google.co.jp"]]
|
2397
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2398
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::TextBanner')[0m
|
2399
|
+
Processing by BannerLite::TextBannersController#destroy as HTML
|
2400
|
+
Parameters: {"id"=>"1"}
|
2401
|
+
[1m[35mBannerLite::TextBanner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::TextBanner') AND "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
2402
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2403
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::TextBanner') AND "banner_lite_banners"."id" = ? [["id", 1]]
|
2404
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2405
|
+
Redirected to http://test.host/banner_lite/text_banners
|
2406
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.5ms)
|
2407
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::TextBanner')
|
2408
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
2409
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2410
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2411
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("banner_text", "type", "url") VALUES (?, ?, ?) [["banner_text", "Visit our special site!"], ["type", "BannerLite::TextBanner"], ["url", "http://www.google.co.jp"]]
|
2412
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2413
|
+
Processing by BannerLite::TextBannersController#show as HTML
|
2414
|
+
Parameters: {"id"=>"1"}
|
2415
|
+
[1m[35mBannerLite::TextBanner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::TextBanner') AND "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
2416
|
+
Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.1ms)
|
2417
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
2418
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2419
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2420
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "banner_lite_banners" ("banner_text", "type", "url") VALUES (?, ?, ?) [["banner_text", "Visit our special site!"], ["type", "BannerLite::TextBanner"], ["url", "http://www.google.co.jp"]]
|
2421
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2422
|
+
Processing by BannerLite::TextBannersController#update as HTML
|
2423
|
+
Parameters: {"text_banner"=>{"url"=>"", "banner_text"=>""}, "id"=>"1"}
|
2424
|
+
[1m[35mBannerLite::TextBanner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::TextBanner') AND "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
2425
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2426
|
+
[1m[35m (6.6ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
2427
|
+
Completed 200 OK in 10ms (Views: 1.2ms | ActiveRecord: 6.7ms)
|
2428
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
2429
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2430
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2431
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("banner_text", "type", "url") VALUES (?, ?, ?) [["banner_text", "Visit our special site!"], ["type", "BannerLite::TextBanner"], ["url", "http://www.google.co.jp"]]
|
2432
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2433
|
+
Processing by BannerLite::TextBannersController#update as HTML
|
2434
|
+
Parameters: {"text_banner"=>{"url"=>"", "banner_text"=>""}, "id"=>"1"}
|
2435
|
+
[1m[35mBannerLite::TextBanner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::TextBanner') AND "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
2436
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2437
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
2438
|
+
Completed 200 OK in 3ms (Views: 0.7ms | ActiveRecord: 0.2ms)
|
2439
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
2440
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2441
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2442
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("banner_text", "type", "url") VALUES (?, ?, ?) [["banner_text", "Visit our special site!"], ["type", "BannerLite::TextBanner"], ["url", "http://www.google.co.jp"]]
|
2443
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2444
|
+
Processing by BannerLite::TextBannersController#update as HTML
|
2445
|
+
Parameters: {"text_banner"=>{"url"=>"http://www.google.co.jp"}, "id"=>"1"}
|
2446
|
+
[1m[35mBannerLite::TextBanner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::TextBanner') AND "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
2447
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2448
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2449
|
+
Redirected to http://test.host/banner_lite/text_banners/1
|
2450
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
|
2451
|
+
[1m[36mBannerLite::TextBanner Load (0.1ms)[0m [1mSELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::TextBanner') AND "banner_lite_banners"."id" = ? LIMIT 1[0m [["id", 1]]
|
2452
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
2453
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2454
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2455
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "banner_lite_banners" ("banner_text", "type", "url") VALUES (?, ?, ?)[0m [["banner_text", "Visit our special site!"], ["type", "BannerLite::TextBanner"], ["url", "http://www.google.co.jp"]]
|
2456
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2457
|
+
Processing by BannerLite::TextBannersController#update as HTML
|
2458
|
+
Parameters: {"text_banner"=>{"url"=>"http://www.google.co.jp", "banner_text"=>"Visit our special site!"}, "id"=>"1"}
|
2459
|
+
[1m[36mBannerLite::TextBanner Load (0.1ms)[0m [1mSELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::TextBanner') AND "banner_lite_banners"."id" = ? LIMIT 1[0m [["id", 1]]
|
2460
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2461
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2462
|
+
Redirected to http://test.host/banner_lite/text_banners/1
|
2463
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.2ms)
|
2464
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
2465
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2466
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2467
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "banner_lite_banners" ("banner_text", "type", "url") VALUES (?, ?, ?)[0m [["banner_text", "Visit our special site!"], ["type", "BannerLite::TextBanner"], ["url", "http://www.google.co.jp"]]
|
2468
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2469
|
+
Processing by BannerLite::TextBannersController#update as HTML
|
2470
|
+
Parameters: {"text_banner"=>{"url"=>"http://www.google.co.jp", "banner_text"=>"Visit our special site!"}, "id"=>"1"}
|
2471
|
+
[1m[36mBannerLite::TextBanner Load (0.1ms)[0m [1mSELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::TextBanner') AND "banner_lite_banners"."id" = ? LIMIT 1[0m [["id", 1]]
|
2472
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2473
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2474
|
+
Redirected to http://test.host/banner_lite/text_banners/1
|
2475
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
|
2476
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
2477
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2478
|
+
Processing by BannerLite::TextBannersController#new as HTML
|
2479
|
+
Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
2480
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2481
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2482
|
+
Processing by BannerLite::TextBannersController#create as HTML
|
2483
|
+
Parameters: {"text_banner"=>{"url"=>"", "banner_text"=>""}}
|
2484
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2485
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
2486
|
+
Completed 200 OK in 3ms (Views: 0.7ms | ActiveRecord: 0.1ms)
|
2487
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2488
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2489
|
+
Processing by BannerLite::TextBannersController#create as HTML
|
2490
|
+
Parameters: {"text_banner"=>{"url"=>"", "banner_text"=>""}}
|
2491
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2492
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
2493
|
+
Completed 200 OK in 3ms (Views: 0.7ms | ActiveRecord: 0.1ms)
|
2494
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2495
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2496
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::TextBanner')
|
2497
|
+
Processing by BannerLite::TextBannersController#create as HTML
|
2498
|
+
Parameters: {"text_banner"=>{"url"=>"http://www.google.co.jp", "banner_text"=>"Visit our special site!"}}
|
2499
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2500
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "banner_lite_banners" ("banner_text", "type", "url") VALUES (?, ?, ?) [["banner_text", "Visit our special site!"], ["type", "BannerLite::TextBanner"], ["url", "http://www.google.co.jp"]]
|
2501
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2502
|
+
Redirected to http://test.host/banner_lite/text_banners/1
|
2503
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
|
2504
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::TextBanner')
|
2505
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
2506
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2507
|
+
Processing by BannerLite::TextBannersController#create as HTML
|
2508
|
+
Parameters: {"text_banner"=>{"url"=>"http://www.google.co.jp", "banner_text"=>"Visit our special site!"}}
|
2509
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2510
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "banner_lite_banners" ("banner_text", "type", "url") VALUES (?, ?, ?) [["banner_text", "Visit our special site!"], ["type", "BannerLite::TextBanner"], ["url", "http://www.google.co.jp"]]
|
2511
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2512
|
+
Redirected to http://test.host/banner_lite/text_banners/1
|
2513
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.3ms)
|
2514
|
+
[1m[35mBannerLite::TextBanner Load (0.2ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::TextBanner') ORDER BY "banner_lite_banners"."id" DESC LIMIT 1
|
2515
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
2516
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2517
|
+
Processing by BannerLite::TextBannersController#create as HTML
|
2518
|
+
Parameters: {"text_banner"=>{"url"=>"http://www.google.co.jp", "banner_text"=>"Visit our special site!"}}
|
2519
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2520
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("banner_text", "type", "url") VALUES (?, ?, ?) [["banner_text", "Visit our special site!"], ["type", "BannerLite::TextBanner"], ["url", "http://www.google.co.jp"]]
|
2521
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2522
|
+
Redirected to http://test.host/banner_lite/text_banners/1
|
2523
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.4ms)
|
2524
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
2525
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2526
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2527
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "banner_lite_banners" ("active_from", "active_until", "file_name", "type", "url") VALUES (?, ?, ?, ?, ?)[0m [["active_from", "2014-08-03 08:18:33.857273"], ["active_until", "2014-09-03 08:18:32.858149"], ["file_name", "dummy.png"], ["type", "BannerLite::ImageBanner"], ["url", "http://example.com"]]
|
2528
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2529
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2530
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("active_from", "active_until", "file_name", "type", "url") VALUES (?, ?, ?, ?, ?) [["active_from", "2014-09-03 08:18:32.861041"], ["active_until", "2014-09-03 08:18:38.861062"], ["file_name", "dummy.png"], ["type", "BannerLite::ImageBanner"], ["url", "http://example.com"]]
|
2531
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2532
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2533
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "banner_lite_banners" ("active_from", "active_until", "file_name", "type", "url") VALUES (?, ?, ?, ?, ?)[0m [["active_from", "2014-09-03 08:18:38.862736"], ["active_until", "2014-10-03 08:18:33.862761"], ["file_name", "dummy.png"], ["type", "BannerLite::ImageBanner"], ["url", "http://example.com"]]
|
2534
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2535
|
+
[1m[36mBannerLite::ImageBanner Load (0.2ms)[0m [1mSELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::ImageBanner') AND ("banner_lite_banners"."active_from" <= '2014-09-03 08:18:33.864841' AND "banner_lite_banners"."active_until" > '2014-09-03 08:18:33.864841')[0m
|
2536
|
+
[1m[35m (1.1ms)[0m rollback transaction
|
2537
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2538
|
+
Started GET "/banner_lite/image_banners/new" for 127.0.0.1 at 2014-09-03 17:18:33 +0900
|
2539
|
+
Processing by BannerLite::ImageBannersController#new as HTML
|
2540
|
+
Rendered /Users/irohiroki/github/krayinc/banner_lite/app/views/banner_lite/image_banners/_form.html.erb (19.1ms)
|
2541
|
+
Completed 200 OK in 64ms (Views: 63.4ms | ActiveRecord: 0.0ms)
|
2542
|
+
Started POST "/banner_lite/image_banners" for 127.0.0.1 at 2014-09-03 17:18:33 +0900
|
2543
|
+
Processing by BannerLite::ImageBannersController#create as HTML
|
2544
|
+
Parameters: {"utf8"=>"✓", "image_banner"=>{"url"=>"http://rubyonrails.org", "file"=>#<ActionDispatch::Http::UploadedFile:0x007faffe5a8d30 @tempfile=#<Tempfile:/var/folders/ls/9bh0b9sj2tx8hdcb9zqkfz4r0000gn/T/RackMultipart20140903-31465-yomgc1>, @original_filename="image.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"image_banner[file]\"; filename=\"image.png\"\r\nContent-Type: image/png\r\nContent-Length: 901\r\n">, "active_from(1i)"=>"2014", "active_from(2i)"=>"9", "active_from(3i)"=>"3", "active_from(4i)"=>"08", "active_from(5i)"=>"18", "active_until(1i)"=>"2014", "active_until(2i)"=>"9", "active_until(3i)"=>"3", "active_until(4i)"=>"08", "active_until(5i)"=>"18"}, "commit"=>"Create Image banner"}
|
2545
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2546
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "banner_lite_banners" ("active_from", "active_until", "file_name", "type", "url") VALUES (?, ?, ?, ?, ?)[0m [["active_from", "2014-09-03 08:18:00.000000"], ["active_until", "2014-09-03 08:18:00.000000"], ["file_name", "image.png"], ["type", "BannerLite::ImageBanner"], ["url", "http://rubyonrails.org"]]
|
2547
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2548
|
+
Redirected to http://www.example.com/banner_lite/image_banners/1
|
2549
|
+
Completed 302 Found in 11ms (ActiveRecord: 0.4ms)
|
2550
|
+
Started GET "/banner_lite/image_banners/1" for 127.0.0.1 at 2014-09-03 17:18:33 +0900
|
2551
|
+
Processing by BannerLite::ImageBannersController#show as HTML
|
2552
|
+
Parameters: {"id"=>"1"}
|
2553
|
+
[1m[36mBannerLite::ImageBanner Load (0.1ms)[0m [1mSELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::ImageBanner') AND "banner_lite_banners"."id" = ? LIMIT 1[0m [["id", 1]]
|
2554
|
+
Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.1ms)
|
2555
|
+
[1m[35mBannerLite::ImageBanner Load (0.2ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::ImageBanner') ORDER BY "banner_lite_banners"."id" DESC LIMIT 1
|
2556
|
+
Started GET "/banner_lite/image_banners" for 127.0.0.1 at 2014-09-03 17:18:33 +0900
|
2557
|
+
Processing by BannerLite::ImageBannersController#index as HTML
|
2558
|
+
[1m[36mBannerLite::ImageBanner Load (0.2ms)[0m [1mSELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::ImageBanner')[0m
|
2559
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.2ms)
|
2560
|
+
Started DELETE "/banner_lite/image_banners/1" for 127.0.0.1 at 2014-09-03 17:18:33 +0900
|
2561
|
+
Processing by BannerLite::ImageBannersController#destroy as HTML
|
2562
|
+
Parameters: {"id"=>"1"}
|
2563
|
+
[1m[35mBannerLite::ImageBanner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::ImageBanner') AND "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
2564
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2565
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::ImageBanner') AND "banner_lite_banners"."id" = ? [["id", 1]]
|
2566
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2567
|
+
Redirected to http://www.example.com/banner_lite/image_banners
|
2568
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
|
2569
|
+
Started GET "/banner_lite/image_banners" for 127.0.0.1 at 2014-09-03 17:18:33 +0900
|
2570
|
+
Processing by BannerLite::ImageBannersController#index as HTML
|
2571
|
+
[1m[35mBannerLite::ImageBanner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::ImageBanner')
|
2572
|
+
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.1ms)
|
2573
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
2574
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2575
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2576
|
+
Started GET "/banner_lite/image_banners/new" for 127.0.0.1 at 2014-09-03 17:20:19 +0900
|
2577
|
+
Processing by BannerLite::ImageBannersController#new as HTML
|
2578
|
+
Rendered /Users/irohiroki/github/krayinc/banner_lite/app/views/banner_lite/image_banners/_form.html.erb (31.5ms)
|
2579
|
+
Rendered /Users/irohiroki/github/krayinc/banner_lite/app/views/banner_lite/image_banners/new.html.erb within layouts/banner_lite/application (36.7ms)
|
2580
|
+
Completed 200 OK in 63ms (Views: 61.1ms | ActiveRecord: 0.3ms)
|
2581
|
+
Started POST "/banner_lite/image_banners" for 127.0.0.1 at 2014-09-03 17:20:19 +0900
|
2582
|
+
Processing by BannerLite::ImageBannersController#create as HTML
|
2583
|
+
Parameters: {"utf8"=>"✓", "image_banner"=>{"url"=>"http://rubyonrails.org", "file"=>#<ActionDispatch::Http::UploadedFile:0x007fcc2d82a4a0 @tempfile=#<Tempfile:/var/folders/ls/9bh0b9sj2tx8hdcb9zqkfz4r0000gn/T/RackMultipart20140903-31517-15w88rh>, @original_filename="image.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"image_banner[file]\"; filename=\"image.png\"\r\nContent-Type: image/png\r\nContent-Length: 901\r\n">, "active_from(1i)"=>"2014", "active_from(2i)"=>"9", "active_from(3i)"=>"3", "active_from(4i)"=>"08", "active_from(5i)"=>"20", "active_until(1i)"=>"2014", "active_until(2i)"=>"9", "active_until(3i)"=>"3", "active_until(4i)"=>"08", "active_until(5i)"=>"20"}, "commit"=>"Create Image banner"}
|
2584
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2585
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "banner_lite_banners" ("active_from", "active_until", "file_name", "type", "url") VALUES (?, ?, ?, ?, ?) [["active_from", "2014-09-03 08:20:00.000000"], ["active_until", "2014-09-03 08:20:00.000000"], ["file_name", "image.png"], ["type", "BannerLite::ImageBanner"], ["url", "http://rubyonrails.org"]]
|
2586
|
+
[1m[36m (0.3ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2587
|
+
Redirected to http://www.example.com/banner_lite/image_banners/1
|
2588
|
+
Completed 302 Found in 14ms (ActiveRecord: 0.7ms)
|
2589
|
+
Started GET "/banner_lite/image_banners/1" for 127.0.0.1 at 2014-09-03 17:20:20 +0900
|
2590
|
+
Processing by BannerLite::ImageBannersController#show as HTML
|
2591
|
+
Parameters: {"id"=>"1"}
|
2592
|
+
[1m[35mBannerLite::ImageBanner Load (0.2ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::ImageBanner') AND "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
2593
|
+
Rendered /Users/irohiroki/github/krayinc/banner_lite/app/views/banner_lite/image_banners/show.html.erb within layouts/banner_lite/application (1.6ms)
|
2594
|
+
Completed 200 OK in 5ms (Views: 3.3ms | ActiveRecord: 0.2ms)
|
2595
|
+
[1m[36mBannerLite::ImageBanner Load (0.2ms)[0m [1mSELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::ImageBanner') ORDER BY "banner_lite_banners"."id" DESC LIMIT 1[0m
|
2596
|
+
Started GET "/banner_lite/image_banners" for 127.0.0.1 at 2014-09-03 17:20:20 +0900
|
2597
|
+
Processing by BannerLite::ImageBannersController#index as HTML
|
2598
|
+
[1m[35mBannerLite::ImageBanner Load (0.2ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::ImageBanner')
|
2599
|
+
Rendered /Users/irohiroki/github/krayinc/banner_lite/app/views/banner_lite/image_banners/index.html.erb within layouts/banner_lite/application (2.1ms)
|
2600
|
+
Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.2ms)
|
2601
|
+
Started DELETE "/banner_lite/image_banners/1" for 127.0.0.1 at 2014-09-03 17:20:20 +0900
|
2602
|
+
Processing by BannerLite::ImageBannersController#destroy as HTML
|
2603
|
+
Parameters: {"id"=>"1"}
|
2604
|
+
[1m[36mBannerLite::ImageBanner Load (0.2ms)[0m [1mSELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::ImageBanner') AND "banner_lite_banners"."id" = ? LIMIT 1[0m [["id", 1]]
|
2605
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2606
|
+
[1m[36mSQL (1.0ms)[0m [1mDELETE FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::ImageBanner') AND "banner_lite_banners"."id" = ?[0m [["id", 1]]
|
2607
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2608
|
+
Redirected to http://www.example.com/banner_lite/image_banners
|
2609
|
+
Completed 302 Found in 4ms (ActiveRecord: 1.3ms)
|
2610
|
+
Started GET "/banner_lite/image_banners" for 127.0.0.1 at 2014-09-03 17:20:20 +0900
|
2611
|
+
Processing by BannerLite::ImageBannersController#index as HTML
|
2612
|
+
[1m[36mBannerLite::ImageBanner Load (0.1ms)[0m [1mSELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::ImageBanner')[0m
|
2613
|
+
Rendered /Users/irohiroki/github/krayinc/banner_lite/app/views/banner_lite/image_banners/index.html.erb within layouts/banner_lite/application (0.5ms)
|
2614
|
+
Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.1ms)
|
2615
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
2616
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2617
|
+
Processing by BannerLite::TextBannersController#new as HTML
|
2618
|
+
Rendered /Users/irohiroki/github/krayinc/banner_lite/app/views/banner_lite/text_banners/new.html.erb within layouts/banner_lite/application (0.2ms)
|
2619
|
+
Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
|
2620
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2621
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2622
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2623
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "banner_lite_banners" ("banner_text", "type", "url") VALUES (?, ?, ?)[0m [["banner_text", "Visit our special site!"], ["type", "BannerLite::TextBanner"], ["url", "http://www.google.co.jp"]]
|
2624
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2625
|
+
Processing by BannerLite::TextBannersController#show as HTML
|
2626
|
+
Parameters: {"id"=>"1"}
|
2627
|
+
[1m[36mBannerLite::TextBanner Load (0.1ms)[0m [1mSELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::TextBanner') AND "banner_lite_banners"."id" = ? LIMIT 1[0m [["id", 1]]
|
2628
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.1ms)
|
2629
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
2630
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2631
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2632
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "banner_lite_banners" ("banner_text", "type", "url") VALUES (?, ?, ?)[0m [["banner_text", "Visit our special site!"], ["type", "BannerLite::TextBanner"], ["url", "http://www.google.co.jp"]]
|
2633
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2634
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::TextBanner')[0m
|
2635
|
+
Processing by BannerLite::TextBannersController#destroy as HTML
|
2636
|
+
Parameters: {"id"=>"1"}
|
2637
|
+
[1m[35mBannerLite::TextBanner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::TextBanner') AND "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
2638
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2639
|
+
[1m[35mSQL (0.5ms)[0m DELETE FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::TextBanner') AND "banner_lite_banners"."id" = ? [["id", 1]]
|
2640
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2641
|
+
Redirected to http://test.host/banner_lite/text_banners
|
2642
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.6ms)
|
2643
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::TextBanner')
|
2644
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
2645
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2646
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2647
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("banner_text", "type", "url") VALUES (?, ?, ?) [["banner_text", "Visit our special site!"], ["type", "BannerLite::TextBanner"], ["url", "http://www.google.co.jp"]]
|
2648
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2649
|
+
Processing by BannerLite::TextBannersController#destroy as HTML
|
2650
|
+
Parameters: {"id"=>"1"}
|
2651
|
+
[1m[35mBannerLite::TextBanner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::TextBanner') AND "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
2652
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2653
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::TextBanner') AND "banner_lite_banners"."id" = ? [["id", 1]]
|
2654
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2655
|
+
Redirected to http://test.host/banner_lite/text_banners
|
2656
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.5ms)
|
2657
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
2658
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2659
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2660
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "banner_lite_banners" ("banner_text", "type", "url") VALUES (?, ?, ?)[0m [["banner_text", "Visit our special site!"], ["type", "BannerLite::TextBanner"], ["url", "http://www.google.co.jp"]]
|
2661
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2662
|
+
Processing by BannerLite::TextBannersController#edit as HTML
|
2663
|
+
Parameters: {"id"=>"1"}
|
2664
|
+
[1m[36mBannerLite::TextBanner Load (0.2ms)[0m [1mSELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::TextBanner') AND "banner_lite_banners"."id" = ? LIMIT 1[0m [["id", 1]]
|
2665
|
+
Completed 200 OK in 4ms (Views: 2.2ms | ActiveRecord: 0.2ms)
|
2666
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
2667
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2668
|
+
Processing by BannerLite::TextBannersController#create as HTML
|
2669
|
+
Parameters: {"text_banner"=>{"url"=>"http://www.google.co.jp", "banner_text"=>"Visit our special site!"}}
|
2670
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2671
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "banner_lite_banners" ("banner_text", "type", "url") VALUES (?, ?, ?)[0m [["banner_text", "Visit our special site!"], ["type", "BannerLite::TextBanner"], ["url", "http://www.google.co.jp"]]
|
2672
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2673
|
+
Redirected to http://test.host/banner_lite/text_banners/1
|
2674
|
+
Completed 302 Found in 13ms (ActiveRecord: 0.7ms)
|
2675
|
+
[1m[36mBannerLite::TextBanner Load (0.2ms)[0m [1mSELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::TextBanner') ORDER BY "banner_lite_banners"."id" DESC LIMIT 1[0m
|
2676
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
2677
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2678
|
+
Processing by BannerLite::TextBannersController#create as HTML
|
2679
|
+
Parameters: {"text_banner"=>{"url"=>"http://www.google.co.jp", "banner_text"=>"Visit our special site!"}}
|
2680
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2681
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "banner_lite_banners" ("banner_text", "type", "url") VALUES (?, ?, ?)[0m [["banner_text", "Visit our special site!"], ["type", "BannerLite::TextBanner"], ["url", "http://www.google.co.jp"]]
|
2682
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2683
|
+
Redirected to http://test.host/banner_lite/text_banners/1
|
2684
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.3ms)
|
2685
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
2686
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2687
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::TextBanner')[0m
|
2688
|
+
Processing by BannerLite::TextBannersController#create as HTML
|
2689
|
+
Parameters: {"text_banner"=>{"url"=>"http://www.google.co.jp", "banner_text"=>"Visit our special site!"}}
|
2690
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2691
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "banner_lite_banners" ("banner_text", "type", "url") VALUES (?, ?, ?)[0m [["banner_text", "Visit our special site!"], ["type", "BannerLite::TextBanner"], ["url", "http://www.google.co.jp"]]
|
2692
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2693
|
+
Redirected to http://test.host/banner_lite/text_banners/1
|
2694
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.3ms)
|
2695
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::TextBanner')[0m
|
2696
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
2697
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2698
|
+
Processing by BannerLite::TextBannersController#create as HTML
|
2699
|
+
Parameters: {"text_banner"=>{"url"=>"", "banner_text"=>""}}
|
2700
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2701
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
2702
|
+
Completed 200 OK in 3ms (Views: 0.7ms | ActiveRecord: 0.1ms)
|
2703
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2704
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2705
|
+
Processing by BannerLite::TextBannersController#create as HTML
|
2706
|
+
Parameters: {"text_banner"=>{"url"=>"", "banner_text"=>""}}
|
2707
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2708
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
2709
|
+
Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 0.1ms)
|
2710
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2711
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2712
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2713
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "banner_lite_banners" ("banner_text", "type", "url") VALUES (?, ?, ?)[0m [["banner_text", "Visit our special site!"], ["type", "BannerLite::TextBanner"], ["url", "http://www.google.co.jp"]]
|
2714
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2715
|
+
Processing by BannerLite::TextBannersController#update as HTML
|
2716
|
+
Parameters: {"text_banner"=>{"url"=>"http://www.google.co.jp", "banner_text"=>"Visit our special site!"}, "id"=>"1"}
|
2717
|
+
[1m[36mBannerLite::TextBanner Load (0.1ms)[0m [1mSELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::TextBanner') AND "banner_lite_banners"."id" = ? LIMIT 1[0m [["id", 1]]
|
2718
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2719
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2720
|
+
Redirected to http://test.host/banner_lite/text_banners/1
|
2721
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
|
2722
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
2723
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2724
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2725
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "banner_lite_banners" ("banner_text", "type", "url") VALUES (?, ?, ?)[0m [["banner_text", "Visit our special site!"], ["type", "BannerLite::TextBanner"], ["url", "http://www.google.co.jp"]]
|
2726
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2727
|
+
Processing by BannerLite::TextBannersController#update as HTML
|
2728
|
+
Parameters: {"text_banner"=>{"url"=>"http://www.google.co.jp", "banner_text"=>"Visit our special site!"}, "id"=>"1"}
|
2729
|
+
[1m[36mBannerLite::TextBanner Load (0.1ms)[0m [1mSELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::TextBanner') AND "banner_lite_banners"."id" = ? LIMIT 1[0m [["id", 1]]
|
2730
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2731
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2732
|
+
Redirected to http://test.host/banner_lite/text_banners/1
|
2733
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.2ms)
|
2734
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
2735
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2736
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2737
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "banner_lite_banners" ("banner_text", "type", "url") VALUES (?, ?, ?)[0m [["banner_text", "Visit our special site!"], ["type", "BannerLite::TextBanner"], ["url", "http://www.google.co.jp"]]
|
2738
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2739
|
+
Processing by BannerLite::TextBannersController#update as HTML
|
2740
|
+
Parameters: {"text_banner"=>{"url"=>"http://www.google.co.jp"}, "id"=>"1"}
|
2741
|
+
[1m[36mBannerLite::TextBanner Load (0.1ms)[0m [1mSELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::TextBanner') AND "banner_lite_banners"."id" = ? LIMIT 1[0m [["id", 1]]
|
2742
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2743
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2744
|
+
Redirected to http://test.host/banner_lite/text_banners/1
|
2745
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.1ms)
|
2746
|
+
[1m[35mBannerLite::TextBanner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::TextBanner') AND "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
2747
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
2748
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2749
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2750
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("banner_text", "type", "url") VALUES (?, ?, ?) [["banner_text", "Visit our special site!"], ["type", "BannerLite::TextBanner"], ["url", "http://www.google.co.jp"]]
|
2751
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2752
|
+
Processing by BannerLite::TextBannersController#update as HTML
|
2753
|
+
Parameters: {"text_banner"=>{"url"=>"", "banner_text"=>""}, "id"=>"1"}
|
2754
|
+
[1m[35mBannerLite::TextBanner Load (0.2ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::TextBanner') AND "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
2755
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2756
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
2757
|
+
Completed 200 OK in 5ms (Views: 1.1ms | ActiveRecord: 0.3ms)
|
2758
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
2759
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2760
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2761
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("banner_text", "type", "url") VALUES (?, ?, ?) [["banner_text", "Visit our special site!"], ["type", "BannerLite::TextBanner"], ["url", "http://www.google.co.jp"]]
|
2762
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2763
|
+
Processing by BannerLite::TextBannersController#update as HTML
|
2764
|
+
Parameters: {"text_banner"=>{"url"=>"", "banner_text"=>""}, "id"=>"1"}
|
2765
|
+
[1m[35mBannerLite::TextBanner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::TextBanner') AND "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
2766
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2767
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
2768
|
+
Completed 200 OK in 3ms (Views: 0.7ms | ActiveRecord: 0.2ms)
|
2769
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
2770
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2771
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2772
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("banner_text", "type", "url") VALUES (?, ?, ?) [["banner_text", "Visit our special site!"], ["type", "BannerLite::TextBanner"], ["url", "http://www.google.co.jp"]]
|
2773
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2774
|
+
Processing by BannerLite::TextBannersController#index as HTML
|
2775
|
+
Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
2776
|
+
[1m[35mBannerLite::TextBanner Load (0.2ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::TextBanner')
|
2777
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
2778
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2779
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2780
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2781
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2782
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "banner_lite_banners" ("active_from", "active_until", "file_name", "type", "url") VALUES (?, ?, ?, ?, ?) [["active_from", "2014-08-03 08:20:20.159057"], ["active_until", "2014-09-03 08:20:19.159191"], ["file_name", "dummy.png"], ["type", "BannerLite::ImageBanner"], ["url", "http://example.com"]]
|
2783
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2784
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2785
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "banner_lite_banners" ("active_from", "active_until", "file_name", "type", "url") VALUES (?, ?, ?, ?, ?)[0m [["active_from", "2014-09-03 08:20:19.161837"], ["active_until", "2014-09-03 08:20:25.161858"], ["file_name", "dummy.png"], ["type", "BannerLite::ImageBanner"], ["url", "http://example.com"]]
|
2786
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2787
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2788
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "banner_lite_banners" ("active_from", "active_until", "file_name", "type", "url") VALUES (?, ?, ?, ?, ?) [["active_from", "2014-09-03 08:20:25.163612"], ["active_until", "2014-10-03 08:20:20.163636"], ["file_name", "dummy.png"], ["type", "BannerLite::ImageBanner"], ["url", "http://example.com"]]
|
2789
|
+
[1m[36m (0.8ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2790
|
+
[1m[35mBannerLite::ImageBanner Load (0.3ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::ImageBanner') AND ("banner_lite_banners"."active_from" <= '2014-09-03 08:20:20.166921' AND "banner_lite_banners"."active_until" > '2014-09-03 08:20:20.166921')
|
2791
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
2792
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2793
|
+
Processing by BannerLite::ImageBannersController#new as HTML
|
2794
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
2795
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2796
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2797
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2798
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("file_name", "type", "url") VALUES (?, ?, ?) [["file_name", "dummy.png"], ["type", "BannerLite::ImageBanner"], ["url", "MyString"]]
|
2799
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2800
|
+
Processing by BannerLite::ImageBannersController#show as HTML
|
2801
|
+
Parameters: {"id"=>"1"}
|
2802
|
+
[1m[35mBannerLite::ImageBanner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::ImageBanner') AND "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
2803
|
+
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.1ms)
|
2804
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
2805
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2806
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2807
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("file_name", "type", "url") VALUES (?, ?, ?) [["file_name", "dummy.png"], ["type", "BannerLite::ImageBanner"], ["url", "MyString"]]
|
2808
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2809
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::ImageBanner')
|
2810
|
+
Processing by BannerLite::ImageBannersController#destroy as HTML
|
2811
|
+
Parameters: {"id"=>"1"}
|
2812
|
+
[1m[36mBannerLite::ImageBanner Load (0.1ms)[0m [1mSELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::ImageBanner') AND "banner_lite_banners"."id" = ? LIMIT 1[0m [["id", 1]]
|
2813
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2814
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::ImageBanner') AND "banner_lite_banners"."id" = ?[0m [["id", 1]]
|
2815
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2816
|
+
Redirected to http://test.host/banner_lite/image_banners
|
2817
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.5ms)
|
2818
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::ImageBanner')[0m
|
2819
|
+
[1m[35m (1.3ms)[0m rollback transaction
|
2820
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2821
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2822
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "banner_lite_banners" ("file_name", "type", "url") VALUES (?, ?, ?)[0m [["file_name", "dummy.png"], ["type", "BannerLite::ImageBanner"], ["url", "MyString"]]
|
2823
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2824
|
+
Processing by BannerLite::ImageBannersController#destroy as HTML
|
2825
|
+
Parameters: {"id"=>"1"}
|
2826
|
+
[1m[36mBannerLite::ImageBanner Load (0.1ms)[0m [1mSELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::ImageBanner') AND "banner_lite_banners"."id" = ? LIMIT 1[0m [["id", 1]]
|
2827
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2828
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::ImageBanner') AND "banner_lite_banners"."id" = ?[0m [["id", 1]]
|
2829
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2830
|
+
Redirected to http://test.host/banner_lite/image_banners
|
2831
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
|
2832
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
2833
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2834
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2835
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "banner_lite_banners" ("file_name", "type", "url") VALUES (?, ?, ?) [["file_name", "dummy.png"], ["type", "BannerLite::ImageBanner"], ["url", "MyString"]]
|
2836
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2837
|
+
Processing by BannerLite::ImageBannersController#edit as HTML
|
2838
|
+
Parameters: {"id"=>"1"}
|
2839
|
+
[1m[35mBannerLite::ImageBanner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::ImageBanner') AND "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
2840
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.1ms)
|
2841
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
2842
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2843
|
+
Processing by BannerLite::ImageBannersController#create as HTML
|
2844
|
+
Parameters: {"image_banner"=>{"url"=>"MyString", "file"=>#<Rack::Test::UploadedFile:0x007fcc2e9a09f0 @content_type="image/jpeg", @original_filename="dummy.png", @tempfile=#<Tempfile:/var/folders/ls/9bh0b9sj2tx8hdcb9zqkfz4r0000gn/T/dummy.png20140903-31517-1on738f>>}}
|
2845
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2846
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("file_name", "type", "url") VALUES (?, ?, ?) [["file_name", "dummy.png"], ["type", "BannerLite::ImageBanner"], ["url", "MyString"]]
|
2847
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2848
|
+
Redirected to http://test.host/banner_lite/image_banners/1
|
2849
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
|
2850
|
+
[1m[35mBannerLite::ImageBanner Load (0.2ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::ImageBanner') ORDER BY "banner_lite_banners"."id" DESC LIMIT 1
|
2851
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
2852
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2853
|
+
Processing by BannerLite::ImageBannersController#create as HTML
|
2854
|
+
Parameters: {"image_banner"=>{"url"=>"MyString", "file"=>#<Rack::Test::UploadedFile:0x007fcc2e943ca0 @content_type="image/jpeg", @original_filename="dummy.png", @tempfile=#<Tempfile:/var/folders/ls/9bh0b9sj2tx8hdcb9zqkfz4r0000gn/T/dummy.png20140903-31517-of86mg>>}}
|
2855
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2856
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("file_name", "type", "url") VALUES (?, ?, ?) [["file_name", "dummy.png"], ["type", "BannerLite::ImageBanner"], ["url", "MyString"]]
|
2857
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2858
|
+
Redirected to http://test.host/banner_lite/image_banners/1
|
2859
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.3ms)
|
2860
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
2861
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2862
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::ImageBanner')
|
2863
|
+
Processing by BannerLite::ImageBannersController#create as HTML
|
2864
|
+
Parameters: {"image_banner"=>{"url"=>"MyString", "file"=>#<Rack::Test::UploadedFile:0x007fcc2e8e1000 @content_type="image/jpeg", @original_filename="dummy.png", @tempfile=#<Tempfile:/var/folders/ls/9bh0b9sj2tx8hdcb9zqkfz4r0000gn/T/dummy.png20140903-31517-6m0bew>>}}
|
2865
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2866
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "banner_lite_banners" ("file_name", "type", "url") VALUES (?, ?, ?) [["file_name", "dummy.png"], ["type", "BannerLite::ImageBanner"], ["url", "MyString"]]
|
2867
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2868
|
+
Redirected to http://test.host/banner_lite/image_banners/1
|
2869
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.4ms)
|
2870
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::ImageBanner')
|
2871
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
2872
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2873
|
+
Processing by BannerLite::ImageBannersController#create as HTML
|
2874
|
+
Parameters: {"image_banner"=>{"url"=>"invalid value"}}
|
2875
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
2876
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2877
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2878
|
+
Processing by BannerLite::ImageBannersController#create as HTML
|
2879
|
+
Parameters: {"image_banner"=>{"url"=>"invalid value"}}
|
2880
|
+
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
2881
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2882
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2883
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2884
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("file_name", "type", "url") VALUES (?, ?, ?) [["file_name", "dummy.png"], ["type", "BannerLite::ImageBanner"], ["url", "MyString"]]
|
2885
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2886
|
+
Processing by BannerLite::ImageBannersController#update as HTML
|
2887
|
+
Parameters: {"image_banner"=>{"url"=>"MyString", "file"=>#<Rack::Test::UploadedFile:0x007fcc2dfea528 @content_type="image/jpeg", @original_filename="dummy.png", @tempfile=#<Tempfile:/var/folders/ls/9bh0b9sj2tx8hdcb9zqkfz4r0000gn/T/dummy.png20140903-31517-1492680>>}, "id"=>"1"}
|
2888
|
+
[1m[35mBannerLite::ImageBanner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::ImageBanner') AND "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
2889
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2890
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2891
|
+
Redirected to http://test.host/banner_lite/image_banners/1
|
2892
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
|
2893
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
2894
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2895
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2896
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("file_name", "type", "url") VALUES (?, ?, ?) [["file_name", "dummy.png"], ["type", "BannerLite::ImageBanner"], ["url", "MyString"]]
|
2897
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2898
|
+
Processing by BannerLite::ImageBannersController#update as HTML
|
2899
|
+
Parameters: {"image_banner"=>{"url"=>"MyString", "file"=>#<Rack::Test::UploadedFile:0x007fcc2df796c0 @content_type="image/jpeg", @original_filename="dummy.png", @tempfile=#<Tempfile:/var/folders/ls/9bh0b9sj2tx8hdcb9zqkfz4r0000gn/T/dummy.png20140903-31517-3xvkqk>>}, "id"=>"1"}
|
2900
|
+
[1m[35mBannerLite::ImageBanner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::ImageBanner') AND "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
2901
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2902
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2903
|
+
Redirected to http://test.host/banner_lite/image_banners/1
|
2904
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
|
2905
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
2906
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2907
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2908
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("file_name", "type", "url") VALUES (?, ?, ?) [["file_name", "dummy.png"], ["type", "BannerLite::ImageBanner"], ["url", "MyString"]]
|
2909
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2910
|
+
Processing by BannerLite::ImageBannersController#update as HTML
|
2911
|
+
Parameters: {"image_banner"=>{"url"=>"MyString"}, "id"=>"1"}
|
2912
|
+
[1m[35mBannerLite::ImageBanner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::ImageBanner') AND "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
2913
|
+
Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.1ms)
|
2914
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
2915
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2916
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2917
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("file_name", "type", "url") VALUES (?, ?, ?) [["file_name", "dummy.png"], ["type", "BannerLite::ImageBanner"], ["url", "MyString"]]
|
2918
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2919
|
+
Processing by BannerLite::ImageBannersController#update as HTML
|
2920
|
+
Parameters: {"image_banner"=>{"url"=>"invalid value"}, "id"=>"1"}
|
2921
|
+
[1m[35mBannerLite::ImageBanner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::ImageBanner') AND "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
2922
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2923
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
2924
|
+
Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.2ms)
|
2925
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
2926
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2927
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2928
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("file_name", "type", "url") VALUES (?, ?, ?) [["file_name", "dummy.png"], ["type", "BannerLite::ImageBanner"], ["url", "MyString"]]
|
2929
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2930
|
+
Processing by BannerLite::ImageBannersController#update as HTML
|
2931
|
+
Parameters: {"image_banner"=>{"url"=>"invalid value"}, "id"=>"1"}
|
2932
|
+
[1m[35mBannerLite::ImageBanner Load (0.1ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::ImageBanner') AND "banner_lite_banners"."id" = ? LIMIT 1 [["id", 1]]
|
2933
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2934
|
+
[1m[35m (0.2ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
2935
|
+
Completed 200 OK in 5ms (Views: 1.1ms | ActiveRecord: 0.4ms)
|
2936
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
2937
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2938
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2939
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "banner_lite_banners" ("file_name", "type", "url") VALUES (?, ?, ?) [["file_name", "dummy.png"], ["type", "BannerLite::ImageBanner"], ["url", "MyString"]]
|
2940
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2941
|
+
Processing by BannerLite::ImageBannersController#index as HTML
|
2942
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
2943
|
+
[1m[35mBannerLite::ImageBanner Load (0.2ms)[0m SELECT "banner_lite_banners".* FROM "banner_lite_banners" WHERE "banner_lite_banners"."type" IN ('BannerLite::ImageBanner')
|
2944
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|