oembed_provider_engine 0.1.0 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.rdoc +2 -2
- data/app/controllers/oembed_provider_engine/oembed_provider_controller.rb +1 -1
- data/app/models/oembed_provider_engine/oembed_providable.rb +1 -1
- data/lib/oembed_provider_engine/version.rb +1 -1
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/production.sqlite3 +0 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +47 -0
- data/test/dummy/log/test.log +672 -0
- metadata +13 -3
data/README.rdoc
CHANGED
@@ -9,7 +9,7 @@ Turns your rails app into an {oembed}[http://oembed.com/] provider
|
|
9
9
|
=== Installation
|
10
10
|
Add the following to your Gemfile:
|
11
11
|
|
12
|
-
gem "
|
12
|
+
gem "oembed_provider_engine"
|
13
13
|
|
14
14
|
=== Provider Settings
|
15
15
|
Add a config/initializers/oembed_provider.rb file to configure your provider settings:
|
@@ -54,7 +54,7 @@ The current implementation directly accesses your application's model to fetch t
|
|
54
54
|
* proper handling of unauthorized
|
55
55
|
* migrate from shoulda to rspec
|
56
56
|
* caching
|
57
|
-
* allow
|
57
|
+
* allow for custom, additional fields in the response
|
58
58
|
|
59
59
|
== Contribute
|
60
60
|
Feel free to fork the project and send us pull requests.
|
@@ -134,7 +134,7 @@ module OembedProviderEngine
|
|
134
134
|
end
|
135
135
|
|
136
136
|
self.class.optional_attributes_specs.each do |k,v|
|
137
|
-
send(k.to_s + '=', providable.send(v))
|
137
|
+
send(k.to_s + '=', providable.send(v)) if providable.respond_to?(v)
|
138
138
|
end
|
139
139
|
|
140
140
|
self.provider_name = self.class.providable_provider_name
|
Binary file
|
File without changes
|
Binary file
|
@@ -0,0 +1,47 @@
|
|
1
|
+
Connecting to database specified by database.yml
|
2
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
3
|
+
[1m[35m (2.7ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
4
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
5
|
+
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
6
|
+
[1m[36m (1.6ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
7
|
+
Migrating to CreateItems (20110212010602)
|
8
|
+
[1m[35m (0.0ms)[0m begin transaction
|
9
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "label" varchar(255) NOT NULL, "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
10
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20110212010602')
|
11
|
+
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
|
12
|
+
Migrating to CreatePhotos (20110212022722)
|
13
|
+
[1m[35m (0.0ms)[0m begin transaction
|
14
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "photos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "url" varchar(255) NOT NULL, "author_name" varchar(255), "author_url" varchar(255), "thumbnail_url" varchar(255), "width" integer NOT NULL, "height" integer NOT NULL, "thumbnail_width" integer, "thumbnail_height" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
15
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20110212022722')
|
16
|
+
[1m[36m (0.5ms)[0m [1mcommit transaction[0m
|
17
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
18
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
19
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("items")
|
20
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("photos")[0m
|
21
|
+
Connecting to database specified by database.yml
|
22
|
+
[1m[36m (1.4ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
23
|
+
Migrating to CreateItems (20110212010602)
|
24
|
+
Migrating to CreatePhotos (20110212022722)
|
25
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
26
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
27
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("items")
|
28
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("photos")[0m
|
29
|
+
Connecting to database specified by database.yml
|
30
|
+
[1m[36m (1.5ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
31
|
+
Migrating to CreateItems (20110212010602)
|
32
|
+
Migrating to CreatePhotos (20110212022722)
|
33
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
34
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
35
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("items")
|
36
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("photos")[0m
|
37
|
+
Connecting to database specified by database.yml
|
38
|
+
[1m[36m (1.4ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
39
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
40
|
+
[1m[36m (0.9ms)[0m [1mCREATE TABLE "items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "label" varchar(255) NOT NULL, "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
41
|
+
[1m[35m (0.7ms)[0m CREATE TABLE "photos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "url" varchar(255) NOT NULL, "author_name" varchar(255), "author_url" varchar(255), "thumbnail_url" varchar(255), "width" integer NOT NULL, "height" integer NOT NULL, "thumbnail_width" integer, "thumbnail_height" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
42
|
+
[1m[36m (0.6ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
43
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("schema_migrations")
|
44
|
+
[1m[36m (0.6ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
45
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
46
|
+
[1m[36m (0.5ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110212022722')[0m
|
47
|
+
[1m[35m (0.5ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110212010602')
|
@@ -0,0 +1,672 @@
|
|
1
|
+
Connecting to database specified by database.yml
|
2
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
3
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
8
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
9
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
10
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
13
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
14
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
15
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
16
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
17
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
18
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
19
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
20
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
21
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
22
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
23
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
24
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
25
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
26
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
27
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
28
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
29
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
30
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
31
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
32
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
33
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
34
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
35
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
36
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
37
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
38
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
39
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
40
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
41
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
42
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
43
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
44
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
45
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
46
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
47
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
48
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
49
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
50
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
51
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
52
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
53
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
54
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
55
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
56
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
57
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
58
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
59
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
60
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
61
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
62
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
63
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
64
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
65
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
66
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
67
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
68
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
69
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
70
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
71
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
72
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
73
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
74
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
75
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
76
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
77
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
78
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
79
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
80
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
81
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
82
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
83
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
84
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
85
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
86
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
87
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
88
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
89
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
90
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
91
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
92
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
93
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
94
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
95
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
96
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
97
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
98
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
99
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
100
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
101
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
102
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
103
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
104
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
105
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
106
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
107
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
108
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
109
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
110
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
111
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
112
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
113
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
114
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
115
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
116
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
117
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
118
|
+
Connecting to database specified by database.yml
|
119
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
120
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
121
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
122
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
123
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
124
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
125
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
126
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
127
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
128
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
129
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
130
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
131
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
132
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
133
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
134
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
135
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
136
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
137
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
138
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
139
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
140
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
141
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
142
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
143
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
144
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
145
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
146
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
147
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
148
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
149
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
150
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
151
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
152
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
153
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
154
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
155
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
156
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
157
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
158
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
159
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
160
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
161
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
162
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
163
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
164
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
165
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
166
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
167
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
168
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
169
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
170
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
171
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
172
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
173
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
174
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
175
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
176
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
177
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
178
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
179
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
180
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
181
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
182
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
183
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
184
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
185
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
186
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
187
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[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.0ms)[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 rollback transaction
|
199
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
200
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
201
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
202
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
203
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
204
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
205
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
206
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
207
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
208
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
209
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
210
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
211
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
212
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
213
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
214
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
215
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
216
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
217
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
218
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
219
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
220
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
221
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
222
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
223
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
224
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
225
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
226
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
227
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
228
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
229
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
230
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
231
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
232
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
233
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
234
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
235
|
+
Connecting to database specified by database.yml
|
236
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
237
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
238
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
239
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
240
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
241
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
242
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
243
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
244
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
245
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
246
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
247
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
248
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
249
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
250
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
251
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
252
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
253
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
254
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
255
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
256
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
257
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
258
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
259
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
260
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
261
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
262
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
263
|
+
[1m[35m (0.0ms)[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 rollback transaction
|
268
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
269
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
270
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
271
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
272
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
273
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
274
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
275
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
276
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
277
|
+
[1m[35m (0.0ms)[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.0ms)[0m rollback transaction
|
282
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
283
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
284
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
285
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
286
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
287
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
288
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
289
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
290
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
291
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
292
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
293
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
294
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
295
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
296
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
297
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
298
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
299
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
300
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
301
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
302
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
303
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
304
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
305
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
306
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
307
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
308
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
309
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
310
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
311
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
312
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
313
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
314
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
315
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
316
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
317
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
318
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
319
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
320
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
321
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
322
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
323
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
324
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
325
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
326
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
327
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
328
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
329
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
330
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
331
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
332
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
333
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
334
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
335
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
336
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
337
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
338
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
339
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
340
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
341
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
342
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
343
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
344
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
345
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
346
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
347
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
348
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
349
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
350
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
351
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
352
|
+
Connecting to database specified by database.yml
|
353
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
354
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
355
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
356
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
357
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
358
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
359
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
360
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
361
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
362
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
363
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
364
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
365
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
366
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
367
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
368
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
369
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
370
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
371
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
372
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
373
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
374
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
375
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
376
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
377
|
+
[1m[36mSQL (11.5ms)[0m [1mINSERT INTO "photos" ("author_name", "author_url", "created_at", "height", "thumbnail_height", "thumbnail_url", "thumbnail_width", "title", "updated_at", "url", "width") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["author_name", nil], ["author_url", nil], ["created_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["height", 400], ["thumbnail_height", nil], ["thumbnail_url", nil], ["thumbnail_width", nil], ["title", "a title1"], ["updated_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["url", "http://example.com/photo?id=1"], ["width", 600]]
|
378
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
379
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
380
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "photos" ("author_name", "author_url", "created_at", "height", "thumbnail_height", "thumbnail_url", "thumbnail_width", "title", "updated_at", "url", "width") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_name", "Snappy"], ["author_url", nil], ["created_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["height", 400], ["thumbnail_height", nil], ["thumbnail_url", nil], ["thumbnail_width", nil], ["title", "a title2"], ["updated_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["url", "http://example.com/photo?id=2"], ["width", 600]]
|
381
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
382
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
383
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
384
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
385
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "photos" ("author_name", "author_url", "created_at", "height", "thumbnail_height", "thumbnail_url", "thumbnail_width", "title", "updated_at", "url", "width") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["author_name", nil], ["author_url", nil], ["created_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["height", 400], ["thumbnail_height", nil], ["thumbnail_url", nil], ["thumbnail_width", nil], ["title", "a title3"], ["updated_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["url", "http://example.com/photo?id=3"], ["width", 600]]
|
386
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
387
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
388
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "photos" ("author_name", "author_url", "created_at", "height", "thumbnail_height", "thumbnail_url", "thumbnail_width", "title", "updated_at", "url", "width") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_name", nil], ["author_url", "http://snapsnap.com"], ["created_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["height", 400], ["thumbnail_height", nil], ["thumbnail_url", nil], ["thumbnail_width", nil], ["title", "a title4"], ["updated_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["url", "http://example.com/photo?id=4"], ["width", 600]]
|
389
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
390
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
391
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
392
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
393
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "photos" ("author_name", "author_url", "created_at", "height", "thumbnail_height", "thumbnail_url", "thumbnail_width", "title", "updated_at", "url", "width") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["author_name", nil], ["author_url", nil], ["created_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["height", 400], ["thumbnail_height", nil], ["thumbnail_url", nil], ["thumbnail_width", nil], ["title", "a title5"], ["updated_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["url", "http://example.com/photo?id=5"], ["width", 600]]
|
394
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
395
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
396
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "photos" ("author_name", "author_url", "created_at", "height", "thumbnail_height", "thumbnail_url", "thumbnail_width", "title", "updated_at", "url", "width") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_name", nil], ["author_url", nil], ["created_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["height", 400], ["thumbnail_height", 50], ["thumbnail_url", nil], ["thumbnail_width", nil], ["title", "a title6"], ["updated_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["url", "http://example.com/photo?id=6"], ["width", 600]]
|
397
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
398
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
399
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
400
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
401
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "photos" ("author_name", "author_url", "created_at", "height", "thumbnail_height", "thumbnail_url", "thumbnail_width", "title", "updated_at", "url", "width") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["author_name", nil], ["author_url", nil], ["created_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["height", 400], ["thumbnail_height", nil], ["thumbnail_url", nil], ["thumbnail_width", nil], ["title", "a title7"], ["updated_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["url", "http://example.com/photo?id=7"], ["width", 600]]
|
402
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
403
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
404
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "photos" ("author_name", "author_url", "created_at", "height", "thumbnail_height", "thumbnail_url", "thumbnail_width", "title", "updated_at", "url", "width") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_name", nil], ["author_url", nil], ["created_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["height", 400], ["thumbnail_height", nil], ["thumbnail_url", "http://snapsnap.com/thumb.jpg"], ["thumbnail_width", nil], ["title", "a title8"], ["updated_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["url", "http://example.com/photo?id=8"], ["width", 600]]
|
405
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
406
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
407
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
408
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
409
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "photos" ("author_name", "author_url", "created_at", "height", "thumbnail_height", "thumbnail_url", "thumbnail_width", "title", "updated_at", "url", "width") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["author_name", nil], ["author_url", nil], ["created_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["height", 400], ["thumbnail_height", nil], ["thumbnail_url", nil], ["thumbnail_width", nil], ["title", "a title9"], ["updated_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["url", "http://example.com/photo?id=9"], ["width", 600]]
|
410
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
411
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
412
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "photos" ("author_name", "author_url", "created_at", "height", "thumbnail_height", "thumbnail_url", "thumbnail_width", "title", "updated_at", "url", "width") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_name", nil], ["author_url", nil], ["created_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["height", 400], ["thumbnail_height", nil], ["thumbnail_url", nil], ["thumbnail_width", 50], ["title", "a title10"], ["updated_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["url", "http://example.com/photo?id=10"], ["width", 600]]
|
413
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
414
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
415
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
416
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
417
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "photos" ("author_name", "author_url", "created_at", "height", "thumbnail_height", "thumbnail_url", "thumbnail_width", "title", "updated_at", "url", "width") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["author_name", nil], ["author_url", nil], ["created_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["height", 400], ["thumbnail_height", nil], ["thumbnail_url", nil], ["thumbnail_width", nil], ["title", "a title11"], ["updated_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["url", "http://example.com/photo?id=11"], ["width", 600]]
|
418
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
419
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
420
|
+
[1m[35m (0.0ms)[0m begin transaction
|
421
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
422
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "photos" ("author_name", "author_url", "created_at", "height", "thumbnail_height", "thumbnail_url", "thumbnail_width", "title", "updated_at", "url", "width") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_name", nil], ["author_url", nil], ["created_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["height", 400], ["thumbnail_height", nil], ["thumbnail_url", nil], ["thumbnail_width", nil], ["title", "a title12"], ["updated_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["url", "http://example.com/photo?id=12"], ["width", 600]]
|
423
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
424
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
425
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
426
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
427
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "photos" ("author_name", "author_url", "created_at", "height", "thumbnail_height", "thumbnail_url", "thumbnail_width", "title", "updated_at", "url", "width") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["author_name", nil], ["author_url", nil], ["created_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["height", 400], ["thumbnail_height", nil], ["thumbnail_url", nil], ["thumbnail_width", nil], ["title", "a title13"], ["updated_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["url", "http://example.com/photo?id=13"], ["width", 600]]
|
428
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
429
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
430
|
+
[1m[35m (0.0ms)[0m begin transaction
|
431
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
432
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "photos" ("author_name", "author_url", "created_at", "height", "thumbnail_height", "thumbnail_url", "thumbnail_width", "title", "updated_at", "url", "width") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_name", nil], ["author_url", nil], ["created_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["height", 400], ["thumbnail_height", nil], ["thumbnail_url", nil], ["thumbnail_width", nil], ["title", "a title14"], ["updated_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["url", "http://example.com/photo?id=14"], ["width", 600]]
|
433
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
434
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
435
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
436
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
437
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "photos" ("author_name", "author_url", "created_at", "height", "thumbnail_height", "thumbnail_url", "thumbnail_width", "title", "updated_at", "url", "width") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["author_name", nil], ["author_url", nil], ["created_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["height", 400], ["thumbnail_height", nil], ["thumbnail_url", nil], ["thumbnail_width", nil], ["title", "a title15"], ["updated_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["url", "http://example.com/photo?id=15"], ["width", 600]]
|
438
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
439
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
440
|
+
[1m[35m (0.0ms)[0m begin transaction
|
441
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
442
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "photos" ("author_name", "author_url", "created_at", "height", "thumbnail_height", "thumbnail_url", "thumbnail_width", "title", "updated_at", "url", "width") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_name", nil], ["author_url", nil], ["created_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["height", 400], ["thumbnail_height", nil], ["thumbnail_url", nil], ["thumbnail_width", nil], ["title", "a title16"], ["updated_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["url", "http://example.com/photo?id=16"], ["width", 600]]
|
443
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
444
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
445
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
446
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
447
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "photos" ("author_name", "author_url", "created_at", "height", "thumbnail_height", "thumbnail_url", "thumbnail_width", "title", "updated_at", "url", "width") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["author_name", nil], ["author_url", nil], ["created_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["height", 400], ["thumbnail_height", nil], ["thumbnail_url", nil], ["thumbnail_width", nil], ["title", "a title17"], ["updated_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["url", "http://example.com/photo?id=17"], ["width", 600]]
|
448
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
449
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
450
|
+
[1m[35m (0.0ms)[0m begin transaction
|
451
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
452
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "photos" ("author_name", "author_url", "created_at", "height", "thumbnail_height", "thumbnail_url", "thumbnail_width", "title", "updated_at", "url", "width") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_name", nil], ["author_url", nil], ["created_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["height", 400], ["thumbnail_height", nil], ["thumbnail_url", nil], ["thumbnail_width", nil], ["title", "a title18"], ["updated_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["url", "http://example.com/photo?id=18"], ["width", 600]]
|
453
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
454
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
455
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
456
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
457
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "photos" ("author_name", "author_url", "created_at", "height", "thumbnail_height", "thumbnail_url", "thumbnail_width", "title", "updated_at", "url", "width") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["author_name", nil], ["author_url", nil], ["created_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["height", 400], ["thumbnail_height", nil], ["thumbnail_url", nil], ["thumbnail_width", nil], ["title", "a title19"], ["updated_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["url", "http://example.com/photo?id=19"], ["width", 600]]
|
458
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
459
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
460
|
+
[1m[35m (0.0ms)[0m begin transaction
|
461
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
462
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "photos" ("author_name", "author_url", "created_at", "height", "thumbnail_height", "thumbnail_url", "thumbnail_width", "title", "updated_at", "url", "width") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_name", nil], ["author_url", nil], ["created_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["height", 400], ["thumbnail_height", nil], ["thumbnail_url", nil], ["thumbnail_width", nil], ["title", "a title20"], ["updated_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["url", "http://example.com/photo?id=20"], ["width", 600]]
|
463
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
464
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
465
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
466
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
467
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "photos" ("author_name", "author_url", "created_at", "height", "thumbnail_height", "thumbnail_url", "thumbnail_width", "title", "updated_at", "url", "width") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["author_name", nil], ["author_url", nil], ["created_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["height", 400], ["thumbnail_height", nil], ["thumbnail_url", nil], ["thumbnail_width", nil], ["title", "a title21"], ["updated_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["url", "http://example.com/photo?id=21"], ["width", 600]]
|
468
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
469
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
470
|
+
[1m[35m (0.0ms)[0m begin transaction
|
471
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
472
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "photos" ("author_name", "author_url", "created_at", "height", "thumbnail_height", "thumbnail_url", "thumbnail_width", "title", "updated_at", "url", "width") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_name", nil], ["author_url", nil], ["created_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["height", 400], ["thumbnail_height", nil], ["thumbnail_url", nil], ["thumbnail_width", nil], ["title", "a title22"], ["updated_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["url", "http://example.com/photo?id=22"], ["width", 600]]
|
473
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
474
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
475
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
476
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
477
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
478
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
479
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "photos" ("author_name", "author_url", "created_at", "height", "thumbnail_height", "thumbnail_url", "thumbnail_width", "title", "updated_at", "url", "width") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["author_name", nil], ["author_url", nil], ["created_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["height", 400], ["thumbnail_height", nil], ["thumbnail_url", nil], ["thumbnail_width", nil], ["title", "a title23"], ["updated_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["url", "http://example.com/photo?id=23"], ["width", 600]]
|
480
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
481
|
+
[1m[36mPhoto Load (0.1ms)[0m [1mSELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1[0m [["id", "1"]]
|
482
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
483
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
484
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
485
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
486
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
487
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
488
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
489
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
490
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
491
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
492
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
493
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
494
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
495
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
496
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
497
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
498
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
499
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
500
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
501
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
502
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
503
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
504
|
+
[1m[35mPhoto Load (0.1ms)[0m SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", "123"]]
|
505
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
506
|
+
[1m[35m (0.0ms)[0m begin transaction
|
507
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
508
|
+
[1m[35m (0.0ms)[0m begin transaction
|
509
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
510
|
+
[1m[35m (0.0ms)[0m begin transaction
|
511
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
512
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "photos" ("author_name", "author_url", "created_at", "height", "thumbnail_height", "thumbnail_url", "thumbnail_width", "title", "updated_at", "url", "width") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_name", nil], ["author_url", nil], ["created_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["height", 400], ["thumbnail_height", nil], ["thumbnail_url", nil], ["thumbnail_width", nil], ["title", "a title24"], ["updated_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["url", "http://example.com/photo?id=24"], ["width", 600]]
|
513
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
514
|
+
Processing by OembedProviderEngine::OembedProviderController#endpoint as JSON
|
515
|
+
Parameters: {"url"=>"http://example.com/photos/1"}
|
516
|
+
[1m[35mPhoto Load (0.1ms)[0m SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", "1"]]
|
517
|
+
Rendered text template (0.0ms)
|
518
|
+
Completed 200 OK in 37ms (Views: 34.6ms | ActiveRecord: 0.1ms)
|
519
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
520
|
+
[1m[35m (0.0ms)[0m begin transaction
|
521
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
522
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "photos" ("author_name", "author_url", "created_at", "height", "thumbnail_height", "thumbnail_url", "thumbnail_width", "title", "updated_at", "url", "width") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_name", nil], ["author_url", nil], ["created_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["height", 400], ["thumbnail_height", nil], ["thumbnail_url", nil], ["thumbnail_width", nil], ["title", "a title25"], ["updated_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["url", "http://example.com/photo?id=25"], ["width", 600]]
|
523
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
524
|
+
Processing by OembedProviderEngine::OembedProviderController#endpoint as JSON
|
525
|
+
Parameters: {"url"=>"http://example.com/photos/1"}
|
526
|
+
[1m[35mPhoto Load (0.0ms)[0m SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", "1"]]
|
527
|
+
Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
528
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
529
|
+
[1m[35m (0.0ms)[0m begin transaction
|
530
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
531
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "photos" ("author_name", "author_url", "created_at", "height", "thumbnail_height", "thumbnail_url", "thumbnail_width", "title", "updated_at", "url", "width") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_name", nil], ["author_url", nil], ["created_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["height", 400], ["thumbnail_height", nil], ["thumbnail_url", nil], ["thumbnail_width", nil], ["title", "a title26"], ["updated_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["url", "http://example.com/photo?id=26"], ["width", 600]]
|
532
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
533
|
+
Processing by OembedProviderEngine::OembedProviderController#endpoint as JSON
|
534
|
+
Parameters: {"url"=>"http://example.com/photos/1", "callback"=>"myCallback"}
|
535
|
+
[1m[35mPhoto Load (0.0ms)[0m SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", "1"]]
|
536
|
+
Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
537
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
538
|
+
[1m[35m (0.0ms)[0m begin transaction
|
539
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
540
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "photos" ("author_name", "author_url", "created_at", "height", "thumbnail_height", "thumbnail_url", "thumbnail_width", "title", "updated_at", "url", "width") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_name", nil], ["author_url", nil], ["created_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["height", 400], ["thumbnail_height", nil], ["thumbnail_url", nil], ["thumbnail_width", nil], ["title", "a title27"], ["updated_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["url", "http://example.com/photo?id=27"], ["width", 600]]
|
541
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
542
|
+
Processing by OembedProviderEngine::OembedProviderController#endpoint as JSON
|
543
|
+
Parameters: {"url"=>"http://example.com/photos/1"}
|
544
|
+
[1m[35mPhoto Load (0.0ms)[0m SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", "1"]]
|
545
|
+
Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
546
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
547
|
+
[1m[35m (0.0ms)[0m begin transaction
|
548
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
549
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "photos" ("author_name", "author_url", "created_at", "height", "thumbnail_height", "thumbnail_url", "thumbnail_width", "title", "updated_at", "url", "width") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_name", nil], ["author_url", nil], ["created_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["height", 400], ["thumbnail_height", nil], ["thumbnail_url", nil], ["thumbnail_width", nil], ["title", "a title28"], ["updated_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["url", "http://example.com/photo?id=28"], ["width", 600]]
|
550
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
551
|
+
Processing by OembedProviderEngine::OembedProviderController#endpoint as XML
|
552
|
+
Parameters: {"url"=>"http://example.com/photos/1"}
|
553
|
+
[1m[35mPhoto Load (0.0ms)[0m SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", "1"]]
|
554
|
+
Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
555
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
556
|
+
[1m[35m (0.1ms)[0m begin transaction
|
557
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
558
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "photos" ("author_name", "author_url", "created_at", "height", "thumbnail_height", "thumbnail_url", "thumbnail_width", "title", "updated_at", "url", "width") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_name", nil], ["author_url", nil], ["created_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["height", 400], ["thumbnail_height", nil], ["thumbnail_url", nil], ["thumbnail_width", nil], ["title", "a title29"], ["updated_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["url", "http://example.com/photo?id=29"], ["width", 600]]
|
559
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
560
|
+
Processing by OembedProviderEngine::OembedProviderController#endpoint as HTML
|
561
|
+
Parameters: {"url"=>"http://example.com/photos/1"}
|
562
|
+
[1m[35mPhoto Load (0.0ms)[0m SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", "1"]]
|
563
|
+
Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
564
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
565
|
+
[1m[35m (0.0ms)[0m begin transaction
|
566
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
567
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "photos" ("author_name", "author_url", "created_at", "height", "thumbnail_height", "thumbnail_url", "thumbnail_width", "title", "updated_at", "url", "width") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_name", nil], ["author_url", nil], ["created_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["height", 400], ["thumbnail_height", nil], ["thumbnail_url", nil], ["thumbnail_width", nil], ["title", "a title30"], ["updated_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["url", "http://example.com/photo?id=30"], ["width", 600]]
|
568
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
569
|
+
|
570
|
+
|
571
|
+
Started GET "/oembed.json?url=http%3A//example.com/photos/1" for 127.0.0.1 at 2013-02-05 14:26:02 +0100
|
572
|
+
Processing by OembedProviderEngine::OembedProviderController#endpoint as JSON
|
573
|
+
Parameters: {"url"=>"http://example.com/photos/1"}
|
574
|
+
[1m[35mPhoto Load (0.1ms)[0m SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", "1"]]
|
575
|
+
Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)
|
576
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
577
|
+
[1m[35m (0.0ms)[0m begin transaction
|
578
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
579
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "photos" ("author_name", "author_url", "created_at", "height", "thumbnail_height", "thumbnail_url", "thumbnail_width", "title", "updated_at", "url", "width") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_name", nil], ["author_url", nil], ["created_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["height", 400], ["thumbnail_height", nil], ["thumbnail_url", nil], ["thumbnail_width", nil], ["title", "a title31"], ["updated_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["url", "http://example.com/photo?id=31"], ["width", 600]]
|
580
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
581
|
+
|
582
|
+
|
583
|
+
Started GET "/oembed?url=http%3A//example.com/photos/1&format=json" for 127.0.0.1 at 2013-02-05 14:26:02 +0100
|
584
|
+
Processing by OembedProviderEngine::OembedProviderController#endpoint as JSON
|
585
|
+
Parameters: {"url"=>"http://example.com/photos/1"}
|
586
|
+
[1m[35mPhoto Load (0.0ms)[0m SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", "1"]]
|
587
|
+
Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
588
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
589
|
+
[1m[35m (0.0ms)[0m begin transaction
|
590
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
591
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "photos" ("author_name", "author_url", "created_at", "height", "thumbnail_height", "thumbnail_url", "thumbnail_width", "title", "updated_at", "url", "width") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_name", nil], ["author_url", nil], ["created_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["height", 400], ["thumbnail_height", nil], ["thumbnail_url", nil], ["thumbnail_width", nil], ["title", "a title32"], ["updated_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["url", "http://example.com/photo?id=32"], ["width", 600]]
|
592
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
593
|
+
|
594
|
+
|
595
|
+
Started GET "/oembed?url=http%3A//example.com/photos/1" for 127.0.0.1 at 2013-02-05 14:26:02 +0100
|
596
|
+
Processing by OembedProviderEngine::OembedProviderController#endpoint as HTML
|
597
|
+
Parameters: {"url"=>"http://example.com/photos/1"}
|
598
|
+
[1m[35mPhoto Load (0.0ms)[0m SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", "1"]]
|
599
|
+
Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
600
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
601
|
+
[1m[35m (0.0ms)[0m begin transaction
|
602
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
603
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "photos" ("author_name", "author_url", "created_at", "height", "thumbnail_height", "thumbnail_url", "thumbnail_width", "title", "updated_at", "url", "width") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_name", nil], ["author_url", nil], ["created_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["height", 400], ["thumbnail_height", nil], ["thumbnail_url", nil], ["thumbnail_width", nil], ["title", "a title33"], ["updated_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["url", "http://example.com/photo?id=33"], ["width", 600]]
|
604
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
605
|
+
|
606
|
+
|
607
|
+
Started GET "/oembed.json?url=http%3A//example.com/photos/1&callback=myCallback" for 127.0.0.1 at 2013-02-05 14:26:02 +0100
|
608
|
+
Processing by OembedProviderEngine::OembedProviderController#endpoint as JSON
|
609
|
+
Parameters: {"url"=>"http://example.com/photos/1", "callback"=>"myCallback"}
|
610
|
+
[1m[35mPhoto Load (0.0ms)[0m SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", "1"]]
|
611
|
+
Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
612
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
613
|
+
[1m[35m (0.1ms)[0m begin transaction
|
614
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
615
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "photos" ("author_name", "author_url", "created_at", "height", "thumbnail_height", "thumbnail_url", "thumbnail_width", "title", "updated_at", "url", "width") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_name", nil], ["author_url", nil], ["created_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["height", 400], ["thumbnail_height", nil], ["thumbnail_url", nil], ["thumbnail_width", nil], ["title", "a title34"], ["updated_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["url", "http://example.com/photo?id=34"], ["width", 600]]
|
616
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
617
|
+
|
618
|
+
|
619
|
+
Started GET "/oembed.json?url=http%3A//example.com/photos/1&variable=myVar&callback=myCallback" for 127.0.0.1 at 2013-02-05 14:26:02 +0100
|
620
|
+
Processing by OembedProviderEngine::OembedProviderController#endpoint as JSON
|
621
|
+
Parameters: {"url"=>"http://example.com/photos/1", "variable"=>"myVar", "callback"=>"myCallback"}
|
622
|
+
[1m[35mPhoto Load (0.0ms)[0m SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", "1"]]
|
623
|
+
Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
624
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
625
|
+
[1m[35m (0.0ms)[0m begin transaction
|
626
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
627
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "photos" ("author_name", "author_url", "created_at", "height", "thumbnail_height", "thumbnail_url", "thumbnail_width", "title", "updated_at", "url", "width") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_name", nil], ["author_url", nil], ["created_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["height", 400], ["thumbnail_height", nil], ["thumbnail_url", nil], ["thumbnail_width", nil], ["title", "a title35"], ["updated_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["url", "http://example.com/photo?id=35"], ["width", 600]]
|
628
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
629
|
+
|
630
|
+
|
631
|
+
Started GET "/oembed.json?url=http%3A//example.com/photos/1&variable=myVar" for 127.0.0.1 at 2013-02-05 14:26:02 +0100
|
632
|
+
Processing by OembedProviderEngine::OembedProviderController#endpoint as JSON
|
633
|
+
Parameters: {"url"=>"http://example.com/photos/1", "variable"=>"myVar"}
|
634
|
+
[1m[35mPhoto Load (0.0ms)[0m SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", "1"]]
|
635
|
+
Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
636
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
637
|
+
[1m[35m (0.1ms)[0m begin transaction
|
638
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
639
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "photos" ("author_name", "author_url", "created_at", "height", "thumbnail_height", "thumbnail_url", "thumbnail_width", "title", "updated_at", "url", "width") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_name", nil], ["author_url", nil], ["created_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["height", 400], ["thumbnail_height", nil], ["thumbnail_url", nil], ["thumbnail_width", nil], ["title", "a title36"], ["updated_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["url", "http://example.com/photo?id=36"], ["width", 600]]
|
640
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
641
|
+
|
642
|
+
|
643
|
+
Started GET "/oembed.xml?url=http%3A//example.com/photos/1" for 127.0.0.1 at 2013-02-05 14:26:02 +0100
|
644
|
+
Processing by OembedProviderEngine::OembedProviderController#endpoint as XML
|
645
|
+
Parameters: {"url"=>"http://example.com/photos/1"}
|
646
|
+
[1m[35mPhoto Load (0.0ms)[0m SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", "1"]]
|
647
|
+
Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
648
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
649
|
+
[1m[35m (0.0ms)[0m begin transaction
|
650
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
651
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "photos" ("author_name", "author_url", "created_at", "height", "thumbnail_height", "thumbnail_url", "thumbnail_width", "title", "updated_at", "url", "width") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_name", nil], ["author_url", nil], ["created_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["height", 400], ["thumbnail_height", nil], ["thumbnail_url", nil], ["thumbnail_width", nil], ["title", "a title37"], ["updated_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["url", "http://example.com/photo?id=37"], ["width", 600]]
|
652
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
653
|
+
|
654
|
+
|
655
|
+
Started GET "/oembed?url=http%3A//example.com/photos/1&format=xml" for 127.0.0.1 at 2013-02-05 14:26:02 +0100
|
656
|
+
Processing by OembedProviderEngine::OembedProviderController#endpoint as XML
|
657
|
+
Parameters: {"url"=>"http://example.com/photos/1"}
|
658
|
+
[1m[35mPhoto Load (0.1ms)[0m SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", "1"]]
|
659
|
+
Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.1ms)
|
660
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
661
|
+
[1m[35m (0.0ms)[0m begin transaction
|
662
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
663
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "photos" ("author_name", "author_url", "created_at", "height", "thumbnail_height", "thumbnail_url", "thumbnail_width", "title", "updated_at", "url", "width") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["author_name", nil], ["author_url", nil], ["created_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["height", 400], ["thumbnail_height", nil], ["thumbnail_url", nil], ["thumbnail_width", nil], ["title", "a title38"], ["updated_at", Tue, 05 Feb 2013 13:26:02 UTC +00:00], ["url", "http://example.com/photo?id=38"], ["width", 600]]
|
664
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
665
|
+
|
666
|
+
|
667
|
+
Started GET "/photos/1" for 127.0.0.1 at 2013-02-05 14:26:02 +0100
|
668
|
+
Processing by PhotosController#show as HTML
|
669
|
+
Parameters: {"id"=>"1"}
|
670
|
+
[1m[35mPhoto Load (0.0ms)[0m SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", "1"]]
|
671
|
+
Completed 200 OK in 8ms (Views: 7.0ms | ActiveRecord: 0.0ms)
|
672
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: oembed_provider_engine
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -12,7 +12,7 @@ authors:
|
|
12
12
|
autorequire:
|
13
13
|
bindir: bin
|
14
14
|
cert_chain: []
|
15
|
-
date:
|
15
|
+
date: 2013-02-05 00:00:00.000000000 Z
|
16
16
|
dependencies:
|
17
17
|
- !ruby/object:Gem::Dependency
|
18
18
|
name: rails
|
@@ -282,9 +282,14 @@ files:
|
|
282
282
|
- test/dummy/config/locales/en.yml
|
283
283
|
- test/dummy/config/routes.rb
|
284
284
|
- test/dummy/config.ru
|
285
|
+
- test/dummy/db/development.sqlite3
|
285
286
|
- test/dummy/db/migrate/20110212010602_create_items.rb
|
286
287
|
- test/dummy/db/migrate/20110212022722_create_photos.rb
|
288
|
+
- test/dummy/db/production.sqlite3
|
287
289
|
- test/dummy/db/schema.rb
|
290
|
+
- test/dummy/db/test.sqlite3
|
291
|
+
- test/dummy/log/development.log
|
292
|
+
- test/dummy/log/test.log
|
288
293
|
- test/dummy/public/404.html
|
289
294
|
- test/dummy/public/422.html
|
290
295
|
- test/dummy/public/500.html
|
@@ -319,7 +324,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
319
324
|
version: '0'
|
320
325
|
requirements: []
|
321
326
|
rubyforge_project:
|
322
|
-
rubygems_version: 1.8.
|
327
|
+
rubygems_version: 1.8.25
|
323
328
|
signing_key:
|
324
329
|
specification_version: 3
|
325
330
|
summary: Oembed Provider Rails 3 Engine
|
@@ -359,9 +364,14 @@ test_files:
|
|
359
364
|
- test/dummy/config/locales/en.yml
|
360
365
|
- test/dummy/config/routes.rb
|
361
366
|
- test/dummy/config.ru
|
367
|
+
- test/dummy/db/development.sqlite3
|
362
368
|
- test/dummy/db/migrate/20110212010602_create_items.rb
|
363
369
|
- test/dummy/db/migrate/20110212022722_create_photos.rb
|
370
|
+
- test/dummy/db/production.sqlite3
|
364
371
|
- test/dummy/db/schema.rb
|
372
|
+
- test/dummy/db/test.sqlite3
|
373
|
+
- test/dummy/log/development.log
|
374
|
+
- test/dummy/log/test.log
|
365
375
|
- test/dummy/public/404.html
|
366
376
|
- test/dummy/public/422.html
|
367
377
|
- test/dummy/public/500.html
|