rails_sitemap 0.1.0 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 67742eaa1d5a1add5d631d3d57e97f8dd7730841
4
- data.tar.gz: 40955e6f3369e0fcca9de26fd483a356fd344824
3
+ metadata.gz: 045b00f6cb2ad59ca4b2da7799b0e8f4f845041a
4
+ data.tar.gz: 632fac6831038cf328dfec86c0d6a5ee7a8f1822
5
5
  SHA512:
6
- metadata.gz: 383629d0b8bc28f9bf75a555754a0d5015de0717f7e3f75fd9c4cd74732a882cb5ff3d47c23b4d40fd9d0bf9e3e3788d3ed114b21c6ae28939b39d68330d34de
7
- data.tar.gz: e691683baf820b81cbe5f898fd81500de2a1e6fd2678ae48d127f58188484dd67e6d7efe51e175f7e05a652eff0a5b473d3a2d71929c907524623d87a55262d7
6
+ metadata.gz: 166d2fd51efc51313f5c770aa64a9c6f088cb9d4be5a35a5363e48bf5f15f437f3b91621cb45394d879518581b5e8cee71f13632e12e9f218eea1e9c52b8857e
7
+ data.tar.gz: bafcec807220aaf880722737c14689dcdc31860d8e7c595dd80d60051fe41c0588a9d202de65eb3dc2ec101079c0fc1ef34be1d9adb6e49c367b40813c6077c6
@@ -0,0 +1,11 @@
1
+ module RailsSitemap
2
+ class GeoController < ApplicationController
3
+ include RailsSitemap::ActAsSitemap
4
+
5
+ def index
6
+ respond_to do |format|
7
+ format.xml
8
+ end
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,17 @@
1
+ module RailsSitemap
2
+ class LocationsController < ApplicationController
3
+ before_action :set_locations
4
+
5
+ def index
6
+ respond_to do |format|
7
+ format.kml
8
+ end
9
+ end
10
+
11
+ private
12
+
13
+ def set_locations
14
+ @locations = RailsSitemap.locations ||= []
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,8 @@
1
+ <?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="http://www.sportsandspineortho.com/wp-content/plugins/wpseo-local/styles/geo-sitemap.xsl"?>
2
+ <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:geo="http://www.google.com/geo/schemas/sitemap/1.0">
3
+ <url>
4
+ <loc><%= "#{@current_domain}/locations.kml"%></loc>
5
+ <lastmod><%=RailsSitemap.updated_at%></lastmod>
6
+ <priority>1</priority>
7
+ </url>
8
+ </urlset>
@@ -0,0 +1,12 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <kml xmlns="http://earth.google.com/kml/2.2">
3
+ <%= @locations.each do |location|%>
4
+ <Placemark>
5
+ <name><%=location.try(:[], :name)%></name>
6
+ <description><%=location.try(:[], :description)%></description>
7
+ <Point>
8
+ <coordinates><%=location.try(:[], :coordinates)%></coordinates>
9
+ </Point>
10
+ </Placemark>
11
+ <%end%>
12
+ </kml>
data/config/routes.rb CHANGED
@@ -1,4 +1,7 @@
1
1
  RailsSitemap::Engine.routes.draw do
2
- get "sitemap" => "sitemap#index"
3
- get "attachment-sitemap" => "attachment#index"
2
+ get 'sitemap' => 'sitemap#index'
3
+ get 'attachment-sitemap' => 'attachment#index'
4
+ get 'geo-sitemap' => 'geo#index'
5
+
6
+ resources :locations, only: :index
4
7
  end
@@ -6,6 +6,8 @@ module RailsSitemap
6
6
  Rails.application.routes.append do
7
7
  mount RailsSitemap::Engine => '/'
8
8
  end
9
+
10
+ Mime::Type.register 'text/kml', :kml
9
11
  end
10
12
  end
11
13
 
@@ -14,13 +16,15 @@ module RailsSitemap
14
16
  :updated_at,
15
17
  :priority,
16
18
  :update_frequency_for_app,
17
- :update_frequency_for_models
19
+ :update_frequency_for_models,
20
+ :locations
18
21
 
19
22
  self.models_for_sitemap = []
20
23
  self.updated_at = DateTime.now.to_s
21
24
  self.priority = 0.5
22
25
  self.update_frequency_for_app = 'always'
23
26
  self.update_frequency_for_models = 'weekly'
27
+ self.locations = []
24
28
  end
25
29
 
26
30
  def self.setup(&block)
@@ -1,3 +1,3 @@
1
1
  module RailsSitemap
2
- VERSION = '0.1.0'
2
+ VERSION = '0.2.0'
3
3
  end
@@ -4,4 +4,11 @@ RailsSitemap.setup do |config|
4
4
  config.priority = 0.5
5
5
  config.update_frequency_for_app = 'always'
6
6
  config.update_frequency_for_models = 'weekly'
7
+ config.locations = [
8
+ {
9
+ name: 'NeonRoots Uruguay Office',
10
+ description: 'Zelmar Michelini 1290 Apto. 401 Esq. San José - Tel. 2909 0655',
11
+ coordinates: '-56.19006872177124,-34.907047903278404,0'
12
+ }
13
+ ]
7
14
  end
@@ -4638,3 +4638,1237 @@ Processing by RailsSitemap::AttachmentController#index as XML
4638
4638
  Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb (0.4ms)
4639
4639
  Completed 200 OK in 7ms (Views: 4.8ms | ActiveRecord: 0.0ms)
4640
4640
   (0.1ms) rollback transaction
