dynamic_sitemaps 2.0.0.beta → 2.0.0.beta2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +4 -0
- data/.travis.yml +8 -0
- data/README.md +230 -55
- data/TODO.md +7 -0
- data/dynamic_sitemaps.gemspec +3 -0
- data/lib/dynamic_sitemaps.rb +44 -19
- data/lib/dynamic_sitemaps/generator.rb +94 -40
- data/lib/dynamic_sitemaps/index_generator.rb +2 -2
- data/lib/dynamic_sitemaps/logger.rb +22 -0
- data/lib/dynamic_sitemaps/pinger.rb +12 -7
- data/lib/dynamic_sitemaps/sitemap.rb +1 -9
- data/lib/dynamic_sitemaps/sitemap_generator.rb +7 -2
- data/lib/dynamic_sitemaps/tasks/sitemap.rake +2 -6
- data/lib/dynamic_sitemaps/version.rb +1 -1
- data/lib/generators/dynamic_sitemaps/templates/config.rb +3 -0
- data/test/dummy/app/models/product.rb +5 -1
- data/test/dummy/config/routes.rb +5 -56
- data/test/dummy/config/sitemap.rb +5 -0
- data/test/dummy/db/migrate/20130211190343_create_products.rb +1 -3
- data/test/dummy/db/schema.rb +3 -5
- data/test/dynamic_sitemaps_test.rb +49 -2
- data/test/generator_test.rb +404 -0
- data/test/pinger_test.rb +73 -0
- data/test/test_helper.rb +1 -0
- metadata +53 -12
- data/test/dummy/app/models/.gitkeep +0 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +0 -902
- data/test/dummy/log/test.log +0 -10
data/test/test_helper.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dynamic_sitemaps
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.0.
|
4
|
+
version: 2.0.0.beta2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Lasse Bunk
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-07-
|
11
|
+
date: 2013-07-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -38,6 +38,48 @@ dependencies:
|
|
38
38
|
- - '>='
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: nokogiri
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ~>
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: 1.6.0
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ~>
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: 1.6.0
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: timecop
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ~>
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: 0.6.1
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ~>
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: 0.6.1
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: webmock
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ~>
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: 1.13.0
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ~>
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: 1.13.0
|
41
83
|
description: Dynamic Sitemaps is a plugin for Ruby on Rails that enables you to easily
|
42
84
|
create flexible, dynamic sitemaps for Google, Bing, and Yahoo.
|
43
85
|
email:
|
@@ -47,14 +89,17 @@ extensions: []
|
|
47
89
|
extra_rdoc_files: []
|
48
90
|
files:
|
49
91
|
- .gitignore
|
92
|
+
- .travis.yml
|
50
93
|
- Gemfile
|
51
94
|
- LICENSE.txt
|
52
95
|
- README.md
|
53
96
|
- Rakefile
|
97
|
+
- TODO.md
|
54
98
|
- dynamic_sitemaps.gemspec
|
55
99
|
- lib/dynamic_sitemaps.rb
|
56
100
|
- lib/dynamic_sitemaps/generator.rb
|
57
101
|
- lib/dynamic_sitemaps/index_generator.rb
|
102
|
+
- lib/dynamic_sitemaps/logger.rb
|
58
103
|
- lib/dynamic_sitemaps/pinger.rb
|
59
104
|
- lib/dynamic_sitemaps/rails/engine.rb
|
60
105
|
- lib/dynamic_sitemaps/sitemap.rb
|
@@ -72,7 +117,6 @@ files:
|
|
72
117
|
- test/dummy/app/controllers/application_controller.rb
|
73
118
|
- test/dummy/app/helpers/application_helper.rb
|
74
119
|
- test/dummy/app/mailers/.gitkeep
|
75
|
-
- test/dummy/app/models/.gitkeep
|
76
120
|
- test/dummy/app/models/product.rb
|
77
121
|
- test/dummy/app/views/layouts/application.html.erb
|
78
122
|
- test/dummy/config.ru
|
@@ -91,14 +135,11 @@ files:
|
|
91
135
|
- test/dummy/config/initializers/wrap_parameters.rb
|
92
136
|
- test/dummy/config/locales/en.yml
|
93
137
|
- test/dummy/config/routes.rb
|
94
|
-
- test/dummy/
|
138
|
+
- test/dummy/config/sitemap.rb
|
95
139
|
- test/dummy/db/migrate/20130211190343_create_products.rb
|
96
140
|
- test/dummy/db/schema.rb
|
97
|
-
- test/dummy/db/test.sqlite3
|
98
141
|
- test/dummy/lib/assets/.gitkeep
|
99
142
|
- test/dummy/log/.gitkeep
|
100
|
-
- test/dummy/log/development.log
|
101
|
-
- test/dummy/log/test.log
|
102
143
|
- test/dummy/public/404.html
|
103
144
|
- test/dummy/public/422.html
|
104
145
|
- test/dummy/public/500.html
|
@@ -107,6 +148,8 @@ files:
|
|
107
148
|
- test/dummy/test/fixtures/products.yml
|
108
149
|
- test/dummy/test/unit/product_test.rb
|
109
150
|
- test/dynamic_sitemaps_test.rb
|
151
|
+
- test/generator_test.rb
|
152
|
+
- test/pinger_test.rb
|
110
153
|
- test/test_helper.rb
|
111
154
|
homepage: http://github.com/lassebunk/dynamic_sitemaps
|
112
155
|
licenses:
|
@@ -140,7 +183,6 @@ test_files:
|
|
140
183
|
- test/dummy/app/controllers/application_controller.rb
|
141
184
|
- test/dummy/app/helpers/application_helper.rb
|
142
185
|
- test/dummy/app/mailers/.gitkeep
|
143
|
-
- test/dummy/app/models/.gitkeep
|
144
186
|
- test/dummy/app/models/product.rb
|
145
187
|
- test/dummy/app/views/layouts/application.html.erb
|
146
188
|
- test/dummy/config.ru
|
@@ -159,14 +201,11 @@ test_files:
|
|
159
201
|
- test/dummy/config/initializers/wrap_parameters.rb
|
160
202
|
- test/dummy/config/locales/en.yml
|
161
203
|
- test/dummy/config/routes.rb
|
162
|
-
- test/dummy/
|
204
|
+
- test/dummy/config/sitemap.rb
|
163
205
|
- test/dummy/db/migrate/20130211190343_create_products.rb
|
164
206
|
- test/dummy/db/schema.rb
|
165
|
-
- test/dummy/db/test.sqlite3
|
166
207
|
- test/dummy/lib/assets/.gitkeep
|
167
208
|
- test/dummy/log/.gitkeep
|
168
|
-
- test/dummy/log/development.log
|
169
|
-
- test/dummy/log/test.log
|
170
209
|
- test/dummy/public/404.html
|
171
210
|
- test/dummy/public/422.html
|
172
211
|
- test/dummy/public/500.html
|
@@ -175,4 +214,6 @@ test_files:
|
|
175
214
|
- test/dummy/test/fixtures/products.yml
|
176
215
|
- test/dummy/test/unit/product_test.rb
|
177
216
|
- test/dynamic_sitemaps_test.rb
|
217
|
+
- test/generator_test.rb
|
218
|
+
- test/pinger_test.rb
|
178
219
|
- test/test_helper.rb
|
File without changes
|
Binary file
|
data/test/dummy/db/test.sqlite3
DELETED
File without changes
|
@@ -1,902 +0,0 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
Started GET "/" for 127.0.0.1 at 2013-02-11 19:59:19 +0100
|
4
|
-
Connecting to database specified by database.yml
|
5
|
-
|
6
|
-
SQLite3::CantOpenException (unable to open database file):
|
7
|
-
activerecord (3.2.12) lib/active_record/connection_adapters/sqlite3_adapter.rb:26:in `initialize'
|
8
|
-
activerecord (3.2.12) lib/active_record/connection_adapters/sqlite3_adapter.rb:26:in `new'
|
9
|
-
activerecord (3.2.12) lib/active_record/connection_adapters/sqlite3_adapter.rb:26:in `sqlite3_connection'
|
10
|
-
activerecord (3.2.12) lib/active_record/connection_adapters/abstract/connection_pool.rb:315:in `new_connection'
|
11
|
-
activerecord (3.2.12) lib/active_record/connection_adapters/abstract/connection_pool.rb:325:in `checkout_new_connection'
|
12
|
-
activerecord (3.2.12) lib/active_record/connection_adapters/abstract/connection_pool.rb:247:in `block (2 levels) in checkout'
|
13
|
-
activerecord (3.2.12) lib/active_record/connection_adapters/abstract/connection_pool.rb:242:in `loop'
|
14
|
-
activerecord (3.2.12) lib/active_record/connection_adapters/abstract/connection_pool.rb:242:in `block in checkout'
|
15
|
-
/Users/lassebunk/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/monitor.rb:211:in `mon_synchronize'
|
16
|
-
activerecord (3.2.12) lib/active_record/connection_adapters/abstract/connection_pool.rb:239:in `checkout'
|
17
|
-
activerecord (3.2.12) lib/active_record/connection_adapters/abstract/connection_pool.rb:102:in `block in connection'
|
18
|
-
/Users/lassebunk/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/monitor.rb:211:in `mon_synchronize'
|
19
|
-
activerecord (3.2.12) lib/active_record/connection_adapters/abstract/connection_pool.rb:101:in `connection'
|
20
|
-
activerecord (3.2.12) lib/active_record/connection_adapters/abstract/connection_pool.rb:410:in `retrieve_connection'
|
21
|
-
activerecord (3.2.12) lib/active_record/connection_adapters/abstract/connection_specification.rb:171:in `retrieve_connection'
|
22
|
-
activerecord (3.2.12) lib/active_record/connection_adapters/abstract/connection_specification.rb:145:in `connection'
|
23
|
-
activerecord (3.2.12) lib/active_record/query_cache.rb:67:in `rescue in call'
|
24
|
-
activerecord (3.2.12) lib/active_record/query_cache.rb:61:in `call'
|
25
|
-
activerecord (3.2.12) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
26
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
27
|
-
activesupport (3.2.12) lib/active_support/callbacks.rb:405:in `_run__797135777739302183__call__3621762273765319001__callbacks'
|
28
|
-
activesupport (3.2.12) lib/active_support/callbacks.rb:405:in `__run_callback'
|
29
|
-
activesupport (3.2.12) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
30
|
-
activesupport (3.2.12) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
31
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
32
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
33
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
34
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
35
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
36
|
-
railties (3.2.12) lib/rails/rack/logger.rb:32:in `call_app'
|
37
|
-
railties (3.2.12) lib/rails/rack/logger.rb:16:in `block in call'
|
38
|
-
activesupport (3.2.12) lib/active_support/tagged_logging.rb:22:in `tagged'
|
39
|
-
railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
|
40
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
41
|
-
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
42
|
-
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
43
|
-
activesupport (3.2.12) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
44
|
-
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
45
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/static.rb:62:in `call'
|
46
|
-
railties (3.2.12) lib/rails/engine.rb:479:in `call'
|
47
|
-
railties (3.2.12) lib/rails/application.rb:223:in `call'
|
48
|
-
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
49
|
-
railties (3.2.12) lib/rails/rack/log_tailer.rb:17:in `call'
|
50
|
-
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
51
|
-
/Users/lassebunk/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
52
|
-
/Users/lassebunk/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
53
|
-
/Users/lassebunk/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
54
|
-
|
55
|
-
|
56
|
-
Rendered /Users/lassebunk/.rvm/gems/ruby-1.9.3-p362/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
|
57
|
-
Rendered /Users/lassebunk/.rvm/gems/ruby-1.9.3-p362/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.1ms)
|
58
|
-
Rendered /Users/lassebunk/.rvm/gems/ruby-1.9.3-p362/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (54.5ms)
|
59
|
-
Connecting to database specified by database.yml
|
60
|
-
Connecting to database specified by database.yml
|
61
|
-
Connecting to database specified by database.yml
|
62
|
-
Connecting to database specified by database.yml
|
63
|
-
[1m[36m (3.3ms)[0m [1mselect sqlite_version(*)[0m
|
64
|
-
[1m[35m (2.0ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
65
|
-
[1m[36m (2.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
66
|
-
[1m[35m (28.8ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
67
|
-
Migrating to CreateProducts (20130211190343)
|
68
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
69
|
-
[1m[35m (0.4ms)[0m CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "slug" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
70
|
-
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_products_on_slug" ON "products" ("slug")[0m
|
71
|
-
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20130211190343')
|
72
|
-
[1m[36m (2.5ms)[0m [1mcommit transaction[0m
|
73
|
-
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
74
|
-
|
75
|
-
|
76
|
-
Started GET "/" for 127.0.0.1 at 2013-02-11 20:04:01 +0100
|
77
|
-
|
78
|
-
ActionController::RoutingError (No route matches [GET] "/"):
|
79
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
80
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
81
|
-
railties (3.2.12) lib/rails/rack/logger.rb:32:in `call_app'
|
82
|
-
railties (3.2.12) lib/rails/rack/logger.rb:16:in `block in call'
|
83
|
-
activesupport (3.2.12) lib/active_support/tagged_logging.rb:22:in `tagged'
|
84
|
-
railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
|
85
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
86
|
-
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
87
|
-
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
88
|
-
activesupport (3.2.12) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
89
|
-
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
90
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/static.rb:62:in `call'
|
91
|
-
railties (3.2.12) lib/rails/engine.rb:479:in `call'
|
92
|
-
railties (3.2.12) lib/rails/application.rb:223:in `call'
|
93
|
-
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
94
|
-
railties (3.2.12) lib/rails/rack/log_tailer.rb:17:in `call'
|
95
|
-
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
96
|
-
/Users/lassebunk/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
97
|
-
/Users/lassebunk/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
98
|
-
/Users/lassebunk/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
99
|
-
|
100
|
-
|
101
|
-
Rendered /Users/lassebunk/.rvm/gems/ruby-1.9.3-p362/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
|
102
|
-
|
103
|
-
|
104
|
-
Started GET "/" for 127.0.0.1 at 2013-02-11 20:04:02 +0100
|
105
|
-
|
106
|
-
ActionController::RoutingError (No route matches [GET] "/"):
|
107
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
108
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
109
|
-
railties (3.2.12) lib/rails/rack/logger.rb:32:in `call_app'
|
110
|
-
railties (3.2.12) lib/rails/rack/logger.rb:16:in `block in call'
|
111
|
-
activesupport (3.2.12) lib/active_support/tagged_logging.rb:22:in `tagged'
|
112
|
-
railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
|
113
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
114
|
-
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
115
|
-
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
116
|
-
activesupport (3.2.12) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
117
|
-
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
118
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/static.rb:62:in `call'
|
119
|
-
railties (3.2.12) lib/rails/engine.rb:479:in `call'
|
120
|
-
railties (3.2.12) lib/rails/application.rb:223:in `call'
|
121
|
-
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
122
|
-
railties (3.2.12) lib/rails/rack/log_tailer.rb:17:in `call'
|
123
|
-
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
124
|
-
/Users/lassebunk/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
125
|
-
/Users/lassebunk/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
126
|
-
/Users/lassebunk/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
127
|
-
|
128
|
-
|
129
|
-
Rendered /Users/lassebunk/.rvm/gems/ruby-1.9.3-p362/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
|
130
|
-
|
131
|
-
|
132
|
-
Started GET "/" for 127.0.0.1 at 2013-02-11 20:04:03 +0100
|
133
|
-
|
134
|
-
ActionController::RoutingError (No route matches [GET] "/"):
|
135
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
136
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
137
|
-
railties (3.2.12) lib/rails/rack/logger.rb:32:in `call_app'
|
138
|
-
railties (3.2.12) lib/rails/rack/logger.rb:16:in `block in call'
|
139
|
-
activesupport (3.2.12) lib/active_support/tagged_logging.rb:22:in `tagged'
|
140
|
-
railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
|
141
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
142
|
-
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
143
|
-
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
144
|
-
activesupport (3.2.12) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
145
|
-
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
146
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/static.rb:62:in `call'
|
147
|
-
railties (3.2.12) lib/rails/engine.rb:479:in `call'
|
148
|
-
railties (3.2.12) lib/rails/application.rb:223:in `call'
|
149
|
-
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
150
|
-
railties (3.2.12) lib/rails/rack/log_tailer.rb:17:in `call'
|
151
|
-
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
152
|
-
/Users/lassebunk/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
153
|
-
/Users/lassebunk/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
154
|
-
/Users/lassebunk/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
155
|
-
|
156
|
-
|
157
|
-
Rendered /Users/lassebunk/.rvm/gems/ruby-1.9.3-p362/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
158
|
-
|
159
|
-
|
160
|
-
Started GET "/" for 127.0.0.1 at 2013-02-11 20:04:03 +0100
|
161
|
-
|
162
|
-
ActionController::RoutingError (No route matches [GET] "/"):
|
163
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
164
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
165
|
-
railties (3.2.12) lib/rails/rack/logger.rb:32:in `call_app'
|
166
|
-
railties (3.2.12) lib/rails/rack/logger.rb:16:in `block in call'
|
167
|
-
activesupport (3.2.12) lib/active_support/tagged_logging.rb:22:in `tagged'
|
168
|
-
railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
|
169
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
170
|
-
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
171
|
-
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
172
|
-
activesupport (3.2.12) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
173
|
-
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
174
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/static.rb:62:in `call'
|
175
|
-
railties (3.2.12) lib/rails/engine.rb:479:in `call'
|
176
|
-
railties (3.2.12) lib/rails/application.rb:223:in `call'
|
177
|
-
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
178
|
-
railties (3.2.12) lib/rails/rack/log_tailer.rb:17:in `call'
|
179
|
-
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
180
|
-
/Users/lassebunk/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
181
|
-
/Users/lassebunk/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
182
|
-
/Users/lassebunk/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
183
|
-
|
184
|
-
|
185
|
-
Rendered /Users/lassebunk/.rvm/gems/ruby-1.9.3-p362/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
186
|
-
|
187
|
-
|
188
|
-
Started GET "/" for 127.0.0.1 at 2013-02-11 20:04:12 +0100
|
189
|
-
Connecting to database specified by database.yml
|
190
|
-
|
191
|
-
ActionController::RoutingError (No route matches [GET] "/"):
|
192
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
193
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
194
|
-
railties (3.2.12) lib/rails/rack/logger.rb:32:in `call_app'
|
195
|
-
railties (3.2.12) lib/rails/rack/logger.rb:16:in `block in call'
|
196
|
-
activesupport (3.2.12) lib/active_support/tagged_logging.rb:22:in `tagged'
|
197
|
-
railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
|
198
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
199
|
-
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
200
|
-
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
201
|
-
activesupport (3.2.12) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
202
|
-
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
203
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/static.rb:62:in `call'
|
204
|
-
railties (3.2.12) lib/rails/engine.rb:479:in `call'
|
205
|
-
railties (3.2.12) lib/rails/application.rb:223:in `call'
|
206
|
-
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
207
|
-
railties (3.2.12) lib/rails/rack/log_tailer.rb:17:in `call'
|
208
|
-
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
209
|
-
/Users/lassebunk/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
210
|
-
/Users/lassebunk/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
211
|
-
/Users/lassebunk/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
212
|
-
|
213
|
-
|
214
|
-
Rendered /Users/lassebunk/.rvm/gems/ruby-1.9.3-p362/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (3.3ms)
|
215
|
-
|
216
|
-
|
217
|
-
Started GET "/sitemap.xml" for 127.0.0.1 at 2013-02-11 20:09:03 +0100
|
218
|
-
Connecting to database specified by database.yml
|
219
|
-
|
220
|
-
ActionController::RoutingError (uninitialized constant DynamicSitemaps::Controller):
|
221
|
-
app/controllers/sitemaps_controller.rb:2:in `<class:SitemapsControiller>'
|
222
|
-
app/controllers/sitemaps_controller.rb:1:in `<top (required)>'
|
223
|
-
|
224
|
-
|
225
|
-
Rendered /Users/lassebunk/.rvm/gems/ruby-1.9.3-p362/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (9.9ms)
|
226
|
-
|
227
|
-
|
228
|
-
Started GET "/sitemap.xml" for 127.0.0.1 at 2013-02-11 20:09:31 +0100
|
229
|
-
|
230
|
-
ActionController::RoutingError (uninitialized constant DynamicSitemaps::Controller):
|
231
|
-
app/controllers/sitemaps_controller.rb:2:in `<class:SitemapsControiller>'
|
232
|
-
app/controllers/sitemaps_controller.rb:1:in `<top (required)>'
|
233
|
-
|
234
|
-
|
235
|
-
Rendered /Users/lassebunk/.rvm/gems/ruby-1.9.3-p362/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
236
|
-
|
237
|
-
|
238
|
-
Started GET "/sitemap.xml" for 127.0.0.1 at 2013-02-11 20:10:26 +0100
|
239
|
-
Connecting to database specified by database.yml
|
240
|
-
|
241
|
-
ActionController::RoutingError (uninitialized constant DynamicSitemaps::Controller):
|
242
|
-
app/controllers/sitemaps_controller.rb:2:in `<class:SitemapsControiller>'
|
243
|
-
app/controllers/sitemaps_controller.rb:1:in `<top (required)>'
|
244
|
-
|
245
|
-
|
246
|
-
Rendered /Users/lassebunk/.rvm/gems/ruby-1.9.3-p362/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.4ms)
|
247
|
-
|
248
|
-
|
249
|
-
Started GET "/sitemap.xml" for 127.0.0.1 at 2013-02-11 20:10:47 +0100
|
250
|
-
Connecting to database specified by database.yml
|
251
|
-
|
252
|
-
LoadError (Expected /Users/lassebunk/dev/gems/dynamic_sitemaps/test/dummy/app/controllers/sitemaps_controller.rb to define SitemapsController):
|
253
|
-
activesupport (3.2.12) lib/active_support/dependencies.rb:503:in `load_missing_constant'
|
254
|
-
activesupport (3.2.12) lib/active_support/dependencies.rb:192:in `block in const_missing'
|
255
|
-
activesupport (3.2.12) lib/active_support/dependencies.rb:190:in `each'
|
256
|
-
activesupport (3.2.12) lib/active_support/dependencies.rb:190:in `const_missing'
|
257
|
-
activesupport (3.2.12) lib/active_support/inflector/methods.rb:230:in `block in constantize'
|
258
|
-
activesupport (3.2.12) lib/active_support/inflector/methods.rb:229:in `each'
|
259
|
-
activesupport (3.2.12) lib/active_support/inflector/methods.rb:229:in `constantize'
|
260
|
-
activesupport (3.2.12) lib/active_support/dependencies.rb:554:in `get'
|
261
|
-
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
|
262
|
-
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:54:in `controller'
|
263
|
-
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:32:in `call'
|
264
|
-
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
265
|
-
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
266
|
-
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
267
|
-
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:601:in `call'
|
268
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
269
|
-
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
270
|
-
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
271
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/head.rb:14:in `call'
|
272
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
273
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
274
|
-
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
275
|
-
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
276
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
277
|
-
activerecord (3.2.12) lib/active_record/query_cache.rb:64:in `call'
|
278
|
-
activerecord (3.2.12) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
279
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
280
|
-
activesupport (3.2.12) lib/active_support/callbacks.rb:405:in `_run__3526299904191347430__call__4395556399328885115__callbacks'
|
281
|
-
activesupport (3.2.12) lib/active_support/callbacks.rb:405:in `__run_callback'
|
282
|
-
activesupport (3.2.12) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
283
|
-
activesupport (3.2.12) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
284
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
285
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
286
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
287
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
288
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
289
|
-
railties (3.2.12) lib/rails/rack/logger.rb:32:in `call_app'
|
290
|
-
railties (3.2.12) lib/rails/rack/logger.rb:16:in `block in call'
|
291
|
-
activesupport (3.2.12) lib/active_support/tagged_logging.rb:22:in `tagged'
|
292
|
-
railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
|
293
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
294
|
-
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
295
|
-
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
296
|
-
activesupport (3.2.12) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
297
|
-
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
298
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/static.rb:62:in `call'
|
299
|
-
railties (3.2.12) lib/rails/engine.rb:479:in `call'
|
300
|
-
railties (3.2.12) lib/rails/application.rb:223:in `call'
|
301
|
-
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
302
|
-
railties (3.2.12) lib/rails/rack/log_tailer.rb:17:in `call'
|
303
|
-
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
304
|
-
/Users/lassebunk/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
305
|
-
/Users/lassebunk/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
306
|
-
/Users/lassebunk/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
307
|
-
|
308
|
-
|
309
|
-
Rendered /Users/lassebunk/.rvm/gems/ruby-1.9.3-p362/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
|
310
|
-
Rendered /Users/lassebunk/.rvm/gems/ruby-1.9.3-p362/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (12.5ms)
|
311
|
-
Rendered /Users/lassebunk/.rvm/gems/ruby-1.9.3-p362/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (21.6ms)
|
312
|
-
|
313
|
-
|
314
|
-
Started GET "/sitemap.xml" for 127.0.0.1 at 2013-02-11 20:12:11 +0100
|
315
|
-
Connecting to database specified by database.yml
|
316
|
-
|
317
|
-
AbstractController::ActionNotFound (The action 'sitemap' could not be found for SitemapsController):
|
318
|
-
actionpack (3.2.12) lib/abstract_controller/base.rb:116:in `process'
|
319
|
-
actionpack (3.2.12) lib/abstract_controller/rendering.rb:45:in `process'
|
320
|
-
actionpack (3.2.12) lib/action_controller/metal.rb:203:in `dispatch'
|
321
|
-
actionpack (3.2.12) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
322
|
-
actionpack (3.2.12) lib/action_controller/metal.rb:246:in `block in action'
|
323
|
-
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
324
|
-
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
325
|
-
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
326
|
-
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
327
|
-
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
328
|
-
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
329
|
-
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:601:in `call'
|
330
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
331
|
-
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
332
|
-
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
333
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/head.rb:14:in `call'
|
334
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
335
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
336
|
-
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
337
|
-
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
338
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
339
|
-
activerecord (3.2.12) lib/active_record/query_cache.rb:64:in `call'
|
340
|
-
activerecord (3.2.12) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
341
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
342
|
-
activesupport (3.2.12) lib/active_support/callbacks.rb:405:in `_run__271135205555158044__call__2883036090570030318__callbacks'
|
343
|
-
activesupport (3.2.12) lib/active_support/callbacks.rb:405:in `__run_callback'
|
344
|
-
activesupport (3.2.12) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
345
|
-
activesupport (3.2.12) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
346
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
347
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
348
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
349
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
350
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
351
|
-
railties (3.2.12) lib/rails/rack/logger.rb:32:in `call_app'
|
352
|
-
railties (3.2.12) lib/rails/rack/logger.rb:16:in `block in call'
|
353
|
-
activesupport (3.2.12) lib/active_support/tagged_logging.rb:22:in `tagged'
|
354
|
-
railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
|
355
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
356
|
-
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
357
|
-
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
358
|
-
activesupport (3.2.12) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
359
|
-
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
360
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/static.rb:62:in `call'
|
361
|
-
railties (3.2.12) lib/rails/engine.rb:479:in `call'
|
362
|
-
railties (3.2.12) lib/rails/application.rb:223:in `call'
|
363
|
-
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
364
|
-
railties (3.2.12) lib/rails/rack/log_tailer.rb:17:in `call'
|
365
|
-
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
366
|
-
/Users/lassebunk/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
367
|
-
/Users/lassebunk/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
368
|
-
/Users/lassebunk/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
369
|
-
|
370
|
-
|
371
|
-
Rendered /Users/lassebunk/.rvm/gems/ruby-1.9.3-p362/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (2.5ms)
|
372
|
-
|
373
|
-
|
374
|
-
Started GET "/sitemap.xml" for 127.0.0.1 at 2013-02-11 20:14:33 +0100
|
375
|
-
Connecting to database specified by database.yml
|
376
|
-
|
377
|
-
AbstractController::ActionNotFound (The action 'sitemap' could not be found for SitemapsController):
|
378
|
-
actionpack (3.2.12) lib/abstract_controller/base.rb:116:in `process'
|
379
|
-
actionpack (3.2.12) lib/abstract_controller/rendering.rb:45:in `process'
|
380
|
-
actionpack (3.2.12) lib/action_controller/metal.rb:203:in `dispatch'
|
381
|
-
actionpack (3.2.12) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
382
|
-
actionpack (3.2.12) lib/action_controller/metal.rb:246:in `block in action'
|
383
|
-
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
384
|
-
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
385
|
-
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
386
|
-
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
387
|
-
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
388
|
-
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
389
|
-
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:601:in `call'
|
390
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
391
|
-
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
392
|
-
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
393
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/head.rb:14:in `call'
|
394
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
395
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
396
|
-
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
397
|
-
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
398
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
399
|
-
activerecord (3.2.12) lib/active_record/query_cache.rb:64:in `call'
|
400
|
-
activerecord (3.2.12) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
401
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
402
|
-
activesupport (3.2.12) lib/active_support/callbacks.rb:405:in `_run__3255755182729380977__call__3971169119252647214__callbacks'
|
403
|
-
activesupport (3.2.12) lib/active_support/callbacks.rb:405:in `__run_callback'
|
404
|
-
activesupport (3.2.12) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
405
|
-
activesupport (3.2.12) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
406
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
407
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
408
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
409
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
410
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
411
|
-
railties (3.2.12) lib/rails/rack/logger.rb:32:in `call_app'
|
412
|
-
railties (3.2.12) lib/rails/rack/logger.rb:16:in `block in call'
|
413
|
-
activesupport (3.2.12) lib/active_support/tagged_logging.rb:22:in `tagged'
|
414
|
-
railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
|
415
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
416
|
-
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
417
|
-
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
418
|
-
activesupport (3.2.12) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
419
|
-
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
420
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/static.rb:62:in `call'
|
421
|
-
railties (3.2.12) lib/rails/engine.rb:479:in `call'
|
422
|
-
railties (3.2.12) lib/rails/application.rb:223:in `call'
|
423
|
-
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
424
|
-
railties (3.2.12) lib/rails/rack/log_tailer.rb:17:in `call'
|
425
|
-
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
426
|
-
/Users/lassebunk/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
427
|
-
/Users/lassebunk/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
428
|
-
/Users/lassebunk/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
429
|
-
|
430
|
-
|
431
|
-
Rendered /Users/lassebunk/.rvm/gems/ruby-1.9.3-p362/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (2.2ms)
|
432
|
-
|
433
|
-
|
434
|
-
Started GET "/sitemap.xml" for 127.0.0.1 at 2013-02-11 20:14:46 +0100
|
435
|
-
|
436
|
-
AbstractController::ActionNotFound (The action 'sitemap' could not be found for SitemapsController):
|
437
|
-
actionpack (3.2.12) lib/abstract_controller/base.rb:116:in `process'
|
438
|
-
actionpack (3.2.12) lib/abstract_controller/rendering.rb:45:in `process'
|
439
|
-
actionpack (3.2.12) lib/action_controller/metal.rb:203:in `dispatch'
|
440
|
-
actionpack (3.2.12) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
441
|
-
actionpack (3.2.12) lib/action_controller/metal.rb:246:in `block in action'
|
442
|
-
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
443
|
-
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
444
|
-
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
445
|
-
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
446
|
-
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
447
|
-
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
448
|
-
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:601:in `call'
|
449
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
450
|
-
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
451
|
-
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
452
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/head.rb:14:in `call'
|
453
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
454
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
455
|
-
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
456
|
-
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
457
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
458
|
-
activerecord (3.2.12) lib/active_record/query_cache.rb:64:in `call'
|
459
|
-
activerecord (3.2.12) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
460
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
461
|
-
activesupport (3.2.12) lib/active_support/callbacks.rb:405:in `_run__3255755182729380977__call__3971169119252647214__callbacks'
|
462
|
-
activesupport (3.2.12) lib/active_support/callbacks.rb:405:in `__run_callback'
|
463
|
-
activesupport (3.2.12) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
464
|
-
activesupport (3.2.12) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
465
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
466
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
467
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
468
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
469
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
470
|
-
railties (3.2.12) lib/rails/rack/logger.rb:32:in `call_app'
|
471
|
-
railties (3.2.12) lib/rails/rack/logger.rb:16:in `block in call'
|
472
|
-
activesupport (3.2.12) lib/active_support/tagged_logging.rb:22:in `tagged'
|
473
|
-
railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
|
474
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
475
|
-
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
476
|
-
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
477
|
-
activesupport (3.2.12) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
478
|
-
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
479
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/static.rb:62:in `call'
|
480
|
-
railties (3.2.12) lib/rails/engine.rb:479:in `call'
|
481
|
-
railties (3.2.12) lib/rails/application.rb:223:in `call'
|
482
|
-
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
483
|
-
railties (3.2.12) lib/rails/rack/log_tailer.rb:17:in `call'
|
484
|
-
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
485
|
-
/Users/lassebunk/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
486
|
-
/Users/lassebunk/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
487
|
-
/Users/lassebunk/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
488
|
-
|
489
|
-
|
490
|
-
Rendered /Users/lassebunk/.rvm/gems/ruby-1.9.3-p362/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.4ms)
|
491
|
-
|
492
|
-
|
493
|
-
Started GET "/sitemap.xml" for 127.0.0.1 at 2013-02-11 20:14:47 +0100
|
494
|
-
|
495
|
-
AbstractController::ActionNotFound (The action 'sitemap' could not be found for SitemapsController):
|
496
|
-
actionpack (3.2.12) lib/abstract_controller/base.rb:116:in `process'
|
497
|
-
actionpack (3.2.12) lib/abstract_controller/rendering.rb:45:in `process'
|
498
|
-
actionpack (3.2.12) lib/action_controller/metal.rb:203:in `dispatch'
|
499
|
-
actionpack (3.2.12) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
500
|
-
actionpack (3.2.12) lib/action_controller/metal.rb:246:in `block in action'
|
501
|
-
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
502
|
-
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
503
|
-
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
504
|
-
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
505
|
-
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
506
|
-
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
507
|
-
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:601:in `call'
|
508
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
509
|
-
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
510
|
-
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
511
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/head.rb:14:in `call'
|
512
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
513
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
514
|
-
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
515
|
-
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
516
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
517
|
-
activerecord (3.2.12) lib/active_record/query_cache.rb:64:in `call'
|
518
|
-
activerecord (3.2.12) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
519
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
520
|
-
activesupport (3.2.12) lib/active_support/callbacks.rb:405:in `_run__3255755182729380977__call__3971169119252647214__callbacks'
|
521
|
-
activesupport (3.2.12) lib/active_support/callbacks.rb:405:in `__run_callback'
|
522
|
-
activesupport (3.2.12) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
523
|
-
activesupport (3.2.12) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
524
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
525
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
526
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
527
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
528
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
529
|
-
railties (3.2.12) lib/rails/rack/logger.rb:32:in `call_app'
|
530
|
-
railties (3.2.12) lib/rails/rack/logger.rb:16:in `block in call'
|
531
|
-
activesupport (3.2.12) lib/active_support/tagged_logging.rb:22:in `tagged'
|
532
|
-
railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
|
533
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
534
|
-
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
535
|
-
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
536
|
-
activesupport (3.2.12) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
537
|
-
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
538
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/static.rb:62:in `call'
|
539
|
-
railties (3.2.12) lib/rails/engine.rb:479:in `call'
|
540
|
-
railties (3.2.12) lib/rails/application.rb:223:in `call'
|
541
|
-
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
542
|
-
railties (3.2.12) lib/rails/rack/log_tailer.rb:17:in `call'
|
543
|
-
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
544
|
-
/Users/lassebunk/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
545
|
-
/Users/lassebunk/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
546
|
-
/Users/lassebunk/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
547
|
-
|
548
|
-
|
549
|
-
Rendered /Users/lassebunk/.rvm/gems/ruby-1.9.3-p362/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.4ms)
|
550
|
-
|
551
|
-
|
552
|
-
Started GET "/sitemap.xml" for 127.0.0.1 at 2013-02-11 20:15:14 +0100
|
553
|
-
Connecting to database specified by database.yml
|
554
|
-
Processing by SitemapsController#sitemap as HTML
|
555
|
-
Completed 500 Internal Server Error in 13ms
|
556
|
-
|
557
|
-
ActionView::MissingTemplate (Missing template sitemaps/sitemap, application/sitemap with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in:
|
558
|
-
* "/Users/lassebunk/dev/gems/dynamic_sitemaps/test/dummy/app/views"
|
559
|
-
):
|
560
|
-
actionpack (3.2.12) lib/action_view/path_set.rb:58:in `find'
|
561
|
-
actionpack (3.2.12) lib/action_view/lookup_context.rb:109:in `find'
|
562
|
-
actionpack (3.2.12) lib/action_view/renderer/abstract_renderer.rb:3:in `find_template'
|
563
|
-
actionpack (3.2.12) lib/action_view/renderer/template_renderer.rb:34:in `determine_template'
|
564
|
-
actionpack (3.2.12) lib/action_view/renderer/template_renderer.rb:10:in `render'
|
565
|
-
actionpack (3.2.12) lib/action_view/renderer/renderer.rb:36:in `render_template'
|
566
|
-
actionpack (3.2.12) lib/action_view/renderer/renderer.rb:17:in `render'
|
567
|
-
actionpack (3.2.12) lib/abstract_controller/rendering.rb:110:in `_render_template'
|
568
|
-
actionpack (3.2.12) lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
569
|
-
actionpack (3.2.12) lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
570
|
-
actionpack (3.2.12) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
571
|
-
actionpack (3.2.12) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
572
|
-
actionpack (3.2.12) lib/abstract_controller/rendering.rb:88:in `render'
|
573
|
-
actionpack (3.2.12) lib/action_controller/metal/rendering.rb:16:in `render'
|
574
|
-
actionpack (3.2.12) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
575
|
-
activesupport (3.2.12) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
576
|
-
/Users/lassebunk/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
|
577
|
-
activesupport (3.2.12) lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
578
|
-
actionpack (3.2.12) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
579
|
-
actionpack (3.2.12) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
580
|
-
activerecord (3.2.12) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
|
581
|
-
actionpack (3.2.12) lib/action_controller/metal/instrumentation.rb:39:in `render'
|
582
|
-
actionpack (3.2.12) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
583
|
-
actionpack (3.2.12) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
|
584
|
-
actionpack (3.2.12) lib/abstract_controller/base.rb:167:in `process_action'
|
585
|
-
actionpack (3.2.12) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
586
|
-
actionpack (3.2.12) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
587
|
-
activesupport (3.2.12) lib/active_support/callbacks.rb:414:in `_run__4473529054762393215__process_action__1127827756078506268__callbacks'
|
588
|
-
activesupport (3.2.12) lib/active_support/callbacks.rb:405:in `__run_callback'
|
589
|
-
activesupport (3.2.12) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
590
|
-
activesupport (3.2.12) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
591
|
-
actionpack (3.2.12) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
592
|
-
actionpack (3.2.12) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
593
|
-
actionpack (3.2.12) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
594
|
-
activesupport (3.2.12) lib/active_support/notifications.rb:123:in `block in instrument'
|
595
|
-
activesupport (3.2.12) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
596
|
-
activesupport (3.2.12) lib/active_support/notifications.rb:123:in `instrument'
|
597
|
-
actionpack (3.2.12) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
598
|
-
actionpack (3.2.12) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
599
|
-
activerecord (3.2.12) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
600
|
-
actionpack (3.2.12) lib/abstract_controller/base.rb:121:in `process'
|
601
|
-
actionpack (3.2.12) lib/abstract_controller/rendering.rb:45:in `process'
|
602
|
-
actionpack (3.2.12) lib/action_controller/metal.rb:203:in `dispatch'
|
603
|
-
actionpack (3.2.12) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
604
|
-
actionpack (3.2.12) lib/action_controller/metal.rb:246:in `block in action'
|
605
|
-
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
606
|
-
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
607
|
-
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
608
|
-
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
609
|
-
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
610
|
-
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
611
|
-
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:601:in `call'
|
612
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
613
|
-
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
614
|
-
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
615
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/head.rb:14:in `call'
|
616
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
617
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
618
|
-
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
619
|
-
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
620
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
621
|
-
activerecord (3.2.12) lib/active_record/query_cache.rb:64:in `call'
|
622
|
-
activerecord (3.2.12) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
623
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
624
|
-
activesupport (3.2.12) lib/active_support/callbacks.rb:405:in `_run__2815341270782302515__call__2869226795389608045__callbacks'
|
625
|
-
activesupport (3.2.12) lib/active_support/callbacks.rb:405:in `__run_callback'
|
626
|
-
activesupport (3.2.12) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
627
|
-
activesupport (3.2.12) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
628
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
629
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
630
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
631
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
632
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
633
|
-
railties (3.2.12) lib/rails/rack/logger.rb:32:in `call_app'
|
634
|
-
railties (3.2.12) lib/rails/rack/logger.rb:16:in `block in call'
|
635
|
-
activesupport (3.2.12) lib/active_support/tagged_logging.rb:22:in `tagged'
|
636
|
-
railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
|
637
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
638
|
-
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
639
|
-
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
640
|
-
activesupport (3.2.12) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
641
|
-
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
642
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/static.rb:62:in `call'
|
643
|
-
railties (3.2.12) lib/rails/engine.rb:479:in `call'
|
644
|
-
railties (3.2.12) lib/rails/application.rb:223:in `call'
|
645
|
-
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
646
|
-
railties (3.2.12) lib/rails/rack/log_tailer.rb:17:in `call'
|
647
|
-
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
648
|
-
/Users/lassebunk/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
649
|
-
/Users/lassebunk/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
650
|
-
/Users/lassebunk/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
651
|
-
|
652
|
-
|
653
|
-
Rendered /Users/lassebunk/.rvm/gems/ruby-1.9.3-p362/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (3.1ms)
|
654
|
-
Connecting to database specified by database.yml
|
655
|
-
|
656
|
-
|
657
|
-
Started GET "/sitemap.xml" for 127.0.0.1 at 2013-02-11 20:26:16 +0100
|
658
|
-
Connecting to database specified by database.yml
|
659
|
-
Processing by SitemapsController#sitemap as HTML
|
660
|
-
Rendered text template (0.0ms)
|
661
|
-
Completed 200 OK in 10ms (Views: 10.0ms | ActiveRecord: 0.0ms)
|
662
|
-
|
663
|
-
|
664
|
-
Started GET "/sitemap.xml" for 127.0.0.1 at 2013-02-11 20:29:19 +0100
|
665
|
-
Connecting to database specified by database.yml
|
666
|
-
Processing by SitemapsController#sitemap as HTML
|
667
|
-
Completed 500 Internal Server Error in 0ms
|
668
|
-
|
669
|
-
NoMethodError (undefined method `render' for nil:NilClass):
|
670
|
-
/Users/lassebunk/dev/gems/dynamic_sitemaps/lib/dynamic_sitemaps/renderer.rb:12:in `render'
|
671
|
-
/Users/lassebunk/dev/gems/dynamic_sitemaps/lib/dynamic_sitemaps/controller.rb:5:in `sitemap'
|
672
|
-
actionpack (3.2.12) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
673
|
-
actionpack (3.2.12) lib/abstract_controller/base.rb:167:in `process_action'
|
674
|
-
actionpack (3.2.12) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
675
|
-
actionpack (3.2.12) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
676
|
-
activesupport (3.2.12) lib/active_support/callbacks.rb:414:in `_run__2875978891576168365__process_action__2289881836010643797__callbacks'
|
677
|
-
activesupport (3.2.12) lib/active_support/callbacks.rb:405:in `__run_callback'
|
678
|
-
activesupport (3.2.12) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
679
|
-
activesupport (3.2.12) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
680
|
-
actionpack (3.2.12) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
681
|
-
actionpack (3.2.12) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
682
|
-
actionpack (3.2.12) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
683
|
-
activesupport (3.2.12) lib/active_support/notifications.rb:123:in `block in instrument'
|
684
|
-
activesupport (3.2.12) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
685
|
-
activesupport (3.2.12) lib/active_support/notifications.rb:123:in `instrument'
|
686
|
-
actionpack (3.2.12) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
687
|
-
actionpack (3.2.12) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
688
|
-
activerecord (3.2.12) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
689
|
-
actionpack (3.2.12) lib/abstract_controller/base.rb:121:in `process'
|
690
|
-
actionpack (3.2.12) lib/abstract_controller/rendering.rb:45:in `process'
|
691
|
-
actionpack (3.2.12) lib/action_controller/metal.rb:203:in `dispatch'
|
692
|
-
actionpack (3.2.12) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
693
|
-
actionpack (3.2.12) lib/action_controller/metal.rb:246:in `block in action'
|
694
|
-
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
695
|
-
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
696
|
-
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
697
|
-
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
698
|
-
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
699
|
-
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
700
|
-
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:601:in `call'
|
701
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
702
|
-
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
703
|
-
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
704
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/head.rb:14:in `call'
|
705
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
706
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
707
|
-
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
708
|
-
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
709
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
710
|
-
activerecord (3.2.12) lib/active_record/query_cache.rb:64:in `call'
|
711
|
-
activerecord (3.2.12) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
712
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
713
|
-
activesupport (3.2.12) lib/active_support/callbacks.rb:405:in `_run__4316827157183597671__call__1660026876515645075__callbacks'
|
714
|
-
activesupport (3.2.12) lib/active_support/callbacks.rb:405:in `__run_callback'
|
715
|
-
activesupport (3.2.12) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
716
|
-
activesupport (3.2.12) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
717
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
718
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
719
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
720
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
721
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
722
|
-
railties (3.2.12) lib/rails/rack/logger.rb:32:in `call_app'
|
723
|
-
railties (3.2.12) lib/rails/rack/logger.rb:16:in `block in call'
|
724
|
-
activesupport (3.2.12) lib/active_support/tagged_logging.rb:22:in `tagged'
|
725
|
-
railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
|
726
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
727
|
-
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
728
|
-
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
729
|
-
activesupport (3.2.12) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
730
|
-
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
731
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/static.rb:62:in `call'
|
732
|
-
railties (3.2.12) lib/rails/engine.rb:479:in `call'
|
733
|
-
railties (3.2.12) lib/rails/application.rb:223:in `call'
|
734
|
-
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
735
|
-
railties (3.2.12) lib/rails/rack/log_tailer.rb:17:in `call'
|
736
|
-
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
737
|
-
/Users/lassebunk/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
738
|
-
/Users/lassebunk/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
739
|
-
/Users/lassebunk/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
740
|
-
|
741
|
-
|
742
|
-
Rendered /Users/lassebunk/.rvm/gems/ruby-1.9.3-p362/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
|
743
|
-
Rendered /Users/lassebunk/.rvm/gems/ruby-1.9.3-p362/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
|
744
|
-
Rendered /Users/lassebunk/.rvm/gems/ruby-1.9.3-p362/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.8ms)
|
745
|
-
|
746
|
-
|
747
|
-
Started GET "/sitemap.xml" for 127.0.0.1 at 2013-02-11 20:29:32 +0100
|
748
|
-
Processing by SitemapsController#sitemap as HTML
|
749
|
-
Completed 500 Internal Server Error in 0ms
|
750
|
-
|
751
|
-
NoMethodError (undefined method `render' for nil:NilClass):
|
752
|
-
/Users/lassebunk/dev/gems/dynamic_sitemaps/lib/dynamic_sitemaps/renderer.rb:12:in `render'
|
753
|
-
/Users/lassebunk/dev/gems/dynamic_sitemaps/lib/dynamic_sitemaps/controller.rb:5:in `sitemap'
|
754
|
-
actionpack (3.2.12) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
755
|
-
actionpack (3.2.12) lib/abstract_controller/base.rb:167:in `process_action'
|
756
|
-
actionpack (3.2.12) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
757
|
-
actionpack (3.2.12) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
758
|
-
activesupport (3.2.12) lib/active_support/callbacks.rb:414:in `_run__2875978891576168365__process_action__2289881836010643797__callbacks'
|
759
|
-
activesupport (3.2.12) lib/active_support/callbacks.rb:405:in `__run_callback'
|
760
|
-
activesupport (3.2.12) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
761
|
-
activesupport (3.2.12) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
762
|
-
actionpack (3.2.12) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
763
|
-
actionpack (3.2.12) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
764
|
-
actionpack (3.2.12) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
765
|
-
activesupport (3.2.12) lib/active_support/notifications.rb:123:in `block in instrument'
|
766
|
-
activesupport (3.2.12) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
767
|
-
activesupport (3.2.12) lib/active_support/notifications.rb:123:in `instrument'
|
768
|
-
actionpack (3.2.12) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
769
|
-
actionpack (3.2.12) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
770
|
-
activerecord (3.2.12) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
771
|
-
actionpack (3.2.12) lib/abstract_controller/base.rb:121:in `process'
|
772
|
-
actionpack (3.2.12) lib/abstract_controller/rendering.rb:45:in `process'
|
773
|
-
actionpack (3.2.12) lib/action_controller/metal.rb:203:in `dispatch'
|
774
|
-
actionpack (3.2.12) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
775
|
-
actionpack (3.2.12) lib/action_controller/metal.rb:246:in `block in action'
|
776
|
-
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
777
|
-
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
778
|
-
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
779
|
-
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
780
|
-
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
781
|
-
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
782
|
-
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:601:in `call'
|
783
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
784
|
-
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
785
|
-
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
786
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/head.rb:14:in `call'
|
787
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
788
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
789
|
-
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
790
|
-
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
791
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
792
|
-
activerecord (3.2.12) lib/active_record/query_cache.rb:64:in `call'
|
793
|
-
activerecord (3.2.12) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
794
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
795
|
-
activesupport (3.2.12) lib/active_support/callbacks.rb:405:in `_run__4316827157183597671__call__1660026876515645075__callbacks'
|
796
|
-
activesupport (3.2.12) lib/active_support/callbacks.rb:405:in `__run_callback'
|
797
|
-
activesupport (3.2.12) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
798
|
-
activesupport (3.2.12) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
799
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
800
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
801
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
802
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
803
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
804
|
-
railties (3.2.12) lib/rails/rack/logger.rb:32:in `call_app'
|
805
|
-
railties (3.2.12) lib/rails/rack/logger.rb:16:in `block in call'
|
806
|
-
activesupport (3.2.12) lib/active_support/tagged_logging.rb:22:in `tagged'
|
807
|
-
railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
|
808
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
809
|
-
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
810
|
-
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
811
|
-
activesupport (3.2.12) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
812
|
-
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
813
|
-
actionpack (3.2.12) lib/action_dispatch/middleware/static.rb:62:in `call'
|
814
|
-
railties (3.2.12) lib/rails/engine.rb:479:in `call'
|
815
|
-
railties (3.2.12) lib/rails/application.rb:223:in `call'
|
816
|
-
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
817
|
-
railties (3.2.12) lib/rails/rack/log_tailer.rb:17:in `call'
|
818
|
-
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
819
|
-
/Users/lassebunk/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
820
|
-
/Users/lassebunk/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
821
|
-
/Users/lassebunk/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
822
|
-
|
823
|
-
|
824
|
-
Rendered /Users/lassebunk/.rvm/gems/ruby-1.9.3-p362/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
|
825
|
-
Rendered /Users/lassebunk/.rvm/gems/ruby-1.9.3-p362/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
|
826
|
-
Rendered /Users/lassebunk/.rvm/gems/ruby-1.9.3-p362/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (20.1ms)
|
827
|
-
|
828
|
-
|
829
|
-
Started GET "/sitemap.xml" for 127.0.0.1 at 2013-02-11 20:29:40 +0100
|
830
|
-
Connecting to database specified by database.yml
|
831
|
-
Processing by SitemapsController#sitemap as HTML
|
832
|
-
Rendered text template (0.0ms)
|
833
|
-
Completed 200 OK in 10ms (Views: 9.9ms | ActiveRecord: 0.0ms)
|
834
|
-
|
835
|
-
|
836
|
-
Started GET "/sitemap.xml" for 127.0.0.1 at 2013-02-11 20:30:15 +0100
|
837
|
-
Connecting to database specified by database.yml
|
838
|
-
Processing by SitemapsController#sitemap as HTML
|
839
|
-
Rendered text template (0.0ms)
|
840
|
-
Completed 200 OK in 11ms (Views: 10.6ms | ActiveRecord: 0.0ms)
|
841
|
-
|
842
|
-
|
843
|
-
Started GET "/sitemap.xml?page=1" for 127.0.0.1 at 2013-02-11 20:30:18 +0100
|
844
|
-
Processing by SitemapsController#sitemap as HTML
|
845
|
-
Parameters: {"page"=>"1"}
|
846
|
-
Rendered text template (0.0ms)
|
847
|
-
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
848
|
-
|
849
|
-
|
850
|
-
Started GET "/sitemap.xml?page=1000" for 127.0.0.1 at 2013-02-11 20:30:20 +0100
|
851
|
-
Processing by SitemapsController#sitemap as HTML
|
852
|
-
Parameters: {"page"=>"1000"}
|
853
|
-
Rendered text template (0.0ms)
|
854
|
-
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
855
|
-
|
856
|
-
|
857
|
-
Started GET "/sitemap.xml" for 127.0.0.1 at 2013-02-11 20:32:16 +0100
|
858
|
-
Connecting to database specified by database.yml
|
859
|
-
Processing by SitemapsController#sitemap as HTML
|
860
|
-
Rendered text template (0.0ms)
|
861
|
-
Completed 200 OK in 10ms (Views: 10.0ms | ActiveRecord: 0.0ms)
|
862
|
-
|
863
|
-
|
864
|
-
Started GET "/sitemap.xml?page=1" for 127.0.0.1 at 2013-02-11 20:32:18 +0100
|
865
|
-
Processing by SitemapsController#sitemap as HTML
|
866
|
-
Parameters: {"page"=>"1"}
|
867
|
-
Rendered text template (0.0ms)
|
868
|
-
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
869
|
-
|
870
|
-
|
871
|
-
Started GET "/sitemap.xml?page=10002" for 127.0.0.1 at 2013-02-11 20:32:20 +0100
|
872
|
-
Processing by SitemapsController#sitemap as HTML
|
873
|
-
Parameters: {"page"=>"10002"}
|
874
|
-
Rendered text template (0.0ms)
|
875
|
-
Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
876
|
-
|
877
|
-
|
878
|
-
Started GET "/sitemap.xml?page=1" for 127.0.0.1 at 2013-02-11 20:32:22 +0100
|
879
|
-
Processing by SitemapsController#sitemap as HTML
|
880
|
-
Parameters: {"page"=>"1"}
|
881
|
-
Rendered text template (0.0ms)
|
882
|
-
Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
883
|
-
|
884
|
-
|
885
|
-
Started GET "/sitemap.xml?page=1" for 127.0.0.1 at 2013-02-11 20:33:06 +0100
|
886
|
-
Processing by SitemapsController#sitemap as HTML
|
887
|
-
Parameters: {"page"=>"1"}
|
888
|
-
Rendered text template (0.0ms)
|
889
|
-
Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
890
|
-
|
891
|
-
|
892
|
-
Started GET "/sitemap.xml?page=1" for 127.0.0.1 at 2013-02-11 20:34:41 +0100
|
893
|
-
Connecting to database specified by database.yml
|
894
|
-
Processing by SitemapsController#sitemap as HTML
|
895
|
-
Parameters: {"page"=>"1"}
|
896
|
-
Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
897
|
-
|
898
|
-
|
899
|
-
Started GET "/sitemap.xml?page=1" for 127.0.0.1 at 2013-02-11 20:36:07 +0100
|
900
|
-
Processing by SitemapsController#sitemap as HTML
|
901
|
-
Parameters: {"page"=>"1"}
|
902
|
-
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|