rails_sitemap 0.3.2 → 0.3.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: bbffb53c6151e7bf16c6cd36410e47483381f2c5
4
- data.tar.gz: bd45645aee7bd1d852304b3638cf92e802e0f88a
3
+ metadata.gz: 19c7a1af95d5c42ad4b2d13fa3933661677fb65f
4
+ data.tar.gz: a5573f873602cdbfa1419abd27b5334816ab907c
5
5
  SHA512:
6
- metadata.gz: e84f5603da94358c548ff27f21100490cb6b0f6a708f7900fcec16d950c8920d9bacc430d2818ae027b384268342713cda84c42eb1475a05e26151860f632ede
7
- data.tar.gz: 3bfe833524d89660458c2b2f81c950436f3e19d232180c51ca5a15d584fab9fcdd0fca5fd528330affe4e27f8271895ea55d98e097fe485dc9eec62ecfdcbe2d
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
@@ -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)
@@ -1,3 +1,3 @@
1
1
  module RailsSitemap
2
- VERSION = '0.3.2'
2
+ VERSION = '0.3.3'
3
3
  end
@@ -0,0 +1,7 @@
1
+ class FakesController < ApplicationController
2
+ def index
3
+ end
4
+
5
+ def show
6
+ end
7
+ end
@@ -19,4 +19,6 @@ RailsSitemap.setup do |config|
19
19
  coordinates: '12.417700299999979,45.4930475,0'
20
20
  }
21
21
  ]
22
+
23
+ config.excluded_paths = ['/fakes(.:format)']
22
24
  end
@@ -1,3 +1,4 @@
1
1
  Rails.application.routes.draw do
2
2
  resources :articles
3
+ resources :fakes
3
4
  end
@@ -9673,3 +9673,871 @@ Completed 200 OK in 8ms (Views: 5.5ms | ActiveRecord: 0.1ms)
9673
9673
  RailsSitemapTest: test_truth
9674
9674
  ----------------------------
9675
9675
   (0.0ms) rollback transaction
