rails_sitemap 0.3.1 → 0.3.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/controllers/rails_sitemap/attachment_controller.rb +2 -2
- data/app/models/rails_sitemap/image_entry.rb +3 -3
- data/app/views/rails_sitemap/attachment/index.xml.erb +1 -1
- data/lib/rails_sitemap/version.rb +1 -1
- data/test/dummy/config/environments/test.rb +1 -0
- data/test/dummy/log/test.log +616 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bbffb53c6151e7bf16c6cd36410e47483381f2c5
|
4
|
+
data.tar.gz: bd45645aee7bd1d852304b3638cf92e802e0f88a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e84f5603da94358c548ff27f21100490cb6b0f6a708f7900fcec16d950c8920d9bacc430d2818ae027b384268342713cda84c42eb1475a05e26151860f632ede
|
7
|
+
data.tar.gz: 3bfe833524d89660458c2b2f81c950436f3e19d232180c51ca5a15d584fab9fcdd0fca5fd528330affe4e27f8271895ea55d98e097fe485dc9eec62ecfdcbe2d
|
@@ -14,8 +14,8 @@ module RailsSitemap
|
|
14
14
|
|
15
15
|
def set_images
|
16
16
|
@image_entries = RailsSitemap.hd_images.map do |hd_image|
|
17
|
-
|
18
|
-
ImageEntry.new(
|
17
|
+
image_url = ActionController::Base.helpers.asset_url(hd_image[:name])
|
18
|
+
ImageEntry.new(image_url, hd_image[:title], hd_image[:coordinates])
|
19
19
|
end
|
20
20
|
end
|
21
21
|
end
|
@@ -1,11 +1,11 @@
|
|
1
1
|
module RailsSitemap
|
2
2
|
class ImageEntry
|
3
|
-
attr :
|
3
|
+
attr :url, :title, :updated_at, :coordinates
|
4
4
|
|
5
|
-
def initialize(
|
5
|
+
def initialize(url, title = nil, coordinates = nil,
|
6
6
|
updated_at = RailsSitemap.updated_at)
|
7
7
|
|
8
|
-
@
|
8
|
+
@url = url
|
9
9
|
@title = title
|
10
10
|
@coordinates = coordinates
|
11
11
|
@updated_at = updated_at
|
@@ -7,7 +7,7 @@
|
|
7
7
|
<%end%>
|
8
8
|
<lastmod><%=image_entry.updated_at %></lastmod>
|
9
9
|
<image:image>
|
10
|
-
<image:loc
|
10
|
+
<image:loc><%=image_entry.url %></image:loc>
|
11
11
|
<%if image_entry.title%>
|
12
12
|
<image:title><%=image_entry.title %></image:title>
|
13
13
|
<%end%>
|
@@ -36,6 +36,7 @@ Rails.application.configure do
|
|
36
36
|
|
37
37
|
# Print deprecation notices to the stderr.
|
38
38
|
config.active_support.deprecation = :stderr
|
39
|
+
config.action_controller.asset_host = 'http://www.example.com/'
|
39
40
|
|
40
41
|
# Raises error for missing translations
|
41
42
|
# config.action_view.raise_on_missing_translations = true
|
data/test/dummy/log/test.log
CHANGED
@@ -9057,3 +9057,619 @@ Processing by RailsSitemap::SitemapsController#index as XML
|
|
9057
9057
|
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemaps/index.xml.erb (0.4ms)
|
9058
9058
|
Completed 200 OK in 6ms (Views: 4.3ms | ActiveRecord: 0.0ms)
|
9059
9059
|
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
9060
|
+
[1m[36mActiveRecord::SchemaMigration Load (2.3ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
9061
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
9062
|
+
---------------------------------------------------------
|
9063
|
+
SitemapsControllerTest: test_should_return_a_success_code
|
9064
|
+
---------------------------------------------------------
|
9065
|
+
Started GET "/sitemap_index.xml" for 127.0.0.1 at 2016-10-03 11:20:45 -0300
|
9066
|
+
Processing by RailsSitemap::SitemapsController#index as XML
|
9067
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemaps/index.xml.erb
|
9068
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemaps/index.xml.erb (4.4ms)
|
9069
|
+
Completed 200 OK in 33ms (Views: 27.3ms | ActiveRecord: 0.0ms)
|
9070
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
9071
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
9072
|
+
--------------------------------------------------------
|
9073
|
+
SitemapsControllerTest: test_should_return_the_right_xml
|
9074
|
+
--------------------------------------------------------
|
9075
|
+
Started GET "/sitemap_index.xml" for 127.0.0.1 at 2016-10-03 11:20:45 -0300
|
9076
|
+
Processing by RailsSitemap::SitemapsController#index as XML
|
9077
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemaps/index.xml.erb
|
9078
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemaps/index.xml.erb (0.6ms)
|
9079
|
+
Completed 200 OK in 12ms (Views: 8.8ms | ActiveRecord: 0.0ms)
|
9080
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
9081
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
9082
|
+
-----------------------------------------------------------
|
9083
|
+
AttachmentControllerTest: test_should_return_a_success_code
|
9084
|
+
-----------------------------------------------------------
|
9085
|
+
Started GET "/attachment-sitemap.xml" for 127.0.0.1 at 2016-10-03 11:20:45 -0300
|
9086
|
+
Processing by RailsSitemap::AttachmentController#index as XML
|
9087
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb
|
9088
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb (0.5ms)
|
9089
|
+
Completed 200 OK in 313ms (Views: 7.0ms | ActiveRecord: 0.0ms)
|
9090
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
9091
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
9092
|
+
----------------------------------------------------------
|
9093
|
+
AttachmentControllerTest: test_should_return_the_right_xml
|
9094
|
+
----------------------------------------------------------
|
9095
|
+
Started GET "/attachment-sitemap.xml" for 127.0.0.1 at 2016-10-03 11:20:45 -0300
|
9096
|
+
Processing by RailsSitemap::AttachmentController#index as XML
|
9097
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb
|
9098
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb (0.4ms)
|
9099
|
+
Completed 200 OK in 6ms (Views: 4.1ms | ActiveRecord: 0.0ms)
|
9100
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
9101
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
9102
|
+
----------------------------------------------------
|
9103
|
+
GeoControllerTest: test_should_return_a_success_code
|
9104
|
+
----------------------------------------------------
|
9105
|
+
Started GET "/geo-sitemap.xml" for 127.0.0.1 at 2016-10-03 11:20:45 -0300
|
9106
|
+
Processing by RailsSitemap::GeoController#index as XML
|
9107
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb
|
9108
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb (0.7ms)
|
9109
|
+
Completed 200 OK in 17ms (Views: 9.5ms | ActiveRecord: 0.0ms)
|
9110
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
9111
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
9112
|
+
---------------------------------------------------
|
9113
|
+
GeoControllerTest: test_should_return_the_right_xml
|
9114
|
+
---------------------------------------------------
|
9115
|
+
Started GET "/geo-sitemap.xml" for 127.0.0.1 at 2016-10-03 11:20:45 -0300
|
9116
|
+
Processing by RailsSitemap::GeoController#index as XML
|
9117
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb
|
9118
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb (0.3ms)
|
9119
|
+
Completed 200 OK in 6ms (Views: 4.3ms | ActiveRecord: 0.0ms)
|
9120
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
9121
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
9122
|
+
----------------------------
|
9123
|
+
RailsSitemapTest: test_truth
|
9124
|
+
----------------------------
|
9125
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
9126
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
9127
|
+
----------------------------------------------------------
|
9128
|
+
LocationsControllerTest: test_should_return_a_success_code
|
9129
|
+
----------------------------------------------------------
|
9130
|
+
Started GET "/locations.kml" for 127.0.0.1 at 2016-10-03 11:20:45 -0300
|
9131
|
+
Processing by RailsSitemap::LocationsController#index as KML
|
9132
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb
|
9133
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb (0.7ms)
|
9134
|
+
Completed 200 OK in 15ms (Views: 9.6ms | ActiveRecord: 0.0ms)
|
9135
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
9136
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
9137
|
+
---------------------------------------------------------
|
9138
|
+
LocationsControllerTest: test_should_return_the_right_xml
|
9139
|
+
---------------------------------------------------------
|
9140
|
+
Started GET "/locations.kml" for 127.0.0.1 at 2016-10-03 11:20:45 -0300
|
9141
|
+
Processing by RailsSitemap::LocationsController#index as KML
|
9142
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb
|
9143
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb (0.4ms)
|
9144
|
+
Completed 200 OK in 6ms (Views: 4.1ms | ActiveRecord: 0.0ms)
|
9145
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
9146
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
9147
|
+
---------------------------------------------------------------
|
9148
|
+
PagesControllerTest: test_should_return_the_articles_on_sitemap
|
9149
|
+
---------------------------------------------------------------
|
9150
|
+
[1m[36mArticle Load (2.5ms)[0m [1m[34mSELECT "articles".* FROM "articles" WHERE "articles"."name" = ? LIMIT ?[0m [["name", "My first article"], ["LIMIT", 1]]
|
9151
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
9152
|
+
[1m[35mSQL (2.4ms)[0m [1m[32mINSERT INTO "articles" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "My first article"], ["created_at", 2016-10-03 14:20:45 UTC], ["updated_at", 2016-10-03 14:20:45 UTC]]
|
9153
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
9154
|
+
Started GET "/pages-sitemap.xml" for 127.0.0.1 at 2016-10-03 11:20:46 -0300
|
9155
|
+
Processing by RailsSitemap::PagesController#index as XML
|
9156
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
9157
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb
|
9158
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb (0.5ms)
|
9159
|
+
Completed 200 OK in 19ms (Views: 6.7ms | ActiveRecord: 0.1ms)
|
9160
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles" ORDER BY "articles"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
9161
|
+
[1m[35m (2.1ms)[0m [1m[31mrollback transaction[0m
|
9162
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
9163
|
+
-----------------------------------------------------
|
9164
|
+
PagesControllerTest: test_should_return_the_right_xml
|
9165
|
+
-----------------------------------------------------
|
9166
|
+
Started GET "/pages-sitemap.xml" for 127.0.0.1 at 2016-10-03 11:20:46 -0300
|
9167
|
+
Processing by RailsSitemap::PagesController#index as XML
|
9168
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
9169
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb
|
9170
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb (0.8ms)
|
9171
|
+
Completed 200 OK in 11ms (Views: 8.7ms | ActiveRecord: 0.1ms)
|
9172
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
9173
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
9174
|
+
------------------------------------------------------
|
9175
|
+
PagesControllerTest: test_should_return_a_success_code
|
9176
|
+
------------------------------------------------------
|
9177
|
+
Started GET "/pages-sitemap.xml" for 127.0.0.1 at 2016-10-03 11:20:46 -0300
|
9178
|
+
Processing by RailsSitemap::PagesController#index as XML
|
9179
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
9180
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb
|
9181
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb (0.5ms)
|
9182
|
+
Completed 200 OK in 6ms (Views: 4.3ms | ActiveRecord: 0.1ms)
|
9183
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
9184
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
9185
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
9186
|
+
----------------------------------------------------------
|
9187
|
+
AttachmentControllerTest: test_should_return_the_right_xml
|
9188
|
+
----------------------------------------------------------
|
9189
|
+
Started GET "/attachment-sitemap.xml" for 127.0.0.1 at 2016-10-03 11:23:33 -0300
|
9190
|
+
Processing by RailsSitemap::AttachmentController#index as XML
|
9191
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb
|
9192
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb (1.3ms)
|
9193
|
+
Completed 200 OK in 231ms (Views: 6.3ms | ActiveRecord: 0.0ms)
|
9194
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
9195
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
9196
|
+
-----------------------------------------------------------
|
9197
|
+
AttachmentControllerTest: test_should_return_a_success_code
|
9198
|
+
-----------------------------------------------------------
|
9199
|
+
Started GET "/attachment-sitemap.xml" for 127.0.0.1 at 2016-10-03 11:23:34 -0300
|
9200
|
+
Processing by RailsSitemap::AttachmentController#index as XML
|
9201
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb
|
9202
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb (0.6ms)
|
9203
|
+
Completed 200 OK in 7ms (Views: 4.6ms | ActiveRecord: 0.0ms)
|
9204
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
9205
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
9206
|
+
----------------------------------------------------
|
9207
|
+
GeoControllerTest: test_should_return_a_success_code
|
9208
|
+
----------------------------------------------------
|
9209
|
+
Started GET "/geo-sitemap.xml" for 127.0.0.1 at 2016-10-03 11:23:34 -0300
|
9210
|
+
Processing by RailsSitemap::GeoController#index as XML
|
9211
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb
|
9212
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb (0.3ms)
|
9213
|
+
Completed 200 OK in 8ms (Views: 5.2ms | ActiveRecord: 0.0ms)
|
9214
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
9215
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
9216
|
+
---------------------------------------------------
|
9217
|
+
GeoControllerTest: test_should_return_the_right_xml
|
9218
|
+
---------------------------------------------------
|
9219
|
+
Started GET "/geo-sitemap.xml" for 127.0.0.1 at 2016-10-03 11:23:34 -0300
|
9220
|
+
Processing by RailsSitemap::GeoController#index as XML
|
9221
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb
|
9222
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb (0.4ms)
|
9223
|
+
Completed 200 OK in 6ms (Views: 4.2ms | ActiveRecord: 0.0ms)
|
9224
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
9225
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
9226
|
+
--------------------------------------------------------
|
9227
|
+
SitemapsControllerTest: test_should_return_the_right_xml
|
9228
|
+
--------------------------------------------------------
|
9229
|
+
Started GET "/sitemap_index.xml" for 127.0.0.1 at 2016-10-03 11:23:34 -0300
|
9230
|
+
Processing by RailsSitemap::SitemapsController#index as XML
|
9231
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemaps/index.xml.erb
|
9232
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemaps/index.xml.erb (0.4ms)
|
9233
|
+
Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.0ms)
|
9234
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
9235
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
9236
|
+
---------------------------------------------------------
|
9237
|
+
SitemapsControllerTest: test_should_return_a_success_code
|
9238
|
+
---------------------------------------------------------
|
9239
|
+
Started GET "/sitemap_index.xml" for 127.0.0.1 at 2016-10-03 11:23:34 -0300
|
9240
|
+
Processing by RailsSitemap::SitemapsController#index as XML
|
9241
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemaps/index.xml.erb
|
9242
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemaps/index.xml.erb (0.4ms)
|
9243
|
+
Completed 200 OK in 8ms (Views: 6.3ms | ActiveRecord: 0.0ms)
|
9244
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
9245
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
9246
|
+
----------------------------------------------------------
|
9247
|
+
LocationsControllerTest: test_should_return_a_success_code
|
9248
|
+
----------------------------------------------------------
|
9249
|
+
Started GET "/locations.kml" for 127.0.0.1 at 2016-10-03 11:23:34 -0300
|
9250
|
+
Processing by RailsSitemap::LocationsController#index as KML
|
9251
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb
|
9252
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb (0.4ms)
|
9253
|
+
Completed 200 OK in 6ms (Views: 4.3ms | ActiveRecord: 0.0ms)
|
9254
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
9255
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
9256
|
+
---------------------------------------------------------
|
9257
|
+
LocationsControllerTest: test_should_return_the_right_xml
|
9258
|
+
---------------------------------------------------------
|
9259
|
+
Started GET "/locations.kml" for 127.0.0.1 at 2016-10-03 11:23:34 -0300
|
9260
|
+
Processing by RailsSitemap::LocationsController#index as KML
|
9261
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb
|
9262
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb (0.4ms)
|
9263
|
+
Completed 200 OK in 6ms (Views: 4.6ms | ActiveRecord: 0.0ms)
|
9264
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
9265
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
9266
|
+
----------------------------
|
9267
|
+
RailsSitemapTest: test_truth
|
9268
|
+
----------------------------
|
9269
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
9270
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
9271
|
+
------------------------------------------------------
|
9272
|
+
PagesControllerTest: test_should_return_a_success_code
|
9273
|
+
------------------------------------------------------
|
9274
|
+
Started GET "/pages-sitemap.xml" for 127.0.0.1 at 2016-10-03 11:23:34 -0300
|
9275
|
+
Processing by RailsSitemap::PagesController#index as XML
|
9276
|
+
[1m[36mArticle Load (0.2ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
9277
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb
|
9278
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb (0.5ms)
|
9279
|
+
Completed 200 OK in 11ms (Views: 4.6ms | ActiveRecord: 0.5ms)
|
9280
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
9281
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
9282
|
+
-----------------------------------------------------
|
9283
|
+
PagesControllerTest: test_should_return_the_right_xml
|
9284
|
+
-----------------------------------------------------
|
9285
|
+
Started GET "/pages-sitemap.xml" for 127.0.0.1 at 2016-10-03 11:23:34 -0300
|
9286
|
+
Processing by RailsSitemap::PagesController#index as XML
|
9287
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
9288
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb
|
9289
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb (0.5ms)
|
9290
|
+
Completed 200 OK in 6ms (Views: 4.2ms | ActiveRecord: 0.1ms)
|
9291
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
9292
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
9293
|
+
---------------------------------------------------------------
|
9294
|
+
PagesControllerTest: test_should_return_the_articles_on_sitemap
|
9295
|
+
---------------------------------------------------------------
|
9296
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles" WHERE "articles"."name" = ? LIMIT ?[0m [["name", "My first article"], ["LIMIT", 1]]
|
9297
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
9298
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "articles" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "My first article"], ["created_at", 2016-10-03 14:23:34 UTC], ["updated_at", 2016-10-03 14:23:34 UTC]]
|
9299
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
9300
|
+
Started GET "/pages-sitemap.xml" for 127.0.0.1 at 2016-10-03 11:23:34 -0300
|
9301
|
+
Processing by RailsSitemap::PagesController#index as XML
|
9302
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
9303
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb
|
9304
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb (0.5ms)
|
9305
|
+
Completed 200 OK in 7ms (Views: 4.3ms | ActiveRecord: 0.1ms)
|
9306
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles" ORDER BY "articles"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
9307
|
+
[1m[35m (2.0ms)[0m [1m[31mrollback transaction[0m
|
9308
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
9309
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
9310
|
+
----------------------------------------------------------
|
9311
|
+
LocationsControllerTest: test_should_return_a_success_code
|
9312
|
+
----------------------------------------------------------
|
9313
|
+
Started GET "/locations.kml" for 127.0.0.1 at 2016-10-03 11:26:02 -0300
|
9314
|
+
Processing by RailsSitemap::LocationsController#index as KML
|
9315
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb
|
9316
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb (1.0ms)
|
9317
|
+
Completed 200 OK in 8ms (Views: 6.7ms | ActiveRecord: 0.0ms)
|
9318
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
9319
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
9320
|
+
---------------------------------------------------------
|
9321
|
+
LocationsControllerTest: test_should_return_the_right_xml
|
9322
|
+
---------------------------------------------------------
|
9323
|
+
Started GET "/locations.kml" for 127.0.0.1 at 2016-10-03 11:26:02 -0300
|
9324
|
+
Processing by RailsSitemap::LocationsController#index as KML
|
9325
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb
|
9326
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb (0.4ms)
|
9327
|
+
Completed 200 OK in 6ms (Views: 4.3ms | ActiveRecord: 0.0ms)
|
9328
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
9329
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
9330
|
+
----------------------------------------------------
|
9331
|
+
GeoControllerTest: test_should_return_a_success_code
|
9332
|
+
----------------------------------------------------
|
9333
|
+
Started GET "/geo-sitemap.xml" for 127.0.0.1 at 2016-10-03 11:26:02 -0300
|
9334
|
+
Processing by RailsSitemap::GeoController#index as XML
|
9335
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb
|
9336
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb (0.4ms)
|
9337
|
+
Completed 200 OK in 7ms (Views: 5.2ms | ActiveRecord: 0.0ms)
|
9338
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
9339
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
9340
|
+
---------------------------------------------------
|
9341
|
+
GeoControllerTest: test_should_return_the_right_xml
|
9342
|
+
---------------------------------------------------
|
9343
|
+
Started GET "/geo-sitemap.xml" for 127.0.0.1 at 2016-10-03 11:26:02 -0300
|
9344
|
+
Processing by RailsSitemap::GeoController#index as XML
|
9345
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb
|
9346
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb (0.3ms)
|
9347
|
+
Completed 200 OK in 6ms (Views: 3.9ms | ActiveRecord: 0.0ms)
|
9348
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
9349
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
9350
|
+
----------------------------
|
9351
|
+
RailsSitemapTest: test_truth
|
9352
|
+
----------------------------
|
9353
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
9354
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
9355
|
+
-----------------------------------------------------------
|
9356
|
+
AttachmentControllerTest: test_should_return_a_success_code
|
9357
|
+
-----------------------------------------------------------
|
9358
|
+
Started GET "/attachment-sitemap.xml" for 127.0.0.1 at 2016-10-03 11:26:02 -0300
|
9359
|
+
Processing by RailsSitemap::AttachmentController#index as XML
|
9360
|
+
Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.0ms)
|
9361
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
9362
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
9363
|
+
----------------------------------------------------------
|
9364
|
+
AttachmentControllerTest: test_should_return_the_right_xml
|
9365
|
+
----------------------------------------------------------
|
9366
|
+
Started GET "/attachment-sitemap.xml" for 127.0.0.1 at 2016-10-03 11:26:02 -0300
|
9367
|
+
Processing by RailsSitemap::AttachmentController#index as XML
|
9368
|
+
Completed 500 Internal Server Error in 16ms (ActiveRecord: 0.0ms)
|
9369
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
9370
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
9371
|
+
---------------------------------------------------------
|
9372
|
+
SitemapsControllerTest: test_should_return_a_success_code
|
9373
|
+
---------------------------------------------------------
|
9374
|
+
Started GET "/sitemap_index.xml" for 127.0.0.1 at 2016-10-03 11:26:02 -0300
|
9375
|
+
Processing by RailsSitemap::SitemapsController#index as XML
|
9376
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemaps/index.xml.erb
|
9377
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemaps/index.xml.erb (0.4ms)
|
9378
|
+
Completed 200 OK in 7ms (Views: 4.6ms | ActiveRecord: 0.0ms)
|
9379
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
9380
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
9381
|
+
--------------------------------------------------------
|
9382
|
+
SitemapsControllerTest: test_should_return_the_right_xml
|
9383
|
+
--------------------------------------------------------
|
9384
|
+
Started GET "/sitemap_index.xml" for 127.0.0.1 at 2016-10-03 11:26:02 -0300
|
9385
|
+
Processing by RailsSitemap::SitemapsController#index as XML
|
9386
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemaps/index.xml.erb
|
9387
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemaps/index.xml.erb (0.6ms)
|
9388
|
+
Completed 200 OK in 6ms (Views: 4.6ms | ActiveRecord: 0.0ms)
|
9389
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
9390
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
9391
|
+
------------------------------------------------------
|
9392
|
+
PagesControllerTest: test_should_return_a_success_code
|
9393
|
+
------------------------------------------------------
|
9394
|
+
Started GET "/pages-sitemap.xml" for 127.0.0.1 at 2016-10-03 11:26:02 -0300
|
9395
|
+
Processing by RailsSitemap::PagesController#index as XML
|
9396
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
9397
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb
|
9398
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb (0.6ms)
|
9399
|
+
Completed 200 OK in 9ms (Views: 4.4ms | ActiveRecord: 0.2ms)
|
9400
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
9401
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
9402
|
+
---------------------------------------------------------------
|
9403
|
+
PagesControllerTest: test_should_return_the_articles_on_sitemap
|
9404
|
+
---------------------------------------------------------------
|
9405
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles" WHERE "articles"."name" = ? LIMIT ?[0m [["name", "My first article"], ["LIMIT", 1]]
|
9406
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
9407
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "articles" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "My first article"], ["created_at", 2016-10-03 14:26:02 UTC], ["updated_at", 2016-10-03 14:26:02 UTC]]
|
9408
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
9409
|
+
Started GET "/pages-sitemap.xml" for 127.0.0.1 at 2016-10-03 11:26:02 -0300
|
9410
|
+
Processing by RailsSitemap::PagesController#index as XML
|
9411
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
9412
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb
|
9413
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb (0.6ms)
|
9414
|
+
Completed 200 OK in 8ms (Views: 4.8ms | ActiveRecord: 0.1ms)
|
9415
|
+
[1m[36mArticle Load (0.4ms)[0m [1m[34mSELECT "articles".* FROM "articles" ORDER BY "articles"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
9416
|
+
[1m[35m (2.0ms)[0m [1m[31mrollback transaction[0m
|
9417
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
9418
|
+
-----------------------------------------------------
|
9419
|
+
PagesControllerTest: test_should_return_the_right_xml
|
9420
|
+
-----------------------------------------------------
|
9421
|
+
Started GET "/pages-sitemap.xml" for 127.0.0.1 at 2016-10-03 11:26:02 -0300
|
9422
|
+
Processing by RailsSitemap::PagesController#index as XML
|
9423
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
9424
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb
|
9425
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb (0.5ms)
|
9426
|
+
Completed 200 OK in 7ms (Views: 4.4ms | ActiveRecord: 0.1ms)
|
9427
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
9428
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
9429
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
9430
|
+
-----------------------------------------------------------
|
9431
|
+
AttachmentControllerTest: test_should_return_a_success_code
|
9432
|
+
-----------------------------------------------------------
|
9433
|
+
Started GET "/attachment-sitemap.xml" for 127.0.0.1 at 2016-10-03 11:27:17 -0300
|
9434
|
+
Processing by RailsSitemap::AttachmentController#index as XML
|
9435
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb
|
9436
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb (1.8ms)
|
9437
|
+
Completed 200 OK in 249ms (Views: 8.4ms | ActiveRecord: 0.0ms)
|
9438
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
9439
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
9440
|
+
----------------------------------------------------------
|
9441
|
+
AttachmentControllerTest: test_should_return_the_right_xml
|
9442
|
+
----------------------------------------------------------
|
9443
|
+
Started GET "/attachment-sitemap.xml" for 127.0.0.1 at 2016-10-03 11:27:17 -0300
|
9444
|
+
Processing by RailsSitemap::AttachmentController#index as XML
|
9445
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb
|
9446
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb (0.4ms)
|
9447
|
+
Completed 200 OK in 6ms (Views: 4.1ms | ActiveRecord: 0.0ms)
|
9448
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
9449
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
9450
|
+
--------------------------------------------------------
|
9451
|
+
SitemapsControllerTest: test_should_return_the_right_xml
|
9452
|
+
--------------------------------------------------------
|
9453
|
+
Started GET "/sitemap_index.xml" for 127.0.0.1 at 2016-10-03 11:27:17 -0300
|
9454
|
+
Processing by RailsSitemap::SitemapsController#index as XML
|
9455
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemaps/index.xml.erb
|
9456
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemaps/index.xml.erb (0.5ms)
|
9457
|
+
Completed 200 OK in 7ms (Views: 4.8ms | ActiveRecord: 0.0ms)
|
9458
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
9459
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
9460
|
+
---------------------------------------------------------
|
9461
|
+
SitemapsControllerTest: test_should_return_a_success_code
|
9462
|
+
---------------------------------------------------------
|
9463
|
+
Started GET "/sitemap_index.xml" for 127.0.0.1 at 2016-10-03 11:27:17 -0300
|
9464
|
+
Processing by RailsSitemap::SitemapsController#index as XML
|
9465
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemaps/index.xml.erb
|
9466
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemaps/index.xml.erb (0.4ms)
|
9467
|
+
Completed 200 OK in 6ms (Views: 4.4ms | ActiveRecord: 0.0ms)
|
9468
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
9469
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
9470
|
+
----------------------------------------------------
|
9471
|
+
GeoControllerTest: test_should_return_a_success_code
|
9472
|
+
----------------------------------------------------
|
9473
|
+
Started GET "/geo-sitemap.xml" for 127.0.0.1 at 2016-10-03 11:27:17 -0300
|
9474
|
+
Processing by RailsSitemap::GeoController#index as XML
|
9475
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb
|
9476
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb (0.3ms)
|
9477
|
+
Completed 200 OK in 8ms (Views: 6.6ms | ActiveRecord: 0.0ms)
|
9478
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
9479
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
9480
|
+
---------------------------------------------------
|
9481
|
+
GeoControllerTest: test_should_return_the_right_xml
|
9482
|
+
---------------------------------------------------
|
9483
|
+
Started GET "/geo-sitemap.xml" for 127.0.0.1 at 2016-10-03 11:27:17 -0300
|
9484
|
+
Processing by RailsSitemap::GeoController#index as XML
|
9485
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb
|
9486
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb (0.3ms)
|
9487
|
+
Completed 200 OK in 6ms (Views: 4.0ms | ActiveRecord: 0.0ms)
|
9488
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
9489
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
9490
|
+
---------------------------------------------------------
|
9491
|
+
LocationsControllerTest: test_should_return_the_right_xml
|
9492
|
+
---------------------------------------------------------
|
9493
|
+
Started GET "/locations.kml" for 127.0.0.1 at 2016-10-03 11:27:17 -0300
|
9494
|
+
Processing by RailsSitemap::LocationsController#index as KML
|
9495
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb
|
9496
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb (0.4ms)
|
9497
|
+
Completed 200 OK in 6ms (Views: 4.4ms | ActiveRecord: 0.0ms)
|
9498
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
9499
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
9500
|
+
----------------------------------------------------------
|
9501
|
+
LocationsControllerTest: test_should_return_a_success_code
|
9502
|
+
----------------------------------------------------------
|
9503
|
+
Started GET "/locations.kml" for 127.0.0.1 at 2016-10-03 11:27:17 -0300
|
9504
|
+
Processing by RailsSitemap::LocationsController#index as KML
|
9505
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb
|
9506
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb (1.2ms)
|
9507
|
+
Completed 200 OK in 8ms (Views: 5.8ms | ActiveRecord: 0.0ms)
|
9508
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
9509
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
9510
|
+
----------------------------
|
9511
|
+
RailsSitemapTest: test_truth
|
9512
|
+
----------------------------
|
9513
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
9514
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
9515
|
+
------------------------------------------------------
|
9516
|
+
PagesControllerTest: test_should_return_a_success_code
|
9517
|
+
------------------------------------------------------
|
9518
|
+
Started GET "/pages-sitemap.xml" for 127.0.0.1 at 2016-10-03 11:27:17 -0300
|
9519
|
+
Processing by RailsSitemap::PagesController#index as XML
|
9520
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
9521
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb
|
9522
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb (0.5ms)
|
9523
|
+
Completed 200 OK in 9ms (Views: 4.5ms | ActiveRecord: 0.3ms)
|
9524
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
9525
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
9526
|
+
---------------------------------------------------------------
|
9527
|
+
PagesControllerTest: test_should_return_the_articles_on_sitemap
|
9528
|
+
---------------------------------------------------------------
|
9529
|
+
[1m[36mArticle Load (0.2ms)[0m [1m[34mSELECT "articles".* FROM "articles" WHERE "articles"."name" = ? LIMIT ?[0m [["name", "My first article"], ["LIMIT", 1]]
|
9530
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
9531
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "articles" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "My first article"], ["created_at", 2016-10-03 14:27:17 UTC], ["updated_at", 2016-10-03 14:27:17 UTC]]
|
9532
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
9533
|
+
Started GET "/pages-sitemap.xml" for 127.0.0.1 at 2016-10-03 11:27:17 -0300
|
9534
|
+
Processing by RailsSitemap::PagesController#index as XML
|
9535
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
9536
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb
|
9537
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb (0.7ms)
|
9538
|
+
Completed 200 OK in 8ms (Views: 4.7ms | ActiveRecord: 0.1ms)
|
9539
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles" ORDER BY "articles"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
9540
|
+
[1m[35m (2.1ms)[0m [1m[31mrollback transaction[0m
|
9541
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
9542
|
+
-----------------------------------------------------
|
9543
|
+
PagesControllerTest: test_should_return_the_right_xml
|
9544
|
+
-----------------------------------------------------
|
9545
|
+
Started GET "/pages-sitemap.xml" for 127.0.0.1 at 2016-10-03 11:27:17 -0300
|
9546
|
+
Processing by RailsSitemap::PagesController#index as XML
|
9547
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
9548
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb
|
9549
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb (0.5ms)
|
9550
|
+
Completed 200 OK in 6ms (Views: 4.2ms | ActiveRecord: 0.1ms)
|
9551
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
9552
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
9553
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
9554
|
+
--------------------------------------------------------
|
9555
|
+
SitemapsControllerTest: test_should_return_the_right_xml
|
9556
|
+
--------------------------------------------------------
|
9557
|
+
Started GET "/sitemap_index.xml" for 127.0.0.1 at 2016-10-03 11:27:42 -0300
|
9558
|
+
Processing by RailsSitemap::SitemapsController#index as XML
|
9559
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemaps/index.xml.erb
|
9560
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemaps/index.xml.erb (0.9ms)
|
9561
|
+
Completed 200 OK in 9ms (Views: 6.8ms | ActiveRecord: 0.0ms)
|
9562
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
9563
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
9564
|
+
---------------------------------------------------------
|
9565
|
+
SitemapsControllerTest: test_should_return_a_success_code
|
9566
|
+
---------------------------------------------------------
|
9567
|
+
Started GET "/sitemap_index.xml" for 127.0.0.1 at 2016-10-03 11:27:42 -0300
|
9568
|
+
Processing by RailsSitemap::SitemapsController#index as XML
|
9569
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemaps/index.xml.erb
|
9570
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemaps/index.xml.erb (0.4ms)
|
9571
|
+
Completed 200 OK in 7ms (Views: 4.5ms | ActiveRecord: 0.0ms)
|
9572
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
9573
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
9574
|
+
-----------------------------------------------------------
|
9575
|
+
AttachmentControllerTest: test_should_return_a_success_code
|
9576
|
+
-----------------------------------------------------------
|
9577
|
+
Started GET "/attachment-sitemap.xml" for 127.0.0.1 at 2016-10-03 11:27:42 -0300
|
9578
|
+
Processing by RailsSitemap::AttachmentController#index as XML
|
9579
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb
|
9580
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb (0.5ms)
|
9581
|
+
Completed 200 OK in 241ms (Views: 8.4ms | ActiveRecord: 0.0ms)
|
9582
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
9583
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
9584
|
+
----------------------------------------------------------
|
9585
|
+
AttachmentControllerTest: test_should_return_the_right_xml
|
9586
|
+
----------------------------------------------------------
|
9587
|
+
Started GET "/attachment-sitemap.xml" for 127.0.0.1 at 2016-10-03 11:27:42 -0300
|
9588
|
+
Processing by RailsSitemap::AttachmentController#index as XML
|
9589
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb
|
9590
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb (0.4ms)
|
9591
|
+
Completed 200 OK in 6ms (Views: 4.1ms | ActiveRecord: 0.0ms)
|
9592
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
9593
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
9594
|
+
---------------------------------------------------
|
9595
|
+
GeoControllerTest: test_should_return_the_right_xml
|
9596
|
+
---------------------------------------------------
|
9597
|
+
Started GET "/geo-sitemap.xml" for 127.0.0.1 at 2016-10-03 11:27:42 -0300
|
9598
|
+
Processing by RailsSitemap::GeoController#index as XML
|
9599
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb
|
9600
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb (0.3ms)
|
9601
|
+
Completed 200 OK in 6ms (Views: 4.2ms | ActiveRecord: 0.0ms)
|
9602
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
9603
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
9604
|
+
----------------------------------------------------
|
9605
|
+
GeoControllerTest: test_should_return_a_success_code
|
9606
|
+
----------------------------------------------------
|
9607
|
+
Started GET "/geo-sitemap.xml" for 127.0.0.1 at 2016-10-03 11:27:42 -0300
|
9608
|
+
Processing by RailsSitemap::GeoController#index as XML
|
9609
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb
|
9610
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb (0.3ms)
|
9611
|
+
Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.0ms)
|
9612
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
9613
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
9614
|
+
----------------------------------------------------------
|
9615
|
+
LocationsControllerTest: test_should_return_a_success_code
|
9616
|
+
----------------------------------------------------------
|
9617
|
+
Started GET "/locations.kml" for 127.0.0.1 at 2016-10-03 11:27:42 -0300
|
9618
|
+
Processing by RailsSitemap::LocationsController#index as KML
|
9619
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb
|
9620
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb (0.5ms)
|
9621
|
+
Completed 200 OK in 7ms (Views: 5.2ms | ActiveRecord: 0.0ms)
|
9622
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
9623
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
9624
|
+
---------------------------------------------------------
|
9625
|
+
LocationsControllerTest: test_should_return_the_right_xml
|
9626
|
+
---------------------------------------------------------
|
9627
|
+
Started GET "/locations.kml" for 127.0.0.1 at 2016-10-03 11:27:42 -0300
|
9628
|
+
Processing by RailsSitemap::LocationsController#index as KML
|
9629
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb
|
9630
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb (0.4ms)
|
9631
|
+
Completed 200 OK in 6ms (Views: 4.2ms | ActiveRecord: 0.0ms)
|
9632
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
9633
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
9634
|
+
---------------------------------------------------------------
|
9635
|
+
PagesControllerTest: test_should_return_the_articles_on_sitemap
|
9636
|
+
---------------------------------------------------------------
|
9637
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles" WHERE "articles"."name" = ? LIMIT ?[0m [["name", "My first article"], ["LIMIT", 1]]
|
9638
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
9639
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "articles" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "My first article"], ["created_at", 2016-10-03 14:27:42 UTC], ["updated_at", 2016-10-03 14:27:42 UTC]]
|
9640
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
9641
|
+
Started GET "/pages-sitemap.xml" for 127.0.0.1 at 2016-10-03 11:27:42 -0300
|
9642
|
+
Processing by RailsSitemap::PagesController#index as XML
|
9643
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
9644
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb
|
9645
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb (0.7ms)
|
9646
|
+
Completed 200 OK in 9ms (Views: 4.9ms | ActiveRecord: 0.1ms)
|
9647
|
+
[1m[36mArticle Load (0.2ms)[0m [1m[34mSELECT "articles".* FROM "articles" ORDER BY "articles"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
9648
|
+
[1m[35m (2.2ms)[0m [1m[31mrollback transaction[0m
|
9649
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
9650
|
+
------------------------------------------------------
|
9651
|
+
PagesControllerTest: test_should_return_a_success_code
|
9652
|
+
------------------------------------------------------
|
9653
|
+
Started GET "/pages-sitemap.xml" for 127.0.0.1 at 2016-10-03 11:27:42 -0300
|
9654
|
+
Processing by RailsSitemap::PagesController#index as XML
|
9655
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
9656
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb
|
9657
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb (0.4ms)
|
9658
|
+
Completed 200 OK in 6ms (Views: 4.2ms | ActiveRecord: 0.1ms)
|
9659
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
9660
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
9661
|
+
-----------------------------------------------------
|
9662
|
+
PagesControllerTest: test_should_return_the_right_xml
|
9663
|
+
-----------------------------------------------------
|
9664
|
+
Started GET "/pages-sitemap.xml" for 127.0.0.1 at 2016-10-03 11:27:42 -0300
|
9665
|
+
Processing by RailsSitemap::PagesController#index as XML
|
9666
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
9667
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb
|
9668
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb (0.5ms)
|
9669
|
+
Completed 200 OK in 8ms (Views: 5.5ms | ActiveRecord: 0.1ms)
|
9670
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
9671
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
9672
|
+
----------------------------
|
9673
|
+
RailsSitemapTest: test_truth
|
9674
|
+
----------------------------
|
9675
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rails_sitemap
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Pablo Gonzaga
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-10-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|