rails_sitemap 0.3.2 → 0.3.3
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/pages_controller.rb +4 -0
- data/lib/rails_sitemap/engine.rb +3 -1
- data/lib/rails_sitemap/version.rb +1 -1
- data/test/dummy/app/controllers/fakes_controller.rb +7 -0
- data/test/dummy/config/initializers/rails_sitemap.rb +2 -0
- data/test/dummy/config/routes.rb +1 -0
- data/test/dummy/log/test.log +868 -0
- metadata +3 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 19c7a1af95d5c42ad4b2d13fa3933661677fb65f
|
4
|
+
data.tar.gz: a5573f873602cdbfa1419abd27b5334816ab907c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: becf75991bd08f28c75a9ba8ca97921c2ae92692de6d478047ab8c43d1c0657a162bc834df0050bf48fdf37c1649d309ad956a6c61c2925562ada90df8afa167
|
7
|
+
data.tar.gz: b21227f4b5743bac681d74156227da2a63143ac9762d6bc3adb1948691db677580e92a55fc35f1dee22f9049d342f9d54251ef24f232ba73eacb4b2386ac1c92
|
@@ -37,6 +37,10 @@ module RailsSitemap
|
|
37
37
|
EXCLUDED_PATHS.include?(route[:path])
|
38
38
|
end
|
39
39
|
|
40
|
+
@routes.reject! do |route|
|
41
|
+
RailsSitemap.excluded_paths.include?(route[:path])
|
42
|
+
end
|
43
|
+
|
40
44
|
@sitemap_entries = @routes.map do|route|
|
41
45
|
SitemapEntry.new(route[:path][0..-11])
|
42
46
|
end
|
data/lib/rails_sitemap/engine.rb
CHANGED
@@ -18,7 +18,8 @@ module RailsSitemap
|
|
18
18
|
:update_frequency_for_app,
|
19
19
|
:update_frequency_for_models,
|
20
20
|
:locations,
|
21
|
-
:hd_images
|
21
|
+
:hd_images,
|
22
|
+
:excluded_paths
|
22
23
|
|
23
24
|
self.models_for_sitemap = []
|
24
25
|
self.updated_at = DateTime.now.to_s
|
@@ -27,6 +28,7 @@ module RailsSitemap
|
|
27
28
|
self.update_frequency_for_models = 'weekly'
|
28
29
|
self.locations = []
|
29
30
|
self.hd_images = []
|
31
|
+
self.excluded_paths = []
|
30
32
|
end
|
31
33
|
|
32
34
|
def self.setup(&block)
|
data/test/dummy/config/routes.rb
CHANGED
data/test/dummy/log/test.log
CHANGED
@@ -9673,3 +9673,871 @@ Completed 200 OK in 8ms (Views: 5.5ms | ActiveRecord: 0.1ms)
|
|
9673
9673
|
RailsSitemapTest: test_truth
|
9674
9674
|
----------------------------
|
9675
9675
|
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
9676
|
+
[1m[36mActiveRecord::SchemaMigration Load (2.1ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
9677
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
9678
|
+
-----------------------------------------------------------
|
9679
|
+
AttachmentControllerTest: test_should_return_a_success_code
|
9680
|
+
-----------------------------------------------------------
|
9681
|
+
Started GET "/attachment-sitemap.xml" for 127.0.0.1 at 2016-10-03 16:39:50 -0300
|
9682
|
+
Processing by RailsSitemap::AttachmentController#index as XML
|
9683
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb
|
9684
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb (4.6ms)
|
9685
|
+
Completed 200 OK in 336ms (Views: 16.8ms | ActiveRecord: 0.0ms)
|
9686
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
9687
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
9688
|
+
----------------------------------------------------------
|
9689
|
+
AttachmentControllerTest: test_should_return_the_right_xml
|
9690
|
+
----------------------------------------------------------
|
9691
|
+
Started GET "/attachment-sitemap.xml" for 127.0.0.1 at 2016-10-03 16:39:50 -0300
|
9692
|
+
Processing by RailsSitemap::AttachmentController#index as XML
|
9693
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb
|
9694
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb (1.3ms)
|
9695
|
+
Completed 200 OK in 17ms (Views: 12.6ms | ActiveRecord: 0.0ms)
|
9696
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
9697
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
9698
|
+
---------------------------------------------------------
|
9699
|
+
SitemapsControllerTest: test_should_return_a_success_code
|
9700
|
+
---------------------------------------------------------
|
9701
|
+
Started GET "/sitemap_index.xml" for 127.0.0.1 at 2016-10-03 16:39:50 -0300
|
9702
|
+
Processing by RailsSitemap::SitemapsController#index as XML
|
9703
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemaps/index.xml.erb
|
9704
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemaps/index.xml.erb (0.4ms)
|
9705
|
+
Completed 200 OK in 9ms (Views: 4.9ms | ActiveRecord: 0.0ms)
|
9706
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
9707
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
9708
|
+
--------------------------------------------------------
|
9709
|
+
SitemapsControllerTest: test_should_return_the_right_xml
|
9710
|
+
--------------------------------------------------------
|
9711
|
+
Started GET "/sitemap_index.xml" for 127.0.0.1 at 2016-10-03 16:39:50 -0300
|
9712
|
+
Processing by RailsSitemap::SitemapsController#index as XML
|
9713
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemaps/index.xml.erb
|
9714
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemaps/index.xml.erb (0.4ms)
|
9715
|
+
Completed 200 OK in 6ms (Views: 4.1ms | ActiveRecord: 0.0ms)
|
9716
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
9717
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
9718
|
+
----------------------------------------------------------
|
9719
|
+
LocationsControllerTest: test_should_return_a_success_code
|
9720
|
+
----------------------------------------------------------
|
9721
|
+
Started GET "/locations.kml" for 127.0.0.1 at 2016-10-03 16:39:50 -0300
|
9722
|
+
Processing by RailsSitemap::LocationsController#index as KML
|
9723
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb
|
9724
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb (0.4ms)
|
9725
|
+
Completed 200 OK in 8ms (Views: 4.8ms | ActiveRecord: 0.0ms)
|
9726
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
9727
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
9728
|
+
---------------------------------------------------------
|
9729
|
+
LocationsControllerTest: test_should_return_the_right_xml
|
9730
|
+
---------------------------------------------------------
|
9731
|
+
Started GET "/locations.kml" for 127.0.0.1 at 2016-10-03 16:39:50 -0300
|
9732
|
+
Processing by RailsSitemap::LocationsController#index as KML
|
9733
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb
|
9734
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb (0.4ms)
|
9735
|
+
Completed 200 OK in 6ms (Views: 4.1ms | ActiveRecord: 0.0ms)
|
9736
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
9737
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
9738
|
+
---------------------------------------------------
|
9739
|
+
GeoControllerTest: test_should_return_the_right_xml
|
9740
|
+
---------------------------------------------------
|
9741
|
+
Started GET "/geo-sitemap.xml" for 127.0.0.1 at 2016-10-03 16:39:50 -0300
|
9742
|
+
Processing by RailsSitemap::GeoController#index as XML
|
9743
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb
|
9744
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb (0.4ms)
|
9745
|
+
Completed 200 OK in 9ms (Views: 5.2ms | ActiveRecord: 0.0ms)
|
9746
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
9747
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
9748
|
+
----------------------------------------------------
|
9749
|
+
GeoControllerTest: test_should_return_a_success_code
|
9750
|
+
----------------------------------------------------
|
9751
|
+
Started GET "/geo-sitemap.xml" for 127.0.0.1 at 2016-10-03 16:39:50 -0300
|
9752
|
+
Processing by RailsSitemap::GeoController#index as XML
|
9753
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb
|
9754
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb (0.3ms)
|
9755
|
+
Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.0ms)
|
9756
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
9757
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
9758
|
+
------------------------------------------------------
|
9759
|
+
PagesControllerTest: test_should_return_a_success_code
|
9760
|
+
------------------------------------------------------
|
9761
|
+
Started GET "/pages-sitemap.xml" for 127.0.0.1 at 2016-10-03 16:39:50 -0300
|
9762
|
+
Processing by RailsSitemap::PagesController#index as XML
|
9763
|
+
[1m[36mArticle Load (2.2ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
9764
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb
|
9765
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb (0.5ms)
|
9766
|
+
Completed 200 OK in 33ms (Views: 11.7ms | ActiveRecord: 2.5ms)
|
9767
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
9768
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
9769
|
+
---------------------------------------------------------------
|
9770
|
+
PagesControllerTest: test_should_return_the_articles_on_sitemap
|
9771
|
+
---------------------------------------------------------------
|
9772
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles" WHERE "articles"."name" = ? LIMIT ?[0m [["name", "My first article"], ["LIMIT", 1]]
|
9773
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
9774
|
+
[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 19:39:50 UTC], ["updated_at", 2016-10-03 19:39:50 UTC]]
|
9775
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
9776
|
+
Started GET "/pages-sitemap.xml" for 127.0.0.1 at 2016-10-03 16:39:50 -0300
|
9777
|
+
Processing by RailsSitemap::PagesController#index as XML
|
9778
|
+
[1m[36mArticle Load (0.2ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
9779
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb
|
9780
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb (0.5ms)
|
9781
|
+
Completed 200 OK in 8ms (Views: 4.2ms | ActiveRecord: 0.2ms)
|
9782
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles" ORDER BY "articles"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
9783
|
+
[1m[35m (2.1ms)[0m [1m[31mrollback transaction[0m
|
9784
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
9785
|
+
-----------------------------------------------------
|
9786
|
+
PagesControllerTest: test_should_return_the_right_xml
|
9787
|
+
-----------------------------------------------------
|
9788
|
+
Started GET "/pages-sitemap.xml" for 127.0.0.1 at 2016-10-03 16:39:50 -0300
|
9789
|
+
Processing by RailsSitemap::PagesController#index as XML
|
9790
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
9791
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb
|
9792
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb (0.4ms)
|
9793
|
+
Completed 200 OK in 6ms (Views: 4.1ms | ActiveRecord: 0.1ms)
|
9794
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
9795
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
9796
|
+
----------------------------
|
9797
|
+
RailsSitemapTest: test_truth
|
9798
|
+
----------------------------
|
9799
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
9800
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
9801
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
9802
|
+
---------------------------------------------------------
|
9803
|
+
SitemapsControllerTest: test_should_return_a_success_code
|
9804
|
+
---------------------------------------------------------
|
9805
|
+
Started GET "/sitemap_index.xml" for 127.0.0.1 at 2016-10-03 16:41:14 -0300
|
9806
|
+
Processing by RailsSitemap::SitemapsController#index as XML
|
9807
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemaps/index.xml.erb
|
9808
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemaps/index.xml.erb (1.0ms)
|
9809
|
+
Completed 200 OK in 9ms (Views: 6.8ms | ActiveRecord: 0.0ms)
|
9810
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
9811
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
9812
|
+
--------------------------------------------------------
|
9813
|
+
SitemapsControllerTest: test_should_return_the_right_xml
|
9814
|
+
--------------------------------------------------------
|
9815
|
+
Started GET "/sitemap_index.xml" for 127.0.0.1 at 2016-10-03 16:41:14 -0300
|
9816
|
+
Processing by RailsSitemap::SitemapsController#index as XML
|
9817
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemaps/index.xml.erb
|
9818
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemaps/index.xml.erb (0.3ms)
|
9819
|
+
Completed 200 OK in 6ms (Views: 4.1ms | ActiveRecord: 0.0ms)
|
9820
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
9821
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
9822
|
+
---------------------------------------------------------------
|
9823
|
+
PagesControllerTest: test_should_return_the_articles_on_sitemap
|
9824
|
+
---------------------------------------------------------------
|
9825
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles" WHERE "articles"."name" = ? LIMIT ?[0m [["name", "My first article"], ["LIMIT", 1]]
|
9826
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
9827
|
+
[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 19:41:14 UTC], ["updated_at", 2016-10-03 19:41:14 UTC]]
|
9828
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
9829
|
+
Started GET "/pages-sitemap.xml" for 127.0.0.1 at 2016-10-03 16:41:14 -0300
|
9830
|
+
Processing by RailsSitemap::PagesController#index as XML
|
9831
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
9832
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb
|
9833
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb (1.1ms)
|
9834
|
+
Completed 200 OK in 11ms (Views: 7.1ms | ActiveRecord: 0.1ms)
|
9835
|
+
[1m[36mArticle Load (0.2ms)[0m [1m[34mSELECT "articles".* FROM "articles" ORDER BY "articles"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
9836
|
+
[1m[35m (2.3ms)[0m [1m[31mrollback transaction[0m
|
9837
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
9838
|
+
------------------------------------------------------
|
9839
|
+
PagesControllerTest: test_should_return_a_success_code
|
9840
|
+
------------------------------------------------------
|
9841
|
+
Started GET "/pages-sitemap.xml" for 127.0.0.1 at 2016-10-03 16:41:14 -0300
|
9842
|
+
Processing by RailsSitemap::PagesController#index as XML
|
9843
|
+
[1m[36mArticle Load (0.2ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
9844
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb
|
9845
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb (0.5ms)
|
9846
|
+
Completed 200 OK in 7ms (Views: 4.4ms | ActiveRecord: 0.2ms)
|
9847
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
9848
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
9849
|
+
-----------------------------------------------------
|
9850
|
+
PagesControllerTest: test_should_return_the_right_xml
|
9851
|
+
-----------------------------------------------------
|
9852
|
+
Started GET "/pages-sitemap.xml" for 127.0.0.1 at 2016-10-03 16:41:14 -0300
|
9853
|
+
Processing by RailsSitemap::PagesController#index as XML
|
9854
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
9855
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb
|
9856
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb (6.3ms)
|
9857
|
+
Completed 200 OK in 13ms (Views: 11.4ms | ActiveRecord: 0.1ms)
|
9858
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
9859
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
9860
|
+
-----------------------------------------------------------
|
9861
|
+
AttachmentControllerTest: test_should_return_a_success_code
|
9862
|
+
-----------------------------------------------------------
|
9863
|
+
Started GET "/attachment-sitemap.xml" for 127.0.0.1 at 2016-10-03 16:41:14 -0300
|
9864
|
+
Processing by RailsSitemap::AttachmentController#index as XML
|
9865
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb
|
9866
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb (0.5ms)
|
9867
|
+
Completed 200 OK in 216ms (Views: 4.7ms | ActiveRecord: 0.0ms)
|
9868
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
9869
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
9870
|
+
----------------------------------------------------------
|
9871
|
+
AttachmentControllerTest: test_should_return_the_right_xml
|
9872
|
+
----------------------------------------------------------
|
9873
|
+
Started GET "/attachment-sitemap.xml" for 127.0.0.1 at 2016-10-03 16:41:14 -0300
|
9874
|
+
Processing by RailsSitemap::AttachmentController#index as XML
|
9875
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb
|
9876
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb (0.4ms)
|
9877
|
+
Completed 200 OK in 8ms (Views: 4.4ms | ActiveRecord: 0.0ms)
|
9878
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
9879
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
9880
|
+
---------------------------------------------------
|
9881
|
+
GeoControllerTest: test_should_return_the_right_xml
|
9882
|
+
---------------------------------------------------
|
9883
|
+
Started GET "/geo-sitemap.xml" for 127.0.0.1 at 2016-10-03 16:41:14 -0300
|
9884
|
+
Processing by RailsSitemap::GeoController#index as XML
|
9885
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb
|
9886
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb (0.3ms)
|
9887
|
+
Completed 200 OK in 6ms (Views: 4.2ms | ActiveRecord: 0.0ms)
|
9888
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
9889
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
9890
|
+
----------------------------------------------------
|
9891
|
+
GeoControllerTest: test_should_return_a_success_code
|
9892
|
+
----------------------------------------------------
|
9893
|
+
Started GET "/geo-sitemap.xml" for 127.0.0.1 at 2016-10-03 16:41:14 -0300
|
9894
|
+
Processing by RailsSitemap::GeoController#index as XML
|
9895
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb
|
9896
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb (0.3ms)
|
9897
|
+
Completed 200 OK in 6ms (Views: 4.0ms | ActiveRecord: 0.0ms)
|
9898
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
9899
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
9900
|
+
----------------------------------------------------------
|
9901
|
+
LocationsControllerTest: test_should_return_a_success_code
|
9902
|
+
----------------------------------------------------------
|
9903
|
+
Started GET "/locations.kml" for 127.0.0.1 at 2016-10-03 16:41:14 -0300
|
9904
|
+
Processing by RailsSitemap::LocationsController#index as KML
|
9905
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb
|
9906
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb (0.4ms)
|
9907
|
+
Completed 200 OK in 8ms (Views: 6.7ms | ActiveRecord: 0.0ms)
|
9908
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
9909
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
9910
|
+
---------------------------------------------------------
|
9911
|
+
LocationsControllerTest: test_should_return_the_right_xml
|
9912
|
+
---------------------------------------------------------
|
9913
|
+
Started GET "/locations.kml" for 127.0.0.1 at 2016-10-03 16:41:14 -0300
|
9914
|
+
Processing by RailsSitemap::LocationsController#index as KML
|
9915
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb
|
9916
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb (0.4ms)
|
9917
|
+
Completed 200 OK in 6ms (Views: 4.2ms | ActiveRecord: 0.0ms)
|
9918
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
9919
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
9920
|
+
----------------------------
|
9921
|
+
RailsSitemapTest: test_truth
|
9922
|
+
----------------------------
|
9923
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
9924
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
9925
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
9926
|
+
----------------------------
|
9927
|
+
RailsSitemapTest: test_truth
|
9928
|
+
----------------------------
|
9929
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
9930
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
9931
|
+
----------------------------------------------------
|
9932
|
+
GeoControllerTest: test_should_return_a_success_code
|
9933
|
+
----------------------------------------------------
|
9934
|
+
Started GET "/geo-sitemap.xml" for 127.0.0.1 at 2016-10-03 16:44:02 -0300
|
9935
|
+
Processing by RailsSitemap::GeoController#index as XML
|
9936
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb
|
9937
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb (0.9ms)
|
9938
|
+
Completed 200 OK in 8ms (Views: 6.7ms | ActiveRecord: 0.0ms)
|
9939
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
9940
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
9941
|
+
---------------------------------------------------
|
9942
|
+
GeoControllerTest: test_should_return_the_right_xml
|
9943
|
+
---------------------------------------------------
|
9944
|
+
Started GET "/geo-sitemap.xml" for 127.0.0.1 at 2016-10-03 16:44:02 -0300
|
9945
|
+
Processing by RailsSitemap::GeoController#index as XML
|
9946
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb
|
9947
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb (0.3ms)
|
9948
|
+
Completed 200 OK in 6ms (Views: 4.2ms | ActiveRecord: 0.0ms)
|
9949
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
9950
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
9951
|
+
---------------------------------------------------------------
|
9952
|
+
PagesControllerTest: test_should_return_the_articles_on_sitemap
|
9953
|
+
---------------------------------------------------------------
|
9954
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles" WHERE "articles"."name" = ? LIMIT ?[0m [["name", "My first article"], ["LIMIT", 1]]
|
9955
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
9956
|
+
[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 19:44:02 UTC], ["updated_at", 2016-10-03 19:44:02 UTC]]
|
9957
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
9958
|
+
Started GET "/pages-sitemap.xml" for 127.0.0.1 at 2016-10-03 16:44:02 -0300
|
9959
|
+
Processing by RailsSitemap::PagesController#index as XML
|
9960
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
9961
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb
|
9962
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb (0.8ms)
|
9963
|
+
Completed 200 OK in 10ms (Views: 6.5ms | ActiveRecord: 0.1ms)
|
9964
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles" ORDER BY "articles"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
9965
|
+
[1m[35m (1.6ms)[0m [1m[31mrollback transaction[0m
|
9966
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
9967
|
+
------------------------------------------------------
|
9968
|
+
PagesControllerTest: test_should_return_a_success_code
|
9969
|
+
------------------------------------------------------
|
9970
|
+
Started GET "/pages-sitemap.xml" for 127.0.0.1 at 2016-10-03 16:44:02 -0300
|
9971
|
+
Processing by RailsSitemap::PagesController#index as XML
|
9972
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
9973
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb
|
9974
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb (8.6ms)
|
9975
|
+
Completed 200 OK in 15ms (Views: 12.7ms | ActiveRecord: 0.1ms)
|
9976
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
9977
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
9978
|
+
-----------------------------------------------------
|
9979
|
+
PagesControllerTest: test_should_return_the_right_xml
|
9980
|
+
-----------------------------------------------------
|
9981
|
+
Started GET "/pages-sitemap.xml" for 127.0.0.1 at 2016-10-03 16:44:02 -0300
|
9982
|
+
Processing by RailsSitemap::PagesController#index as XML
|
9983
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
9984
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb
|
9985
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb (0.6ms)
|
9986
|
+
Completed 200 OK in 6ms (Views: 4.4ms | ActiveRecord: 0.1ms)
|
9987
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
9988
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
9989
|
+
---------------------------------------------------------
|
9990
|
+
SitemapsControllerTest: test_should_return_a_success_code
|
9991
|
+
---------------------------------------------------------
|
9992
|
+
Started GET "/sitemap_index.xml" for 127.0.0.1 at 2016-10-03 16:44:02 -0300
|
9993
|
+
Processing by RailsSitemap::SitemapsController#index as XML
|
9994
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemaps/index.xml.erb
|
9995
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemaps/index.xml.erb (0.5ms)
|
9996
|
+
Completed 200 OK in 6ms (Views: 4.6ms | ActiveRecord: 0.0ms)
|
9997
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
9998
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
9999
|
+
--------------------------------------------------------
|
10000
|
+
SitemapsControllerTest: test_should_return_the_right_xml
|
10001
|
+
--------------------------------------------------------
|
10002
|
+
Started GET "/sitemap_index.xml" for 127.0.0.1 at 2016-10-03 16:44:03 -0300
|
10003
|
+
Processing by RailsSitemap::SitemapsController#index as XML
|
10004
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemaps/index.xml.erb
|
10005
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemaps/index.xml.erb (0.4ms)
|
10006
|
+
Completed 200 OK in 8ms (Views: 4.4ms | ActiveRecord: 0.0ms)
|
10007
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
10008
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
10009
|
+
----------------------------------------------------------
|
10010
|
+
LocationsControllerTest: test_should_return_a_success_code
|
10011
|
+
----------------------------------------------------------
|
10012
|
+
Started GET "/locations.kml" for 127.0.0.1 at 2016-10-03 16:44:03 -0300
|
10013
|
+
Processing by RailsSitemap::LocationsController#index as KML
|
10014
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb
|
10015
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb (0.5ms)
|
10016
|
+
Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.0ms)
|
10017
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
10018
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
10019
|
+
---------------------------------------------------------
|
10020
|
+
LocationsControllerTest: test_should_return_the_right_xml
|
10021
|
+
---------------------------------------------------------
|
10022
|
+
Started GET "/locations.kml" for 127.0.0.1 at 2016-10-03 16:44:03 -0300
|
10023
|
+
Processing by RailsSitemap::LocationsController#index as KML
|
10024
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb
|
10025
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb (0.4ms)
|
10026
|
+
Completed 200 OK in 6ms (Views: 4.3ms | ActiveRecord: 0.0ms)
|
10027
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
10028
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
10029
|
+
-----------------------------------------------------------
|
10030
|
+
AttachmentControllerTest: test_should_return_a_success_code
|
10031
|
+
-----------------------------------------------------------
|
10032
|
+
Started GET "/attachment-sitemap.xml" for 127.0.0.1 at 2016-10-03 16:44:03 -0300
|
10033
|
+
Processing by RailsSitemap::AttachmentController#index as XML
|
10034
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb
|
10035
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb (0.5ms)
|
10036
|
+
Completed 200 OK in 219ms (Views: 4.6ms | ActiveRecord: 0.0ms)
|
10037
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
10038
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
10039
|
+
----------------------------------------------------------
|
10040
|
+
AttachmentControllerTest: test_should_return_the_right_xml
|
10041
|
+
----------------------------------------------------------
|
10042
|
+
Started GET "/attachment-sitemap.xml" for 127.0.0.1 at 2016-10-03 16:44:03 -0300
|
10043
|
+
Processing by RailsSitemap::AttachmentController#index as XML
|
10044
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb
|
10045
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb (0.5ms)
|
10046
|
+
Completed 200 OK in 8ms (Views: 4.9ms | ActiveRecord: 0.0ms)
|
10047
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
10048
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
10049
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
10050
|
+
-----------------------------------------------------------
|
10051
|
+
AttachmentControllerTest: test_should_return_a_success_code
|
10052
|
+
-----------------------------------------------------------
|
10053
|
+
Started GET "/attachment-sitemap.xml" for 127.0.0.1 at 2016-10-03 16:44:17 -0300
|
10054
|
+
Processing by RailsSitemap::AttachmentController#index as XML
|
10055
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb
|
10056
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb (1.7ms)
|
10057
|
+
Completed 200 OK in 232ms (Views: 7.3ms | ActiveRecord: 0.0ms)
|
10058
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
10059
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
10060
|
+
----------------------------------------------------------
|
10061
|
+
AttachmentControllerTest: test_should_return_the_right_xml
|
10062
|
+
----------------------------------------------------------
|
10063
|
+
Started GET "/attachment-sitemap.xml" for 127.0.0.1 at 2016-10-03 16:44:18 -0300
|
10064
|
+
Processing by RailsSitemap::AttachmentController#index as XML
|
10065
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb
|
10066
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb (0.5ms)
|
10067
|
+
Completed 200 OK in 7ms (Views: 4.8ms | ActiveRecord: 0.0ms)
|
10068
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
10069
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
10070
|
+
---------------------------------------------------------
|
10071
|
+
SitemapsControllerTest: test_should_return_a_success_code
|
10072
|
+
---------------------------------------------------------
|
10073
|
+
Started GET "/sitemap_index.xml" for 127.0.0.1 at 2016-10-03 16:44:18 -0300
|
10074
|
+
Processing by RailsSitemap::SitemapsController#index as XML
|
10075
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemaps/index.xml.erb
|
10076
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemaps/index.xml.erb (0.4ms)
|
10077
|
+
Completed 200 OK in 6ms (Views: 4.6ms | ActiveRecord: 0.0ms)
|
10078
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
10079
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
10080
|
+
--------------------------------------------------------
|
10081
|
+
SitemapsControllerTest: test_should_return_the_right_xml
|
10082
|
+
--------------------------------------------------------
|
10083
|
+
Started GET "/sitemap_index.xml" for 127.0.0.1 at 2016-10-03 16:44:18 -0300
|
10084
|
+
Processing by RailsSitemap::SitemapsController#index as XML
|
10085
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemaps/index.xml.erb
|
10086
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemaps/index.xml.erb (0.3ms)
|
10087
|
+
Completed 200 OK in 6ms (Views: 4.3ms | ActiveRecord: 0.0ms)
|
10088
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
10089
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
10090
|
+
---------------------------------------------------------
|
10091
|
+
LocationsControllerTest: test_should_return_the_right_xml
|
10092
|
+
---------------------------------------------------------
|
10093
|
+
Started GET "/locations.kml" for 127.0.0.1 at 2016-10-03 16:44:18 -0300
|
10094
|
+
Processing by RailsSitemap::LocationsController#index as KML
|
10095
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb
|
10096
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb (0.4ms)
|
10097
|
+
Completed 200 OK in 6ms (Views: 4.6ms | ActiveRecord: 0.0ms)
|
10098
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
10099
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
10100
|
+
----------------------------------------------------------
|
10101
|
+
LocationsControllerTest: test_should_return_a_success_code
|
10102
|
+
----------------------------------------------------------
|
10103
|
+
Started GET "/locations.kml" for 127.0.0.1 at 2016-10-03 16:44:18 -0300
|
10104
|
+
Processing by RailsSitemap::LocationsController#index as KML
|
10105
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb
|
10106
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb (0.4ms)
|
10107
|
+
Completed 200 OK in 7ms (Views: 4.5ms | ActiveRecord: 0.0ms)
|
10108
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
10109
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
10110
|
+
----------------------------------------------------
|
10111
|
+
GeoControllerTest: test_should_return_a_success_code
|
10112
|
+
----------------------------------------------------
|
10113
|
+
Started GET "/geo-sitemap.xml" for 127.0.0.1 at 2016-10-03 16:44:18 -0300
|
10114
|
+
Processing by RailsSitemap::GeoController#index as XML
|
10115
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb
|
10116
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb (0.4ms)
|
10117
|
+
Completed 200 OK in 7ms (Views: 4.8ms | ActiveRecord: 0.0ms)
|
10118
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
10119
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
10120
|
+
---------------------------------------------------
|
10121
|
+
GeoControllerTest: test_should_return_the_right_xml
|
10122
|
+
---------------------------------------------------
|
10123
|
+
Started GET "/geo-sitemap.xml" for 127.0.0.1 at 2016-10-03 16:44:18 -0300
|
10124
|
+
Processing by RailsSitemap::GeoController#index as XML
|
10125
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb
|
10126
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb (0.3ms)
|
10127
|
+
Completed 200 OK in 6ms (Views: 4.1ms | ActiveRecord: 0.0ms)
|
10128
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
10129
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
10130
|
+
-----------------------------------------------------
|
10131
|
+
PagesControllerTest: test_should_return_the_right_xml
|
10132
|
+
-----------------------------------------------------
|
10133
|
+
Started GET "/pages-sitemap.xml" for 127.0.0.1 at 2016-10-03 16:44:18 -0300
|
10134
|
+
Processing by RailsSitemap::PagesController#index as XML
|
10135
|
+
[1m[36mArticle Load (0.2ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
10136
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb
|
10137
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb (0.5ms)
|
10138
|
+
Completed 200 OK in 9ms (Views: 4.6ms | ActiveRecord: 0.3ms)
|
10139
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
10140
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
10141
|
+
------------------------------------------------------
|
10142
|
+
PagesControllerTest: test_should_return_a_success_code
|
10143
|
+
------------------------------------------------------
|
10144
|
+
Started GET "/pages-sitemap.xml" for 127.0.0.1 at 2016-10-03 16:44:18 -0300
|
10145
|
+
Processing by RailsSitemap::PagesController#index as XML
|
10146
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
10147
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb
|
10148
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb (0.6ms)
|
10149
|
+
Completed 200 OK in 9ms (Views: 6.5ms | ActiveRecord: 0.1ms)
|
10150
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
10151
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
10152
|
+
---------------------------------------------------------------
|
10153
|
+
PagesControllerTest: test_should_return_the_articles_on_sitemap
|
10154
|
+
---------------------------------------------------------------
|
10155
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles" WHERE "articles"."name" = ? LIMIT ?[0m [["name", "My first article"], ["LIMIT", 1]]
|
10156
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
10157
|
+
[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 19:44:18 UTC], ["updated_at", 2016-10-03 19:44:18 UTC]]
|
10158
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
10159
|
+
Started GET "/pages-sitemap.xml" for 127.0.0.1 at 2016-10-03 16:44:18 -0300
|
10160
|
+
Processing by RailsSitemap::PagesController#index as XML
|
10161
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
10162
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb
|
10163
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb (0.5ms)
|
10164
|
+
Completed 200 OK in 8ms (Views: 4.5ms | ActiveRecord: 0.1ms)
|
10165
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles" ORDER BY "articles"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
10166
|
+
[1m[35m (1.8ms)[0m [1m[31mrollback transaction[0m
|
10167
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
10168
|
+
----------------------------
|
10169
|
+
RailsSitemapTest: test_truth
|
10170
|
+
----------------------------
|
10171
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
10172
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
10173
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
10174
|
+
----------------------------
|
10175
|
+
RailsSitemapTest: test_truth
|
10176
|
+
----------------------------
|
10177
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
10178
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
10179
|
+
---------------------------------------------------------
|
10180
|
+
SitemapsControllerTest: test_should_return_a_success_code
|
10181
|
+
---------------------------------------------------------
|
10182
|
+
Started GET "/sitemap_index.xml" for 127.0.0.1 at 2016-10-03 16:44:35 -0300
|
10183
|
+
Processing by RailsSitemap::SitemapsController#index as XML
|
10184
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemaps/index.xml.erb
|
10185
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemaps/index.xml.erb (1.0ms)
|
10186
|
+
Completed 200 OK in 9ms (Views: 7.0ms | ActiveRecord: 0.0ms)
|
10187
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
10188
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
10189
|
+
--------------------------------------------------------
|
10190
|
+
SitemapsControllerTest: test_should_return_the_right_xml
|
10191
|
+
--------------------------------------------------------
|
10192
|
+
Started GET "/sitemap_index.xml" for 127.0.0.1 at 2016-10-03 16:44:35 -0300
|
10193
|
+
Processing by RailsSitemap::SitemapsController#index as XML
|
10194
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemaps/index.xml.erb
|
10195
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemaps/index.xml.erb (0.4ms)
|
10196
|
+
Completed 200 OK in 7ms (Views: 5.6ms | ActiveRecord: 0.0ms)
|
10197
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
10198
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
10199
|
+
----------------------------------------------------
|
10200
|
+
GeoControllerTest: test_should_return_a_success_code
|
10201
|
+
----------------------------------------------------
|
10202
|
+
Started GET "/geo-sitemap.xml" for 127.0.0.1 at 2016-10-03 16:44:35 -0300
|
10203
|
+
Processing by RailsSitemap::GeoController#index as XML
|
10204
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb
|
10205
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb (0.3ms)
|
10206
|
+
Completed 200 OK in 6ms (Views: 4.2ms | ActiveRecord: 0.0ms)
|
10207
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
10208
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
10209
|
+
---------------------------------------------------
|
10210
|
+
GeoControllerTest: test_should_return_the_right_xml
|
10211
|
+
---------------------------------------------------
|
10212
|
+
Started GET "/geo-sitemap.xml" for 127.0.0.1 at 2016-10-03 16:44:35 -0300
|
10213
|
+
Processing by RailsSitemap::GeoController#index as XML
|
10214
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb
|
10215
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb (0.3ms)
|
10216
|
+
Completed 200 OK in 6ms (Views: 4.2ms | ActiveRecord: 0.0ms)
|
10217
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
10218
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
10219
|
+
-----------------------------------------------------------
|
10220
|
+
AttachmentControllerTest: test_should_return_a_success_code
|
10221
|
+
-----------------------------------------------------------
|
10222
|
+
Started GET "/attachment-sitemap.xml" for 127.0.0.1 at 2016-10-03 16:44:35 -0300
|
10223
|
+
Processing by RailsSitemap::AttachmentController#index as XML
|
10224
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb
|
10225
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb (0.5ms)
|
10226
|
+
Completed 200 OK in 240ms (Views: 4.7ms | ActiveRecord: 0.0ms)
|
10227
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
10228
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
10229
|
+
----------------------------------------------------------
|
10230
|
+
AttachmentControllerTest: test_should_return_the_right_xml
|
10231
|
+
----------------------------------------------------------
|
10232
|
+
Started GET "/attachment-sitemap.xml" for 127.0.0.1 at 2016-10-03 16:44:35 -0300
|
10233
|
+
Processing by RailsSitemap::AttachmentController#index as XML
|
10234
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb
|
10235
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb (0.5ms)
|
10236
|
+
Completed 200 OK in 8ms (Views: 4.8ms | ActiveRecord: 0.0ms)
|
10237
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
10238
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
10239
|
+
------------------------------------------------------
|
10240
|
+
PagesControllerTest: test_should_return_a_success_code
|
10241
|
+
------------------------------------------------------
|
10242
|
+
Started GET "/pages-sitemap.xml" for 127.0.0.1 at 2016-10-03 16:44:35 -0300
|
10243
|
+
Processing by RailsSitemap::PagesController#index as XML
|
10244
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
10245
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb
|
10246
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb (0.5ms)
|
10247
|
+
Completed 200 OK in 10ms (Views: 5.1ms | ActiveRecord: 0.2ms)
|
10248
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
10249
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
10250
|
+
---------------------------------------------------------------
|
10251
|
+
PagesControllerTest: test_should_return_the_articles_on_sitemap
|
10252
|
+
---------------------------------------------------------------
|
10253
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles" WHERE "articles"."name" = ? LIMIT ?[0m [["name", "My first article"], ["LIMIT", 1]]
|
10254
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
10255
|
+
[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 19:44:35 UTC], ["updated_at", 2016-10-03 19:44:35 UTC]]
|
10256
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
10257
|
+
Started GET "/pages-sitemap.xml" for 127.0.0.1 at 2016-10-03 16:44:35 -0300
|
10258
|
+
Processing by RailsSitemap::PagesController#index as XML
|
10259
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
10260
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb
|
10261
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb (0.6ms)
|
10262
|
+
Completed 200 OK in 9ms (Views: 5.9ms | ActiveRecord: 0.1ms)
|
10263
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles" ORDER BY "articles"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
10264
|
+
[1m[35m (2.0ms)[0m [1m[31mrollback transaction[0m
|
10265
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
10266
|
+
-----------------------------------------------------
|
10267
|
+
PagesControllerTest: test_should_return_the_right_xml
|
10268
|
+
-----------------------------------------------------
|
10269
|
+
Started GET "/pages-sitemap.xml" for 127.0.0.1 at 2016-10-03 16:44:35 -0300
|
10270
|
+
Processing by RailsSitemap::PagesController#index as XML
|
10271
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
10272
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb
|
10273
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb (0.6ms)
|
10274
|
+
Completed 200 OK in 7ms (Views: 4.6ms | ActiveRecord: 0.1ms)
|
10275
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
10276
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
10277
|
+
---------------------------------------------------------
|
10278
|
+
LocationsControllerTest: test_should_return_the_right_xml
|
10279
|
+
---------------------------------------------------------
|
10280
|
+
Started GET "/locations.kml" for 127.0.0.1 at 2016-10-03 16:44:35 -0300
|
10281
|
+
Processing by RailsSitemap::LocationsController#index as KML
|
10282
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb
|
10283
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb (0.5ms)
|
10284
|
+
Completed 200 OK in 7ms (Views: 4.9ms | ActiveRecord: 0.0ms)
|
10285
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
10286
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
10287
|
+
----------------------------------------------------------
|
10288
|
+
LocationsControllerTest: test_should_return_a_success_code
|
10289
|
+
----------------------------------------------------------
|
10290
|
+
Started GET "/locations.kml" for 127.0.0.1 at 2016-10-03 16:44:35 -0300
|
10291
|
+
Processing by RailsSitemap::LocationsController#index as KML
|
10292
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb
|
10293
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb (0.9ms)
|
10294
|
+
Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.0ms)
|
10295
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
10296
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
10297
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
10298
|
+
-----------------------------------------------------------
|
10299
|
+
AttachmentControllerTest: test_should_return_a_success_code
|
10300
|
+
-----------------------------------------------------------
|
10301
|
+
Started GET "/attachment-sitemap.xml" for 127.0.0.1 at 2016-10-03 16:44:54 -0300
|
10302
|
+
Processing by RailsSitemap::AttachmentController#index as XML
|
10303
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb
|
10304
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb (1.5ms)
|
10305
|
+
Completed 200 OK in 226ms (Views: 6.7ms | ActiveRecord: 0.0ms)
|
10306
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
10307
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
10308
|
+
----------------------------------------------------------
|
10309
|
+
AttachmentControllerTest: test_should_return_the_right_xml
|
10310
|
+
----------------------------------------------------------
|
10311
|
+
Started GET "/attachment-sitemap.xml" for 127.0.0.1 at 2016-10-03 16:44:54 -0300
|
10312
|
+
Processing by RailsSitemap::AttachmentController#index as XML
|
10313
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb
|
10314
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb (0.4ms)
|
10315
|
+
Completed 200 OK in 6ms (Views: 4.2ms | ActiveRecord: 0.0ms)
|
10316
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
10317
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
10318
|
+
----------------------------------------------------
|
10319
|
+
GeoControllerTest: test_should_return_a_success_code
|
10320
|
+
----------------------------------------------------
|
10321
|
+
Started GET "/geo-sitemap.xml" for 127.0.0.1 at 2016-10-03 16:44:54 -0300
|
10322
|
+
Processing by RailsSitemap::GeoController#index as XML
|
10323
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb
|
10324
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb (0.3ms)
|
10325
|
+
Completed 200 OK in 6ms (Views: 4.2ms | ActiveRecord: 0.0ms)
|
10326
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
10327
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
10328
|
+
---------------------------------------------------
|
10329
|
+
GeoControllerTest: test_should_return_the_right_xml
|
10330
|
+
---------------------------------------------------
|
10331
|
+
Started GET "/geo-sitemap.xml" for 127.0.0.1 at 2016-10-03 16:44:54 -0300
|
10332
|
+
Processing by RailsSitemap::GeoController#index as XML
|
10333
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb
|
10334
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb (0.3ms)
|
10335
|
+
Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.0ms)
|
10336
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
10337
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
10338
|
+
----------------------------
|
10339
|
+
RailsSitemapTest: test_truth
|
10340
|
+
----------------------------
|
10341
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
10342
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
10343
|
+
---------------------------------------------------------
|
10344
|
+
SitemapsControllerTest: test_should_return_a_success_code
|
10345
|
+
---------------------------------------------------------
|
10346
|
+
Started GET "/sitemap_index.xml" for 127.0.0.1 at 2016-10-03 16:44:54 -0300
|
10347
|
+
Processing by RailsSitemap::SitemapsController#index as XML
|
10348
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemaps/index.xml.erb
|
10349
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemaps/index.xml.erb (0.4ms)
|
10350
|
+
Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.0ms)
|
10351
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
10352
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
10353
|
+
--------------------------------------------------------
|
10354
|
+
SitemapsControllerTest: test_should_return_the_right_xml
|
10355
|
+
--------------------------------------------------------
|
10356
|
+
Started GET "/sitemap_index.xml" for 127.0.0.1 at 2016-10-03 16:44:54 -0300
|
10357
|
+
Processing by RailsSitemap::SitemapsController#index as XML
|
10358
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemaps/index.xml.erb
|
10359
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemaps/index.xml.erb (0.4ms)
|
10360
|
+
Completed 200 OK in 7ms (Views: 5.2ms | ActiveRecord: 0.0ms)
|
10361
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
10362
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
10363
|
+
----------------------------------------------------------
|
10364
|
+
LocationsControllerTest: test_should_return_a_success_code
|
10365
|
+
----------------------------------------------------------
|
10366
|
+
Started GET "/locations.kml" for 127.0.0.1 at 2016-10-03 16:44:54 -0300
|
10367
|
+
Processing by RailsSitemap::LocationsController#index as KML
|
10368
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb
|
10369
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb (0.4ms)
|
10370
|
+
Completed 200 OK in 6ms (Views: 4.4ms | ActiveRecord: 0.0ms)
|
10371
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
10372
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
10373
|
+
---------------------------------------------------------
|
10374
|
+
LocationsControllerTest: test_should_return_the_right_xml
|
10375
|
+
---------------------------------------------------------
|
10376
|
+
Started GET "/locations.kml" for 127.0.0.1 at 2016-10-03 16:44:54 -0300
|
10377
|
+
Processing by RailsSitemap::LocationsController#index as KML
|
10378
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb
|
10379
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb (0.4ms)
|
10380
|
+
Completed 200 OK in 6ms (Views: 4.2ms | ActiveRecord: 0.0ms)
|
10381
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
10382
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
10383
|
+
------------------------------------------------------
|
10384
|
+
PagesControllerTest: test_should_return_a_success_code
|
10385
|
+
------------------------------------------------------
|
10386
|
+
Started GET "/pages-sitemap.xml" for 127.0.0.1 at 2016-10-03 16:44:54 -0300
|
10387
|
+
Processing by RailsSitemap::PagesController#index as XML
|
10388
|
+
[1m[36mArticle Load (0.3ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
10389
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb
|
10390
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb (0.8ms)
|
10391
|
+
Completed 200 OK in 28283ms (Views: 6.1ms | ActiveRecord: 0.5ms)
|
10392
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
10393
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
10394
|
+
-----------------------------------------------------
|
10395
|
+
PagesControllerTest: test_should_return_the_right_xml
|
10396
|
+
-----------------------------------------------------
|
10397
|
+
Started GET "/pages-sitemap.xml" for 127.0.0.1 at 2016-10-03 16:45:23 -0300
|
10398
|
+
Processing by RailsSitemap::PagesController#index as XML
|
10399
|
+
[1m[36mArticle Load (0.3ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
10400
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb
|
10401
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb (0.6ms)
|
10402
|
+
Completed 200 OK in 1155ms (Views: 9.9ms | ActiveRecord: 0.3ms)
|
10403
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
10404
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
10405
|
+
---------------------------------------------------------------
|
10406
|
+
PagesControllerTest: test_should_return_the_articles_on_sitemap
|
10407
|
+
---------------------------------------------------------------
|
10408
|
+
[1m[36mArticle Load (0.2ms)[0m [1m[34mSELECT "articles".* FROM "articles" WHERE "articles"."name" = ? LIMIT ?[0m [["name", "My first article"], ["LIMIT", 1]]
|
10409
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
10410
|
+
[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 19:45:24 UTC], ["updated_at", 2016-10-03 19:45:24 UTC]]
|
10411
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
10412
|
+
Started GET "/pages-sitemap.xml" for 127.0.0.1 at 2016-10-03 16:45:24 -0300
|
10413
|
+
Processing by RailsSitemap::PagesController#index as XML
|
10414
|
+
[1m[36mArticle Load (0.2ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
10415
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb
|
10416
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb (0.6ms)
|
10417
|
+
Completed 200 OK in 1182ms (Views: 8.1ms | ActiveRecord: 0.2ms)
|
10418
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles" ORDER BY "articles"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
10419
|
+
[1m[35m (1.9ms)[0m [1m[31mrollback transaction[0m
|
10420
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
10421
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
10422
|
+
-----------------------------------------------------------
|
10423
|
+
AttachmentControllerTest: test_should_return_a_success_code
|
10424
|
+
-----------------------------------------------------------
|
10425
|
+
Started GET "/attachment-sitemap.xml" for 127.0.0.1 at 2016-10-03 16:48:19 -0300
|
10426
|
+
Processing by RailsSitemap::AttachmentController#index as XML
|
10427
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb
|
10428
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb (1.9ms)
|
10429
|
+
Completed 200 OK in 247ms (Views: 7.7ms | ActiveRecord: 0.0ms)
|
10430
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
10431
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
10432
|
+
----------------------------------------------------------
|
10433
|
+
AttachmentControllerTest: test_should_return_the_right_xml
|
10434
|
+
----------------------------------------------------------
|
10435
|
+
Started GET "/attachment-sitemap.xml" for 127.0.0.1 at 2016-10-03 16:48:19 -0300
|
10436
|
+
Processing by RailsSitemap::AttachmentController#index as XML
|
10437
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb
|
10438
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb (0.4ms)
|
10439
|
+
Completed 200 OK in 6ms (Views: 4.2ms | ActiveRecord: 0.0ms)
|
10440
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
10441
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
10442
|
+
----------------------------------------------------
|
10443
|
+
GeoControllerTest: test_should_return_a_success_code
|
10444
|
+
----------------------------------------------------
|
10445
|
+
Started GET "/geo-sitemap.xml" for 127.0.0.1 at 2016-10-03 16:48:19 -0300
|
10446
|
+
Processing by RailsSitemap::GeoController#index as XML
|
10447
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb
|
10448
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb (0.4ms)
|
10449
|
+
Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.0ms)
|
10450
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
10451
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
10452
|
+
---------------------------------------------------
|
10453
|
+
GeoControllerTest: test_should_return_the_right_xml
|
10454
|
+
---------------------------------------------------
|
10455
|
+
Started GET "/geo-sitemap.xml" for 127.0.0.1 at 2016-10-03 16:48:19 -0300
|
10456
|
+
Processing by RailsSitemap::GeoController#index as XML
|
10457
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb
|
10458
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb (0.3ms)
|
10459
|
+
Completed 200 OK in 6ms (Views: 4.4ms | ActiveRecord: 0.0ms)
|
10460
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
10461
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
10462
|
+
------------------------------------------------------
|
10463
|
+
PagesControllerTest: test_should_return_a_success_code
|
10464
|
+
------------------------------------------------------
|
10465
|
+
Started GET "/pages-sitemap.xml" for 127.0.0.1 at 2016-10-03 16:48:19 -0300
|
10466
|
+
Processing by RailsSitemap::PagesController#index as XML
|
10467
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
10468
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb
|
10469
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb (0.5ms)
|
10470
|
+
Completed 200 OK in 10ms (Views: 4.7ms | ActiveRecord: 0.2ms)
|
10471
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
10472
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
10473
|
+
---------------------------------------------------------------
|
10474
|
+
PagesControllerTest: test_should_return_the_articles_on_sitemap
|
10475
|
+
---------------------------------------------------------------
|
10476
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles" WHERE "articles"."name" = ? LIMIT ?[0m [["name", "My first article"], ["LIMIT", 1]]
|
10477
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
10478
|
+
[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 19:48:19 UTC], ["updated_at", 2016-10-03 19:48:19 UTC]]
|
10479
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
10480
|
+
Started GET "/pages-sitemap.xml" for 127.0.0.1 at 2016-10-03 16:48:19 -0300
|
10481
|
+
Processing by RailsSitemap::PagesController#index as XML
|
10482
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
10483
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb
|
10484
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb (0.5ms)
|
10485
|
+
Completed 200 OK in 7ms (Views: 4.5ms | ActiveRecord: 0.1ms)
|
10486
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles" ORDER BY "articles"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
10487
|
+
[1m[35m (2.1ms)[0m [1m[31mrollback transaction[0m
|
10488
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
10489
|
+
-----------------------------------------------------
|
10490
|
+
PagesControllerTest: test_should_return_the_right_xml
|
10491
|
+
-----------------------------------------------------
|
10492
|
+
Started GET "/pages-sitemap.xml" for 127.0.0.1 at 2016-10-03 16:48:19 -0300
|
10493
|
+
Processing by RailsSitemap::PagesController#index as XML
|
10494
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
10495
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb
|
10496
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb (0.5ms)
|
10497
|
+
Completed 200 OK in 6ms (Views: 4.3ms | ActiveRecord: 0.1ms)
|
10498
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
10499
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
10500
|
+
----------------------------
|
10501
|
+
RailsSitemapTest: test_truth
|
10502
|
+
----------------------------
|
10503
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
10504
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
10505
|
+
---------------------------------------------------------
|
10506
|
+
SitemapsControllerTest: test_should_return_a_success_code
|
10507
|
+
---------------------------------------------------------
|
10508
|
+
Started GET "/sitemap_index.xml" for 127.0.0.1 at 2016-10-03 16:48:19 -0300
|
10509
|
+
Processing by RailsSitemap::SitemapsController#index as XML
|
10510
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemaps/index.xml.erb
|
10511
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemaps/index.xml.erb (0.4ms)
|
10512
|
+
Completed 200 OK in 7ms (Views: 4.5ms | ActiveRecord: 0.0ms)
|
10513
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
10514
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
10515
|
+
--------------------------------------------------------
|
10516
|
+
SitemapsControllerTest: test_should_return_the_right_xml
|
10517
|
+
--------------------------------------------------------
|
10518
|
+
Started GET "/sitemap_index.xml" for 127.0.0.1 at 2016-10-03 16:48:19 -0300
|
10519
|
+
Processing by RailsSitemap::SitemapsController#index as XML
|
10520
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemaps/index.xml.erb
|
10521
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemaps/index.xml.erb (0.4ms)
|
10522
|
+
Completed 200 OK in 6ms (Views: 4.2ms | ActiveRecord: 0.0ms)
|
10523
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
10524
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
10525
|
+
----------------------------------------------------------
|
10526
|
+
LocationsControllerTest: test_should_return_a_success_code
|
10527
|
+
----------------------------------------------------------
|
10528
|
+
Started GET "/locations.kml" for 127.0.0.1 at 2016-10-03 16:48:19 -0300
|
10529
|
+
Processing by RailsSitemap::LocationsController#index as KML
|
10530
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb
|
10531
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb (0.4ms)
|
10532
|
+
Completed 200 OK in 6ms (Views: 4.5ms | ActiveRecord: 0.0ms)
|
10533
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
10534
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
10535
|
+
---------------------------------------------------------
|
10536
|
+
LocationsControllerTest: test_should_return_the_right_xml
|
10537
|
+
---------------------------------------------------------
|
10538
|
+
Started GET "/locations.kml" for 127.0.0.1 at 2016-10-03 16:48:19 -0300
|
10539
|
+
Processing by RailsSitemap::LocationsController#index as KML
|
10540
|
+
Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb
|
10541
|
+
Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb (0.4ms)
|
10542
|
+
Completed 200 OK in 6ms (Views: 4.3ms | ActiveRecord: 0.0ms)
|
10543
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
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.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Pablo Gonzaga
|
@@ -77,6 +77,7 @@ files:
|
|
77
77
|
- test/dummy/app/assets/stylesheets/application.css
|
78
78
|
- test/dummy/app/controllers/application_controller.rb
|
79
79
|
- test/dummy/app/controllers/articles_controller.rb
|
80
|
+
- test/dummy/app/controllers/fakes_controller.rb
|
80
81
|
- test/dummy/app/helpers/application_helper.rb
|
81
82
|
- test/dummy/app/models/application_record.rb
|
82
83
|
- test/dummy/app/models/article.rb
|
@@ -198,6 +199,7 @@ test_files:
|
|
198
199
|
- test/dummy/app/assets/stylesheets/application.css
|
199
200
|
- test/dummy/app/controllers/application_controller.rb
|
200
201
|
- test/dummy/app/controllers/articles_controller.rb
|
202
|
+
- test/dummy/app/controllers/fakes_controller.rb
|
201
203
|
- test/dummy/app/helpers/application_helper.rb
|
202
204
|
- test/dummy/app/models/application_record.rb
|
203
205
|
- test/dummy/app/models/article.rb
|