9676
+ ActiveRecord::SchemaMigration Load (2.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
9677
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
9687
+  (0.2ms) begin transaction
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
+  (0.1ms) rollback transaction
9697
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
9707
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
9717
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
9727
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
9737
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
9747
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
9757
+  (0.0ms) begin transaction
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
+ Article Load (2.2ms) SELECT "articles".* FROM "articles"
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
+  (0.1ms) rollback transaction
9768
+  (0.1ms) begin transaction
9769
+ ---------------------------------------------------------------
9770
+ PagesControllerTest: test_should_return_the_articles_on_sitemap
9771
+ ---------------------------------------------------------------
9772
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."name" = ? LIMIT ? [["name", "My first article"], ["LIMIT", 1]]
9773
+  (0.1ms) SAVEPOINT active_record_1
9774
+ SQL (2.4ms) INSERT INTO "articles" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "My first article"], ["created_at", 2016-10-03 19:39:50 UTC], ["updated_at", 2016-10-03 19:39:50 UTC]]
9775
+  (0.1ms) RELEASE SAVEPOINT active_record_1
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
+ Article Load (0.2ms) SELECT "articles".* FROM "articles"
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
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" DESC LIMIT ? [["LIMIT", 1]]
9783
+  (2.1ms) rollback transaction
9784
+  (0.1ms) begin transaction
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
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
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
+  (0.0ms) rollback transaction
9795
+  (0.0ms) begin transaction
9796
+ ----------------------------
9797
+ RailsSitemapTest: test_truth
9798
+ ----------------------------
9799
+  (0.0ms) rollback transaction
9800
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
9801
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
9811
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
9821
+  (0.0ms) begin transaction
9822
+ ---------------------------------------------------------------
9823
+ PagesControllerTest: test_should_return_the_articles_on_sitemap
9824
+ ---------------------------------------------------------------
9825
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."name" = ? LIMIT ? [["name", "My first article"], ["LIMIT", 1]]
9826
+  (0.0ms) SAVEPOINT active_record_1
9827
+ SQL (0.2ms) INSERT INTO "articles" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "My first article"], ["created_at", 2016-10-03 19:41:14 UTC], ["updated_at", 2016-10-03 19:41:14 UTC]]
9828
+  (0.0ms) RELEASE SAVEPOINT active_record_1
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
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
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
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" DESC LIMIT ? [["LIMIT", 1]]
9836
+  (2.3ms) rollback transaction
9837
+  (0.1ms) begin transaction
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
+ Article Load (0.2ms) SELECT "articles".* FROM "articles"
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
+  (0.1ms) rollback transaction
9848
+  (0.1ms) begin transaction
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
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
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
+  (0.1ms) rollback transaction
9859
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
9869
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
9879
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
9889
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
9899
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
9909
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
9919
+  (0.1ms) begin transaction
9920
+ ----------------------------
9921
+ RailsSitemapTest: test_truth
9922
+ ----------------------------
9923
+  (0.0ms) rollback transaction
9924
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
9925
+  (0.1ms) begin transaction
9926
+ ----------------------------
9927
+ RailsSitemapTest: test_truth
9928
+ ----------------------------
9929
+  (0.0ms) rollback transaction
9930
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
9940
+  (0.1ms) begin transaction
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
+  (0.0ms) rollback transaction
9950
+  (0.0ms) begin transaction
9951
+ ---------------------------------------------------------------
9952
+ PagesControllerTest: test_should_return_the_articles_on_sitemap
9953
+ ---------------------------------------------------------------
9954
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."name" = ? LIMIT ? [["name", "My first article"], ["LIMIT", 1]]
9955
+  (0.0ms) SAVEPOINT active_record_1
9956
+ SQL (0.3ms) INSERT INTO "articles" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "My first article"], ["created_at", 2016-10-03 19:44:02 UTC], ["updated_at", 2016-10-03 19:44:02 UTC]]
9957
+  (0.0ms) RELEASE SAVEPOINT active_record_1
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
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
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
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" DESC LIMIT ? [["LIMIT", 1]]
9965
+  (1.6ms) rollback transaction
9966
+  (0.1ms) begin transaction
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
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
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
+  (0.1ms) rollback transaction
9977
+  (0.1ms) begin transaction
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
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
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
+  (0.1ms) rollback transaction
9988
+  (0.2ms) begin transaction
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
+  (0.1ms) rollback transaction
9998
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
10008
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
10018
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
10028
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
10038
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
10048
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
10049
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
10059
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
10069
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
10079
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
10089
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
10099
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
10109
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
10119
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
10129
+  (0.0ms) begin transaction
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
+ Article Load (0.2ms) SELECT "articles".* FROM "articles"
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
+  (0.2ms) rollback transaction
10140
+  (0.2ms) begin transaction
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
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
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
+  (0.1ms) rollback transaction
10151
+  (0.0ms) begin transaction
10152
+ ---------------------------------------------------------------
10153
+ PagesControllerTest: test_should_return_the_articles_on_sitemap
10154
+ ---------------------------------------------------------------
10155
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."name" = ? LIMIT ? [["name", "My first article"], ["LIMIT", 1]]
10156
+  (0.0ms) SAVEPOINT active_record_1
10157
+ SQL (0.3ms) INSERT INTO "articles" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "My first article"], ["created_at", 2016-10-03 19:44:18 UTC], ["updated_at", 2016-10-03 19:44:18 UTC]]
10158
+  (0.1ms) RELEASE SAVEPOINT active_record_1
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
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
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
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" DESC LIMIT ? [["LIMIT", 1]]
10166
+  (1.8ms) rollback transaction
10167
+  (0.1ms) begin transaction
10168
+ ----------------------------
10169
+ RailsSitemapTest: test_truth
10170
+ ----------------------------
10171
+  (0.0ms) rollback transaction
10172
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
10173
+  (0.1ms) begin transaction
10174
+ ----------------------------
10175
+ RailsSitemapTest: test_truth
10176
+ ----------------------------
10177
+  (0.0ms) rollback transaction
10178
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
10188
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
10198
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
10208
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
10218
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
10228
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
10238
+  (0.0ms) begin transaction
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
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
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
+  (0.1ms) rollback transaction
10249
+  (0.1ms) begin transaction
10250
+ ---------------------------------------------------------------
10251
+ PagesControllerTest: test_should_return_the_articles_on_sitemap
10252
+ ---------------------------------------------------------------
10253
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."name" = ? LIMIT ? [["name", "My first article"], ["LIMIT", 1]]
10254
+  (0.0ms) SAVEPOINT active_record_1
10255
+ SQL (0.2ms) INSERT INTO "articles" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "My first article"], ["created_at", 2016-10-03 19:44:35 UTC], ["updated_at", 2016-10-03 19:44:35 UTC]]
10256
+  (0.0ms) RELEASE SAVEPOINT active_record_1
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
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
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
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" DESC LIMIT ? [["LIMIT", 1]]
10264
+  (2.0ms) rollback transaction
10265
+  (0.1ms) begin transaction
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
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
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
+  (0.1ms) rollback transaction
10276
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
10286
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
10296
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
10297
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
10307
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
10317
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
10327
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
10337
+  (0.0ms) begin transaction
10338
+ ----------------------------
10339
+ RailsSitemapTest: test_truth
10340
+ ----------------------------
10341
+  (0.0ms) rollback transaction
10342
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
10352
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
10362
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
10372
+  (0.1ms) begin transaction
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
+  (0.0ms) rollback transaction
10382
+  (0.0ms) begin transaction
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
+ Article Load (0.3ms) SELECT "articles".* FROM "articles"
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
+  (0.1ms) rollback transaction
10393
+  (0.1ms) begin transaction
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
+ Article Load (0.3ms) SELECT "articles".* FROM "articles"
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
+  (0.1ms) rollback transaction
10404
+  (0.1ms) begin transaction
10405
+ ---------------------------------------------------------------
10406
+ PagesControllerTest: test_should_return_the_articles_on_sitemap
10407
+ ---------------------------------------------------------------
10408
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."name" = ? LIMIT ? [["name", "My first article"], ["LIMIT", 1]]
10409
+  (0.1ms) SAVEPOINT active_record_1
10410
+ SQL (0.3ms) INSERT INTO "articles" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "My first article"], ["created_at", 2016-10-03 19:45:24 UTC], ["updated_at", 2016-10-03 19:45:24 UTC]]
10411
+  (0.0ms) RELEASE SAVEPOINT active_record_1
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
+ Article Load (0.2ms) SELECT "articles".* FROM "articles"
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
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" DESC LIMIT ? [["LIMIT", 1]]
10419
+  (1.9ms) rollback transaction
10420
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
10421
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
10431
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
10441
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
10451
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
10461
+  (0.0ms) begin transaction
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
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
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
+  (0.1ms) rollback transaction
10472
+  (0.1ms) begin transaction
10473
+ ---------------------------------------------------------------
10474
+ PagesControllerTest: test_should_return_the_articles_on_sitemap
10475
+ ---------------------------------------------------------------
10476
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."name" = ? LIMIT ? [["name", "My first article"], ["LIMIT", 1]]
10477
+  (0.0ms) SAVEPOINT active_record_1
10478
+ SQL (0.3ms) INSERT INTO "articles" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "My first article"], ["created_at", 2016-10-03 19:48:19 UTC], ["updated_at", 2016-10-03 19:48:19 UTC]]
10479
+  (0.0ms) RELEASE SAVEPOINT active_record_1
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
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
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
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" DESC LIMIT ? [["LIMIT", 1]]
10487
+  (2.1ms) rollback transaction
10488
+  (0.1ms) begin transaction
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
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
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
+  (0.1ms) rollback transaction
10499
+  (0.1ms) begin transaction
10500
+ ----------------------------
10501
+ RailsSitemapTest: test_truth
10502
+ ----------------------------
10503
+  (0.0ms) rollback transaction
10504
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
10514
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
10524
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
10534
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
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.2
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