4641
+ ActiveRecord::SchemaMigration Load (2.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
4642
+  (0.1ms) begin transaction
4643
+ -----------------------------------------------------------
4644
+ AttachmentControllerTest: test_should_return_a_success_code
4645
+ -----------------------------------------------------------
4646
+ Started GET "/attachment-sitemap.xml" for 127.0.0.1 at 2016-09-28 10:52:27 -0300
4647
+ Processing by RailsSitemap::AttachmentController#index as XML
4648
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb
4649
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb (3.2ms)
4650
+ Completed 200 OK in 345ms (Views: 11.7ms | ActiveRecord: 0.0ms)
4651
+  (0.1ms) rollback transaction
4652
+  (0.1ms) begin transaction
4653
+ ----------------------------------------------------------
4654
+ AttachmentControllerTest: test_should_return_the_right_xml
4655
+ ----------------------------------------------------------
4656
+ Started GET "/attachment-sitemap.xml" for 127.0.0.1 at 2016-09-28 10:52:28 -0300
4657
+ Processing by RailsSitemap::AttachmentController#index as XML
4658
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb
4659
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb (0.4ms)
4660
+ Completed 200 OK in 7ms (Views: 4.2ms | ActiveRecord: 0.0ms)
4661
+  (0.1ms) rollback transaction
4662
+  (0.1ms) begin transaction
4663
+ ----------------------------
4664
+ RailsSitemapTest: test_truth
4665
+ ----------------------------
4666
+  (0.0ms) rollback transaction
4667
+  (0.0ms) begin transaction
4668
+ ----------------------------------------------------------
4669
+ LocationsControllerTest: test_should_return_a_success_code
4670
+ ----------------------------------------------------------
4671
+ Started GET "/locations.kml" for 127.0.0.1 at 2016-09-28 10:52:28 -0300
4672
+ Processing by RailsSitemap::LocationsController#index as
4673
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
4674
+  (0.1ms) rollback transaction
4675
+  (0.0ms) begin transaction
4676
+ -----------------------------------------------------------------
4677
+ SitemapControllerTest: test_should_return_the_articles_on_sitemap
4678
+ -----------------------------------------------------------------
4679
+ Article Load (2.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."name" = ? LIMIT ? [["name", "My first article"], ["LIMIT", 1]]
4680
+  (0.0ms) SAVEPOINT active_record_1
4681
+ SQL (2.6ms) INSERT INTO "articles" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "My first article"], ["created_at", 2016-09-28 13:52:28 UTC], ["updated_at", 2016-09-28 13:52:28 UTC]]
4682
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4683
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-28 10:52:28 -0300
4684
+ Processing by RailsSitemap::SitemapController#index as XML
4685
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
4686
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb
4687
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (0.5ms)
4688
+ Completed 200 OK in 19ms (Views: 7.1ms | ActiveRecord: 0.1ms)
4689
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" DESC LIMIT ? [["LIMIT", 1]]
4690
+  (2.2ms) rollback transaction
4691
+  (0.1ms) begin transaction
4692
+ -------------------------------------------------------
4693
+ SitemapControllerTest: test_should_return_the_right_xml
4694
+ -------------------------------------------------------
4695
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-28 10:52:28 -0300
4696
+ Processing by RailsSitemap::SitemapController#index as XML
4697
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
4698
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb
4699
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (0.5ms)
4700
+ Completed 200 OK in 7ms (Views: 5.1ms | ActiveRecord: 0.1ms)
4701
+  (0.1ms) rollback transaction
4702
+  (0.1ms) begin transaction
4703
+ --------------------------------------------------------
4704
+ SitemapControllerTest: test_should_return_a_success_code
4705
+ --------------------------------------------------------
4706
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-28 10:52:28 -0300
4707
+ Processing by RailsSitemap::SitemapController#index as XML
4708
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
4709
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb
4710
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (0.4ms)
4711
+ Completed 200 OK in 7ms (Views: 4.6ms | ActiveRecord: 0.1ms)
4712
+  (0.1ms) rollback transaction
4713
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
4714
+  (0.1ms) begin transaction
4715
+ ----------------------------------------------------------
4716
+ LocationsControllerTest: test_should_return_a_success_code
4717
+ ----------------------------------------------------------
4718
+ Started GET "/locations.kml" for 127.0.0.1 at 2016-09-28 10:58:00 -0300
4719
+ Processing by RailsSitemap::LocationsController#index as KML
4720
+ No template found for RailsSitemap::LocationsController#index, rendering head :no_content
4721
+ Completed 204 No Content in 52ms (ActiveRecord: 0.0ms)
4722
+  (0.1ms) rollback transaction
4723
+  (0.1ms) begin transaction
4724
+ --------------------------------------------------------
4725
+ SitemapControllerTest: test_should_return_a_success_code
4726
+ --------------------------------------------------------
4727
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-28 10:58:18 -0300
4728
+ Processing by RailsSitemap::SitemapController#index as XML
4729
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
4730
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb
4731
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (2.3ms)
4732
+ Completed 200 OK in 14ms (Views: 9.3ms | ActiveRecord: 0.2ms)
4733
+  (0.1ms) rollback transaction
4734
+  (0.1ms) begin transaction
4735
+ -----------------------------------------------------------------
4736
+ SitemapControllerTest: test_should_return_the_articles_on_sitemap
4737
+ -----------------------------------------------------------------
4738
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" WHERE "articles"."name" = ? LIMIT ? [["name", "My first article"], ["LIMIT", 1]]
4739
+  (0.1ms) SAVEPOINT active_record_1
4740
+ SQL (0.3ms) INSERT INTO "articles" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "My first article"], ["created_at", 2016-09-28 13:58:18 UTC], ["updated_at", 2016-09-28 13:58:18 UTC]]
4741
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4742
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-28 10:58:18 -0300
4743
+ Processing by RailsSitemap::SitemapController#index as XML
4744
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
4745
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb
4746
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (0.5ms)
4747
+ Completed 200 OK in 7ms (Views: 4.2ms | ActiveRecord: 0.1ms)
4748
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" DESC LIMIT ? [["LIMIT", 1]]
4749
+  (2.1ms) rollback transaction
4750
+  (0.1ms) begin transaction
4751
+ -------------------------------------------------------
4752
+ SitemapControllerTest: test_should_return_the_right_xml
4753
+ -------------------------------------------------------
4754
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-28 10:58:18 -0300
4755
+ Processing by RailsSitemap::SitemapController#index as XML
4756
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
4757
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb
4758
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (0.4ms)
4759
+ Completed 200 OK in 6ms (Views: 4.2ms | ActiveRecord: 0.1ms)
4760
+  (0.0ms) rollback transaction
4761
+  (0.0ms) begin transaction
4762
+ ----------------------------------------------------------
4763
+ AttachmentControllerTest: test_should_return_the_right_xml
4764
+ ----------------------------------------------------------
4765
+ Started GET "/attachment-sitemap.xml" for 127.0.0.1 at 2016-09-28 10:58:18 -0300
4766
+ Processing by RailsSitemap::AttachmentController#index as XML
4767
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb
4768
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb (0.4ms)
4769
+ Completed 200 OK in 159ms (Views: 4.3ms | ActiveRecord: 0.0ms)
4770
+  (0.1ms) rollback transaction
4771
+  (0.1ms) begin transaction
4772
+ -----------------------------------------------------------
4773
+ AttachmentControllerTest: test_should_return_a_success_code
4774
+ -----------------------------------------------------------
4775
+ Started GET "/attachment-sitemap.xml" for 127.0.0.1 at 2016-09-28 10:58:18 -0300
4776
+ Processing by RailsSitemap::AttachmentController#index as XML
4777
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb
4778
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb (0.4ms)
4779
+ Completed 200 OK in 9ms (Views: 5.2ms | ActiveRecord: 0.0ms)
4780
+  (0.1ms) rollback transaction
4781
+  (0.0ms) begin transaction
4782
+ ----------------------------
4783
+ RailsSitemapTest: test_truth
4784
+ ----------------------------
4785
+  (0.0ms) rollback transaction
4786
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4787
+  (0.1ms) begin transaction
4788
+ --------------------------------------------------------
4789
+ SitemapControllerTest: test_should_return_a_success_code
4790
+ --------------------------------------------------------
4791
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-28 10:59:23 -0300
4792
+ Processing by RailsSitemap::SitemapController#index as XML
4793
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
4794
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb
4795
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (1.2ms)
4796
+ Completed 200 OK in 12ms (Views: 7.3ms | ActiveRecord: 0.2ms)
4797
+  (0.1ms) rollback transaction
4798
+  (0.1ms) begin transaction
4799
+ -------------------------------------------------------
4800
+ SitemapControllerTest: test_should_return_the_right_xml
4801
+ -------------------------------------------------------
4802
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-28 10:59:23 -0300
4803
+ Processing by RailsSitemap::SitemapController#index as XML
4804
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
4805
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb
4806
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (0.5ms)
4807
+ Completed 200 OK in 7ms (Views: 5.0ms | ActiveRecord: 0.1ms)
4808
+  (0.1ms) rollback transaction
4809
+  (0.1ms) begin transaction
4810
+ -----------------------------------------------------------------
4811
+ SitemapControllerTest: test_should_return_the_articles_on_sitemap
4812
+ -----------------------------------------------------------------
4813
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."name" = ? LIMIT ? [["name", "My first article"], ["LIMIT", 1]]
4814
+  (0.1ms) SAVEPOINT active_record_1
4815
+ SQL (0.3ms) INSERT INTO "articles" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "My first article"], ["created_at", 2016-09-28 13:59:23 UTC], ["updated_at", 2016-09-28 13:59:23 UTC]]
4816
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4817
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-28 10:59:23 -0300
4818
+ Processing by RailsSitemap::SitemapController#index as XML
4819
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
4820
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb
4821
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (0.5ms)
4822
+ Completed 200 OK in 8ms (Views: 4.9ms | ActiveRecord: 0.1ms)
4823
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" DESC LIMIT ? [["LIMIT", 1]]
4824
+  (2.1ms) rollback transaction
4825
+  (0.1ms) begin transaction
4826
+ ----------------------------------------------------------
4827
+ LocationsControllerTest: test_should_return_a_success_code
4828
+ ----------------------------------------------------------
4829
+ Started GET "/locations.kml" for 127.0.0.1 at 2016-09-28 10:59:23 -0300
4830
+ Processing by RailsSitemap::LocationsController#index as KML
4831
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb
4832
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb (0.3ms)
4833
+ Completed 200 OK in 8ms (Views: 6.4ms | ActiveRecord: 0.0ms)
4834
+  (0.3ms) rollback transaction
4835
+  (0.1ms) begin transaction
4836
+ -----------------------------------------------------------
4837
+ AttachmentControllerTest: test_should_return_a_success_code
4838
+ -----------------------------------------------------------
4839
+ Started GET "/attachment-sitemap.xml" for 127.0.0.1 at 2016-09-28 10:59:30 -0300
4840
+ Processing by RailsSitemap::AttachmentController#index as XML
4841
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb
4842
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb (0.4ms)
4843
+ Completed 200 OK in 170ms (Views: 4.4ms | ActiveRecord: 0.0ms)
4844
+  (0.1ms) rollback transaction
4845
+  (0.0ms) begin transaction
4846
+ ----------------------------------------------------------
4847
+ AttachmentControllerTest: test_should_return_the_right_xml
4848
+ ----------------------------------------------------------
4849
+ Started GET "/attachment-sitemap.xml" for 127.0.0.1 at 2016-09-28 10:59:30 -0300
4850
+ Processing by RailsSitemap::AttachmentController#index as XML
4851
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb
4852
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb (0.4ms)
4853
+ Completed 200 OK in 10ms (Views: 5.6ms | ActiveRecord: 0.0ms)
4854
+  (0.0ms) rollback transaction
4855
+  (0.0ms) begin transaction
4856
+ ----------------------------
4857
+ RailsSitemapTest: test_truth
4858
+ ----------------------------
4859
+  (0.0ms) rollback transaction
4860
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4861
+  (0.1ms) begin transaction
4862
+ ----------------------------
4863
+ RailsSitemapTest: test_truth
4864
+ ----------------------------
4865
+  (0.1ms) rollback transaction
4866
+  (0.0ms) begin transaction
4867
+ ----------------------------------------------------------
4868
+ LocationsControllerTest: test_should_return_a_success_code
4869
+ ----------------------------------------------------------
4870
+ Started GET "/locations.kml" for 127.0.0.1 at 2016-09-28 11:18:08 -0300
4871
+ Processing by RailsSitemap::LocationsController#index as KML
4872
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb
4873
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb (1.0ms)
4874
+ Completed 200 OK in 8ms (Views: 6.7ms | ActiveRecord: 0.0ms)
4875
+  (0.1ms) rollback transaction
4876
+  (0.1ms) begin transaction
4877
+ -------------------------------------------------------
4878
+ SitemapControllerTest: test_should_return_the_right_xml
4879
+ -------------------------------------------------------
4880
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-28 11:18:09 -0300
4881
+ Processing by RailsSitemap::SitemapController#index as XML
4882
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
4883
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb
4884
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (0.5ms)
4885
+ Completed 200 OK in 12ms (Views: 4.4ms | ActiveRecord: 0.2ms)
4886
+  (0.1ms) rollback transaction
4887
+  (0.1ms) begin transaction
4888
+ -----------------------------------------------------------------
4889
+ SitemapControllerTest: test_should_return_the_articles_on_sitemap
4890
+ -----------------------------------------------------------------
4891
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."name" = ? LIMIT ? [["name", "My first article"], ["LIMIT", 1]]
4892
+  (0.1ms) SAVEPOINT active_record_1
4893
+ SQL (0.5ms) INSERT INTO "articles" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "My first article"], ["created_at", 2016-09-28 14:18:09 UTC], ["updated_at", 2016-09-28 14:18:09 UTC]]
4894
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4895
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-28 11:18:09 -0300
4896
+ Processing by RailsSitemap::SitemapController#index as XML
4897
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
4898
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb
4899
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (0.5ms)
4900
+ Completed 200 OK in 13ms (Views: 6.2ms | ActiveRecord: 0.1ms)
4901
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" DESC LIMIT ? [["LIMIT", 1]]
4902
+  (2.1ms) rollback transaction
4903
+  (0.1ms) begin transaction
4904
+ --------------------------------------------------------
4905
+ SitemapControllerTest: test_should_return_a_success_code
4906
+ --------------------------------------------------------
4907
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-28 11:18:09 -0300
4908
+ Processing by RailsSitemap::SitemapController#index as XML
4909
+ Article Load (0.2ms) SELECT "articles".* FROM "articles"
4910
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb
4911
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (0.5ms)
4912
+ Completed 200 OK in 8ms (Views: 4.5ms | ActiveRecord: 0.2ms)
4913
+  (0.1ms) rollback transaction
4914
+  (0.0ms) begin transaction
4915
+ -----------------------------------------------------------
4916
+ AttachmentControllerTest: test_should_return_a_success_code
4917
+ -----------------------------------------------------------
4918
+ Started GET "/attachment-sitemap.xml" for 127.0.0.1 at 2016-09-28 11:18:09 -0300
4919
+ Processing by RailsSitemap::AttachmentController#index as XML
4920
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb
4921
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb (0.5ms)
4922
+ Completed 200 OK in 173ms (Views: 4.5ms | ActiveRecord: 0.0ms)
4923
+  (0.1ms) rollback transaction
4924
+  (0.1ms) begin transaction
4925
+ ----------------------------------------------------------
4926
+ AttachmentControllerTest: test_should_return_the_right_xml
4927
+ ----------------------------------------------------------
4928
+ Started GET "/attachment-sitemap.xml" for 127.0.0.1 at 2016-09-28 11:18:10 -0300
4929
+ Processing by RailsSitemap::AttachmentController#index as XML
4930
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb
4931
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb (0.4ms)
4932
+ Completed 200 OK in 8ms (Views: 4.4ms | ActiveRecord: 0.0ms)
4933
+  (0.1ms) rollback transaction
4934
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
4935
+  (0.1ms) begin transaction
4936
+ --------------------------------------------------------
4937
+ SitemapControllerTest: test_should_return_a_success_code
4938
+ --------------------------------------------------------
4939
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-28 11:18:16 -0300
4940
+ Processing by RailsSitemap::SitemapController#index as XML
4941
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
4942
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb
4943
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (1.1ms)
4944
+ Completed 200 OK in 19ms (Views: 13.6ms | ActiveRecord: 0.2ms)
4945
+  (0.1ms) rollback transaction
4946
+  (0.1ms) begin transaction
4947
+ -----------------------------------------------------------------
4948
+ SitemapControllerTest: test_should_return_the_articles_on_sitemap
4949
+ -----------------------------------------------------------------
4950
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."name" = ? LIMIT ? [["name", "My first article"], ["LIMIT", 1]]
4951
+  (0.0ms) SAVEPOINT active_record_1
4952
+ SQL (0.2ms) INSERT INTO "articles" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "My first article"], ["created_at", 2016-09-28 14:18:16 UTC], ["updated_at", 2016-09-28 14:18:16 UTC]]
4953
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4954
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-28 11:18:16 -0300
4955
+ Processing by RailsSitemap::SitemapController#index as XML
4956
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
4957
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb
4958
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (0.5ms)
4959
+ Completed 200 OK in 7ms (Views: 4.7ms | ActiveRecord: 0.1ms)
4960
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" DESC LIMIT ? [["LIMIT", 1]]
4961
+  (2.3ms) rollback transaction
4962
+  (0.1ms) begin transaction
4963
+ -------------------------------------------------------
4964
+ SitemapControllerTest: test_should_return_the_right_xml
4965
+ -------------------------------------------------------
4966
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-28 11:18:16 -0300
4967
+ Processing by RailsSitemap::SitemapController#index as XML
4968
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
4969
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb
4970
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (0.5ms)
4971
+ Completed 200 OK in 6ms (Views: 4.4ms | ActiveRecord: 0.1ms)
4972
+  (0.1ms) rollback transaction
4973
+  (0.0ms) begin transaction
4974
+ ----------------------------
4975
+ RailsSitemapTest: test_truth
4976
+ ----------------------------
4977
+  (0.0ms) rollback transaction
4978
+  (0.1ms) begin transaction
4979
+ -----------------------------------------------------------
4980
+ AttachmentControllerTest: test_should_return_a_success_code
4981
+ -----------------------------------------------------------
4982
+ Started GET "/attachment-sitemap.xml" for 127.0.0.1 at 2016-09-28 11:18:16 -0300
4983
+ Processing by RailsSitemap::AttachmentController#index as XML
4984
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb
4985
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb (0.5ms)
4986
+ Completed 200 OK in 174ms (Views: 4.5ms | ActiveRecord: 0.0ms)
4987
+  (0.1ms) rollback transaction
4988
+  (0.0ms) begin transaction
4989
+ ----------------------------------------------------------
4990
+ AttachmentControllerTest: test_should_return_the_right_xml
4991
+ ----------------------------------------------------------
4992
+ Started GET "/attachment-sitemap.xml" for 127.0.0.1 at 2016-09-28 11:18:16 -0300
4993
+ Processing by RailsSitemap::AttachmentController#index as XML
4994
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb
4995
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb (0.4ms)
4996
+ Completed 200 OK in 9ms (Views: 5.0ms | ActiveRecord: 0.0ms)
4997
+  (0.1ms) rollback transaction
4998
+  (0.0ms) begin transaction
4999
+ ----------------------------------------------------------
5000
+ LocationsControllerTest: test_should_return_a_success_code
5001
+ ----------------------------------------------------------
5002
+ Started GET "/locations.kml" for 127.0.0.1 at 2016-09-28 11:18:16 -0300
5003
+ Processing by RailsSitemap::LocationsController#index as KML
5004
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb
5005
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb (0.4ms)
5006
+ Completed 200 OK in 6ms (Views: 4.2ms | ActiveRecord: 0.0ms)
5007
+  (0.2ms) rollback transaction
5008
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
5009
+  (0.1ms) begin transaction
5010
+ -----------------------------------------------------------
5011
+ AttachmentControllerTest: test_should_return_a_success_code
5012
+ -----------------------------------------------------------
5013
+ Started GET "/attachment-sitemap.xml" for 127.0.0.1 at 2016-09-28 11:22:42 -0300
5014
+ Processing by RailsSitemap::AttachmentController#index as XML
5015
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb
5016
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb (2.1ms)
5017
+ Completed 200 OK in 257ms (Views: 12.4ms | ActiveRecord: 0.0ms)
5018
+  (0.2ms) rollback transaction
5019
+  (0.1ms) begin transaction
5020
+ ----------------------------------------------------------
5021
+ AttachmentControllerTest: test_should_return_the_right_xml
5022
+ ----------------------------------------------------------
5023
+ Started GET "/attachment-sitemap.xml" for 127.0.0.1 at 2016-09-28 11:22:42 -0300
5024
+ Processing by RailsSitemap::AttachmentController#index as XML
5025
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb
5026
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb (0.4ms)
5027
+ Completed 200 OK in 8ms (Views: 4.3ms | ActiveRecord: 0.0ms)
5028
+  (0.1ms) rollback transaction
5029
+  (0.1ms) begin transaction
5030
+ --------------------------------------------------------
5031
+ SitemapControllerTest: test_should_return_a_success_code
5032
+ --------------------------------------------------------
5033
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-28 11:22:42 -0300
5034
+ Processing by RailsSitemap::SitemapController#index as XML
5035
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
5036
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb
5037
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (0.6ms)
5038
+ Completed 200 OK in 9ms (Views: 4.7ms | ActiveRecord: 0.3ms)
5039
+  (0.1ms) rollback transaction
5040
+  (0.1ms) begin transaction
5041
+ -----------------------------------------------------------------
5042
+ SitemapControllerTest: test_should_return_the_articles_on_sitemap
5043
+ -----------------------------------------------------------------
5044
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."name" = ? LIMIT ? [["name", "My first article"], ["LIMIT", 1]]
5045
+  (0.1ms) SAVEPOINT active_record_1
5046
+ SQL (0.4ms) INSERT INTO "articles" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "My first article"], ["created_at", 2016-09-28 14:22:42 UTC], ["updated_at", 2016-09-28 14:22:42 UTC]]
5047
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5048
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-28 11:22:42 -0300
5049
+ Processing by RailsSitemap::SitemapController#index as XML
5050
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
5051
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb
5052
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (0.9ms)
5053
+ Completed 200 OK in 10ms (Views: 5.5ms | ActiveRecord: 0.1ms)
5054
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" DESC LIMIT ? [["LIMIT", 1]]
5055
+  (2.2ms) rollback transaction
5056
+  (0.1ms) begin transaction
5057
+ -------------------------------------------------------
5058
+ SitemapControllerTest: test_should_return_the_right_xml
5059
+ -------------------------------------------------------
5060
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-28 11:22:42 -0300
5061
+ Processing by RailsSitemap::SitemapController#index as XML
5062
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
5063
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb
5064
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (1.2ms)
5065
+ Completed 200 OK in 8ms (Views: 6.2ms | ActiveRecord: 0.1ms)
5066
+  (0.1ms) rollback transaction
5067
+  (0.1ms) begin transaction
5068
+ ----------------------------------------------------------
5069
+ LocationsControllerTest: test_should_return_a_success_code
5070
+ ----------------------------------------------------------
5071
+ Started GET "/locations.kml" for 127.0.0.1 at 2016-09-28 11:22:42 -0300
5072
+ Processing by RailsSitemap::LocationsController#index as KML
5073
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb
5074
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb (0.9ms)
5075
+ Completed 200 OK in 9ms (Views: 7.0ms | ActiveRecord: 0.0ms)
5076
+  (0.1ms) rollback transaction
5077
+  (0.1ms) begin transaction
5078
+ ---------------------------------------------------------
5079
+ LocationsControllerTest: test_should_return_the_right_xml
5080
+ ---------------------------------------------------------
5081
+ Started GET "/locations.kml" for 127.0.0.1 at 2016-09-28 11:22:42 -0300
5082
+ Processing by RailsSitemap::LocationsController#index as KML
5083
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb
5084
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb (0.7ms)
5085
+ Completed 200 OK in 12ms (Views: 8.3ms | ActiveRecord: 0.0ms)
5086
+  (0.2ms) rollback transaction
5087
+  (0.1ms) begin transaction
5088
+ ----------------------------
5089
+ RailsSitemapTest: test_truth
5090
+ ----------------------------
5091
+  (0.0ms) rollback transaction
5092
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
5093
+  (0.1ms) begin transaction
5094
+ ----------------------------
5095
+ RailsSitemapTest: test_truth
5096
+ ----------------------------
5097
+  (0.0ms) rollback transaction
5098
+  (0.0ms) begin transaction
5099
+ ----------------------------------------------------------
5100
+ LocationsControllerTest: test_should_return_a_success_code
5101
+ ----------------------------------------------------------
5102
+ Started GET "/locations.kml" for 127.0.0.1 at 2016-09-28 11:23:57 -0300
5103
+ Processing by RailsSitemap::LocationsController#index as KML
5104
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb
5105
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb (1.0ms)
5106
+ Completed 200 OK in 8ms (Views: 6.7ms | ActiveRecord: 0.0ms)
5107
+  (0.1ms) rollback transaction
5108
+  (0.0ms) begin transaction
5109
+ ---------------------------------------------------------
5110
+ LocationsControllerTest: test_should_return_the_right_xml
5111
+ ---------------------------------------------------------
5112
+ Started GET "/locations.kml" for 127.0.0.1 at 2016-09-28 11:23:57 -0300
5113
+ Processing by RailsSitemap::LocationsController#index as KML
5114
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb
5115
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb (0.4ms)
5116
+ Completed 200 OK in 6ms (Views: 4.2ms | ActiveRecord: 0.0ms)
5117
+  (0.1ms) rollback transaction
5118
+  (0.1ms) begin transaction
5119
+ ----------------------------------------------------------
5120
+ AttachmentControllerTest: test_should_return_the_right_xml
5121
+ ----------------------------------------------------------
5122
+ Started GET "/attachment-sitemap.xml" for 127.0.0.1 at 2016-09-28 11:23:57 -0300
5123
+ Processing by RailsSitemap::AttachmentController#index as XML
5124
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb
5125
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb (0.8ms)
5126
+ Completed 200 OK in 229ms (Views: 8.7ms | ActiveRecord: 0.0ms)
5127
+  (0.1ms) rollback transaction
5128
+  (0.1ms) begin transaction
5129
+ -----------------------------------------------------------
5130
+ AttachmentControllerTest: test_should_return_a_success_code
5131
+ -----------------------------------------------------------
5132
+ Started GET "/attachment-sitemap.xml" for 127.0.0.1 at 2016-09-28 11:23:57 -0300
5133
+ Processing by RailsSitemap::AttachmentController#index as XML
5134
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb
5135
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb (0.4ms)
5136
+ Completed 200 OK in 6ms (Views: 4.2ms | ActiveRecord: 0.0ms)
5137
+  (0.1ms) rollback transaction
5138
+  (0.0ms) begin transaction
5139
+ -----------------------------------------------------------------
5140
+ SitemapControllerTest: test_should_return_the_articles_on_sitemap
5141
+ -----------------------------------------------------------------
5142
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."name" = ? LIMIT ? [["name", "My first article"], ["LIMIT", 1]]
5143
+  (0.0ms) SAVEPOINT active_record_1
5144
+ SQL (0.2ms) INSERT INTO "articles" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "My first article"], ["created_at", 2016-09-28 14:23:57 UTC], ["updated_at", 2016-09-28 14:23:57 UTC]]
5145
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5146
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-28 11:23:57 -0300
5147
+ Processing by RailsSitemap::SitemapController#index as XML
5148
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
5149
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb
5150
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (0.9ms)
5151
+ Completed 200 OK in 9ms (Views: 5.7ms | ActiveRecord: 0.1ms)
5152
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" DESC LIMIT ? [["LIMIT", 1]]
5153
+  (2.1ms) rollback transaction
5154
+  (0.1ms) begin transaction
5155
+ -------------------------------------------------------
5156
+ SitemapControllerTest: test_should_return_the_right_xml
5157
+ -------------------------------------------------------
5158
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-28 11:23:57 -0300
5159
+ Processing by RailsSitemap::SitemapController#index as XML
5160
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
5161
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb
5162
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (0.7ms)
5163
+ Completed 200 OK in 7ms (Views: 4.5ms | ActiveRecord: 0.1ms)
5164
+  (0.1ms) rollback transaction
5165
+  (0.2ms) begin transaction
5166
+ --------------------------------------------------------
5167
+ SitemapControllerTest: test_should_return_a_success_code
5168
+ --------------------------------------------------------
5169
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-28 11:23:57 -0300
5170
+ Processing by RailsSitemap::SitemapController#index as XML
5171
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
5172
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb
5173
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (0.4ms)
5174
+ Completed 200 OK in 6ms (Views: 4.1ms | ActiveRecord: 0.1ms)
5175
+  (0.1ms) rollback transaction
5176
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
5177
+  (0.1ms) begin transaction
5178
+ ----------------------------
5179
+ RailsSitemapTest: test_truth
5180
+ ----------------------------
5181
+  (0.0ms) rollback transaction
5182
+  (0.0ms) begin transaction
5183
+ ----------------------------------------------------------
5184
+ LocationsControllerTest: test_should_return_a_success_code
5185
+ ----------------------------------------------------------
5186
+ Started GET "/locations.kml" for 127.0.0.1 at 2016-09-28 11:24:19 -0300
5187
+ Processing by RailsSitemap::LocationsController#index as KML
5188
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb
5189
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb (1.1ms)
5190
+ Completed 200 OK in 9ms (Views: 7.0ms | ActiveRecord: 0.0ms)
5191
+  (0.1ms) rollback transaction
5192
+  (0.1ms) begin transaction
5193
+ ---------------------------------------------------------
5194
+ LocationsControllerTest: test_should_return_the_right_xml
5195
+ ---------------------------------------------------------
5196
+ Started GET "/locations.kml" for 127.0.0.1 at 2016-09-28 11:24:20 -0300
5197
+ Processing by RailsSitemap::LocationsController#index as KML
5198
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb
5199
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb (0.4ms)
5200
+ Completed 200 OK in 6ms (Views: 4.2ms | ActiveRecord: 0.0ms)
5201
+  (0.0ms) rollback transaction
5202
+  (0.0ms) begin transaction
5203
+ -------------------------------------------------------
5204
+ SitemapControllerTest: test_should_return_the_right_xml
5205
+ -------------------------------------------------------
5206
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-28 11:24:20 -0300
5207
+ Processing by RailsSitemap::SitemapController#index as XML
5208
+ Article Load (0.3ms) SELECT "articles".* FROM "articles"
5209
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb
5210
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (0.5ms)
5211
+ Completed 200 OK in 16ms (Views: 7.1ms | ActiveRecord: 0.5ms)
5212
+  (0.1ms) rollback transaction
5213
+  (0.1ms) begin transaction
5214
+ --------------------------------------------------------
5215
+ SitemapControllerTest: test_should_return_a_success_code
5216
+ --------------------------------------------------------
5217
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-28 11:24:20 -0300
5218
+ Processing by RailsSitemap::SitemapController#index as XML
5219
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
5220
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb
5221
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (0.8ms)
5222
+ Completed 200 OK in 9ms (Views: 6.6ms | ActiveRecord: 0.1ms)
5223
+  (0.1ms) rollback transaction
5224
+  (0.1ms) begin transaction
5225
+ -----------------------------------------------------------------
5226
+ SitemapControllerTest: test_should_return_the_articles_on_sitemap
5227
+ -----------------------------------------------------------------
5228
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."name" = ? LIMIT ? [["name", "My first article"], ["LIMIT", 1]]
5229
+  (0.2ms) SAVEPOINT active_record_1
5230
+ SQL (0.3ms) INSERT INTO "articles" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "My first article"], ["created_at", 2016-09-28 14:24:20 UTC], ["updated_at", 2016-09-28 14:24:20 UTC]]
5231
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5232
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-28 11:24:20 -0300
5233
+ Processing by RailsSitemap::SitemapController#index as XML
5234
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
5235
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb
5236
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (0.5ms)
5237
+ Completed 200 OK in 7ms (Views: 4.3ms | ActiveRecord: 0.1ms)
5238
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" DESC LIMIT ? [["LIMIT", 1]]
5239
+  (2.3ms) rollback transaction
5240
+  (0.1ms) begin transaction
5241
+ ----------------------------------------------------
5242
+ GeoControllerTest: test_should_return_a_success_code
5243
+ ----------------------------------------------------
5244
+ Started GET "/geo-sitemap.xml" for 127.0.0.1 at 2016-09-28 11:24:20 -0300
5245
+ Processing by RailsSitemap::GeoController#index as XML
5246
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb
5247
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb (0.6ms)
5248
+ Completed 200 OK in 13ms (Views: 10.9ms | ActiveRecord: 0.0ms)
5249
+  (0.5ms) rollback transaction
5250
+  (0.1ms) begin transaction
5251
+ ----------------------------------------------------------
5252
+ AttachmentControllerTest: test_should_return_the_right_xml
5253
+ ----------------------------------------------------------
5254
+ Started GET "/attachment-sitemap.xml" for 127.0.0.1 at 2016-09-28 11:25:37 -0300
5255
+ Processing by RailsSitemap::AttachmentController#index as XML
5256
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb
5257
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb (0.4ms)
5258
+ Completed 200 OK in 185ms (Views: 4.4ms | ActiveRecord: 0.0ms)
5259
+  (0.1ms) rollback transaction
5260
+  (0.1ms) begin transaction
5261
+ -----------------------------------------------------------
5262
+ AttachmentControllerTest: test_should_return_a_success_code
5263
+ -----------------------------------------------------------
5264
+ Started GET "/attachment-sitemap.xml" for 127.0.0.1 at 2016-09-28 11:25:38 -0300
5265
+ Processing by RailsSitemap::AttachmentController#index as XML
5266
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb
5267
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb (0.5ms)
5268
+ Completed 200 OK in 9ms (Views: 4.8ms | ActiveRecord: 0.0ms)
5269
+  (0.1ms) rollback transaction
5270
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
5271
+  (0.1ms) begin transaction
5272
+ ----------------------------
5273
+ RailsSitemapTest: test_truth
5274
+ ----------------------------
5275
+  (0.1ms) rollback transaction
5276
+  (0.0ms) begin transaction
5277
+ ---------------------------------------------------------
5278
+ LocationsControllerTest: test_should_return_the_right_xml
5279
+ ---------------------------------------------------------
5280
+ Started GET "/locations.kml" for 127.0.0.1 at 2016-09-28 11:25:42 -0300
5281
+ Processing by RailsSitemap::LocationsController#index as KML
5282
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb
5283
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb (1.0ms)
5284
+ Completed 200 OK in 8ms (Views: 6.7ms | ActiveRecord: 0.0ms)
5285
+  (0.1ms) rollback transaction
5286
+  (0.1ms) begin transaction
5287
+ ----------------------------------------------------------
5288
+ LocationsControllerTest: test_should_return_a_success_code
5289
+ ----------------------------------------------------------
5290
+ Started GET "/locations.kml" for 127.0.0.1 at 2016-09-28 11:25:42 -0300
5291
+ Processing by RailsSitemap::LocationsController#index as KML
5292
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb
5293
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb (0.4ms)
5294
+ Completed 200 OK in 6ms (Views: 4.2ms | ActiveRecord: 0.0ms)
5295
+  (0.0ms) rollback transaction
5296
+  (0.0ms) begin transaction
5297
+ ----------------------------------------------------
5298
+ GeoControllerTest: test_should_return_a_success_code
5299
+ ----------------------------------------------------
5300
+ Started GET "/geo-sitemap.xml" for 127.0.0.1 at 2016-09-28 11:25:42 -0300
5301
+ Processing by RailsSitemap::GeoController#index as XML
5302
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb
5303
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb (0.3ms)
5304
+ Completed 200 OK in 6ms (Views: 4.3ms | ActiveRecord: 0.0ms)
5305
+  (0.1ms) rollback transaction
5306
+  (0.1ms) begin transaction
5307
+ ---------------------------------------------------
5308
+ GeoControllerTest: test_should_return_the_right_xml
5309
+ ---------------------------------------------------
5310
+ Started GET "/locations.kml" for 127.0.0.1 at 2016-09-28 11:25:42 -0300
5311
+ Processing by RailsSitemap::LocationsController#index as KML
5312
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb
5313
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb (0.4ms)
5314
+ Completed 200 OK in 6ms (Views: 4.1ms | ActiveRecord: 0.0ms)
5315
+  (0.1ms) rollback transaction
5316
+  (0.1ms) begin transaction
5317
+ --------------------------------------------------------
5318
+ SitemapControllerTest: test_should_return_a_success_code
5319
+ --------------------------------------------------------
5320
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-28 11:25:42 -0300
5321
+ Processing by RailsSitemap::SitemapController#index as XML
5322
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
5323
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb
5324
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (0.6ms)
5325
+ Completed 200 OK in 11ms (Views: 4.7ms | ActiveRecord: 0.2ms)
5326
+  (0.1ms) rollback transaction
5327
+  (0.1ms) begin transaction
5328
+ -----------------------------------------------------------------
5329
+ SitemapControllerTest: test_should_return_the_articles_on_sitemap
5330
+ -----------------------------------------------------------------
5331
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."name" = ? LIMIT ? [["name", "My first article"], ["LIMIT", 1]]
5332
+  (0.1ms) SAVEPOINT active_record_1
5333
+ SQL (0.2ms) INSERT INTO "articles" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "My first article"], ["created_at", 2016-09-28 14:25:42 UTC], ["updated_at", 2016-09-28 14:25:42 UTC]]
5334
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5335
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-28 11:25:42 -0300
5336
+ Processing by RailsSitemap::SitemapController#index as XML
5337
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
5338
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb
5339
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (0.6ms)
5340
+ Completed 200 OK in 8ms (Views: 5.1ms | ActiveRecord: 0.1ms)
5341
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" DESC LIMIT ? [["LIMIT", 1]]
5342
+  (2.3ms) rollback transaction
5343
+  (0.1ms) begin transaction
5344
+ -------------------------------------------------------
5345
+ SitemapControllerTest: test_should_return_the_right_xml
5346
+ -------------------------------------------------------
5347
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-28 11:25:42 -0300
5348
+ Processing by RailsSitemap::SitemapController#index as XML
5349
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
5350
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb
5351
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (1.1ms)
5352
+ Completed 200 OK in 10ms (Views: 8.0ms | ActiveRecord: 0.1ms)
5353
+  (0.1ms) rollback transaction
5354
+  (0.1ms) begin transaction
5355
+ ----------------------------------------------------------
5356
+ AttachmentControllerTest: test_should_return_the_right_xml
5357
+ ----------------------------------------------------------
5358
+ Started GET "/attachment-sitemap.xml" for 127.0.0.1 at 2016-09-28 11:25:42 -0300
5359
+ Processing by RailsSitemap::AttachmentController#index as XML
5360
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb
5361
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb (0.7ms)
5362
+ Completed 200 OK in 228ms (Views: 4.7ms | ActiveRecord: 0.0ms)
5363
+  (0.1ms) rollback transaction
5364
+  (0.1ms) begin transaction
5365
+ -----------------------------------------------------------
5366
+ AttachmentControllerTest: test_should_return_a_success_code
5367
+ -----------------------------------------------------------
5368
+ Started GET "/attachment-sitemap.xml" for 127.0.0.1 at 2016-09-28 11:25:42 -0300
5369
+ Processing by RailsSitemap::AttachmentController#index as XML
5370
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb
5371
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb (0.4ms)
5372
+ Completed 200 OK in 9ms (Views: 4.6ms | ActiveRecord: 0.0ms)
5373
+  (0.1ms) rollback transaction
5374
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
5375
+  (0.1ms) begin transaction
5376
+ ----------------------------------------------------
5377
+ GeoControllerTest: test_should_return_a_success_code
5378
+ ----------------------------------------------------
5379
+ Started GET "/geo-sitemap.xml" for 127.0.0.1 at 2016-09-28 11:26:09 -0300
5380
+ Processing by RailsSitemap::GeoController#index as XML
5381
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb
5382
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb (0.9ms)
5383
+ Completed 200 OK in 9ms (Views: 6.9ms | ActiveRecord: 0.0ms)
5384
+  (0.1ms) rollback transaction
5385
+  (0.1ms) begin transaction
5386
+ ---------------------------------------------------
5387
+ GeoControllerTest: test_should_return_the_right_xml
5388
+ ---------------------------------------------------
5389
+ Started GET "/geo-sitemap.xml" for 127.0.0.1 at 2016-09-28 11:26:09 -0300
5390
+ Processing by RailsSitemap::GeoController#index as XML
5391
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb
5392
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb (0.5ms)
5393
+ Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.0ms)
5394
+  (0.1ms) rollback transaction
5395
+  (0.1ms) begin transaction
5396
+ --------------------------------------------------------
5397
+ SitemapControllerTest: test_should_return_a_success_code
5398
+ --------------------------------------------------------
5399
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-28 11:26:09 -0300
5400
+ Processing by RailsSitemap::SitemapController#index as XML
5401
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
5402
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb
5403
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (0.5ms)
5404
+ Completed 200 OK in 9ms (Views: 4.4ms | ActiveRecord: 0.2ms)
5405
+  (0.1ms) rollback transaction
5406
+  (0.1ms) begin transaction
5407
+ -----------------------------------------------------------------
5408
+ SitemapControllerTest: test_should_return_the_articles_on_sitemap
5409
+ -----------------------------------------------------------------
5410
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."name" = ? LIMIT ? [["name", "My first article"], ["LIMIT", 1]]
5411
+  (0.0ms) SAVEPOINT active_record_1
5412
+ SQL (0.2ms) INSERT INTO "articles" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "My first article"], ["created_at", 2016-09-28 14:26:09 UTC], ["updated_at", 2016-09-28 14:26:09 UTC]]
5413
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5414
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-28 11:26:09 -0300
5415
+ Processing by RailsSitemap::SitemapController#index as XML
5416
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
5417
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb
5418
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (2.0ms)
5419
+ Completed 200 OK in 9ms (Views: 6.1ms | ActiveRecord: 0.1ms)
5420
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" DESC LIMIT ? [["LIMIT", 1]]
5421
+  (2.4ms) rollback transaction
5422
+  (0.2ms) begin transaction
5423
+ -------------------------------------------------------
5424
+ SitemapControllerTest: test_should_return_the_right_xml
5425
+ -------------------------------------------------------
5426
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-28 11:26:09 -0300
5427
+ Processing by RailsSitemap::SitemapController#index as XML
5428
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
5429
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb
5430
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (0.6ms)
5431
+ Completed 200 OK in 7ms (Views: 4.4ms | ActiveRecord: 0.1ms)
5432
+  (0.1ms) rollback transaction
5433
+  (0.0ms) begin transaction
5434
+ ----------------------------
5435
+ RailsSitemapTest: test_truth
5436
+ ----------------------------
5437
+  (0.0ms) rollback transaction
5438
+  (0.0ms) begin transaction
5439
+ -----------------------------------------------------------
5440
+ AttachmentControllerTest: test_should_return_a_success_code
5441
+ -----------------------------------------------------------
5442
+ Started GET "/attachment-sitemap.xml" for 127.0.0.1 at 2016-09-28 11:26:09 -0300
5443
+ Processing by RailsSitemap::AttachmentController#index as XML
5444
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb
5445
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb (0.5ms)
5446
+ Completed 200 OK in 245ms (Views: 4.5ms | ActiveRecord: 0.0ms)
5447
+  (0.1ms) rollback transaction
5448
+  (0.0ms) begin transaction
5449
+ ----------------------------------------------------------
5450
+ AttachmentControllerTest: test_should_return_the_right_xml
5451
+ ----------------------------------------------------------
5452
+ Started GET "/attachment-sitemap.xml" for 127.0.0.1 at 2016-09-28 11:26:10 -0300
5453
+ Processing by RailsSitemap::AttachmentController#index as XML
5454
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb
5455
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb (0.4ms)
5456
+ Completed 200 OK in 9ms (Views: 4.9ms | ActiveRecord: 0.0ms)
5457
+  (0.0ms) rollback transaction
5458
+  (0.0ms) begin transaction
5459
+ ----------------------------------------------------------
5460
+ LocationsControllerTest: test_should_return_a_success_code
5461
+ ----------------------------------------------------------
5462
+ Started GET "/locations.kml" for 127.0.0.1 at 2016-09-28 11:26:10 -0300
5463
+ Processing by RailsSitemap::LocationsController#index as KML
5464
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb
5465
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb (0.4ms)
5466
+ Completed 200 OK in 6ms (Views: 4.3ms | ActiveRecord: 0.0ms)
5467
+  (0.1ms) rollback transaction
5468
+  (0.2ms) begin transaction
5469
+ ---------------------------------------------------------
5470
+ LocationsControllerTest: test_should_return_the_right_xml
5471
+ ---------------------------------------------------------
5472
+ Started GET "/locations.kml" for 127.0.0.1 at 2016-09-28 11:26:10 -0300
5473
+ Processing by RailsSitemap::LocationsController#index as KML
5474
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb
5475
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb (0.8ms)
5476
+ Completed 200 OK in 12ms (Views: 8.5ms | ActiveRecord: 0.0ms)
5477
+  (0.1ms) rollback transaction
5478
+ ActiveRecord::SchemaMigration Load (2.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
5479
+  (0.1ms) begin transaction
5480
+ ----------------------------
5481
+ RailsSitemapTest: test_truth
5482
+ ----------------------------
5483
+  (0.1ms) rollback transaction
5484
+  (0.1ms) begin transaction
5485
+ ----------------------------------------------------------
5486
+ LocationsControllerTest: test_should_return_a_success_code
5487
+ ----------------------------------------------------------
5488
+ Started GET "/locations.kml" for 127.0.0.1 at 2016-09-28 14:01:03 -0300
5489
+ Processing by RailsSitemap::LocationsController#index as KML
5490
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb
5491
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb (4.1ms)
5492
+ Completed 200 OK in 28ms (Views: 24.4ms | ActiveRecord: 0.0ms)
5493
+  (0.1ms) rollback transaction
5494
+  (0.1ms) begin transaction
5495
+ ---------------------------------------------------------
5496
+ LocationsControllerTest: test_should_return_the_right_xml
5497
+ ---------------------------------------------------------
5498
+ Started GET "/locations.kml" for 127.0.0.1 at 2016-09-28 14:01:03 -0300
5499
+ Processing by RailsSitemap::LocationsController#index as KML
5500
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb
5501
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb (0.4ms)
5502
+ Completed 200 OK in 6ms (Views: 4.1ms | ActiveRecord: 0.0ms)
5503
+  (0.1ms) rollback transaction
5504
+  (0.0ms) begin transaction
5505
+ ----------------------------------------------------
5506
+ GeoControllerTest: test_should_return_a_success_code
5507
+ ----------------------------------------------------
5508
+ Started GET "/geo-sitemap.xml" for 127.0.0.1 at 2016-09-28 14:01:03 -0300
5509
+ Processing by RailsSitemap::GeoController#index as XML
5510
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb
5511
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb (0.3ms)
5512
+ Completed 200 OK in 6ms (Views: 4.3ms | ActiveRecord: 0.0ms)
5513
+  (0.0ms) rollback transaction
5514
+  (0.1ms) begin transaction
5515
+ ---------------------------------------------------
5516
+ GeoControllerTest: test_should_return_the_right_xml
5517
+ ---------------------------------------------------
5518
+ Started GET "/geo-sitemap.xml" for 127.0.0.1 at 2016-09-28 14:01:03 -0300
5519
+ Processing by RailsSitemap::GeoController#index as XML
5520
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb
5521
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb (0.6ms)
5522
+ Completed 200 OK in 6ms (Views: 4.4ms | ActiveRecord: 0.0ms)
5523
+  (0.0ms) rollback transaction
5524
+  (0.0ms) begin transaction
5525
+ ------------------------------------------------------
5526
+ PagesControllerTest: test_should_return_a_success_code
5527
+ ------------------------------------------------------
5528
+ Started GET "/pages-sitemap.xml" for 127.0.0.1 at 2016-09-28 14:01:03 -0300
5529
+  (0.0ms) rollback transaction
5530
+  (0.1ms) begin transaction
5531
+ ---------------------------------------------------------------
5532
+ PagesControllerTest: test_should_return_the_articles_on_sitemap
5533
+ ---------------------------------------------------------------
5534
+ Article Load (2.6ms) SELECT "articles".* FROM "articles" WHERE "articles"."name" = ? LIMIT ? [["name", "My first article"], ["LIMIT", 1]]
5535
+  (0.1ms) SAVEPOINT active_record_1
5536
+ SQL (2.6ms) INSERT INTO "articles" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "My first article"], ["created_at", 2016-09-28 17:01:03 UTC], ["updated_at", 2016-09-28 17:01:03 UTC]]
5537
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5538
+ Started GET "/pages-sitemap.xml" for 127.0.0.1 at 2016-09-28 14:01:03 -0300
5539
+  (2.4ms) rollback transaction
5540
+  (0.1ms) begin transaction
5541
+ -----------------------------------------------------
5542
+ PagesControllerTest: test_should_return_the_right_xml
5543
+ -----------------------------------------------------
5544
+ Started GET "/pages-sitemap.xml" for 127.0.0.1 at 2016-09-28 14:01:03 -0300
5545
+  (0.1ms) rollback transaction
5546
+  (0.1ms) begin transaction
5547
+ ----------------------------------------------------------
5548
+ AttachmentControllerTest: test_should_return_the_right_xml
5549
+ ----------------------------------------------------------
5550
+ Started GET "/attachment-sitemap.xml" for 127.0.0.1 at 2016-09-28 14:01:03 -0300
5551
+ Processing by RailsSitemap::AttachmentController#index as XML
5552
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb
5553
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb (0.6ms)
5554
+ Completed 200 OK in 344ms (Views: 9.9ms | ActiveRecord: 0.0ms)
5555
+  (0.1ms) rollback transaction
5556
+  (0.1ms) begin transaction
5557
+ -----------------------------------------------------------
5558
+ AttachmentControllerTest: test_should_return_a_success_code
5559
+ -----------------------------------------------------------
5560
+ Started GET "/attachment-sitemap.xml" for 127.0.0.1 at 2016-09-28 14:01:03 -0300
5561
+ Processing by RailsSitemap::AttachmentController#index as XML
5562
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb
5563
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb (0.4ms)
5564
+ Completed 200 OK in 7ms (Views: 4.4ms | ActiveRecord: 0.0ms)
5565
+  (0.1ms) rollback transaction
5566
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
5567
+  (0.1ms) begin transaction
5568
+ -----------------------------------------------------------
5569
+ AttachmentControllerTest: test_should_return_a_success_code
5570
+ -----------------------------------------------------------
5571
+ Started GET "/attachment-sitemap.xml" for 127.0.0.1 at 2016-09-28 14:01:30 -0300
5572
+ Processing by RailsSitemap::AttachmentController#index as XML
5573
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb
5574
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb (1.8ms)
5575
+ Completed 200 OK in 195ms (Views: 7.3ms | ActiveRecord: 0.0ms)
5576
+  (0.1ms) rollback transaction
5577
+  (0.1ms) begin transaction
5578
+ ----------------------------------------------------------
5579
+ AttachmentControllerTest: test_should_return_the_right_xml
5580
+ ----------------------------------------------------------
5581
+ Started GET "/attachment-sitemap.xml" for 127.0.0.1 at 2016-09-28 14:01:30 -0300
5582
+ Processing by RailsSitemap::AttachmentController#index as XML
5583
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb
5584
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb (0.5ms)
5585
+ Completed 200 OK in 6ms (Views: 4.4ms | ActiveRecord: 0.0ms)
5586
+  (0.1ms) rollback transaction
5587
+  (0.1ms) begin transaction
5588
+ ----------------------------
5589
+ RailsSitemapTest: test_truth
5590
+ ----------------------------
5591
+  (0.1ms) rollback transaction
5592
+  (0.1ms) begin transaction
5593
+ ---------------------------------------------------------------
5594
+ PagesControllerTest: test_should_return_the_articles_on_sitemap
5595
+ ---------------------------------------------------------------
5596
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."name" = ? LIMIT ? [["name", "My first article"], ["LIMIT", 1]]
5597
+  (0.1ms) SAVEPOINT active_record_1
5598
+ SQL (0.3ms) INSERT INTO "articles" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "My first article"], ["created_at", 2016-09-28 17:01:30 UTC], ["updated_at", 2016-09-28 17:01:30 UTC]]
5599
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5600
+ Started GET "/pages-sitemap.xml" for 127.0.0.1 at 2016-09-28 14:01:30 -0300
5601
+ Processing by RailsSitemap::PagesController#index as XML
5602
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
5603
+ No template found for RailsSitemap::PagesController#index, rendering head :no_content
5604
+ Completed 204 No Content in 62ms (ActiveRecord: 0.1ms)
5605
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" DESC LIMIT ? [["LIMIT", 1]]
5606
+  (1.7ms) rollback transaction
5607
+  (0.1ms) begin transaction
5608
+ -----------------------------------------------------
5609
+ PagesControllerTest: test_should_return_the_right_xml
5610
+ -----------------------------------------------------
5611
+ Started GET "/pages-sitemap.xml" for 127.0.0.1 at 2016-09-28 14:01:31 -0300
5612
+ Processing by RailsSitemap::PagesController#index as XML
5613
+ Article Load (0.2ms) SELECT "articles".* FROM "articles"
5614
+ No template found for RailsSitemap::PagesController#index, rendering head :no_content
5615
+ Completed 204 No Content in 59ms (ActiveRecord: 0.2ms)
5616
+  (0.1ms) rollback transaction
5617
+  (0.0ms) begin transaction
5618
+ ------------------------------------------------------
5619
+ PagesControllerTest: test_should_return_a_success_code
5620
+ ------------------------------------------------------
5621
+ Started GET "/pages-sitemap.xml" for 127.0.0.1 at 2016-09-28 14:01:31 -0300
5622
+ Processing by RailsSitemap::PagesController#index as XML
5623
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
5624
+ No template found for RailsSitemap::PagesController#index, rendering head :no_content
5625
+ Completed 204 No Content in 56ms (ActiveRecord: 0.1ms)
5626
+  (0.1ms) rollback transaction
5627
+  (0.0ms) begin transaction
5628
+ ---------------------------------------------------------
5629
+ LocationsControllerTest: test_should_return_the_right_xml
5630
+ ---------------------------------------------------------
5631
+ Started GET "/locations.kml" for 127.0.0.1 at 2016-09-28 14:01:31 -0300
5632
+ Processing by RailsSitemap::LocationsController#index as KML
5633
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb
5634
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb (0.6ms)
5635
+ Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.0ms)
5636
+  (0.1ms) rollback transaction
5637
+  (0.1ms) begin transaction
5638
+ ----------------------------------------------------------
5639
+ LocationsControllerTest: test_should_return_a_success_code
5640
+ ----------------------------------------------------------
5641
+ Started GET "/locations.kml" for 127.0.0.1 at 2016-09-28 14:01:31 -0300
5642
+ Processing by RailsSitemap::LocationsController#index as KML
5643
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb
5644
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb (0.4ms)
5645
+ Completed 200 OK in 6ms (Views: 4.4ms | ActiveRecord: 0.0ms)
5646
+  (0.1ms) rollback transaction
5647
+  (0.0ms) begin transaction
5648
+ ----------------------------------------------------
5649
+ GeoControllerTest: test_should_return_a_success_code
5650
+ ----------------------------------------------------
5651
+ Started GET "/geo-sitemap.xml" for 127.0.0.1 at 2016-09-28 14:01:31 -0300
5652
+ Processing by RailsSitemap::GeoController#index as XML
5653
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb
5654
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb (0.3ms)
5655
+ Completed 200 OK in 6ms (Views: 4.2ms | ActiveRecord: 0.0ms)
5656
+  (0.1ms) rollback transaction
5657
+  (0.1ms) begin transaction
5658
+ ---------------------------------------------------
5659
+ GeoControllerTest: test_should_return_the_right_xml
5660
+ ---------------------------------------------------
5661
+ Started GET "/geo-sitemap.xml" for 127.0.0.1 at 2016-09-28 14:01:31 -0300
5662
+ Processing by RailsSitemap::GeoController#index as XML
5663
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb
5664
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb (0.4ms)
5665
+ Completed 200 OK in 7ms (Views: 4.7ms | ActiveRecord: 0.0ms)
5666
+  (0.1ms) rollback transaction
5667
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
5668
+  (0.1ms) begin transaction
5669
+ ----------------------------------------------------------
5670
+ LocationsControllerTest: test_should_return_a_success_code
5671
+ ----------------------------------------------------------
5672
+ Started GET "/locations.kml" for 127.0.0.1 at 2016-09-28 14:03:08 -0300
5673
+ Processing by RailsSitemap::LocationsController#index as KML
5674
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb
5675
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb (1.0ms)
5676
+ Completed 200 OK in 8ms (Views: 6.8ms | ActiveRecord: 0.0ms)
5677
+  (0.1ms) rollback transaction
5678
+  (0.1ms) begin transaction
5679
+ ---------------------------------------------------------
5680
+ LocationsControllerTest: test_should_return_the_right_xml
5681
+ ---------------------------------------------------------
5682
+ Started GET "/locations.kml" for 127.0.0.1 at 2016-09-28 14:03:08 -0300
5683
+ Processing by RailsSitemap::LocationsController#index as KML
5684
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb
5685
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb (0.4ms)
5686
+ Completed 200 OK in 6ms (Views: 4.2ms | ActiveRecord: 0.0ms)
5687
+  (0.1ms) rollback transaction
5688
+  (0.0ms) begin transaction
5689
+ ----------------------------------------------------------
5690
+ AttachmentControllerTest: test_should_return_the_right_xml
5691
+ ----------------------------------------------------------
5692
+ Started GET "/attachment-sitemap.xml" for 127.0.0.1 at 2016-09-28 14:03:08 -0300
5693
+ Processing by RailsSitemap::AttachmentController#index as XML
5694
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb
5695
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb (0.5ms)
5696
+ Completed 200 OK in 246ms (Views: 7.7ms | ActiveRecord: 0.0ms)
5697
+  (0.1ms) rollback transaction
5698
+  (0.0ms) begin transaction
5699
+ -----------------------------------------------------------
5700
+ AttachmentControllerTest: test_should_return_a_success_code
5701
+ -----------------------------------------------------------
5702
+ Started GET "/attachment-sitemap.xml" for 127.0.0.1 at 2016-09-28 14:03:08 -0300
5703
+ Processing by RailsSitemap::AttachmentController#index as XML
5704
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb
5705
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb (0.4ms)
5706
+ Completed 200 OK in 6ms (Views: 4.3ms | ActiveRecord: 0.0ms)
5707
+  (0.1ms) rollback transaction
5708
+  (0.0ms) begin transaction
5709
+ ------------------------------------------------------
5710
+ PagesControllerTest: test_should_return_a_success_code
5711
+ ------------------------------------------------------
5712
+ Started GET "/pages-sitemap.xml" for 127.0.0.1 at 2016-09-28 14:03:08 -0300
5713
+ Processing by RailsSitemap::PagesController#index as XML
5714
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
5715
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb
5716
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb (0.9ms)
5717
+ Completed 200 OK in 21962ms (Views: 10.2ms | ActiveRecord: 0.2ms)
5718
+  (0.1ms) rollback transaction
5719
+  (0.1ms) begin transaction
5720
+ -----------------------------------------------------
5721
+ PagesControllerTest: test_should_return_the_right_xml
5722
+ -----------------------------------------------------
5723
+ Started GET "/pages-sitemap.xml" for 127.0.0.1 at 2016-09-28 14:03:30 -0300
5724
+ Processing by RailsSitemap::PagesController#index as XML
5725
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
5726
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb
5727
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb (0.6ms)
5728
+ Completed 200 OK in 633ms (Views: 9.5ms | ActiveRecord: 0.1ms)
5729
+  (0.1ms) rollback transaction
5730
+  (0.1ms) begin transaction
5731
+ ---------------------------------------------------------------
5732
+ PagesControllerTest: test_should_return_the_articles_on_sitemap
5733
+ ---------------------------------------------------------------
5734
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."name" = ? LIMIT ? [["name", "My first article"], ["LIMIT", 1]]
5735
+  (0.0ms) SAVEPOINT active_record_1
5736
+ SQL (0.2ms) INSERT INTO "articles" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "My first article"], ["created_at", 2016-09-28 17:03:31 UTC], ["updated_at", 2016-09-28 17:03:31 UTC]]
5737
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5738
+ Started GET "/pages-sitemap.xml" for 127.0.0.1 at 2016-09-28 14:03:31 -0300
5739
+ Processing by RailsSitemap::PagesController#index as XML
5740
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
5741
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb
5742
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb (0.7ms)
5743
+ Completed 200 OK in 483ms (Views: 8.5ms | ActiveRecord: 0.1ms)
5744
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" DESC LIMIT ? [["LIMIT", 1]]
5745
+  (2.3ms) rollback transaction
5746
+  (0.1ms) begin transaction
5747
+ ----------------------------
5748
+ RailsSitemapTest: test_truth
5749
+ ----------------------------
5750
+  (0.1ms) rollback transaction
5751
+  (0.1ms) begin transaction
5752
+ ----------------------------------------------------
5753
+ GeoControllerTest: test_should_return_a_success_code
5754
+ ----------------------------------------------------
5755
+ Started GET "/geo-sitemap.xml" for 127.0.0.1 at 2016-09-28 14:03:31 -0300
5756
+ Processing by RailsSitemap::GeoController#index as XML
5757
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb
5758
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb (0.3ms)
5759
+ Completed 200 OK in 6ms (Views: 4.2ms | ActiveRecord: 0.0ms)
5760
+  (0.1ms) rollback transaction
5761
+  (0.0ms) begin transaction
5762
+ ---------------------------------------------------
5763
+ GeoControllerTest: test_should_return_the_right_xml
5764
+ ---------------------------------------------------
5765
+ Started GET "/geo-sitemap.xml" for 127.0.0.1 at 2016-09-28 14:03:31 -0300
5766
+ Processing by RailsSitemap::GeoController#index as XML
5767
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb
5768
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb (0.3ms)
5769
+ Completed 200 OK in 7ms (Views: 5.4ms | ActiveRecord: 0.0ms)
5770
+  (0.1ms) rollback transaction
5771
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
5772
+  (0.1ms) begin transaction
5773
+ ------------------------------------------------------
5774
+ PagesControllerTest: test_should_return_a_success_code
5775
+ ------------------------------------------------------
5776
+ Started GET "/pages-sitemap.xml" for 127.0.0.1 at 2016-09-28 14:04:02 -0300
5777
+ Processing by RailsSitemap::PagesController#index as XML
5778
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
5779
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb
5780
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb (1.6ms)
5781
+ Completed 200 OK in 14ms (Views: 8.7ms | ActiveRecord: 0.3ms)
5782
+  (0.1ms) rollback transaction
5783
+  (0.0ms) begin transaction
5784
+ -----------------------------------------------------
5785
+ PagesControllerTest: test_should_return_the_right_xml
5786
+ -----------------------------------------------------
5787
+ Started GET "/pages-sitemap.xml" for 127.0.0.1 at 2016-09-28 14:04:02 -0300
5788
+ Processing by RailsSitemap::PagesController#index as XML
5789
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
5790
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb
5791
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb (0.5ms)
5792
+ Completed 200 OK in 7ms (Views: 4.3ms | ActiveRecord: 0.1ms)
5793
+  (0.1ms) rollback transaction
5794
+  (0.1ms) begin transaction
5795
+ ---------------------------------------------------------------
5796
+ PagesControllerTest: test_should_return_the_articles_on_sitemap
5797
+ ---------------------------------------------------------------
5798
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."name" = ? LIMIT ? [["name", "My first article"], ["LIMIT", 1]]
5799
+  (0.0ms) SAVEPOINT active_record_1
5800
+ SQL (0.2ms) INSERT INTO "articles" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "My first article"], ["created_at", 2016-09-28 17:04:02 UTC], ["updated_at", 2016-09-28 17:04:02 UTC]]
5801
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5802
+ Started GET "/pages-sitemap.xml" for 127.0.0.1 at 2016-09-28 14:04:02 -0300
5803
+ Processing by RailsSitemap::PagesController#index as XML
5804
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
5805
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb
5806
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/pages/index.xml.erb (0.5ms)
5807
+ Completed 200 OK in 7ms (Views: 4.3ms | ActiveRecord: 0.1ms)
5808
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" ORDER BY "articles"."id" DESC LIMIT ? [["LIMIT", 1]]
5809
+  (2.1ms) rollback transaction
5810
+  (0.1ms) begin transaction
5811
+ -----------------------------------------------------------
5812
+ AttachmentControllerTest: test_should_return_a_success_code
5813
+ -----------------------------------------------------------
5814
+ Started GET "/attachment-sitemap.xml" for 127.0.0.1 at 2016-09-28 14:04:02 -0300
5815
+ Processing by RailsSitemap::AttachmentController#index as XML
5816
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb
5817
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb (0.4ms)
5818
+ Completed 200 OK in 219ms (Views: 4.4ms | ActiveRecord: 0.0ms)
5819
+  (0.1ms) rollback transaction
5820
+  (0.0ms) begin transaction
5821
+ ----------------------------------------------------------
5822
+ AttachmentControllerTest: test_should_return_the_right_xml
5823
+ ----------------------------------------------------------
5824
+ Started GET "/attachment-sitemap.xml" for 127.0.0.1 at 2016-09-28 14:04:02 -0300
5825
+ Processing by RailsSitemap::AttachmentController#index as XML
5826
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb
5827
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/attachment/index.xml.erb (0.4ms)
5828
+ Completed 200 OK in 9ms (Views: 4.6ms | ActiveRecord: 0.0ms)
5829
+  (0.0ms) rollback transaction
5830
+  (0.0ms) begin transaction
5831
+ ----------------------------------------------------
5832
+ GeoControllerTest: test_should_return_a_success_code
5833
+ ----------------------------------------------------
5834
+ Started GET "/geo-sitemap.xml" for 127.0.0.1 at 2016-09-28 14:04:02 -0300
5835
+ Processing by RailsSitemap::GeoController#index as XML
5836
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb
5837
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb (0.3ms)
5838
+ Completed 200 OK in 6ms (Views: 4.4ms | ActiveRecord: 0.0ms)
5839
+  (0.1ms) rollback transaction
5840
+  (0.0ms) begin transaction
5841
+ ---------------------------------------------------
5842
+ GeoControllerTest: test_should_return_the_right_xml
5843
+ ---------------------------------------------------
5844
+ Started GET "/geo-sitemap.xml" for 127.0.0.1 at 2016-09-28 14:04:02 -0300
5845
+ Processing by RailsSitemap::GeoController#index as XML
5846
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb
5847
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/geo/index.xml.erb (0.3ms)
5848
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.0ms)
5849
+  (0.0ms) rollback transaction
5850
+  (0.0ms) begin transaction
5851
+ ----------------------------
5852
+ RailsSitemapTest: test_truth
5853
+ ----------------------------
5854
+  (0.0ms) rollback transaction
5855
+  (0.0ms) begin transaction
5856
+ ----------------------------------------------------------
5857
+ LocationsControllerTest: test_should_return_a_success_code
5858
+ ----------------------------------------------------------
5859
+ Started GET "/locations.kml" for 127.0.0.1 at 2016-09-28 14:04:02 -0300
5860
+ Processing by RailsSitemap::LocationsController#index as KML
5861
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb
5862
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb (0.5ms)
5863
+ Completed 200 OK in 7ms (Views: 4.5ms | ActiveRecord: 0.0ms)
5864
+  (0.1ms) rollback transaction
5865
+  (0.1ms) begin transaction
5866
+ ---------------------------------------------------------
5867
+ LocationsControllerTest: test_should_return_the_right_xml
5868
+ ---------------------------------------------------------
5869
+ Started GET "/locations.kml" for 127.0.0.1 at 2016-09-28 14:04:02 -0300
5870
+ Processing by RailsSitemap::LocationsController#index as KML
5871
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb
5872
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/locations/index.kml.erb (0.4ms)
5873
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.0ms)
5874
+  (0.0ms) rollback transaction