rails_sitemap 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9ebccee49882668c55488c5cd0c51966e6b968c1
4
- data.tar.gz: 7c2055fd0d4f5ae0e46f58f42ec40363905e9804
3
+ metadata.gz: de8570291488a9c71c47e368821d87cd1854f188
4
+ data.tar.gz: f680580621d783e287ecfe2067ff0f2fa15e26ff
5
5
  SHA512:
6
- metadata.gz: 5fe401256d3676970734155a3efd0a661d08c3bf54533b3edefd1bcb540da43797f318837323e6f99ff82f9273c93a0a70a201640f9ca8d7309f1da3b3cee9bb
7
- data.tar.gz: aaa73549f582e60d041d22ff29c72371fe4bf8672b27f73679b074580c6147f06984387ae8cb6eb8557b7cf5469af1a333e5b4412be2a81224b21e78af9dcd2b
6
+ metadata.gz: e7ca5fbb02ccd749e2a30ae661829f40c06329211230b98899013348c420259833d4bb217dfe8c9543fb0b8104bdbf69c5c6e99b5ea227cbc34e2d44e58f50cc
7
+ data.tar.gz: 468952e555c373312d00ceaa610ad9cacc276058ab2d84e032bbfd19c8981cc333e63d43a4dc789d2a25654b25f96e10723e99796580b15a32b5ed1f08254b5a
@@ -1,9 +1,12 @@
1
1
  module RailsSitemap
2
2
  class SitemapController < ApplicationController
3
- BANNED_CONTROLLERS = ['rails/info', nil, 'errors', 'rails/mailers']
4
- BANNED_ACTIONS = %w(show destroy update edit new create)
3
+ EXCLUDED_CONTROLLERS = ['rails/info', nil, 'errors', 'rails/mailers']
4
+ EXCLUDED_ACTIONS = %w(show destroy update edit new create)
5
+ EXCLUDED_PATHS = %w(/)
6
+
5
7
  before_action :set_routes, only: :index
6
8
  before_action :set_current_domain, only: :index
9
+ before_action :set_custom_paths, only: :index
7
10
 
8
11
  def index
9
12
  respond_to do |format|
@@ -22,11 +25,15 @@ module RailsSitemap
22
25
  end
23
26
 
24
27
  @routes.reject! do |route|
25
- BANNED_CONTROLLERS.include?(route[:controller])
28
+ EXCLUDED_CONTROLLERS.include?(route[:controller])
26
29
  end
27
30
 
28
31
  @routes.reject! do |route|
29
- BANNED_ACTIONS.include?(route[:action])
32
+ EXCLUDED_ACTIONS.include?(route[:action])
33
+ end
34
+
35
+ @routes.reject! do |route|
36
+ EXCLUDED_PATHS.include?(route[:path])
30
37
  end
31
38
 
32
39
  @routes = @routes.map do|route|
@@ -40,5 +47,18 @@ module RailsSitemap
40
47
 
41
48
  @current_domain = pre_html + uri.hostname
42
49
  end
50
+
51
+ def set_custom_paths
52
+ RailsSitemap.models_for_sitemap.each do |model_sitemap|
53
+ model_class = model_sitemap.constantize
54
+
55
+ model_class.all.each do |object|
56
+ id = object.try(:slug) || object.id
57
+ @routes << "/#{model_sitemap.pluralize.downcase}/#{id}"
58
+ end
59
+ end
60
+
61
+ @routes.uniq
62
+ end
43
63
  end
44
64
  end
@@ -1,5 +1,20 @@
1
1
  module RailsSitemap
2
2
  class Engine < ::Rails::Engine
3
3
  isolate_namespace RailsSitemap
4
+
5
+ initializer 'rails_sitemap', before: :load_config_initializers do |app|
6
+ Rails.application.routes.append do
7
+ mount RailsSitemap::Engine => '/'
8
+ end
9
+ end
10
+ end
11
+
12
+ class << self
13
+ mattr_accessor :models_for_sitemap
14
+ self.models_for_sitemap = []
15
+ end
16
+
17
+ def self.setup(&block)
18
+ yield self
4
19
  end
5
20
  end
@@ -1,3 +1,3 @@
1
1
  module RailsSitemap
2
- VERSION = '0.0.2'
2
+ VERSION = '0.0.3'
3
3
  end
@@ -0,0 +1,2 @@
1
+ task :rails_sitemap_installer do
2
+ end
@@ -0,0 +1,3 @@
1
+ class ApplicationRecord < ActiveRecord::Base
2
+ self.abstract_class = true
3
+ end
@@ -0,0 +1,2 @@
1
+ class Article < ApplicationRecord
2
+ end
@@ -0,0 +1,3 @@
1
+ RailsSitemap.setup do |config|
2
+ config.models_for_sitemap = %w(Article)
3
+ end
@@ -1,4 +1,3 @@
1
1
  Rails.application.routes.draw do
2
- mount RailsSitemap::Engine => "/"
3
2
  resources :articles
4
3
  end
Binary file
@@ -0,0 +1,10 @@
1
+ class CreateArticles < ActiveRecord::Migration[5.0]
2
+ def change
3
+ create_table :articles do |t|
4
+ t.string :name
5
+ t.string :slug
6
+
7
+ t.timestamps
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,5 @@
1
+ class RemoveSlugFromArticle < ActiveRecord::Migration[5.0]
2
+ def change
3
+ remove_column :articles, :slug, :string
4
+ end
5
+ end
@@ -1,4 +1,3 @@
1
- # encoding: UTF-8
2
1
  # This file is auto-generated from the current state of the database. Instead
3
2
  # of editing this file, please use the migrations feature of Active Record to
4
3
  # incrementally modify your database, and then regenerate this schema definition.
@@ -11,6 +10,12 @@
11
10
  #
12
11
  # It's strongly recommended that you check this file into your version control system.
13
12
 
14
- ActiveRecord::Schema.define(version: 0) do
13
+ ActiveRecord::Schema.define(version: 20160926153532) do
14
+
15
+ create_table "articles", force: :cascade do |t|
16
+ t.string "name"
17
+ t.datetime "created_at", null: false
18
+ t.datetime "updated_at", null: false
19
+ end
15
20
 
16
21
  end
Binary file
@@ -3,3 +3,84 @@
3
3
   (3.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4
4
  ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
5
5
  ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
6
+ DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from load at /Users/pgonzaga/.rvm/gems/ruby-2.3.0/bin/rake:23)
7
+  (4.2ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
8
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]]
9
+  (0.1ms) begin transaction
10
+ SQL (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", 2016-09-23 21:47:41 UTC], ["updated_at", 2016-09-23 21:47:41 UTC]]
11
+  (2.8ms) commit transaction
12
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
13
+ DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from load at /Users/pgonzaga/.rvm/gems/ruby-2.3.0/bin/rake:23)
14
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]]
15
+  (0.1ms) begin transaction
16
+  (0.1ms) commit transaction
17
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
18
+ DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from load at /Users/pgonzaga/.rvm/gems/ruby-2.3.0/bin/rake:23)
19
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]]
20
+  (0.1ms) begin transaction
21
+  (0.0ms) commit transaction
22
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
23
+ DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from load at /Users/pgonzaga/.rvm/gems/ruby-2.3.0/bin/rake:23)
24
+ ActiveRecord::InternalMetadata Load (2.7ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]]
25
+  (0.2ms) begin transaction
26
+  (0.1ms) commit transaction
27
+ ActiveRecord::SchemaMigration Load (2.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
28
+ DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from <top (required)> at /Users/pgonzaga/repositories/rails_sitemap/test/dummy/config/environment.rb:5)
29
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
30
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
31
+  (3.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
32
+  (0.2ms) SELECT version FROM "schema_migrations"
33
+  (3.2ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
34
+  (2.7ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
35
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]]
36
+  (0.2ms) begin transaction
37
+ SQL (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", 2016-09-26 15:10:29 UTC], ["updated_at", 2016-09-26 15:10:29 UTC]]
38
+  (2.4ms) commit transaction
39
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]]
40
+  (0.1ms) begin transaction
41
+  (0.1ms) commit transaction
42
+  (2.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
43
+  (0.1ms) SELECT version FROM "schema_migrations"
44
+  (3.5ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
45
+  (3.3ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
46
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]]
47
+  (0.1ms) begin transaction
48
+ SQL (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", 2016-09-26 15:10:29 UTC], ["updated_at", 2016-09-26 15:10:29 UTC]]
49
+  (2.4ms) commit transaction
50
+ ActiveRecord::InternalMetadata Load (0.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]]
51
+  (0.0ms) begin transaction
52
+  (0.0ms) commit transaction
53
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
54
+ DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from require at bin/rails:4)
55
+ DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from require at bin/rails:4)
56
+ DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from require at bin/rails:4)
57
+ DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from load at /Users/pgonzaga/.rvm/gems/ruby-2.3.0/bin/rake:23)
58
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
59
+ Migrating to CreateArticles (20160926151250)
60
+  (0.1ms) begin transaction
61
+  (0.5ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "slug" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
62
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160926151250"]]
63
+  (2.3ms) commit transaction
64
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]]
65
+  (0.1ms) begin transaction
66
+  (0.1ms) commit transaction
67
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
68
+ DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from require at bin/rails:4)
69
+ DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from load at /Users/pgonzaga/.rvm/gems/ruby-2.3.0/bin/rake:23)
70
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
71
+ Migrating to RemoveSlugFromArticle (20160926153532)
72
+  (0.1ms) begin transaction
73
+  (0.8ms) CREATE TEMPORARY TABLE "aarticles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "slug" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
74
+  (0.4ms) INSERT INTO "aarticles" ("id","name","slug","created_at","updated_at")
75
+ SELECT "id","name","slug","created_at","updated_at" FROM "articles"
76
+  (0.4ms) DROP TABLE "articles"
77
+  (0.2ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
78
+  (0.2ms) INSERT INTO "articles" ("id","name","created_at","updated_at")
79
+ SELECT "id","name","created_at","updated_at" FROM "aarticles"
80
+  (0.2ms) DROP TABLE "aarticles"
81
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160926153532"]]
82
+  (2.8ms) commit transaction
83
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]]
84
+  (0.1ms) begin transaction
85
+  (0.1ms) commit transaction
86
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
@@ -861,3 +861,1223 @@ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
861
861
  RailsSitemapTest: test_truth
