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 +4 -4
- data/app/controllers/rails_sitemap/geo_controller.rb +11 -0
- data/app/controllers/rails_sitemap/locations_controller.rb +17 -0
- data/app/views/rails_sitemap/geo/index.xml.erb +8 -0
- data/app/views/rails_sitemap/locations/index.kml.erb +12 -0
- data/config/routes.rb +5 -2
- data/lib/rails_sitemap/engine.rb +5 -1
- data/lib/rails_sitemap/version.rb +1 -1
- data/test/dummy/config/initializers/rails_sitemap.rb +7 -0
- data/test/dummy/log/test.log +1234 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ke/Ke2uoLIe6Z50WcigA-Me22kjqpwuji1epiPa0a3HwKY.cache +1 -0
- data/test/integration/geo_controller_test.rb +13 -0
- data/test/integration/locations_controller_test.rb +13 -0
- metadata +12 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 045b00f6cb2ad59ca4b2da7799b0e8f4f845041a
|
4
|
+
data.tar.gz: 632fac6831038cf328dfec86c0d6a5ee7a8f1822
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 166d2fd51efc51313f5c770aa64a9c6f088cb9d4be5a35a5363e48bf5f15f437f3b91621cb45394d879518581b5e8cee71f13632e12e9f218eea1e9c52b8857e
|
7
|
+
data.tar.gz: bafcec807220aaf880722737c14689dcdc31860d8e7c595dd80d60051fe41c0588a9d202de65eb3dc2ec101079c0fc1ef34be1d9adb6e49c367b40813c6077c6
|
@@ -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
|
3
|
-
get
|
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
|
data/lib/rails_sitemap/engine.rb
CHANGED
@@ -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)
|
@@ -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
|
data/test/dummy/log/test.log
CHANGED
@@ -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
|
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
4641
|
+
[1m[36mActiveRecord::SchemaMigration Load (2.3ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
4642
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
4652
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
4662
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
4663
|
+
----------------------------
|
4664
|
+
RailsSitemapTest: test_truth
|
4665
|
+
----------------------------
|
4666
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
4667
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
4675
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
4676
|
+
-----------------------------------------------------------------
|
4677
|
+
SitemapControllerTest: test_should_return_the_articles_on_sitemap
|
4678
|
+
-----------------------------------------------------------------
|
4679
|
+
[1m[36mArticle Load (2.2ms)[0m [1m[34mSELECT "articles".* FROM "articles" WHERE "articles"."name" = ? LIMIT ?[0m [["name", "My first article"], ["LIMIT", 1]]
|
4680
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
4681
|
+
[1m[35mSQL (2.6ms)[0m [1m[32mINSERT INTO "articles" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "My first article"], ["created_at", 2016-09-28 13:52:28 UTC], ["updated_at", 2016-09-28 13:52:28 UTC]]
|
4682
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
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
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles" ORDER BY "articles"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
4690
|
+
[1m[35m (2.2ms)[0m [1m[31mrollback transaction[0m
|
4691
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
4702
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
4713
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
4714
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
4723
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
4734
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
4735
|
+
-----------------------------------------------------------------
|
4736
|
+
SitemapControllerTest: test_should_return_the_articles_on_sitemap
|
4737
|
+
-----------------------------------------------------------------
|
4738
|
+
[1m[36mArticle Load (0.3ms)[0m [1m[34mSELECT "articles".* FROM "articles" WHERE "articles"."name" = ? LIMIT ?[0m [["name", "My first article"], ["LIMIT", 1]]
|
4739
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
4740
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "articles" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "My first article"], ["created_at", 2016-09-28 13:58:18 UTC], ["updated_at", 2016-09-28 13:58:18 UTC]]
|
4741
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
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
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles" ORDER BY "articles"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
4749
|
+
[1m[35m (2.1ms)[0m [1m[31mrollback transaction[0m
|
4750
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
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
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
4761
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
4771
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
4781
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
4782
|
+
----------------------------
|
4783
|
+
RailsSitemapTest: test_truth
|
4784
|
+
----------------------------
|
4785
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
4786
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
4787
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
4798
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
4809
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
4810
|
+
-----------------------------------------------------------------
|
4811
|
+
SitemapControllerTest: test_should_return_the_articles_on_sitemap
|
4812
|
+
-----------------------------------------------------------------
|
4813
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles" WHERE "articles"."name" = ? LIMIT ?[0m [["name", "My first article"], ["LIMIT", 1]]
|
4814
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
4815
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "articles" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "My first article"], ["created_at", 2016-09-28 13:59:23 UTC], ["updated_at", 2016-09-28 13:59:23 UTC]]
|
4816
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
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
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles" ORDER BY "articles"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
4824
|
+
[1m[35m (2.1ms)[0m [1m[31mrollback transaction[0m
|
4825
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
4835
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
4845
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
4855
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
4856
|
+
----------------------------
|
4857
|
+
RailsSitemapTest: test_truth
|
4858
|
+
----------------------------
|
4859
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
4860
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
4861
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
4862
|
+
----------------------------
|
4863
|
+
RailsSitemapTest: test_truth
|
4864
|
+
----------------------------
|
4865
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
4866
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
4876
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
4887
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
4888
|
+
-----------------------------------------------------------------
|
4889
|
+
SitemapControllerTest: test_should_return_the_articles_on_sitemap
|
4890
|
+
-----------------------------------------------------------------
|
4891
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles" WHERE "articles"."name" = ? LIMIT ?[0m [["name", "My first article"], ["LIMIT", 1]]
|
4892
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
4893
|
+
[1m[35mSQL (0.5ms)[0m [1m[32mINSERT INTO "articles" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "My first article"], ["created_at", 2016-09-28 14:18:09 UTC], ["updated_at", 2016-09-28 14:18:09 UTC]]
|
4894
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
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
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles" ORDER BY "articles"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
4902
|
+
[1m[35m (2.1ms)[0m [1m[31mrollback transaction[0m
|
4903
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mArticle Load (0.2ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
4914
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
4924
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
4934
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
4935
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
4946
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
4947
|
+
-----------------------------------------------------------------
|
4948
|
+
SitemapControllerTest: test_should_return_the_articles_on_sitemap
|
4949
|
+
-----------------------------------------------------------------
|
4950
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles" WHERE "articles"."name" = ? LIMIT ?[0m [["name", "My first article"], ["LIMIT", 1]]
|
4951
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
4952
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "articles" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "My first article"], ["created_at", 2016-09-28 14:18:16 UTC], ["updated_at", 2016-09-28 14:18:16 UTC]]
|
4953
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
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
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles" ORDER BY "articles"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
4961
|
+
[1m[35m (2.3ms)[0m [1m[31mrollback transaction[0m
|
4962
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
4973
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
4974
|
+
----------------------------
|
4975
|
+
RailsSitemapTest: test_truth
|
4976
|
+
----------------------------
|
4977
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
4978
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
4988
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
4998
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
5008
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
5009
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
5019
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
5029
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
5040
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
5041
|
+
-----------------------------------------------------------------
|
5042
|
+
SitemapControllerTest: test_should_return_the_articles_on_sitemap
|
5043
|
+
-----------------------------------------------------------------
|
5044
|
+
[1m[36mArticle Load (0.2ms)[0m [1m[34mSELECT "articles".* FROM "articles" WHERE "articles"."name" = ? LIMIT ?[0m [["name", "My first article"], ["LIMIT", 1]]
|
5045
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
5046
|
+
[1m[35mSQL (0.4ms)[0m [1m[32mINSERT INTO "articles" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "My first article"], ["created_at", 2016-09-28 14:22:42 UTC], ["updated_at", 2016-09-28 14:22:42 UTC]]
|
5047
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
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
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles" ORDER BY "articles"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
5055
|
+
[1m[35m (2.2ms)[0m [1m[31mrollback transaction[0m
|
5056
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
5067
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
5077
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
5087
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
5088
|
+
----------------------------
|
5089
|
+
RailsSitemapTest: test_truth
|
5090
|
+
----------------------------
|
5091
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
5092
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
5093
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
5094
|
+
----------------------------
|
5095
|
+
RailsSitemapTest: test_truth
|
5096
|
+
----------------------------
|
5097
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
5098
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
5108
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
5118
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
5128
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
5138
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
5139
|
+
-----------------------------------------------------------------
|
5140
|
+
SitemapControllerTest: test_should_return_the_articles_on_sitemap
|
5141
|
+
-----------------------------------------------------------------
|
5142
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles" WHERE "articles"."name" = ? LIMIT ?[0m [["name", "My first article"], ["LIMIT", 1]]
|
5143
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
5144
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "articles" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "My first article"], ["created_at", 2016-09-28 14:23:57 UTC], ["updated_at", 2016-09-28 14:23:57 UTC]]
|
5145
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
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
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles" ORDER BY "articles"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
5153
|
+
[1m[35m (2.1ms)[0m [1m[31mrollback transaction[0m
|
5154
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
5165
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
5176
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
5177
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
5178
|
+
----------------------------
|
5179
|
+
RailsSitemapTest: test_truth
|
5180
|
+
----------------------------
|
5181
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
5182
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
5192
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
5202
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mArticle Load (0.3ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
5213
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
5224
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
5225
|
+
-----------------------------------------------------------------
|
5226
|
+
SitemapControllerTest: test_should_return_the_articles_on_sitemap
|
5227
|
+
-----------------------------------------------------------------
|
5228
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles" WHERE "articles"."name" = ? LIMIT ?[0m [["name", "My first article"], ["LIMIT", 1]]
|
5229
|
+
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
5230
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "articles" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "My first article"], ["created_at", 2016-09-28 14:24:20 UTC], ["updated_at", 2016-09-28 14:24:20 UTC]]
|
5231
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
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
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles" ORDER BY "articles"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
5239
|
+
[1m[35m (2.3ms)[0m [1m[31mrollback transaction[0m
|
5240
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
5250
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
5260
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
5270
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
5271
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
5272
|
+
----------------------------
|
5273
|
+
RailsSitemapTest: test_truth
|
5274
|
+
----------------------------
|
5275
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
5276
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
5286
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
5296
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
5306
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
5316
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
5327
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
5328
|
+
-----------------------------------------------------------------
|
5329
|
+
SitemapControllerTest: test_should_return_the_articles_on_sitemap
|
5330
|
+
-----------------------------------------------------------------
|
5331
|
+
[1m[36mArticle Load (0.2ms)[0m [1m[34mSELECT "articles".* FROM "articles" WHERE "articles"."name" = ? LIMIT ?[0m [["name", "My first article"], ["LIMIT", 1]]
|
5332
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
5333
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "articles" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "My first article"], ["created_at", 2016-09-28 14:25:42 UTC], ["updated_at", 2016-09-28 14:25:42 UTC]]
|
5334
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
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
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles" ORDER BY "articles"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
5342
|
+
[1m[35m (2.3ms)[0m [1m[31mrollback transaction[0m
|
5343
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
5354
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
5364
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
5374
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
5375
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
5385
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
5395
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
5406
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
5407
|
+
-----------------------------------------------------------------
|
5408
|
+
SitemapControllerTest: test_should_return_the_articles_on_sitemap
|
5409
|
+
-----------------------------------------------------------------
|
5410
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles" WHERE "articles"."name" = ? LIMIT ?[0m [["name", "My first article"], ["LIMIT", 1]]
|
5411
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
5412
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "articles" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "My first article"], ["created_at", 2016-09-28 14:26:09 UTC], ["updated_at", 2016-09-28 14:26:09 UTC]]
|
5413
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
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
|
+
[1m[36mArticle Load (0.2ms)[0m [1m[34mSELECT "articles".* FROM "articles" ORDER BY "articles"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
5421
|
+
[1m[35m (2.4ms)[0m [1m[31mrollback transaction[0m
|
5422
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
5433
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
5434
|
+
----------------------------
|
5435
|
+
RailsSitemapTest: test_truth
|
5436
|
+
----------------------------
|
5437
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
5438
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
5448
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
5458
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
5468
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
5478
|
+
[1m[36mActiveRecord::SchemaMigration Load (2.4ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
5479
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
5480
|
+
----------------------------
|
5481
|
+
RailsSitemapTest: test_truth
|
5482
|
+
----------------------------
|
5483
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
5484
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
5494
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
5504
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
5514
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
5524
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
5530
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
5531
|
+
---------------------------------------------------------------
|
5532
|
+
PagesControllerTest: test_should_return_the_articles_on_sitemap
|
5533
|
+
---------------------------------------------------------------
|
5534
|
+
[1m[36mArticle Load (2.6ms)[0m [1m[34mSELECT "articles".* FROM "articles" WHERE "articles"."name" = ? LIMIT ?[0m [["name", "My first article"], ["LIMIT", 1]]
|
5535
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
5536
|
+
[1m[35mSQL (2.6ms)[0m [1m[32mINSERT INTO "articles" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "My first article"], ["created_at", 2016-09-28 17:01:03 UTC], ["updated_at", 2016-09-28 17:01:03 UTC]]
|
5537
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
5538
|
+
Started GET "/pages-sitemap.xml" for 127.0.0.1 at 2016-09-28 14:01:03 -0300
|
5539
|
+
[1m[35m (2.4ms)[0m [1m[31mrollback transaction[0m
|
5540
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
5546
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
5556
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
5566
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
5567
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
5577
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
5587
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
5588
|
+
----------------------------
|
5589
|
+
RailsSitemapTest: test_truth
|
5590
|
+
----------------------------
|
5591
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
5592
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
5593
|
+
---------------------------------------------------------------
|
5594
|
+
PagesControllerTest: test_should_return_the_articles_on_sitemap
|
5595
|
+
---------------------------------------------------------------
|
5596
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles" WHERE "articles"."name" = ? LIMIT ?[0m [["name", "My first article"], ["LIMIT", 1]]
|
5597
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
5598
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "articles" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "My first article"], ["created_at", 2016-09-28 17:01:30 UTC], ["updated_at", 2016-09-28 17:01:30 UTC]]
|
5599
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
5603
|
+
No template found for RailsSitemap::PagesController#index, rendering head :no_content
|
5604
|
+
Completed 204 No Content in 62ms (ActiveRecord: 0.1ms)
|
5605
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles" ORDER BY "articles"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
5606
|
+
[1m[35m (1.7ms)[0m [1m[31mrollback transaction[0m
|
5607
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mArticle Load (0.2ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
5614
|
+
No template found for RailsSitemap::PagesController#index, rendering head :no_content
|
5615
|
+
Completed 204 No Content in 59ms (ActiveRecord: 0.2ms)
|
5616
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
5617
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
5624
|
+
No template found for RailsSitemap::PagesController#index, rendering head :no_content
|
5625
|
+
Completed 204 No Content in 56ms (ActiveRecord: 0.1ms)
|
5626
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
5627
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
5637
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
5647
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
5657
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
5667
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
5668
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
5678
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
5688
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
5698
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
5708
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
5719
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
5730
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
5731
|
+
---------------------------------------------------------------
|
5732
|
+
PagesControllerTest: test_should_return_the_articles_on_sitemap
|
5733
|
+
---------------------------------------------------------------
|
5734
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles" WHERE "articles"."name" = ? LIMIT ?[0m [["name", "My first article"], ["LIMIT", 1]]
|
5735
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
5736
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "articles" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "My first article"], ["created_at", 2016-09-28 17:03:31 UTC], ["updated_at", 2016-09-28 17:03:31 UTC]]
|
5737
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
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
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles" ORDER BY "articles"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
5745
|
+
[1m[35m (2.3ms)[0m [1m[31mrollback transaction[0m
|
5746
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
5747
|
+
----------------------------
|
5748
|
+
RailsSitemapTest: test_truth
|
5749
|
+
----------------------------
|
5750
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
5751
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
5761
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
5771
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
5772
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
5783
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
5794
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
5795
|
+
---------------------------------------------------------------
|
5796
|
+
PagesControllerTest: test_should_return_the_articles_on_sitemap
|
5797
|
+
---------------------------------------------------------------
|
5798
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles" WHERE "articles"."name" = ? LIMIT ?[0m [["name", "My first article"], ["LIMIT", 1]]
|
5799
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
5800
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "articles" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "My first article"], ["created_at", 2016-09-28 17:04:02 UTC], ["updated_at", 2016-09-28 17:04:02 UTC]]
|
5801
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles"[0m
|
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
|
+
[1m[36mArticle Load (0.1ms)[0m [1m[34mSELECT "articles".* FROM "articles" ORDER BY "articles"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
5809
|
+
[1m[35m (2.1ms)[0m [1m[31mrollback transaction[0m
|
5810
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
5820
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
5830
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
5840
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
5850
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
5851
|
+
----------------------------
|
5852
|
+
RailsSitemapTest: test_truth
|
5853
|
+
----------------------------
|
5854
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
5855
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
5865
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|