862
862
  ----------------------------
863
863
   (0.0ms) rollback transaction
864
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
865
+  (2.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
866
+  (0.1ms) select sqlite_version(*)
867
+  (3.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
868
+  (0.2ms) SELECT version FROM "schema_migrations"
869
+  (3.5ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
870
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
871
+  (0.1ms) begin transaction
872
+ --------------------------------------------------------
873
+ SitemapControllerTest: test_should_return_a_success_code
874
+ --------------------------------------------------------
875
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-23 15:40:21 -0300
876
+ Processing by RailsSitemap::SitemapController#index as XML
877
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (1.5ms)
878
+ Completed 200 OK in 283571ms (Views: 23.4ms | ActiveRecord: 0.0ms)
879
+  (0.1ms) rollback transaction
880
+  (0.1ms) begin transaction
881
+ -------------------------------------------------------
882
+ SitemapControllerTest: test_should_return_the_right_xml
883
+ -------------------------------------------------------
884
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-23 15:45:04 -0300
885
+ Processing by RailsSitemap::SitemapController#index as XML
886
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (0.1ms)
887
+ Completed 200 OK in 966ms (Views: 2.0ms | ActiveRecord: 0.0ms)
888
+  (0.1ms) rollback transaction
889
+  (0.2ms) begin transaction
890
+ ----------------------------
891
+ RailsSitemapTest: test_truth
892
+ ----------------------------
893
+  (0.1ms) rollback transaction
894
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
895
+  (2.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
896
+  (0.1ms) select sqlite_version(*)
897
+  (3.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
898
+  (0.2ms) SELECT version FROM "schema_migrations"
899
+  (3.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
900
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
901
+  (0.1ms) begin transaction
902
+ ----------------------------
903
+ RailsSitemapTest: test_truth
904
+ ----------------------------
905
+  (0.0ms) rollback transaction
906
+  (0.1ms) begin transaction
907
+ --------------------------------------------------------
908
+ SitemapControllerTest: test_should_return_a_success_code
909
+ --------------------------------------------------------
910
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-23 15:45:29 -0300
911
+ Processing by RailsSitemap::SitemapController#index as XML
912
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (2.1ms)
913
+ Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.0ms)
914
+  (0.1ms) rollback transaction
915
+  (0.1ms) begin transaction
916
+ -------------------------------------------------------
917
+ SitemapControllerTest: test_should_return_the_right_xml
918
+ -------------------------------------------------------
919
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-23 15:45:29 -0300
920
+ Processing by RailsSitemap::SitemapController#index as XML
921
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (0.1ms)
922
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
923
+  (0.3ms) rollback transaction
924
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
925
+  (2.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
926
+  (0.1ms) select sqlite_version(*)
927
+  (3.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
928
+  (0.1ms) SELECT version FROM "schema_migrations"
929
+  (3.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
930
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
931
+  (0.2ms) begin transaction
932
+ ----------------------------
933
+ RailsSitemapTest: test_truth
934
+ ----------------------------
935
+  (0.0ms) rollback transaction
936
+  (0.0ms) begin transaction
937
+ --------------------------------------------------------
938
+ SitemapControllerTest: test_should_return_a_success_code
939
+ --------------------------------------------------------
940
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-23 15:48:26 -0300
941
+ Processing by RailsSitemap::SitemapController#index as XML
942
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (0.9ms)
943
+ Completed 200 OK in 10ms (Views: 9.7ms | ActiveRecord: 0.0ms)
944
+  (0.1ms) rollback transaction
945
+  (0.1ms) begin transaction
946
+ -------------------------------------------------------
947
+ SitemapControllerTest: test_should_return_the_right_xml
948
+ -------------------------------------------------------
949
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-23 15:48:26 -0300
950
+ Processing by RailsSitemap::SitemapController#index as XML
951
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (0.1ms)
952
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
953
+  (0.1ms) rollback transaction
954
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
955
+  (3.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
956
+  (0.2ms) select sqlite_version(*)
957
+  (3.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
958
+  (0.2ms) SELECT version FROM "schema_migrations"
959
+  (3.5ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
960
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
961
+  (0.1ms) begin transaction
962
+ --------------------------------------------------------
963
+ SitemapControllerTest: test_should_return_a_success_code
964
+ --------------------------------------------------------
965
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-23 15:53:04 -0300
966
+ Processing by RailsSitemap::SitemapController#index as XML
967
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (1.0ms)
968
+ Completed 200 OK in 12ms (Views: 11.0ms | ActiveRecord: 0.0ms)
969
+  (0.1ms) rollback transaction
970
+  (0.1ms) begin transaction
971
+ -------------------------------------------------------
972
+ SitemapControllerTest: test_should_return_the_right_xml
973
+ -------------------------------------------------------
974
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-23 15:53:04 -0300
975
+ Processing by RailsSitemap::SitemapController#index as XML
976
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (0.1ms)
977
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
978
+  (0.1ms) rollback transaction
979
+  (0.0ms) begin transaction
980
+ ----------------------------
981
+ RailsSitemapTest: test_truth
982
+ ----------------------------
983
+  (0.0ms) rollback transaction
984
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
985
+  (2.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
986
+  (0.1ms) select sqlite_version(*)
987
+  (3.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
988
+  (0.2ms) SELECT version FROM "schema_migrations"
989
+  (3.6ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
990
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
991
+  (0.1ms) begin transaction
992
+ -------------------------------------------------------
993
+ SitemapControllerTest: test_should_return_the_right_xml
994
+ -------------------------------------------------------
995
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-23 15:54:02 -0300
996
+ Processing by RailsSitemap::SitemapController#index as XML
997
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (3.3ms)
998
+ Completed 200 OK in 25ms (Views: 24.3ms | ActiveRecord: 0.0ms)
999
+  (0.1ms) rollback transaction
1000
+  (0.0ms) begin transaction
1001
+ --------------------------------------------------------
1002
+ SitemapControllerTest: test_should_return_a_success_code
1003
+ --------------------------------------------------------
1004
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-23 15:54:02 -0300
1005
+ Processing by RailsSitemap::SitemapController#index as XML
1006
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (0.1ms)
1007
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1008
+  (0.1ms) rollback transaction
1009
+  (0.1ms) begin transaction
1010
+ ----------------------------
1011
+ RailsSitemapTest: test_truth
1012
+ ----------------------------
1013
+  (0.0ms) rollback transaction
1014
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1015
+  (2.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1016
+  (0.1ms) select sqlite_version(*)
1017
+  (3.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1018
+  (0.1ms) SELECT version FROM "schema_migrations"
1019
+  (3.5ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1020
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1021
+  (0.1ms) begin transaction
1022
+ ----------------------------
1023
+ RailsSitemapTest: test_truth
1024
+ ----------------------------
1025
+  (0.0ms) rollback transaction
1026
+  (0.0ms) begin transaction
1027
+ --------------------------------------------------------
1028
+ SitemapControllerTest: test_should_return_a_success_code
1029
+ --------------------------------------------------------
1030
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-23 15:56:42 -0300
1031
+ Processing by RailsSitemap::SitemapController#index as XML
1032
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (3.7ms)
1033
+ Completed 200 OK in 32ms (Views: 31.1ms | ActiveRecord: 0.0ms)
1034
+  (0.1ms) rollback transaction
1035
+  (0.0ms) begin transaction
1036
+ -------------------------------------------------------
1037
+ SitemapControllerTest: test_should_return_the_right_xml
1038
+ -------------------------------------------------------
1039
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-23 15:56:42 -0300
1040
+ Processing by RailsSitemap::SitemapController#index as XML
1041
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (0.1ms)
1042
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1043
+  (0.2ms) rollback transaction
1044
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1045
+  (2.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1046
+  (0.1ms) select sqlite_version(*)
1047
+  (3.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1048
+  (0.1ms) SELECT version FROM "schema_migrations"
1049
+  (3.9ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1050
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1051
+  (0.1ms) begin transaction
1052
+ --------------------------------------------------------
1053
+ SitemapControllerTest: test_should_return_a_success_code
1054
+ --------------------------------------------------------
1055
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-23 16:01:43 -0300
1056
+ Processing by RailsSitemap::SitemapController#index as XML
1057
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (3.9ms)
1058
+ Completed 200 OK in 32ms (Views: 31.2ms | ActiveRecord: 0.0ms)
1059
+  (0.1ms) rollback transaction
1060
+  (0.1ms) begin transaction
1061
+ -------------------------------------------------------
1062
+ SitemapControllerTest: test_should_return_the_right_xml
1063
+ -------------------------------------------------------
1064
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-23 16:01:43 -0300
1065
+ Processing by RailsSitemap::SitemapController#index as XML
1066
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (0.1ms)
1067
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1068
+  (0.2ms) rollback transaction
1069
+  (0.1ms) begin transaction
1070
+ ----------------------------
1071
+ RailsSitemapTest: test_truth
1072
+ ----------------------------
1073
+  (0.0ms) rollback transaction
1074
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1075
+  (2.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1076
+  (0.1ms) select sqlite_version(*)
1077
+  (3.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1078
+  (0.2ms) SELECT version FROM "schema_migrations"
1079
+  (3.2ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1080
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1081
+  (0.1ms) begin transaction
1082
+ --------------------------------------------------------
1083
+ SitemapControllerTest: test_should_return_a_success_code
1084
+ --------------------------------------------------------
1085
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-23 16:02:57 -0300
1086
+ Processing by RailsSitemap::SitemapController#index as XML
1087
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (1.0ms)
1088
+ Completed 200 OK in 10ms (Views: 9.8ms | ActiveRecord: 0.0ms)
1089
+  (0.1ms) rollback transaction
1090
+  (0.1ms) begin transaction
1091
+ -------------------------------------------------------
1092
+ SitemapControllerTest: test_should_return_the_right_xml
1093
+ -------------------------------------------------------
1094
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-23 16:02:57 -0300
1095
+ Processing by RailsSitemap::SitemapController#index as XML
1096
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (0.1ms)
1097
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
1098
+  (0.1ms) rollback transaction
1099
+  (0.1ms) begin transaction
1100
+ ----------------------------
1101
+ RailsSitemapTest: test_truth
1102
+ ----------------------------
1103
+  (0.0ms) rollback transaction
1104
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1105
+  (2.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1106
+  (0.1ms) select sqlite_version(*)
1107
+  (3.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1108
+  (0.1ms) SELECT version FROM "schema_migrations"
1109
+  (3.5ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1110
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1111
+  (0.1ms) begin transaction
1112
+ ----------------------------
1113
+ RailsSitemapTest: test_truth
1114
+ ----------------------------
1115
+  (0.0ms) rollback transaction
1116
+  (0.1ms) begin transaction
1117
+ -------------------------------------------------------
1118
+ SitemapControllerTest: test_should_return_the_right_xml
1119
+ -------------------------------------------------------
1120
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-23 16:03:26 -0300
1121
+ Processing by RailsSitemap::SitemapController#index as XML
1122
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (1.0ms)
1123
+ Completed 200 OK in 12ms (Views: 11.6ms | ActiveRecord: 0.0ms)
1124
+  (0.1ms) rollback transaction
1125
+  (0.1ms) begin transaction
1126
+ --------------------------------------------------------
1127
+ SitemapControllerTest: test_should_return_a_success_code
1128
+ --------------------------------------------------------
1129
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-23 16:04:59 -0300
1130
+ Processing by RailsSitemap::SitemapController#index as XML
1131
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (0.1ms)
1132
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1133
+  (0.1ms) rollback transaction
1134
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1135
+  (3.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1136
+  (0.1ms) select sqlite_version(*)
1137
+  (3.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1138
+  (0.1ms) SELECT version FROM "schema_migrations"
1139
+  (3.6ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1140
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1141
+  (0.1ms) begin transaction
1142
+ ----------------------------
1143
+ RailsSitemapTest: test_truth
1144
+ ----------------------------
1145
+  (0.0ms) rollback transaction
1146
+  (0.1ms) begin transaction
1147
+ --------------------------------------------------------
1148
+ SitemapControllerTest: test_should_return_a_success_code
1149
+ --------------------------------------------------------
1150
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-23 16:05:05 -0300
1151
+ Processing by RailsSitemap::SitemapController#index as XML
1152
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (1.0ms)
1153
+ Completed 200 OK in 11ms (Views: 10.3ms | ActiveRecord: 0.0ms)
1154
+  (0.1ms) rollback transaction
1155
+  (0.1ms) begin transaction
1156
+ -------------------------------------------------------
1157
+ SitemapControllerTest: test_should_return_the_right_xml
1158
+ -------------------------------------------------------
1159
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-23 16:05:05 -0300
1160
+ Processing by RailsSitemap::SitemapController#index as XML
1161
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (0.1ms)
1162
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1163
+  (0.1ms) rollback transaction
1164
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1165
+  (3.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1166
+  (0.1ms) select sqlite_version(*)
1167
+  (3.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1168
+  (0.2ms) SELECT version FROM "schema_migrations"
1169
+  (3.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1170
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1171
+  (0.1ms) begin transaction
1172
+ ----------------------------
1173
+ RailsSitemapTest: test_truth
1174
+ ----------------------------
1175
+  (0.0ms) rollback transaction
1176
+  (0.0ms) begin transaction
1177
+ --------------------------------------------------------
1178
+ SitemapControllerTest: test_should_return_a_success_code
1179
+ --------------------------------------------------------
1180
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-23 16:08:03 -0300
1181
+ Processing by RailsSitemap::SitemapController#index as XML
1182
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (1.0ms)
1183
+ Completed 200 OK in 13ms (Views: 12.4ms | ActiveRecord: 0.0ms)
1184
+  (0.1ms) rollback transaction
1185
+  (0.0ms) begin transaction
1186
+ -------------------------------------------------------
1187
+ SitemapControllerTest: test_should_return_the_right_xml
1188
+ -------------------------------------------------------
1189
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-23 16:08:03 -0300
1190
+ Processing by RailsSitemap::SitemapController#index as XML
1191
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (0.1ms)
1192
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
1193
+  (0.4ms) rollback transaction
1194
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1195
+  (2.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1196
+  (0.1ms) select sqlite_version(*)
1197
+  (3.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1198
+  (0.2ms) SELECT version FROM "schema_migrations"
1199
+  (3.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1200
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1201
+  (0.1ms) begin transaction
1202
+ --------------------------------------------------------
1203
+ SitemapControllerTest: test_should_return_a_success_code
1204
+ --------------------------------------------------------
1205
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-23 16:10:43 -0300
1206
+ Processing by RailsSitemap::SitemapController#index as XML
1207
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (1.1ms)
1208
+ Completed 200 OK in 12ms (Views: 11.5ms | ActiveRecord: 0.0ms)
1209
+  (0.1ms) rollback transaction
1210
+  (0.1ms) begin transaction
1211
+ -------------------------------------------------------
1212
+ SitemapControllerTest: test_should_return_the_right_xml
1213
+ -------------------------------------------------------
1214
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-23 16:10:43 -0300
1215
+ Processing by RailsSitemap::SitemapController#index as XML
1216
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (0.1ms)
1217
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1218
+  (0.6ms) rollback transaction
1219
+  (0.2ms) begin transaction
1220
+ ----------------------------
1221
+ RailsSitemapTest: test_truth
1222
+ ----------------------------
1223
+  (0.2ms) rollback transaction
1224
+ ActiveRecord::SchemaMigration Load (2.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1225
+  (2.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1226
+  (0.1ms) select sqlite_version(*)
1227
+  (3.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1228
+  (0.1ms) SELECT version FROM "schema_migrations"
1229
+  (3.5ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1230
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1231
+  (0.1ms) begin transaction
1232
+ ----------------------------
1233
+ RailsSitemapTest: test_truth
1234
+ ----------------------------
1235
+  (0.0ms) rollback transaction
1236
+  (0.0ms) begin transaction
1237
+ -------------------------------------------------------
1238
+ SitemapControllerTest: test_should_return_the_right_xml
1239
+ -------------------------------------------------------
1240
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-23 16:31:58 -0300
1241
+ Processing by RailsSitemap::SitemapController#index as XML
1242
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (3.8ms)
1243
+ Completed 200 OK in 33ms (Views: 31.6ms | ActiveRecord: 0.0ms)
1244
+  (0.1ms) rollback transaction
1245
+  (0.2ms) begin transaction
1246
+ --------------------------------------------------------
1247
+ SitemapControllerTest: test_should_return_a_success_code
1248
+ --------------------------------------------------------
1249
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-23 16:31:58 -0300
1250
+ Processing by RailsSitemap::SitemapController#index as XML
1251
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (0.1ms)
1252
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
1253
+  (0.0ms) rollback transaction
1254
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1255
+  (2.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1256
+  (0.1ms) select sqlite_version(*)
1257
+  (3.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1258
+  (0.1ms) SELECT version FROM "schema_migrations"
1259
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1260
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1261
+  (0.1ms) begin transaction
1262
+ ----------------------------
1263
+ RailsSitemapTest: test_truth
1264
+ ----------------------------
1265
+  (0.1ms) rollback transaction
1266
+  (0.0ms) begin transaction
1267
+ -------------------------------------------------------
1268
+ SitemapControllerTest: test_should_return_the_right_xml
1269
+ -------------------------------------------------------
1270
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-23 16:37:59 -0300
1271
+ Processing by RailsSitemap::SitemapController#index as XML
1272
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (1.4ms)
1273
+ Completed 200 OK in 13ms (Views: 12.1ms | ActiveRecord: 0.0ms)
1274
+  (0.1ms) rollback transaction
1275
+  (0.0ms) begin transaction
1276
+ --------------------------------------------------------
1277
+ SitemapControllerTest: test_should_return_a_success_code
1278
+ --------------------------------------------------------
1279
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-23 16:37:59 -0300
1280
+ Processing by RailsSitemap::SitemapController#index as XML
1281
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (0.1ms)
1282
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
1283
+  (0.0ms) rollback transaction
1284
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1285
+  (3.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1286
+  (0.1ms) select sqlite_version(*)
1287
+  (3.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1288
+  (0.2ms) SELECT version FROM "schema_migrations"
1289
+  (3.5ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1290
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1291
+  (0.2ms) begin transaction
1292
+ --------------------------------------------------------
1293
+ SitemapControllerTest: test_should_return_a_success_code
1294
+ --------------------------------------------------------
1295
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-23 16:39:48 -0300
1296
+ Processing by RailsSitemap::SitemapController#index as XML
1297
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (1.1ms)
1298
+ Completed 200 OK in 12ms (Views: 11.1ms | ActiveRecord: 0.0ms)
1299
+  (0.1ms) rollback transaction
1300
+  (0.1ms) begin transaction
1301
+ -------------------------------------------------------
1302
+ SitemapControllerTest: test_should_return_the_right_xml
1303
+ -------------------------------------------------------
1304
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-23 16:39:48 -0300
1305
+ Processing by RailsSitemap::SitemapController#index as XML
1306
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (0.1ms)
1307
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1308
+  (1.0ms) rollback transaction
1309
+  (0.1ms) begin transaction
1310
+ ----------------------------
1311
+ RailsSitemapTest: test_truth
1312
+ ----------------------------
1313
+  (0.1ms) rollback transaction
1314
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1315
+  (2.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1316
+  (0.1ms) select sqlite_version(*)
1317
+  (3.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1318
+  (0.1ms) SELECT version FROM "schema_migrations"
1319
+  (4.0ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1320
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1321
+  (0.1ms) begin transaction
1322
+ --------------------------------------------------------
1323
+ SitemapControllerTest: test_should_return_a_success_code
1324
+ --------------------------------------------------------
1325
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-23 16:40:57 -0300
1326
+ Processing by RailsSitemap::SitemapController#index as XML
1327
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (1.3ms)
1328
+ Completed 200 OK in 11ms (Views: 10.4ms | ActiveRecord: 0.0ms)
1329
+  (0.1ms) rollback transaction
1330
+  (0.1ms) begin transaction
1331
+ -------------------------------------------------------
1332
+ SitemapControllerTest: test_should_return_the_right_xml
1333
+ -------------------------------------------------------
1334
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-23 16:40:57 -0300
1335
+ Processing by RailsSitemap::SitemapController#index as XML
1336
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (0.1ms)
1337
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
1338
+  (0.1ms) rollback transaction
1339
+  (0.0ms) begin transaction
1340
+ ----------------------------
1341
+ RailsSitemapTest: test_truth
1342
+ ----------------------------
1343
+  (0.0ms) rollback transaction
1344
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1345
+  (2.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1346
+  (0.1ms) select sqlite_version(*)
1347
+  (3.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1348
+  (0.1ms) SELECT version FROM "schema_migrations"
1349
+  (3.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1350
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1351
+  (0.1ms) begin transaction
1352
+ ----------------------------
1353
+ RailsSitemapTest: test_truth
1354
+ ----------------------------
1355
+  (0.1ms) rollback transaction
1356
+  (0.1ms) begin transaction
1357
+ --------------------------------------------------------
1358
+ SitemapControllerTest: test_should_return_a_success_code
1359
+ --------------------------------------------------------
1360
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-23 16:41:29 -0300
1361
+ Processing by RailsSitemap::SitemapController#index as XML
1362
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (2.2ms)
1363
+ Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.0ms)
1364
+  (0.1ms) rollback transaction
1365
+  (0.2ms) begin transaction
1366
+ -------------------------------------------------------
1367
+ SitemapControllerTest: test_should_return_the_right_xml
1368
+ -------------------------------------------------------
1369
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-23 16:41:29 -0300
1370
+ Processing by RailsSitemap::SitemapController#index as XML
1371
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (0.1ms)
1372
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1373
+  (0.2ms) rollback transaction
1374
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1375
+  (2.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1376
+  (0.1ms) select sqlite_version(*)
1377
+  (3.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1378
+  (0.1ms) SELECT version FROM "schema_migrations"
1379
+  (3.9ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1380
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1381
+  (0.1ms) begin transaction
1382
+ ----------------------------
1383
+ RailsSitemapTest: test_truth
1384
+ ----------------------------
1385
+  (0.0ms) rollback transaction
1386
+  (0.0ms) begin transaction
1387
+ --------------------------------------------------------
1388
+ SitemapControllerTest: test_should_return_a_success_code
1389
+ --------------------------------------------------------
1390
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-23 16:44:51 -0300
1391
+ Processing by RailsSitemap::SitemapController#index as XML
1392
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (1.5ms)
1393
+ Completed 200 OK in 13ms (Views: 12.2ms | ActiveRecord: 0.0ms)
1394
+  (0.1ms) rollback transaction
1395
+  (0.1ms) begin transaction
1396
+ -------------------------------------------------------
1397
+ SitemapControllerTest: test_should_return_the_right_xml
1398
+ -------------------------------------------------------
1399
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-23 16:44:51 -0300
1400
+ Processing by RailsSitemap::SitemapController#index as XML
1401
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (0.1ms)
1402
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
1403
+  (0.1ms) rollback transaction
1404
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1405
+  (2.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1406
+  (0.1ms) select sqlite_version(*)
1407
+  (3.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1408
+  (0.2ms) SELECT version FROM "schema_migrations"
1409
+  (3.5ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1410
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1411
+  (0.1ms) begin transaction
1412
+ -------------------------------------------------------
1413
+ SitemapControllerTest: test_should_return_the_right_xml
1414
+ -------------------------------------------------------
1415
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-23 16:48:34 -0300
1416
+ Processing by RailsSitemap::SitemapController#index as XML
1417
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (1.4ms)
1418
+ Completed 200 OK in 11ms (Views: 9.9ms | ActiveRecord: 0.0ms)
1419
+  (0.1ms) rollback transaction
1420
+  (0.1ms) begin transaction
1421
+ --------------------------------------------------------
1422
+ SitemapControllerTest: test_should_return_a_success_code
1423
+ --------------------------------------------------------
1424
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-23 16:48:34 -0300
1425
+ Processing by RailsSitemap::SitemapController#index as XML
1426
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (0.1ms)
1427
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
1428
+  (0.0ms) rollback transaction
1429
+  (0.0ms) begin transaction
1430
+ ----------------------------
1431
+ RailsSitemapTest: test_truth
1432
+ ----------------------------
1433
+  (0.0ms) rollback transaction
1434
+ ActiveRecord::SchemaMigration Load (2.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
1435
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1436
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1437
+  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
1438
+  (0.2ms) SELECT version FROM "schema_migrations"
1439
+  (3.2ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1440
+  (2.8ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1441
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]]
1442
+  (0.1ms) begin transaction
1443
+ SQL (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", 2016-09-23 21:25:46 UTC], ["updated_at", 2016-09-23 21:25:46 UTC]]
1444
+  (2.5ms) commit transaction
1445
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]]
1446
+  (0.0ms) begin transaction
1447
+  (0.0ms) commit transaction
1448
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1449
+  (0.1ms) begin transaction
1450
+ --------------------------------------------------------
1451
+ SitemapControllerTest: test_should_return_a_success_code
1452
+ --------------------------------------------------------
1453
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-23 18:25:46 -0300
1454
+ Processing by RailsSitemap::SitemapController#index as XML
1455
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb
1456
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (1.0ms)
1457
+ Completed 200 OK in 12ms (Views: 8.3ms | ActiveRecord: 0.0ms)
1458
+  (0.1ms) rollback transaction
1459
+  (0.1ms) begin transaction
1460
+ -------------------------------------------------------
1461
+ SitemapControllerTest: test_should_return_the_right_xml
1462
+ -------------------------------------------------------
1463
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-23 18:25:46 -0300
1464
+ Processing by RailsSitemap::SitemapController#index as XML
1465
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb
1466
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (0.4ms)
1467
+ Completed 200 OK in 6ms (Views: 4.2ms | ActiveRecord: 0.0ms)
1468
+  (0.1ms) rollback transaction
1469
+  (0.0ms) begin transaction
1470
+ ----------------------------
1471
+ RailsSitemapTest: test_truth
1472
+ ----------------------------
1473
+  (0.0ms) rollback transaction
1474
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1475
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1476
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1477
+  (2.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
1478
+  (0.1ms) SELECT version FROM "schema_migrations"
1479
+  (3.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1480
+  (2.9ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1481
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]]
1482
+  (0.0ms) begin transaction
1483
+ SQL (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", 2016-09-23 21:32:53 UTC], ["updated_at", 2016-09-23 21:32:53 UTC]]
1484
+  (2.6ms) commit transaction
1485
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]]
1486
+  (0.0ms) begin transaction
1487
+  (0.0ms) commit transaction
1488
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1489
+  (0.1ms) begin transaction
1490
+ ----------------------------
1491
+ RailsSitemapTest: test_truth
1492
+ ----------------------------
1493
+  (0.0ms) rollback transaction
1494
+  (0.0ms) begin transaction
1495
+ --------------------------------------------------------
1496
+ SitemapControllerTest: test_should_return_a_success_code
1497
+ --------------------------------------------------------
1498
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-23 18:32:53 -0300
1499
+ Processing by RailsSitemap::SitemapController#index as XML
1500
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb
1501
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (1.0ms)
1502
+ Completed 200 OK in 34337ms (Views: 11.3ms | ActiveRecord: 0.0ms)
1503
+  (0.1ms) rollback transaction
1504
+  (0.1ms) begin transaction
1505
+ -------------------------------------------------------
1506
+ SitemapControllerTest: test_should_return_the_right_xml
1507
+ -------------------------------------------------------
1508
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-23 18:33:27 -0300
1509
+ Processing by RailsSitemap::SitemapController#index as XML
1510
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb
1511
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (1.3ms)
1512
+ Completed 200 OK in 1022ms (Views: 9.6ms | ActiveRecord: 0.0ms)
1513
+  (0.1ms) rollback transaction
1514
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1515
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
1516
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
1517
+  (2.8ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "slug" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1518
+  (2.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
1519
+  (0.1ms) SELECT version FROM "schema_migrations"
1520
+  (2.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20160926151250')
1521
+  (5.2ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1522
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]]
1523
+  (0.1ms) begin transaction
1524
+ SQL (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", 2016-09-26 15:15:57 UTC], ["updated_at", 2016-09-26 15:15:57 UTC]]
1525
+  (2.5ms) commit transaction
1526
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]]
1527
+  (0.1ms) begin transaction
1528
+  (0.0ms) commit transaction
1529
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1530
+  (0.2ms) begin transaction
1531
+ --------------------------------------------------------
1532
+ SitemapControllerTest: test_should_return_a_success_code
1533
+ --------------------------------------------------------
1534
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-26 12:15:57 -0300
1535
+ Processing by RailsSitemap::SitemapController#index as XML
1536
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb
1537
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (3.5ms)
1538
+ Completed 200 OK in 69755ms (Views: 21.4ms | ActiveRecord: 0.0ms)
1539
+  (0.1ms) rollback transaction
1540
+  (0.1ms) begin transaction
1541
+ -------------------------------------------------------
1542
+ SitemapControllerTest: test_should_return_the_right_xml
1543
+ -------------------------------------------------------
1544
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-26 12:17:07 -0300
1545
+ Processing by RailsSitemap::SitemapController#index as XML
1546
+ Completed 500 Internal Server Error in 1738ms (ActiveRecord: 0.0ms)
1547
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1548
+  (0.1ms) begin transaction
1549
+ ----------------------------
1550
+ RailsSitemapTest: test_truth
1551
+ ----------------------------
1552
+  (0.0ms) rollback transaction
1553
+  (0.0ms) begin transaction
1554
+ --------------------------------------------------------
1555
+ SitemapControllerTest: test_should_return_a_success_code
1556
+ --------------------------------------------------------
1557
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-26 12:17:17 -0300
1558
+ Processing by RailsSitemap::SitemapController#index as XML
1559
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb
1560
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (1.1ms)
1561
+ Completed 200 OK in 5371ms (Views: 13.3ms | ActiveRecord: 0.0ms)
1562
+  (0.1ms) rollback transaction
1563
+  (0.1ms) begin transaction
1564
+ -------------------------------------------------------
1565
+ SitemapControllerTest: test_should_return_the_right_xml
1566
+ -------------------------------------------------------
1567
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-26 12:17:22 -0300
1568
+ Processing by RailsSitemap::SitemapController#index as XML
1569
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb
1570
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (0.6ms)
1571
+ Completed 200 OK in 1003ms (Views: 8.5ms | ActiveRecord: 0.0ms)
1572
+  (0.0ms) rollback transaction
1573
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1574
+  (0.1ms) begin transaction
1575
+ ----------------------------
1576
+ RailsSitemapTest: test_truth
1577
+ ----------------------------
1578
+  (0.0ms) rollback transaction
1579
+  (0.1ms) begin transaction
1580
+ -------------------------------------------------------
1581
+ SitemapControllerTest: test_should_return_the_right_xml
1582
+ -------------------------------------------------------
1583
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-26 12:17:59 -0300
1584
+ Processing by RailsSitemap::SitemapController#index as XML
1585
+ Article Load (0.2ms) SELECT "articles".* FROM "articles"
1586
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb
1587
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (1.0ms)
1588
+ Completed 200 OK in 9109ms (Views: 11.0ms | ActiveRecord: 0.5ms)
1589
+  (0.1ms) rollback transaction
1590
+  (0.1ms) begin transaction
1591
+ --------------------------------------------------------
1592
+ SitemapControllerTest: test_should_return_a_success_code
1593
+ --------------------------------------------------------
1594
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-26 12:18:08 -0300
1595
+ Processing by RailsSitemap::SitemapController#index as XML
1596
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb
1597
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (0.6ms)
1598
+ Completed 200 OK in 753ms (Views: 8.6ms | ActiveRecord: 0.0ms)
1599
+  (0.0ms) rollback transaction
1600
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1601
+  (0.2ms) begin transaction
1602
+ --------------------------------------------------------
1603
+ SitemapControllerTest: test_should_return_a_success_code
1604
+ --------------------------------------------------------
1605
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-26 12:29:25 -0300
1606
+ Processing by RailsSitemap::SitemapController#index as XML
1607
+ Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms)
1608
+  (0.0ms) rollback transaction
1609
+  (0.1ms) begin transaction
1610
+ -------------------------------------------------------
1611
+ SitemapControllerTest: test_should_return_the_right_xml
1612
+ -------------------------------------------------------
1613
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-26 12:29:25 -0300
1614
+ Processing by RailsSitemap::SitemapController#index as XML
1615
+ Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms)
1616
+  (0.0ms) rollback transaction
1617
+  (0.0ms) begin transaction
1618
+ -----------------------------------------------------------------
1619
+ SitemapControllerTest: test_should_return_the_articles_on_sitemap
1620
+ -----------------------------------------------------------------
1621
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1622
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1623
+  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", :environment]]
1624
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
1625
+  (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", :environment]]
1626
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
1627
+  (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", :environment]]
1628
+  (2.4ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1629
+  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
1630
+  (0.1ms) SELECT version FROM "schema_migrations"
1631
+  (2.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20160926153532')
1632
+  (0.1ms) select sqlite_version(*)
1633
+  (3.5ms) INSERT INTO schema_migrations (version) VALUES ('20160926151250');
1634
+
1635
+ 
1636
+  (3.3ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1637
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]]
1638
+  (0.1ms) begin transaction
1639
+ SQL (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", 2016-09-26 15:36:42 UTC], ["updated_at", 2016-09-26 15:36:42 UTC]]
1640
+  (2.4ms) commit transaction
1641
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]]
1642
+  (0.1ms) begin transaction
1643
+  (0.0ms) commit transaction
1644
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1645
+  (0.1ms) begin transaction
1646
+ --------------------------------------------------------
1647
+ SitemapControllerTest: test_should_return_a_success_code
1648
+ --------------------------------------------------------
1649
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-26 12:36:42 -0300
1650
+ Processing by RailsSitemap::SitemapController#index as XML
1651
+ Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms)
1652
+  (0.1ms) rollback transaction
1653
+  (0.1ms) begin transaction
1654
+ -----------------------------------------------------------------
1655
+ SitemapControllerTest: test_should_return_the_articles_on_sitemap
1656
+ -----------------------------------------------------------------
1657
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."name" = ? LIMIT ? [["name", "My first article"], ["LIMIT", 1]]
1658
+  (0.1ms) SAVEPOINT active_record_1
1659
+ SQL (0.3ms) INSERT INTO "articles" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "My first article"], ["created_at", 2016-09-26 15:36:42 UTC], ["updated_at", 2016-09-26 15:36:42 UTC]]
1660
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1661
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-26 12:36:42 -0300
1662
+ Processing by RailsSitemap::SitemapController#index as XML
1663
+ Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms)
1664
+  (4.7ms) rollback transaction
1665
+  (0.1ms) begin transaction
1666
+ -------------------------------------------------------
1667
+ SitemapControllerTest: test_should_return_the_right_xml
1668
+ -------------------------------------------------------
1669
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-26 12:36:42 -0300
1670
+ Processing by RailsSitemap::SitemapController#index as XML
1671
+ Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms)
1672
+  (0.1ms) rollback transaction
1673
+  (0.1ms) begin transaction
1674
+ ----------------------------
1675
+ RailsSitemapTest: test_truth
1676
+ ----------------------------
1677
+  (0.0ms) rollback transaction
1678
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1679
+  (0.1ms) begin transaction
1680
+ -----------------------------------------------------------------
1681
+ SitemapControllerTest: test_should_return_the_articles_on_sitemap
1682
+ -----------------------------------------------------------------
1683
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."name" = ? LIMIT ? [["name", "My first article"], ["LIMIT", 1]]
1684
+  (0.1ms) SAVEPOINT active_record_1
1685
+ SQL (0.4ms) INSERT INTO "articles" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "My first article"], ["created_at", 2016-09-26 15:38:11 UTC], ["updated_at", 2016-09-26 15:38:11 UTC]]
1686
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1687
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-26 12:38:11 -0300
1688
+ Processing by RailsSitemap::SitemapController#index as XML
1689
+ Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms)
1690
+  (2.3ms) rollback transaction
1691
+  (0.1ms) begin transaction
1692
+ --------------------------------------------------------
1693
+ SitemapControllerTest: test_should_return_a_success_code
1694
+ --------------------------------------------------------
1695
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-26 12:38:11 -0300
1696
+ Processing by RailsSitemap::SitemapController#index as XML
1697
+ Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms)
1698
+  (0.1ms) rollback transaction
1699
+  (0.1ms) begin transaction
1700
+ -------------------------------------------------------
1701
+ SitemapControllerTest: test_should_return_the_right_xml
1702
+ -------------------------------------------------------
1703
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-26 12:38:11 -0300
1704
+ Processing by RailsSitemap::SitemapController#index as XML
1705
+ Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms)
1706
+  (0.1ms) rollback transaction
1707
+  (0.0ms) begin transaction
1708
+ ----------------------------
1709
+ RailsSitemapTest: test_truth
1710
+ ----------------------------
1711
+  (0.0ms) rollback transaction
1712
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1713
+  (0.1ms) begin transaction
1714
+ ----------------------------
1715
+ RailsSitemapTest: test_truth
1716
+ ----------------------------
1717
+  (0.1ms) rollback transaction
1718
+  (0.1ms) begin transaction
1719
+ -----------------------------------------------------------------
1720
+ SitemapControllerTest: test_should_return_the_articles_on_sitemap
1721
+ -----------------------------------------------------------------
1722
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."name" = ? LIMIT ? [["name", "My first article"], ["LIMIT", 1]]
1723
+  (0.0ms) SAVEPOINT active_record_1
1724
+ SQL (0.3ms) INSERT INTO "articles" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "My first article"], ["created_at", 2016-09-26 15:39:52 UTC], ["updated_at", 2016-09-26 15:39:52 UTC]]
1725
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1726
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-26 12:39:53 -0300
1727
+ Processing by RailsSitemap::SitemapController#index as XML
1728
+ Completed 500 Internal Server Error in 372404ms (ActiveRecord: 0.0ms)
1729
+  (0.3ms) rollback transaction
1730
+  (0.1ms) begin transaction
1731
+ -------------------------------------------------------
1732
+ SitemapControllerTest: test_should_return_the_right_xml
1733
+ -------------------------------------------------------
1734
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-26 12:46:05 -0300
1735
+ Processing by RailsSitemap::SitemapController#index as XML
1736
+ Completed 500 Internal Server Error in 885ms (ActiveRecord: 0.0ms)
1737
+  (0.1ms) rollback transaction
1738
+  (0.1ms) begin transaction
1739
+ --------------------------------------------------------
1740
+ SitemapControllerTest: test_should_return_a_success_code
1741
+ --------------------------------------------------------
1742
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-26 12:46:06 -0300
1743
+ Processing by RailsSitemap::SitemapController#index as XML
1744
+ Completed 500 Internal Server Error in 652ms (ActiveRecord: 0.0ms)
1745
+  (0.1ms) rollback transaction
1746
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1747
+  (0.1ms) begin transaction
1748
+ ----------------------------
1749
+ RailsSitemapTest: test_truth
1750
+ ----------------------------
1751
+  (0.0ms) rollback transaction
1752
+  (0.0ms) begin transaction
1753
+ -----------------------------------------------------------------
1754
+ SitemapControllerTest: test_should_return_the_articles_on_sitemap
1755
+ -----------------------------------------------------------------
1756
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."name" = ? LIMIT ? [["name", "My first article"], ["LIMIT", 1]]
1757
+  (0.0ms) SAVEPOINT active_record_1
1758
+ SQL (0.4ms) INSERT INTO "articles" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "My first article"], ["created_at", 2016-09-26 15:46:11 UTC], ["updated_at", 2016-09-26 15:46:11 UTC]]
1759
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1760
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-26 12:46:11 -0300
1761
+ Processing by RailsSitemap::SitemapController#index as XML
1762
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
1763
+ Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.1ms)
1764
+  (2.1ms) rollback transaction
1765
+  (0.1ms) begin transaction
1766
+ -------------------------------------------------------
1767
+ SitemapControllerTest: test_should_return_the_right_xml
1768
+ -------------------------------------------------------
1769
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-26 12:46:12 -0300
1770
+ Processing by RailsSitemap::SitemapController#index as XML
1771
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
1772
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb
1773
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (1.0ms)
1774
+ Completed 200 OK in 9207ms (Views: 11.1ms | ActiveRecord: 0.1ms)
1775
+  (0.1ms) rollback transaction
1776
+  (0.1ms) begin transaction
1777
+ --------------------------------------------------------
1778
+ SitemapControllerTest: test_should_return_a_success_code
1779
+ --------------------------------------------------------
1780
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-26 12:46:21 -0300
1781
+ Processing by RailsSitemap::SitemapController#index as XML
1782
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
1783
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb
1784
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (0.6ms)
1785
+ Completed 200 OK in 1528ms (Views: 9.9ms | ActiveRecord: 0.1ms)
1786
+  (0.1ms) rollback transaction
1787
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1788
+  (0.1ms) begin transaction
1789
+ --------------------------------------------------------
1790
+ SitemapControllerTest: test_should_return_a_success_code
1791
+ --------------------------------------------------------
1792
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-26 12:46:59 -0300
1793
+ Processing by RailsSitemap::SitemapController#index as XML
1794
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
1795
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb
1796
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (1.7ms)
1797
+ Completed 200 OK in 13ms (Views: 8.3ms | ActiveRecord: 0.3ms)
1798
+  (0.1ms) rollback transaction
1799
+  (0.1ms) begin transaction
1800
+ -----------------------------------------------------------------
1801
+ SitemapControllerTest: test_should_return_the_articles_on_sitemap
1802
+ -----------------------------------------------------------------
1803
+ Article Load (0.3ms) SELECT "articles".* FROM "articles" WHERE "articles"."name" = ? LIMIT ? [["name", "My first article"], ["LIMIT", 1]]
1804
+  (0.1ms) SAVEPOINT active_record_1
1805
+ SQL (0.3ms) INSERT INTO "articles" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "My first article"], ["created_at", 2016-09-26 15:46:59 UTC], ["updated_at", 2016-09-26 15:46:59 UTC]]
1806
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1807
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-26 12:46:59 -0300
1808
+ Processing by RailsSitemap::SitemapController#index as XML
1809
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
1810
+ Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.1ms)
1811
+  (2.1ms) rollback transaction
1812
+  (0.1ms) begin transaction
1813
+ -------------------------------------------------------
1814
+ SitemapControllerTest: test_should_return_the_right_xml
1815
+ -------------------------------------------------------
1816
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-26 12:46:59 -0300
1817
+ Processing by RailsSitemap::SitemapController#index as XML
1818
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
1819
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb
1820
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (0.7ms)
1821
+ Completed 200 OK in 8ms (Views: 5.4ms | ActiveRecord: 0.1ms)
1822
+  (0.1ms) rollback transaction
1823
+  (0.1ms) begin transaction
1824
+ ----------------------------
1825
+ RailsSitemapTest: test_truth
1826
+ ----------------------------
1827
+  (0.1ms) rollback transaction
1828
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1829
+  (0.1ms) begin transaction
1830
+ ----------------------------
1831
+ RailsSitemapTest: test_truth
1832
+ ----------------------------
1833
+  (0.0ms) rollback transaction
1834
+  (0.1ms) begin transaction
1835
+ -------------------------------------------------------
1836
+ SitemapControllerTest: test_should_return_the_right_xml
1837
+ -------------------------------------------------------
1838
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-26 12:47:53 -0300
1839
+ Processing by RailsSitemap::SitemapController#index as XML
1840
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
1841
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb
1842
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (1.9ms)
1843
+ Completed 200 OK in 21ms (Views: 8.0ms | ActiveRecord: 0.2ms)
1844
+  (0.1ms) rollback transaction
1845
+  (0.1ms) begin transaction
1846
+ -----------------------------------------------------------------
1847
+ SitemapControllerTest: test_should_return_the_articles_on_sitemap
1848
+ -----------------------------------------------------------------
1849
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."name" = ? LIMIT ? [["name", "My first article"], ["LIMIT", 1]]
1850
+  (0.1ms) SAVEPOINT active_record_1
1851
+ SQL (0.3ms) INSERT INTO "articles" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "My first article"], ["created_at", 2016-09-26 15:47:53 UTC], ["updated_at", 2016-09-26 15:47:53 UTC]]
1852
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1853
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-26 12:47:53 -0300
1854
+ Processing by RailsSitemap::SitemapController#index as XML
1855
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
1856
+ Completed 500 Internal Server Error in 28637ms (ActiveRecord: 0.1ms)
1857
+  (0.2ms) rollback transaction
1858
+  (0.1ms) begin transaction
1859
+ --------------------------------------------------------
1860
+ SitemapControllerTest: test_should_return_a_success_code
1861
+ --------------------------------------------------------
1862
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-26 12:48:21 -0300
1863
+ Processing by RailsSitemap::SitemapController#index as XML
1864
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
1865
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb
1866
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (1.0ms)
1867
+ Completed 200 OK in 10ms (Views: 7.2ms | ActiveRecord: 0.1ms)
1868
+  (0.1ms) rollback transaction
1869
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1870
+  (0.1ms) begin transaction
1871
+ --------------------------------------------------------
1872
+ SitemapControllerTest: test_should_return_a_success_code
1873
+ --------------------------------------------------------
1874
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-26 12:50:38 -0300
1875
+ Processing by RailsSitemap::SitemapController#index as XML
1876
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
1877
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb
1878
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (1.0ms)
1879
+ Completed 200 OK in 11ms (Views: 6.9ms | ActiveRecord: 0.2ms)
1880
+  (0.1ms) rollback transaction
1881
+  (0.1ms) begin transaction
1882
+ -------------------------------------------------------
1883
+ SitemapControllerTest: test_should_return_the_right_xml
1884
+ -------------------------------------------------------
1885
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-26 12:50:38 -0300
1886
+ Processing by RailsSitemap::SitemapController#index as XML
1887
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
1888
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb
1889
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (0.4ms)
1890
+ Completed 200 OK in 7ms (Views: 4.1ms | ActiveRecord: 0.1ms)
1891
+  (0.1ms) rollback transaction
1892
+  (0.0ms) begin transaction
1893
+ -----------------------------------------------------------------
1894
+ SitemapControllerTest: test_should_return_the_articles_on_sitemap
1895
+ -----------------------------------------------------------------
1896
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."name" = ? LIMIT ? [["name", "My first article"], ["LIMIT", 1]]
1897
+  (0.0ms) SAVEPOINT active_record_1
1898
+ SQL (0.3ms) INSERT INTO "articles" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "My first article"], ["created_at", 2016-09-26 15:50:38 UTC], ["updated_at", 2016-09-26 15:50:38 UTC]]
1899
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1900
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-26 12:50:38 -0300
1901
+ Processing by RailsSitemap::SitemapController#index as XML
1902
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
1903
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb
1904
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (0.5ms)
1905
+ Completed 200 OK in 8ms (Views: 5.0ms | ActiveRecord: 0.1ms)
1906
+  (0.4ms) rollback transaction
1907
+  (0.1ms) begin transaction
1908
+ ----------------------------
1909
+ RailsSitemapTest: test_truth
1910
+ ----------------------------
1911
+  (0.1ms) rollback transaction
1912
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1913
+  (0.1ms) begin transaction
1914
+ --------------------------------------------------------
1915
+ SitemapControllerTest: test_should_return_a_success_code
1916
+ --------------------------------------------------------
1917
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-26 12:51:06 -0300
1918
+ Processing by RailsSitemap::SitemapController#index as XML
1919
+ Article Load (0.2ms) SELECT "articles".* FROM "articles"
1920
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb
1921
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (1.1ms)
1922
+ Completed 200 OK in 13ms (Views: 8.6ms | ActiveRecord: 0.3ms)
1923
+  (0.1ms) rollback transaction
1924
+  (0.1ms) begin transaction
1925
+ -----------------------------------------------------------------
1926
+ SitemapControllerTest: test_should_return_the_articles_on_sitemap
1927
+ -----------------------------------------------------------------
1928
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."name" = ? LIMIT ? [["name", "My first article"], ["LIMIT", 1]]
1929
+  (0.1ms) SAVEPOINT active_record_1
1930
+ SQL (0.3ms) INSERT INTO "articles" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "My first article"], ["created_at", 2016-09-26 15:51:07 UTC], ["updated_at", 2016-09-26 15:51:07 UTC]]
1931
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1932
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-26 12:51:07 -0300
1933
+ Processing by RailsSitemap::SitemapController#index as XML
1934
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
1935
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb
1936
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (0.5ms)
1937
+ Completed 200 OK in 7ms (Views: 4.6ms | ActiveRecord: 0.1ms)
1938
+  (1.3ms) rollback transaction
1939
+  (0.1ms) begin transaction
1940
+ -------------------------------------------------------
1941
+ SitemapControllerTest: test_should_return_the_right_xml
1942
+ -------------------------------------------------------
1943
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-26 12:52:45 -0300
1944
+ Processing by RailsSitemap::SitemapController#index as XML
1945
+ Article Load (0.3ms) SELECT "articles".* FROM "articles"
1946
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb
1947
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (1.2ms)
1948
+ Completed 200 OK in 14ms (Views: 8.2ms | ActiveRecord: 0.3ms)
1949
+  (0.1ms) rollback transaction
1950
+  (0.1ms) begin transaction
1951
+ ----------------------------
1952
+ RailsSitemapTest: test_truth
1953
+ ----------------------------
1954
+  (0.0ms) rollback transaction
1955
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1956
+  (0.1ms) begin transaction
1957
+ -----------------------------------------------------------------
1958
+ SitemapControllerTest: test_should_return_the_articles_on_sitemap
1959
+ -----------------------------------------------------------------
1960
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."name" = ? LIMIT ? [["name", "My first article"], ["LIMIT", 1]]
1961
+  (0.0ms) SAVEPOINT active_record_1
1962
+ SQL (0.3ms) INSERT INTO "articles" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "My first article"], ["created_at", 2016-09-26 15:52:55 UTC], ["updated_at", 2016-09-26 15:52:55 UTC]]
1963
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1964
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-26 12:52:55 -0300
1965
+ Processing by RailsSitemap::SitemapController#index as XML
1966
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
1967
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb
1968
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (1.0ms)
1969
+ Completed 200 OK in 11ms (Views: 8.2ms | ActiveRecord: 0.1ms)
1970
+  (2.1ms) rollback transaction
1971
+  (0.1ms) begin transaction
1972
+ --------------------------------------------------------
1973
+ SitemapControllerTest: test_should_return_a_success_code
1974
+ --------------------------------------------------------
1975
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-26 12:52:55 -0300
1976
+ Processing by RailsSitemap::SitemapController#index as XML
1977
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
1978
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb
1979
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (0.4ms)
1980
+ Completed 200 OK in 8ms (Views: 6.0ms | ActiveRecord: 0.1ms)
1981
+  (0.1ms) rollback transaction
1982
+  (0.0ms) begin transaction
1983
+ -------------------------------------------------------
1984
+ SitemapControllerTest: test_should_return_the_right_xml
1985
+ -------------------------------------------------------
1986
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-26 12:52:55 -0300
1987
+ Processing by RailsSitemap::SitemapController#index as XML
1988
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
1989
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb
1990
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (0.3ms)
1991
+ Completed 200 OK in 6ms (Views: 4.2ms | ActiveRecord: 0.1ms)
1992
+  (0.0ms) rollback transaction
1993
+  (0.0ms) begin transaction
1994
+ ----------------------------
1995
+ RailsSitemapTest: test_truth
1996
+ ----------------------------
1997
+  (0.0ms) rollback transaction
1998
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1999
+  (0.1ms) begin transaction
2000
+ --------------------------------------------------------
2001
+ SitemapControllerTest: test_should_return_a_success_code
2002
+ --------------------------------------------------------
2003
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-26 13:56:51 -0300
2004
+ Processing by RailsSitemap::SitemapController#index as XML
2005
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
2006
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb
2007
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (1.0ms)
2008
+ Completed 200 OK in 11ms (Views: 7.0ms | ActiveRecord: 0.2ms)
2009
+  (0.1ms) rollback transaction
2010
+  (0.1ms) begin transaction
2011
+ -----------------------------------------------------------------
2012
+ SitemapControllerTest: test_should_return_the_articles_on_sitemap
2013
+ -----------------------------------------------------------------
2014
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."name" = ? LIMIT ? [["name", "My first article"], ["LIMIT", 1]]
2015
+  (0.0ms) SAVEPOINT active_record_1
2016
+ SQL (0.3ms) INSERT INTO "articles" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "My first article"], ["created_at", 2016-09-26 16:56:51 UTC], ["updated_at", 2016-09-26 16:56:51 UTC]]
2017
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2018
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-26 13:56:51 -0300
2019
+ Processing by RailsSitemap::SitemapController#index as XML
2020
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
2021
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb
2022
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (0.4ms)
2023
+ Completed 200 OK in 7ms (Views: 4.2ms | ActiveRecord: 0.1ms)
2024
+  (2.2ms) rollback transaction
2025
+  (0.1ms) begin transaction
2026
+ -------------------------------------------------------
2027
+ SitemapControllerTest: test_should_return_the_right_xml
2028
+ -------------------------------------------------------
2029
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-26 13:56:51 -0300
2030
+ Processing by RailsSitemap::SitemapController#index as XML
2031
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
2032
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb
2033
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (0.4ms)
2034
+ Completed 200 OK in 6ms (Views: 4.2ms | ActiveRecord: 0.1ms)
2035
+  (0.0ms) rollback transaction
2036
+  (0.0ms) begin transaction
2037
+ ----------------------------
2038
+ RailsSitemapTest: test_truth
2039
+ ----------------------------
2040
+  (0.1ms) rollback transaction
2041
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
2042
+  (0.1ms) begin transaction
2043
+ -------------------------------------------------------
2044
+ SitemapControllerTest: test_should_return_the_right_xml
2045
+ -------------------------------------------------------
2046
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-26 13:57:04 -0300
2047
+ Processing by RailsSitemap::SitemapController#index as XML
2048
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
2049
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb
2050
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (1.0ms)
2051
+ Completed 200 OK in 18ms (Views: 13.1ms | ActiveRecord: 0.3ms)
2052
+  (0.1ms) rollback transaction
2053
+  (0.1ms) begin transaction
2054
+ -----------------------------------------------------------------
2055
+ SitemapControllerTest: test_should_return_the_articles_on_sitemap
2056
+ -----------------------------------------------------------------
2057
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."name" = ? LIMIT ? [["name", "My first article"], ["LIMIT", 1]]
2058
+  (0.0ms) SAVEPOINT active_record_1
2059
+ SQL (0.2ms) INSERT INTO "articles" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "My first article"], ["created_at", 2016-09-26 16:57:04 UTC], ["updated_at", 2016-09-26 16:57:04 UTC]]
2060
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2061
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-26 13:57:04 -0300
2062
+ Processing by RailsSitemap::SitemapController#index as XML
2063
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
2064
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb
2065
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (0.4ms)
2066
+ Completed 200 OK in 7ms (Views: 4.3ms | ActiveRecord: 0.1ms)
2067
+  (2.3ms) rollback transaction
2068
+  (0.1ms) begin transaction
2069
+ --------------------------------------------------------
2070
+ SitemapControllerTest: test_should_return_a_success_code
2071
+ --------------------------------------------------------
2072
+ Started GET "/sitemap.xml" for 127.0.0.1 at 2016-09-26 13:57:04 -0300
2073
+ Processing by RailsSitemap::SitemapController#index as XML
2074
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
2075
+ Rendering /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb
2076
+ Rendered /Users/pgonzaga/repositories/rails_sitemap/app/views/rails_sitemap/sitemap/index.xml.erb (0.3ms)
2077
+ Completed 200 OK in 6ms (Views: 4.0ms | ActiveRecord: 0.1ms)
2078
+  (0.0ms) rollback transaction
2079
+  (0.0ms) begin transaction
2080
+ ----------------------------
2081
+ RailsSitemapTest: test_truth
2082
+ ----------------------------
2083
+  (0.0ms) rollback transaction