path_rewrite 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/Rakefile +26 -0
- data/app/controllers/path_rewrite/path_controller.rb +15 -0
- data/app/models/path_rewrite/path_translation.rb +4 -0
- data/config/routes.rb +7 -0
- data/db/migrate/20150618003028_create_path_rewrite_path_translations.rb +10 -0
- data/lib/path_rewrite.rb +6 -0
- data/lib/path_rewrite/configuration.rb +27 -0
- data/lib/path_rewrite/engine.rb +10 -0
- data/lib/path_rewrite/version.rb +3 -0
- data/lib/tasks/path_rewrite_tasks.rake +4 -0
- data/spec/controllers/path_rewrite/path_controller_spec.rb +30 -0
- data/spec/lib/path_rewrite/configuration_spec.rb +33 -0
- data/spec/rails_helper.rb +50 -0
- data/spec/rcov_exclude_list.rb +4 -0
- data/spec/routing/routes_spec.rb +51 -0
- data/spec/spec_helper.rb +83 -0
- data/spec/test_app/README.rdoc +28 -0
- data/spec/test_app/Rakefile +6 -0
- data/spec/test_app/app/assets/javascripts/application.js +13 -0
- data/spec/test_app/app/assets/stylesheets/application.css +15 -0
- data/spec/test_app/app/controllers/application_controller.rb +5 -0
- data/spec/test_app/app/helpers/application_helper.rb +2 -0
- data/spec/test_app/app/views/layouts/application.html.erb +14 -0
- data/spec/test_app/bin/bundle +3 -0
- data/spec/test_app/bin/rails +4 -0
- data/spec/test_app/bin/rake +4 -0
- data/spec/test_app/bin/setup +29 -0
- data/spec/test_app/config.ru +4 -0
- data/spec/test_app/config/application.rb +32 -0
- data/spec/test_app/config/boot.rb +5 -0
- data/spec/test_app/config/database.yml +25 -0
- data/spec/test_app/config/environment.rb +5 -0
- data/spec/test_app/config/environments/development.rb +41 -0
- data/spec/test_app/config/environments/production.rb +79 -0
- data/spec/test_app/config/environments/test.rb +42 -0
- data/spec/test_app/config/initializers/assets.rb +11 -0
- data/spec/test_app/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/test_app/config/initializers/cookies_serializer.rb +3 -0
- data/spec/test_app/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/test_app/config/initializers/inflections.rb +16 -0
- data/spec/test_app/config/initializers/mime_types.rb +4 -0
- data/spec/test_app/config/initializers/session_store.rb +3 -0
- data/spec/test_app/config/initializers/wrap_parameters.rb +14 -0
- data/spec/test_app/config/locales/en.yml +23 -0
- data/spec/test_app/config/routes.rb +5 -0
- data/spec/test_app/config/secrets.yml +22 -0
- data/spec/test_app/db/development.sqlite3 +0 -0
- data/spec/test_app/db/schema.rb +23 -0
- data/spec/test_app/db/test.sqlite3 +0 -0
- data/spec/test_app/log/development.log +121 -0
- data/spec/test_app/log/test.log +760 -0
- data/spec/test_app/public/404.html +67 -0
- data/spec/test_app/public/422.html +67 -0
- data/spec/test_app/public/500.html +66 -0
- data/spec/test_app/public/favicon.ico +0 -0
- metadata +231 -0
@@ -0,0 +1,22 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Your secret key is used for verifying the integrity of signed cookies.
|
4
|
+
# If you change this key, all old signed cookies will become invalid!
|
5
|
+
|
6
|
+
# Make sure the secret is at least 30 characters and all random,
|
7
|
+
# no regular words or you'll be exposed to dictionary attacks.
|
8
|
+
# You can use `rake secret` to generate a secure secret key.
|
9
|
+
|
10
|
+
# Make sure the secrets in this file are kept private
|
11
|
+
# if you're sharing your code publicly.
|
12
|
+
|
13
|
+
development:
|
14
|
+
secret_key_base: 2ca538d78ef2f776762de0330e129e40a8e93b1b1d5a8b47936822a411998298bee75a9ab15f3e383d3c81b57edfdf2bd6feb945094be093ec0cb2a1165636d0
|
15
|
+
|
16
|
+
test:
|
17
|
+
secret_key_base: 9629717f2a57f437dd91b328dc8b9384b277192479ae3ed46f7f9c2d2d456cdec0521078f35a69472bed8e576ab1e9fe61934b85427a590dd626014e7ada193e
|
18
|
+
|
19
|
+
# Do not keep production secrets in the repository,
|
20
|
+
# instead read values from the environment.
|
21
|
+
production:
|
22
|
+
secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
|
Binary file
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
# This file is auto-generated from the current state of the database. Instead
|
3
|
+
# of editing this file, please use the migrations feature of Active Record to
|
4
|
+
# incrementally modify your database, and then regenerate this schema definition.
|
5
|
+
#
|
6
|
+
# Note that this schema.rb definition is the authoritative source for your
|
7
|
+
# database schema. If you need to create the application database on another
|
8
|
+
# system, you should be using db:schema:load, not running all the migrations
|
9
|
+
# from scratch. The latter is a flawed and unsustainable approach (the more migrations
|
10
|
+
# you'll amass, the slower it'll run and the greater likelihood for issues).
|
11
|
+
#
|
12
|
+
# It's strongly recommended that you check this file into your version control system.
|
13
|
+
|
14
|
+
ActiveRecord::Schema.define(version: 20150618003028) do
|
15
|
+
|
16
|
+
create_table "path_rewrite_path_translations", force: :cascade do |t|
|
17
|
+
t.string "old_path"
|
18
|
+
t.string "new_path"
|
19
|
+
t.datetime "created_at", null: false
|
20
|
+
t.datetime "updated_at", null: false
|
21
|
+
end
|
22
|
+
|
23
|
+
end
|
Binary file
|
@@ -0,0 +1,121 @@
|
|
1
|
+
[1m[36m (7.6ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
2
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
3
|
+
[1m[36m (1.4ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
4
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
5
|
+
Migrating to CreatePathRewritePathTranslations (20150618003028)
|
6
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
7
|
+
[1m[35m (0.5ms)[0m CREATE TABLE "path_rewrite_path_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "old_path" varchar, "new_path" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
8
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20150618003028"]]
|
9
|
+
[1m[35m (0.9ms)[0m commit transaction
|
10
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
11
|
+
|
12
|
+
|
13
|
+
Started GET "/some_path" for 127.0.0.1 at 2015-06-19 12:44:48 -0700
|
14
|
+
[1m[36mPathRewrite::PathTranslation Load (0.4ms)[0m [1mSELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1[0m [["old_path", "/some_path"]]
|
15
|
+
|
16
|
+
ActionController::RoutingError (No route matches [GET] "/some_path"):
|
17
|
+
actionpack (4.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
18
|
+
actionpack (4.2.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
19
|
+
railties (4.2.2) lib/rails/rack/logger.rb:38:in `call_app'
|
20
|
+
railties (4.2.2) lib/rails/rack/logger.rb:20:in `block in call'
|
21
|
+
activesupport (4.2.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
22
|
+
activesupport (4.2.2) lib/active_support/tagged_logging.rb:26:in `tagged'
|
23
|
+
activesupport (4.2.2) lib/active_support/tagged_logging.rb:68:in `tagged'
|
24
|
+
railties (4.2.2) lib/rails/rack/logger.rb:20:in `call'
|
25
|
+
actionpack (4.2.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
26
|
+
rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
|
27
|
+
rack (1.6.4) lib/rack/runtime.rb:18:in `call'
|
28
|
+
activesupport (4.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
29
|
+
rack (1.6.4) lib/rack/lock.rb:17:in `call'
|
30
|
+
actionpack (4.2.2) lib/action_dispatch/middleware/static.rb:113:in `call'
|
31
|
+
rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
|
32
|
+
railties (4.2.2) lib/rails/engine.rb:518:in `call'
|
33
|
+
railties (4.2.2) lib/rails/application.rb:164:in `call'
|
34
|
+
rack (1.6.4) lib/rack/lock.rb:17:in `call'
|
35
|
+
rack (1.6.4) lib/rack/content_length.rb:15:in `call'
|
36
|
+
rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
|
37
|
+
/Users/mtucker/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
|
38
|
+
/Users/mtucker/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
|
39
|
+
/Users/mtucker/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
|
40
|
+
|
41
|
+
|
42
|
+
Rendered /Users/mtucker/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
|
43
|
+
Rendered /Users/mtucker/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms)
|
44
|
+
Rendered /Users/mtucker/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.2ms)
|
45
|
+
Rendered /Users/mtucker/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (7.7ms)
|
46
|
+
Rendered /Users/mtucker/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (8.4ms)
|
47
|
+
Rendered /Users/mtucker/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (95.1ms)
|
48
|
+
|
49
|
+
|
50
|
+
Started GET "/some_path" for 127.0.0.1 at 2015-06-19 12:45:13 -0700
|
51
|
+
[1m[35mPathRewrite::PathTranslation Load (0.1ms)[0m SELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1 [["old_path", "/some_path"]]
|
52
|
+
|
53
|
+
ActionController::RoutingError (No route matches [GET] "/some_path"):
|
54
|
+
actionpack (4.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
55
|
+
actionpack (4.2.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
56
|
+
railties (4.2.2) lib/rails/rack/logger.rb:38:in `call_app'
|
57
|
+
railties (4.2.2) lib/rails/rack/logger.rb:20:in `block in call'
|
58
|
+
activesupport (4.2.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
59
|
+
activesupport (4.2.2) lib/active_support/tagged_logging.rb:26:in `tagged'
|
60
|
+
activesupport (4.2.2) lib/active_support/tagged_logging.rb:68:in `tagged'
|
61
|
+
railties (4.2.2) lib/rails/rack/logger.rb:20:in `call'
|
62
|
+
actionpack (4.2.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
63
|
+
rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
|
64
|
+
rack (1.6.4) lib/rack/runtime.rb:18:in `call'
|
65
|
+
activesupport (4.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
66
|
+
rack (1.6.4) lib/rack/lock.rb:17:in `call'
|
67
|
+
actionpack (4.2.2) lib/action_dispatch/middleware/static.rb:113:in `call'
|
68
|
+
rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
|
69
|
+
railties (4.2.2) lib/rails/engine.rb:518:in `call'
|
70
|
+
railties (4.2.2) lib/rails/application.rb:164:in `call'
|
71
|
+
rack (1.6.4) lib/rack/lock.rb:17:in `call'
|
72
|
+
rack (1.6.4) lib/rack/content_length.rb:15:in `call'
|
73
|
+
rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
|
74
|
+
/Users/mtucker/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
|
75
|
+
/Users/mtucker/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
|
76
|
+
/Users/mtucker/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
|
77
|
+
|
78
|
+
|
79
|
+
Rendered /Users/mtucker/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
|
80
|
+
Rendered /Users/mtucker/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
|
81
|
+
Rendered /Users/mtucker/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.2ms)
|
82
|
+
Rendered /Users/mtucker/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms)
|
83
|
+
Rendered /Users/mtucker/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
|
84
|
+
Rendered /Users/mtucker/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (69.8ms)
|
85
|
+
|
86
|
+
|
87
|
+
Started GET "/some_path" for 127.0.0.1 at 2015-06-19 12:45:15 -0700
|
88
|
+
[1m[36mPathRewrite::PathTranslation Load (0.1ms)[0m [1mSELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1[0m [["old_path", "/some_path"]]
|
89
|
+
|
90
|
+
ActionController::RoutingError (No route matches [GET] "/some_path"):
|
91
|
+
actionpack (4.2.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
92
|
+
actionpack (4.2.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
93
|
+
railties (4.2.2) lib/rails/rack/logger.rb:38:in `call_app'
|
94
|
+
railties (4.2.2) lib/rails/rack/logger.rb:20:in `block in call'
|
95
|
+
activesupport (4.2.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
96
|
+
activesupport (4.2.2) lib/active_support/tagged_logging.rb:26:in `tagged'
|
97
|
+
activesupport (4.2.2) lib/active_support/tagged_logging.rb:68:in `tagged'
|
98
|
+
railties (4.2.2) lib/rails/rack/logger.rb:20:in `call'
|
99
|
+
actionpack (4.2.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
100
|
+
rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
|
101
|
+
rack (1.6.4) lib/rack/runtime.rb:18:in `call'
|
102
|
+
activesupport (4.2.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
103
|
+
rack (1.6.4) lib/rack/lock.rb:17:in `call'
|
104
|
+
actionpack (4.2.2) lib/action_dispatch/middleware/static.rb:113:in `call'
|
105
|
+
rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
|
106
|
+
railties (4.2.2) lib/rails/engine.rb:518:in `call'
|
107
|
+
railties (4.2.2) lib/rails/application.rb:164:in `call'
|
108
|
+
rack (1.6.4) lib/rack/lock.rb:17:in `call'
|
109
|
+
rack (1.6.4) lib/rack/content_length.rb:15:in `call'
|
110
|
+
rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
|
111
|
+
/Users/mtucker/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
|
112
|
+
/Users/mtucker/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
|
113
|
+
/Users/mtucker/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
|
114
|
+
|
115
|
+
|
116
|
+
Rendered /Users/mtucker/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
|
117
|
+
Rendered /Users/mtucker/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
|
118
|
+
Rendered /Users/mtucker/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.2ms)
|
119
|
+
Rendered /Users/mtucker/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms)
|
120
|
+
Rendered /Users/mtucker/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
|
121
|
+
Rendered /Users/mtucker/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (67.6ms)
|
@@ -0,0 +1,760 @@
|
|
1
|
+
[1m[36m (7.1ms)[0m [1mCREATE TABLE "path_rewrite_path_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "old_path" varchar, "new_path" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
2
|
+
[1m[35m (1.2ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
3
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
4
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
5
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
6
|
+
[1m[35m (0.7ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150618003028')
|
7
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
8
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
9
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
10
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
11
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
12
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
13
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
14
|
+
[1m[35m (0.1ms)[0m begin transaction
|
15
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
16
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
17
|
+
[1m[35m (0.1ms)[0m begin transaction
|
18
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
19
|
+
[1m[35m (0.1ms)[0m begin transaction
|
20
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
21
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
22
|
+
[1m[35m (0.1ms)[0m begin transaction
|
23
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
24
|
+
[1m[35m (0.0ms)[0m begin transaction
|
25
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
26
|
+
[1m[35m (0.0ms)[0m begin transaction
|
27
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
28
|
+
[1m[35m (0.0ms)[0m begin transaction
|
29
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
30
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
31
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
32
|
+
[1m[35m (0.1ms)[0m begin transaction
|
33
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
34
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
35
|
+
[1m[35m (0.1ms)[0m begin transaction
|
36
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
37
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
38
|
+
[1m[35m (0.2ms)[0m begin transaction
|
39
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
40
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
41
|
+
[1m[35m (0.2ms)[0m begin transaction
|
42
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
43
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
44
|
+
[1m[35m (0.2ms)[0m begin transaction
|
45
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
46
|
+
[1m[35mSQL (0.9ms)[0m INSERT INTO "path_rewrite_path_translations" ("old_path", "new_path", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["old_path", "/test"], ["new_path", "/captured"], ["created_at", "2015-06-19 18:09:48.690527"], ["updated_at", "2015-06-19 18:09:48.690527"]]
|
47
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
48
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
49
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
50
|
+
[1m[35m (0.1ms)[0m begin transaction
|
51
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
52
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "path_rewrite_path_translations" ("old_path", "new_path", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["old_path", "/test"], ["new_path", "/captured"], ["created_at", "2015-06-19 18:09:57.896199"], ["updated_at", "2015-06-19 18:09:57.896199"]]
|
53
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
54
|
+
[1m[35m (6.4ms)[0m rollback transaction
|
55
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
56
|
+
[1m[35m (0.2ms)[0m begin transaction
|
57
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
58
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "path_rewrite_path_translations" ("old_path", "new_path", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["old_path", "/test"], ["new_path", "/captured"], ["created_at", "2015-06-19 18:10:47.750517"], ["updated_at", "2015-06-19 18:10:47.750517"]]
|
59
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60
|
+
[1m[35m (6.4ms)[0m rollback transaction
|
61
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
62
|
+
[1m[35m (0.2ms)[0m begin transaction
|
63
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
64
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "path_rewrite_path_translations" ("old_path", "new_path", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["old_path", "/test"], ["new_path", "/captured"], ["created_at", "2015-06-19 18:12:41.174547"], ["updated_at", "2015-06-19 18:12:41.174547"]]
|
65
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
66
|
+
[1m[35m (6.4ms)[0m rollback transaction
|
67
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
68
|
+
[1m[35m (0.2ms)[0m begin transaction
|
69
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
70
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "path_rewrite_path_translations" ("old_path", "new_path", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["old_path", "/test"], ["new_path", "/captured"], ["created_at", "2015-06-19 18:14:54.082087"], ["updated_at", "2015-06-19 18:14:54.082087"]]
|
71
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
72
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
73
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
74
|
+
[1m[35m (0.2ms)[0m begin transaction
|
75
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
76
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "path_rewrite_path_translations" ("old_path", "new_path", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["old_path", "/test"], ["new_path", "/captured"], ["created_at", "2015-06-19 18:15:09.273526"], ["updated_at", "2015-06-19 18:15:09.273526"]]
|
77
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
78
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
79
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
80
|
+
[1m[35m (0.2ms)[0m begin transaction
|
81
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
82
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "path_rewrite_path_translations" ("old_path", "new_path", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["old_path", "/test"], ["new_path", "/captured"], ["created_at", "2015-06-19 18:16:00.224664"], ["updated_at", "2015-06-19 18:16:00.224664"]]
|
83
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
84
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
85
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
86
|
+
[1m[35m (0.2ms)[0m begin transaction
|
87
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
88
|
+
[1m[35mSQL (1.1ms)[0m INSERT INTO "path_rewrite_path_translations" ("old_path", "new_path", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["old_path", "/test"], ["new_path", "/captured"], ["created_at", "2015-06-19 18:17:02.233964"], ["updated_at", "2015-06-19 18:17:02.233964"]]
|
89
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
90
|
+
[1m[35m (6.5ms)[0m rollback transaction
|
91
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
92
|
+
[1m[35m (0.2ms)[0m begin transaction
|
93
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
94
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "path_rewrite_path_translations" ("old_path", "new_path", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["old_path", "/test"], ["new_path", "/captured"], ["created_at", "2015-06-19 18:18:33.200143"], ["updated_at", "2015-06-19 18:18:33.200143"]]
|
95
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
96
|
+
[1m[35m (6.5ms)[0m rollback transaction
|
97
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
98
|
+
[1m[35m (0.2ms)[0m begin transaction
|
99
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
100
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "path_rewrite_path_translations" ("old_path", "new_path", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["old_path", "/test"], ["new_path", "/captured"], ["created_at", "2015-06-19 18:19:32.547292"], ["updated_at", "2015-06-19 18:19:32.547292"]]
|
101
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
102
|
+
[1m[35m (6.5ms)[0m rollback transaction
|
103
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
104
|
+
[1m[35m (0.1ms)[0m begin transaction
|
105
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
106
|
+
[1m[35mSQL (1.0ms)[0m INSERT INTO "path_rewrite_path_translations" ("old_path", "new_path", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["old_path", "/test"], ["new_path", "/captured"], ["created_at", "2015-06-19 19:49:18.645016"], ["updated_at", "2015-06-19 19:49:18.645016"]]
|
107
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
108
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
109
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
110
|
+
[1m[35m (0.1ms)[0m begin transaction
|
111
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
112
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "path_rewrite_path_translations" ("old_path", "new_path", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["old_path", "/test"], ["new_path", "/captured"], ["created_at", "2015-06-19 19:49:51.234455"], ["updated_at", "2015-06-19 19:49:51.234455"]]
|
113
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
114
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
115
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
116
|
+
[1m[35m (0.1ms)[0m begin transaction
|
117
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
118
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "path_rewrite_path_translations" ("old_path", "new_path", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["old_path", "/test"], ["new_path", "/captured"], ["created_at", "2015-06-19 19:52:04.820833"], ["updated_at", "2015-06-19 19:52:04.820833"]]
|
119
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
120
|
+
[1m[35m (6.4ms)[0m rollback transaction
|
121
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
122
|
+
[1m[35m (0.1ms)[0m begin transaction
|
123
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
124
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "path_rewrite_path_translations" ("old_path", "new_path", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["old_path", "/test"], ["new_path", "/captured"], ["created_at", "2015-06-19 19:52:32.421800"], ["updated_at", "2015-06-19 19:52:32.421800"]]
|
125
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
126
|
+
Processing by PathRewrite::PathController#rewrite as HTML
|
127
|
+
Parameters: {"path"=>"test"}
|
128
|
+
[1m[35mPathRewrite::PathTranslation Load (0.1ms)[0m SELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1 [["old_path", "/test"]]
|
129
|
+
Redirecting /test to /captured from request http://test.host/?action=rewrite&path=test
|
130
|
+
Redirected to http://test.host/captured
|
131
|
+
Completed 301 Moved Permanently in 12ms (ActiveRecord: 0.1ms)
|
132
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
133
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
134
|
+
[1m[35m (0.1ms)[0m begin transaction
|
135
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
136
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "path_rewrite_path_translations" ("old_path", "new_path", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["old_path", "/test"], ["new_path", "/captured"], ["created_at", "2015-06-19 19:52:45.492540"], ["updated_at", "2015-06-19 19:52:45.492540"]]
|
137
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
138
|
+
Processing by PathRewrite::PathController#rewrite as HTML
|
139
|
+
Parameters: {"path"=>"test"}
|
140
|
+
[1m[35mPathRewrite::PathTranslation Load (0.1ms)[0m SELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1 [["old_path", "/test"]]
|
141
|
+
Redirecting /test to /captured from request http://test.host/?action=rewrite&path=test
|
142
|
+
Redirected to http://test.host/captured
|
143
|
+
Completed 301 Moved Permanently in 4ms (ActiveRecord: 0.1ms)
|
144
|
+
[1m[36m (6.5ms)[0m [1mrollback transaction[0m
|
145
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
146
|
+
[1m[35m (0.2ms)[0m begin transaction
|
147
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
148
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "path_rewrite_path_translations" ("old_path", "new_path", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["old_path", "/test"], ["new_path", "/captured"], ["created_at", "2015-06-19 19:53:23.901657"], ["updated_at", "2015-06-19 19:53:23.901657"]]
|
149
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
150
|
+
Processing by PathRewrite::PathController#rewrite as HTML
|
151
|
+
Parameters: {"path"=>"test"}
|
152
|
+
[1m[35mPathRewrite::PathTranslation Load (0.2ms)[0m SELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1 [["old_path", "/test"]]
|
153
|
+
Redirecting /test to /captured from request http://test.host/?action=rewrite&path=test
|
154
|
+
Redirected to http://test.host/captured
|
155
|
+
Completed 301 Moved Permanently in 5809ms (ActiveRecord: 0.2ms)
|
156
|
+
[1m[36m (6.5ms)[0m [1mrollback transaction[0m
|
157
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
158
|
+
[1m[35m (0.1ms)[0m begin transaction
|
159
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
160
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "path_rewrite_path_translations" ("old_path", "new_path", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["old_path", "/test"], ["new_path", "/captured"], ["created_at", "2015-06-19 19:56:11.920725"], ["updated_at", "2015-06-19 19:56:11.920725"]]
|
161
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
162
|
+
Processing by PathRewrite::PathController#rewrite as HTML
|
163
|
+
Parameters: {"path"=>"test"}
|
164
|
+
[1m[35mPathRewrite::PathTranslation Load (0.1ms)[0m SELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1 [["old_path", "/test"]]
|
165
|
+
Redirecting /test to /captured from request http://test.host/test
|
166
|
+
Redirected to http://test.host/captured
|
167
|
+
Completed 301 Moved Permanently in 4ms (ActiveRecord: 0.1ms)
|
168
|
+
[1m[36m (6.4ms)[0m [1mrollback transaction[0m
|
169
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
170
|
+
[1m[35m (0.2ms)[0m begin transaction
|
171
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
172
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "path_rewrite_path_translations" ("old_path", "new_path", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["old_path", "/test"], ["new_path", "/captured"], ["created_at", "2015-06-19 19:56:27.482340"], ["updated_at", "2015-06-19 19:56:27.482340"]]
|
173
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
174
|
+
[1m[35m (6.4ms)[0m rollback transaction
|
175
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
176
|
+
[1m[35m (0.2ms)[0m begin transaction
|
177
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
178
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "path_rewrite_path_translations" ("old_path", "new_path", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["old_path", "/test"], ["new_path", "/captured"], ["created_at", "2015-06-19 19:56:38.338555"], ["updated_at", "2015-06-19 19:56:38.338555"]]
|
179
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
180
|
+
Processing by PathRewrite::PathController#rewrite as HTML
|
181
|
+
Parameters: {"path"=>"test"}
|
182
|
+
[1m[35mPathRewrite::PathTranslation Load (0.3ms)[0m SELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1 [["old_path", "/test"]]
|
183
|
+
Redirecting /test to /captured from request http://test.host/test
|
184
|
+
Redirected to http://test.host/captured
|
185
|
+
Completed 301 Moved Permanently in 3732ms (ActiveRecord: 0.2ms)
|
186
|
+
[1m[36m (6.5ms)[0m [1mrollback transaction[0m
|
187
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
188
|
+
[1m[35m (0.1ms)[0m begin transaction
|
189
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
190
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "path_rewrite_path_translations" ("old_path", "new_path", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["old_path", "/test"], ["new_path", "/captured"], ["created_at", "2015-06-19 19:57:29.843190"], ["updated_at", "2015-06-19 19:57:29.843190"]]
|
191
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
192
|
+
Processing by PathRewrite::PathController#rewrite as HTML
|
193
|
+
Parameters: {"path"=>"test"}
|
194
|
+
[1m[35mPathRewrite::PathTranslation Load (0.1ms)[0m SELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1 [["old_path", "/test"]]
|
195
|
+
Redirecting /test to /captured from request http://test.host/test
|
196
|
+
Redirected to http://test.host/captured
|
197
|
+
Completed 301 Moved Permanently in 4ms (ActiveRecord: 0.1ms)
|
198
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
199
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
200
|
+
[1m[35m (0.1ms)[0m begin transaction
|
201
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
202
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "path_rewrite_path_translations" ("old_path", "new_path", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["old_path", "/test"], ["new_path", "/captured"], ["created_at", "2015-06-19 19:57:36.461397"], ["updated_at", "2015-06-19 19:57:36.461397"]]
|
203
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
204
|
+
Processing by PathRewrite::PathController#rewrite as HTML
|
205
|
+
Parameters: {"path"=>"test"}
|
206
|
+
[1m[35mPathRewrite::PathTranslation Load (0.1ms)[0m SELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1 [["old_path", "/test"]]
|
207
|
+
Redirecting /test to /captured from request http://test.host/test
|
208
|
+
Redirected to http://test.host/captured
|
209
|
+
Completed 301 Moved Permanently in 4ms (ActiveRecord: 0.1ms)
|
210
|
+
[1m[36m (6.4ms)[0m [1mrollback transaction[0m
|
211
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
212
|
+
[1m[35m (0.1ms)[0m begin transaction
|
213
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
214
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "path_rewrite_path_translations" ("old_path", "new_path", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["old_path", "/test"], ["new_path", "/captured"], ["created_at", "2015-06-19 19:57:59.530698"], ["updated_at", "2015-06-19 19:57:59.530698"]]
|
215
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
216
|
+
Processing by PathRewrite::PathController#rewrite as HTML
|
217
|
+
Parameters: {"path"=>"test"}
|
218
|
+
[1m[35mPathRewrite::PathTranslation Load (0.1ms)[0m SELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1 [["old_path", "/test"]]
|
219
|
+
Redirecting /test to /captured from request http://test.host/test
|
220
|
+
Redirected to http://test.host/captured
|
221
|
+
Completed 301 Moved Permanently in 4ms (ActiveRecord: 0.1ms)
|
222
|
+
[1m[36m (6.3ms)[0m [1mrollback transaction[0m
|
223
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
224
|
+
[1m[35m (0.1ms)[0m begin transaction
|
225
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
226
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "path_rewrite_path_translations" ("old_path", "new_path", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["old_path", "/test"], ["new_path", "/captured"], ["created_at", "2015-06-19 19:58:07.935194"], ["updated_at", "2015-06-19 19:58:07.935194"]]
|
227
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
228
|
+
Processing by PathRewrite::PathController#rewrite as HTML
|
229
|
+
Parameters: {"path"=>"test"}
|
230
|
+
[1m[35mPathRewrite::PathTranslation Load (0.1ms)[0m SELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1 [["old_path", "/test"]]
|
231
|
+
Redirecting /test to /captured from request http://test.host/test
|
232
|
+
Redirected to http://test.host/captured
|
233
|
+
Completed 301 Moved Permanently in 5ms (ActiveRecord: 0.1ms)
|
234
|
+
[1m[36m (6.4ms)[0m [1mrollback transaction[0m
|
235
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
236
|
+
[1m[35m (0.1ms)[0m begin transaction
|
237
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
238
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "path_rewrite_path_translations" ("old_path", "new_path", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["old_path", "/test"], ["new_path", "/captured"], ["created_at", "2015-06-19 19:58:20.996456"], ["updated_at", "2015-06-19 19:58:20.996456"]]
|
239
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
240
|
+
Processing by PathRewrite::PathController#rewrite as HTML
|
241
|
+
Parameters: {"path"=>"test"}
|
242
|
+
[1m[35mPathRewrite::PathTranslation Load (0.1ms)[0m SELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1 [["old_path", "/test"]]
|
243
|
+
Redirecting /test to /captured from request http://test.host/test
|
244
|
+
Redirected to http://test.host/captured
|
245
|
+
Completed 301 Moved Permanently in 4ms (ActiveRecord: 0.1ms)
|
246
|
+
[1m[36m (6.4ms)[0m [1mrollback transaction[0m
|
247
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
248
|
+
[1m[35m (0.1ms)[0m begin transaction
|
249
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
250
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "path_rewrite_path_translations" ("old_path", "new_path", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["old_path", "/test"], ["new_path", "/captured"], ["created_at", "2015-06-19 19:58:28.814709"], ["updated_at", "2015-06-19 19:58:28.814709"]]
|
251
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
252
|
+
Processing by PathRewrite::PathController#rewrite as HTML
|
253
|
+
Parameters: {"path"=>"test"}
|
254
|
+
[1m[35mPathRewrite::PathTranslation Load (0.1ms)[0m SELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1 [["old_path", "/test"]]
|
255
|
+
Redirecting /test to /captured from request http://test.host/test
|
256
|
+
Redirected to http://test.host/captured
|
257
|
+
Completed 301 Moved Permanently in 5ms (ActiveRecord: 0.1ms)
|
258
|
+
[1m[36m (6.5ms)[0m [1mrollback transaction[0m
|
259
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
260
|
+
[1m[35m (0.1ms)[0m begin transaction
|
261
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
262
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "path_rewrite_path_translations" ("old_path", "new_path", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["old_path", "/test"], ["new_path", "/captured"], ["created_at", "2015-06-19 19:59:35.434083"], ["updated_at", "2015-06-19 19:59:35.434083"]]
|
263
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
264
|
+
Processing by PathRewrite::PathController#rewrite as HTML
|
265
|
+
Parameters: {"path"=>"test"}
|
266
|
+
[1m[35mPathRewrite::PathTranslation Load (0.1ms)[0m SELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1 [["old_path", "/test"]]
|
267
|
+
Redirecting /test to /captured from request http://test.host/test
|
268
|
+
Redirected to http://test.host/captured
|
269
|
+
Completed 301 Moved Permanently in 4ms (ActiveRecord: 0.1ms)
|
270
|
+
[1m[36m (6.5ms)[0m [1mrollback transaction[0m
|
271
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
272
|
+
[1m[35m (0.1ms)[0m begin transaction
|
273
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
274
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "path_rewrite_path_translations" ("old_path", "new_path", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["old_path", "/test"], ["new_path", "/captured"], ["created_at", "2015-06-19 20:01:54.077015"], ["updated_at", "2015-06-19 20:01:54.077015"]]
|
275
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
276
|
+
Processing by PathRewrite::PathController#rewrite as HTML
|
277
|
+
Parameters: {"path"=>"test"}
|
278
|
+
[1m[35mPathRewrite::PathTranslation Load (0.1ms)[0m SELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1 [["old_path", "/test"]]
|
279
|
+
Redirecting /test to /captured from request http://test.host/test
|
280
|
+
Redirected to http://test.host/captured
|
281
|
+
Completed 301 Moved Permanently in 4ms (ActiveRecord: 0.1ms)
|
282
|
+
[1m[36m (6.4ms)[0m [1mrollback transaction[0m
|
283
|
+
[1m[35m (0.1ms)[0m begin transaction
|
284
|
+
Processing by PathRewrite::PathController#rewrite as HTML
|
285
|
+
Parameters: {"path"=>"non_translated_path"}
|
286
|
+
[1m[36mPathRewrite::PathTranslation Load (0.1ms)[0m [1mSELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1[0m [["old_path", "/non_translated_path"]]
|
287
|
+
Completed 404 Not Found in 0ms (ActiveRecord: 0.1ms)
|
288
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
289
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
290
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
291
|
+
[1m[35m (0.1ms)[0m begin transaction
|
292
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
293
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "path_rewrite_path_translations" ("old_path", "new_path", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["old_path", "/test"], ["new_path", "/redirected"], ["created_at", "2015-06-19 20:18:17.428585"], ["updated_at", "2015-06-19 20:18:17.428585"]]
|
294
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
295
|
+
[1m[35mPathRewrite::PathTranslation Load (0.1ms)[0m SELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1 [["old_path", "/test"]]
|
296
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
297
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
298
|
+
[1m[35m (0.1ms)[0m begin transaction
|
299
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
300
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "path_rewrite_path_translations" ("old_path", "new_path", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["old_path", "/test"], ["new_path", "/redirected"], ["created_at", "2015-06-19 20:18:34.141351"], ["updated_at", "2015-06-19 20:18:34.141351"]]
|
301
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
302
|
+
[1m[35mPathRewrite::PathTranslation Load (0.1ms)[0m SELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1 [["old_path", "/test"]]
|
303
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
304
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
305
|
+
[1m[35m (0.1ms)[0m begin transaction
|
306
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
307
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "path_rewrite_path_translations" ("old_path", "new_path", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["old_path", "/test"], ["new_path", "/redirected"], ["created_at", "2015-06-19 20:19:21.293471"], ["updated_at", "2015-06-19 20:19:21.293471"]]
|
308
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
309
|
+
[1m[35mPathRewrite::PathTranslation Load (0.1ms)[0m SELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1 [["old_path", "/test"]]
|
310
|
+
[1m[36m (6.4ms)[0m [1mrollback transaction[0m
|
311
|
+
[1m[35m (0.1ms)[0m begin transaction
|
312
|
+
[1m[36mPathRewrite::PathTranslation Load (0.1ms)[0m [1mSELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1[0m [["old_path", "/test"]]
|
313
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
314
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
315
|
+
[1m[35m (0.1ms)[0m begin transaction
|
316
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
317
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "path_rewrite_path_translations" ("old_path", "new_path", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["old_path", "/test"], ["new_path", "/redirected"], ["created_at", "2015-06-19 20:19:45.523426"], ["updated_at", "2015-06-19 20:19:45.523426"]]
|
318
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
319
|
+
[1m[35mPathRewrite::PathTranslation Load (0.1ms)[0m SELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1 [["old_path", "/test"]]
|
320
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
321
|
+
[1m[35m (0.1ms)[0m begin transaction
|
322
|
+
[1m[36mPathRewrite::PathTranslation Load (0.1ms)[0m [1mSELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1[0m [["old_path", "/test"]]
|
323
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
324
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
325
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
326
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
327
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
328
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
329
|
+
[1m[35m (0.1ms)[0m begin transaction
|
330
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
331
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "path_rewrite_path_translations" ("old_path", "new_path", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["old_path", "/test"], ["new_path", "/captured"], ["created_at", "2015-06-19 20:20:08.139472"], ["updated_at", "2015-06-19 20:20:08.139472"]]
|
332
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
333
|
+
Processing by PathRewrite::PathController#rewrite as HTML
|
334
|
+
Parameters: {"path"=>"test"}
|
335
|
+
[1m[35mPathRewrite::PathTranslation Load (0.2ms)[0m SELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1 [["old_path", "/test"]]
|
336
|
+
Redirecting /test to /captured from request http://test.host/test
|
337
|
+
Redirected to http://test.host/captured
|
338
|
+
Completed 301 Moved Permanently in 7ms (ActiveRecord: 0.2ms)
|
339
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
340
|
+
[1m[35m (0.1ms)[0m begin transaction
|
341
|
+
Processing by PathRewrite::PathController#rewrite as HTML
|
342
|
+
Parameters: {"path"=>"non_translated_path"}
|
343
|
+
[1m[36mPathRewrite::PathTranslation Load (0.1ms)[0m [1mSELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1[0m [["old_path", "/non_translated_path"]]
|
344
|
+
Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms)
|
345
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
346
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
347
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
348
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
349
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
350
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
351
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
352
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
353
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
354
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
355
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
356
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "path_rewrite_path_translations" ("old_path", "new_path", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["old_path", "/test"], ["new_path", "/redirected"], ["created_at", "2015-06-19 20:20:08.162178"], ["updated_at", "2015-06-19 20:20:08.162178"]]
|
357
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
358
|
+
[1m[36mPathRewrite::PathTranslation Load (0.0ms)[0m [1mSELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1[0m [["old_path", "/test"]]
|
359
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
360
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
361
|
+
[1m[35mPathRewrite::PathTranslation Load (0.1ms)[0m SELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1 [["old_path", "/test"]]
|
362
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
363
|
+
[1m[35m (0.0ms)[0m begin transaction
|
364
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
365
|
+
[1m[35m (0.0ms)[0m begin transaction
|
366
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
367
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
368
|
+
[1m[35m (0.1ms)[0m begin transaction
|
369
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
370
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "path_rewrite_path_translations" ("old_path", "new_path", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["old_path", "/test"], ["new_path", "/redirected"], ["created_at", "2015-06-19 22:02:08.175070"], ["updated_at", "2015-06-19 22:02:08.175070"]]
|
371
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
372
|
+
[1m[35mPathRewrite::PathTranslation Load (0.1ms)[0m SELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1 [["old_path", "/test"]]
|
373
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
374
|
+
[1m[35m (0.0ms)[0m begin transaction
|
375
|
+
[1m[36mPathRewrite::PathTranslation Load (0.1ms)[0m [1mSELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1[0m [["old_path", "/test"]]
|
376
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
377
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
378
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
379
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
380
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
381
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
382
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
383
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "path_rewrite_path_translations" ("old_path", "new_path", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["old_path", "/test"], ["new_path", "/captured"], ["created_at", "2015-06-19 22:02:08.191781"], ["updated_at", "2015-06-19 22:02:08.191781"]]
|
384
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
385
|
+
Processing by PathRewrite::PathController#rewrite as HTML
|
386
|
+
Parameters: {"path"=>"test"}
|
387
|
+
[1m[36mPathRewrite::PathTranslation Load (0.0ms)[0m [1mSELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1[0m [["old_path", "/test"]]
|
388
|
+
Redirecting /test to /captured from request http://test.host/test
|
389
|
+
Redirected to http://test.host/captured
|
390
|
+
Completed 301 Moved Permanently in 1ms (ActiveRecord: 0.0ms)
|
391
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
392
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
393
|
+
Processing by PathRewrite::PathController#rewrite as HTML
|
394
|
+
Parameters: {"path"=>"non_translated_path"}
|
395
|
+
[1m[35mPathRewrite::PathTranslation Load (0.1ms)[0m SELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1 [["old_path", "/non_translated_path"]]
|
396
|
+
Completed 404 Not Found in 0ms (ActiveRecord: 0.1ms)
|
397
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
398
|
+
[1m[35m (0.0ms)[0m begin transaction
|
399
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
400
|
+
[1m[35m (0.1ms)[0m begin transaction
|
401
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
402
|
+
[1m[35m (0.0ms)[0m begin transaction
|
403
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
404
|
+
[1m[35m (0.0ms)[0m begin transaction
|
405
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
406
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
407
|
+
[1m[35m (0.1ms)[0m begin transaction
|
408
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
409
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "path_rewrite_path_translations" ("old_path", "new_path", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["old_path", "/test"], ["new_path", "/redirected"], ["created_at", "2015-06-19 22:02:39.243956"], ["updated_at", "2015-06-19 22:02:39.243956"]]
|
410
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
411
|
+
[1m[35mPathRewrite::PathTranslation Load (0.2ms)[0m SELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1 [["old_path", "/test"]]
|
412
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
413
|
+
[1m[35m (0.0ms)[0m begin transaction
|
414
|
+
[1m[36mPathRewrite::PathTranslation Load (0.1ms)[0m [1mSELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1[0m [["old_path", "/test"]]
|
415
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
416
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
417
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
418
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
419
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
420
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
421
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
422
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "path_rewrite_path_translations" ("old_path", "new_path", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["old_path", "/test"], ["new_path", "/captured"], ["created_at", "2015-06-19 22:02:39.256296"], ["updated_at", "2015-06-19 22:02:39.256296"]]
|
423
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
424
|
+
Processing by PathRewrite::PathController#rewrite as HTML
|
425
|
+
Parameters: {"path"=>"test"}
|
426
|
+
[1m[36mPathRewrite::PathTranslation Load (0.0ms)[0m [1mSELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1[0m [["old_path", "/test"]]
|
427
|
+
Redirecting /test to /captured from request http://test.host/test
|
428
|
+
Redirected to http://test.host/captured
|
429
|
+
Completed 301 Moved Permanently in 1ms (ActiveRecord: 0.0ms)
|
430
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
431
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
432
|
+
Processing by PathRewrite::PathController#rewrite as HTML
|
433
|
+
Parameters: {"path"=>"non_translated_path"}
|
434
|
+
[1m[35mPathRewrite::PathTranslation Load (0.1ms)[0m SELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1 [["old_path", "/non_translated_path"]]
|
435
|
+
Completed 404 Not Found in 0ms (ActiveRecord: 0.1ms)
|
436
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
437
|
+
[1m[35m (0.0ms)[0m begin transaction
|
438
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
439
|
+
[1m[35m (0.0ms)[0m begin transaction
|
440
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
441
|
+
[1m[35m (0.0ms)[0m begin transaction
|
442
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
443
|
+
[1m[35m (0.0ms)[0m begin transaction
|
444
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
445
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
446
|
+
[1m[35m (0.1ms)[0m begin transaction
|
447
|
+
Processing by PathRewrite::PathController#rewrite as HTML
|
448
|
+
Parameters: {"path"=>"non_translated_path"}
|
449
|
+
[1m[36mPathRewrite::PathTranslation Load (0.1ms)[0m [1mSELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1[0m [["old_path", "/non_translated_path"]]
|
450
|
+
Completed 404 Not Found in 7ms (ActiveRecord: 0.2ms)
|
451
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
452
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
453
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
454
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "path_rewrite_path_translations" ("old_path", "new_path", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["old_path", "/test"], ["new_path", "/captured"], ["created_at", "2015-06-19 22:03:07.845504"], ["updated_at", "2015-06-19 22:03:07.845504"]]
|
455
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
456
|
+
Processing by PathRewrite::PathController#rewrite as HTML
|
457
|
+
Parameters: {"path"=>"test"}
|
458
|
+
[1m[36mPathRewrite::PathTranslation Load (0.0ms)[0m [1mSELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1[0m [["old_path", "/test"]]
|
459
|
+
Redirecting /test to /captured from request http://test.host/test
|
460
|
+
Redirected to http://test.host/captured
|
461
|
+
Completed 301 Moved Permanently in 1ms (ActiveRecord: 0.0ms)
|
462
|
+
[1m[35m (6.3ms)[0m rollback transaction
|
463
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
464
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
465
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
466
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
467
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
468
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
469
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
470
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
471
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
472
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
473
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
474
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
475
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
476
|
+
[1m[35mPathRewrite::PathTranslation Load (0.1ms)[0m SELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1 [["old_path", "/test"]]
|
477
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
478
|
+
[1m[35m (0.0ms)[0m begin transaction
|
479
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
480
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "path_rewrite_path_translations" ("old_path", "new_path", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["old_path", "/test"], ["new_path", "/redirected"], ["created_at", "2015-06-19 22:03:07.861632"], ["updated_at", "2015-06-19 22:03:07.861632"]]
|
481
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
482
|
+
[1m[35mPathRewrite::PathTranslation Load (0.0ms)[0m SELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1 [["old_path", "/test"]]
|
483
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
484
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
485
|
+
[1m[35m (0.1ms)[0m begin transaction
|
486
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
487
|
+
[1m[35m (0.0ms)[0m begin transaction
|
488
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
489
|
+
[1m[35m (0.0ms)[0m begin transaction
|
490
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
491
|
+
[1m[35m (0.0ms)[0m begin transaction
|
492
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
493
|
+
[1m[35m (0.0ms)[0m begin transaction
|
494
|
+
Processing by PathRewrite::PathController#rewrite as HTML
|
495
|
+
Parameters: {"path"=>"non_translated_path"}
|
496
|
+
[1m[36mPathRewrite::PathTranslation Load (0.1ms)[0m [1mSELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1[0m [["old_path", "/non_translated_path"]]
|
497
|
+
Completed 404 Not Found in 8ms (ActiveRecord: 0.3ms)
|
498
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
499
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
500
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
501
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "path_rewrite_path_translations" ("old_path", "new_path", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["old_path", "/test"], ["new_path", "/captured"], ["created_at", "2015-06-19 22:03:24.515779"], ["updated_at", "2015-06-19 22:03:24.515779"]]
|
502
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
503
|
+
Processing by PathRewrite::PathController#rewrite as HTML
|
504
|
+
Parameters: {"path"=>"test"}
|
505
|
+
[1m[36mPathRewrite::PathTranslation Load (0.0ms)[0m [1mSELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1[0m [["old_path", "/test"]]
|
506
|
+
Redirecting /test to /captured from request http://test.host/test
|
507
|
+
Redirected to http://test.host/captured
|
508
|
+
Completed 301 Moved Permanently in 1ms (ActiveRecord: 0.0ms)
|
509
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
510
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
511
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
512
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
513
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
514
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
515
|
+
[1m[35mPathRewrite::PathTranslation Load (0.1ms)[0m SELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1 [["old_path", "/test"]]
|
516
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
517
|
+
[1m[35m (0.0ms)[0m begin transaction
|
518
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
519
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "path_rewrite_path_translations" ("old_path", "new_path", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["old_path", "/test"], ["new_path", "/redirected"], ["created_at", "2015-06-19 22:03:24.523668"], ["updated_at", "2015-06-19 22:03:24.523668"]]
|
520
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
521
|
+
[1m[35mPathRewrite::PathTranslation Load (0.0ms)[0m SELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1 [["old_path", "/test"]]
|
522
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
523
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
524
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
525
|
+
[1m[35m (0.1ms)[0m begin transaction
|
526
|
+
Processing by PathRewrite::PathController#rewrite as HTML
|
527
|
+
Parameters: {"path"=>"non_translated_path"}
|
528
|
+
[1m[36mPathRewrite::PathTranslation Load (0.1ms)[0m [1mSELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1[0m [["old_path", "/non_translated_path"]]
|
529
|
+
Completed 404 Not Found in 7ms (ActiveRecord: 0.2ms)
|
530
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
531
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
532
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
533
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "path_rewrite_path_translations" ("old_path", "new_path", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["old_path", "/test"], ["new_path", "/captured"], ["created_at", "2015-06-19 22:07:19.841941"], ["updated_at", "2015-06-19 22:07:19.841941"]]
|
534
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
535
|
+
Processing by PathRewrite::PathController#rewrite as HTML
|
536
|
+
Parameters: {"path"=>"test"}
|
537
|
+
[1m[36mPathRewrite::PathTranslation Load (0.0ms)[0m [1mSELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1[0m [["old_path", "/test"]]
|
538
|
+
Redirecting /test to /captured from request http://test.host/test
|
539
|
+
Redirected to http://test.host/captured
|
540
|
+
Completed 301 Moved Permanently in 1ms (ActiveRecord: 0.0ms)
|
541
|
+
[1m[35m (6.4ms)[0m rollback transaction
|
542
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
543
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
544
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
545
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
546
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
547
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
548
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
549
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
550
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
551
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
552
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
553
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
554
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
555
|
+
[1m[35mPathRewrite::PathTranslation Load (0.1ms)[0m SELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1 [["old_path", "/test"]]
|
556
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
557
|
+
[1m[35m (0.0ms)[0m begin transaction
|
558
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
559
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "path_rewrite_path_translations" ("old_path", "new_path", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["old_path", "/test"], ["new_path", "/redirected"], ["created_at", "2015-06-19 22:07:19.858260"], ["updated_at", "2015-06-19 22:07:19.858260"]]
|
560
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
561
|
+
[1m[35mPathRewrite::PathTranslation Load (0.0ms)[0m SELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1 [["old_path", "/test"]]
|
562
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
563
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
564
|
+
[1m[35m (0.1ms)[0m begin transaction
|
565
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
566
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "path_rewrite_path_translations" ("old_path", "new_path", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["old_path", "/test"], ["new_path", "/redirected"], ["created_at", "2015-06-19 22:07:38.851011"], ["updated_at", "2015-06-19 22:07:38.851011"]]
|
567
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
568
|
+
[1m[35mPathRewrite::PathTranslation Load (0.1ms)[0m SELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1 [["old_path", "/test"]]
|
569
|
+
[1m[36m (6.4ms)[0m [1mrollback transaction[0m
|
570
|
+
[1m[35m (0.1ms)[0m begin transaction
|
571
|
+
[1m[36mPathRewrite::PathTranslation Load (0.1ms)[0m [1mSELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1[0m [["old_path", "/test"]]
|
572
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
573
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
574
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
575
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
576
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
577
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
578
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
579
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "path_rewrite_path_translations" ("old_path", "new_path", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["old_path", "/test"], ["new_path", "/captured"], ["created_at", "2015-06-19 22:07:38.871201"], ["updated_at", "2015-06-19 22:07:38.871201"]]
|
580
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
581
|
+
Processing by PathRewrite::PathController#rewrite as HTML
|
582
|
+
Parameters: {"path"=>"test"}
|
583
|
+
[1m[36mPathRewrite::PathTranslation Load (0.1ms)[0m [1mSELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1[0m [["old_path", "/test"]]
|
584
|
+
Redirecting /test to /captured from request http://test.host/test
|
585
|
+
Redirected to http://test.host/captured
|
586
|
+
Completed 301 Moved Permanently in 1ms (ActiveRecord: 0.1ms)
|
587
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
588
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
589
|
+
Processing by PathRewrite::PathController#rewrite as HTML
|
590
|
+
Parameters: {"path"=>"non_translated_path"}
|
591
|
+
[1m[35mPathRewrite::PathTranslation Load (0.1ms)[0m SELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1 [["old_path", "/non_translated_path"]]
|
592
|
+
Completed 404 Not Found in 0ms (ActiveRecord: 0.1ms)
|
593
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
594
|
+
[1m[35m (0.0ms)[0m begin transaction
|
595
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
596
|
+
[1m[35m (0.0ms)[0m begin transaction
|
597
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
598
|
+
[1m[35m (0.0ms)[0m begin transaction
|
599
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
600
|
+
[1m[35m (0.0ms)[0m begin transaction
|
601
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
602
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
603
|
+
[1m[35m (0.1ms)[0m begin transaction
|
604
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
605
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "path_rewrite_path_translations" ("old_path", "new_path", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["old_path", "/test"], ["new_path", "/captured"], ["created_at", "2015-06-19 22:08:27.242347"], ["updated_at", "2015-06-19 22:08:27.242347"]]
|
606
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
607
|
+
Processing by PathRewrite::PathController#rewrite as HTML
|
608
|
+
Parameters: {"path"=>"test"}
|
609
|
+
[1m[35mPathRewrite::PathTranslation Load (0.1ms)[0m SELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1 [["old_path", "/test"]]
|
610
|
+
Redirecting /test to /captured from request http://test.host/test
|
611
|
+
Redirected to http://test.host/captured
|
612
|
+
Completed 301 Moved Permanently in 4ms (ActiveRecord: 0.1ms)
|
613
|
+
[1m[36m (6.5ms)[0m [1mrollback transaction[0m
|
614
|
+
[1m[35m (0.0ms)[0m begin transaction
|
615
|
+
Processing by PathRewrite::PathController#rewrite as HTML
|
616
|
+
Parameters: {"path"=>"non_translated_path"}
|
617
|
+
[1m[36mPathRewrite::PathTranslation Load (0.1ms)[0m [1mSELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1[0m [["old_path", "/non_translated_path"]]
|
618
|
+
Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms)
|
619
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
620
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
621
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
622
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "path_rewrite_path_translations" ("old_path", "new_path", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["old_path", "/test"], ["new_path", "/redirected"], ["created_at", "2015-06-19 22:08:27.263757"], ["updated_at", "2015-06-19 22:08:27.263757"]]
|
623
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
624
|
+
[1m[36mPathRewrite::PathTranslation Load (0.0ms)[0m [1mSELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1[0m [["old_path", "/test"]]
|
625
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
626
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
627
|
+
[1m[35mPathRewrite::PathTranslation Load (0.1ms)[0m SELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1 [["old_path", "/test"]]
|
628
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
629
|
+
[1m[35m (0.1ms)[0m begin transaction
|
630
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
631
|
+
[1m[35m (0.0ms)[0m begin transaction
|
632
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
633
|
+
[1m[35m (0.1ms)[0m begin transaction
|
634
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
635
|
+
[1m[35m (0.1ms)[0m begin transaction
|
636
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
637
|
+
[1m[35m (0.0ms)[0m begin transaction
|
638
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
639
|
+
[1m[35m (0.0ms)[0m begin transaction
|
640
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
641
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
642
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
643
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
644
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
645
|
+
[1m[35m (0.1ms)[0m begin transaction
|
646
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
647
|
+
[1m[35m (0.1ms)[0m begin transaction
|
648
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
649
|
+
[1m[35m (0.1ms)[0m begin transaction
|
650
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
651
|
+
[1m[35m (0.0ms)[0m begin transaction
|
652
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
653
|
+
[1m[35m (0.0ms)[0m begin transaction
|
654
|
+
Processing by PathRewrite::PathController#rewrite as HTML
|
655
|
+
Parameters: {"path"=>"non_translated_path"}
|
656
|
+
[1m[36mPathRewrite::PathTranslation Load (0.1ms)[0m [1mSELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1[0m [["old_path", "/non_translated_path"]]
|
657
|
+
Completed 404 Not Found in 7ms (ActiveRecord: 0.3ms)
|
658
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
659
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
660
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
661
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "path_rewrite_path_translations" ("old_path", "new_path", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["old_path", "/test"], ["new_path", "/captured"], ["created_at", "2015-06-19 22:16:56.855926"], ["updated_at", "2015-06-19 22:16:56.855926"]]
|
662
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
663
|
+
Processing by PathRewrite::PathController#rewrite as HTML
|
664
|
+
Parameters: {"path"=>"test"}
|
665
|
+
[1m[36mPathRewrite::PathTranslation Load (0.0ms)[0m [1mSELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1[0m [["old_path", "/test"]]
|
666
|
+
Redirecting /test to /captured from request http://test.host/test
|
667
|
+
Redirected to http://test.host/captured
|
668
|
+
Completed 301 Moved Permanently in 1ms (ActiveRecord: 0.0ms)
|
669
|
+
[1m[35m (6.4ms)[0m rollback transaction
|
670
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
671
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
672
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
673
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
674
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
675
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
676
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "path_rewrite_path_translations" ("old_path", "new_path", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["old_path", "/test"], ["new_path", "/redirected"], ["created_at", "2015-06-19 22:16:56.870292"], ["updated_at", "2015-06-19 22:16:56.870292"]]
|
677
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
678
|
+
[1m[36mPathRewrite::PathTranslation Load (0.1ms)[0m [1mSELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1[0m [["old_path", "/test"]]
|
679
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
680
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
681
|
+
[1m[35mPathRewrite::PathTranslation Load (0.1ms)[0m SELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1 [["old_path", "/test"]]
|
682
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
683
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
684
|
+
[1m[35m (0.1ms)[0m begin transaction
|
685
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
686
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "path_rewrite_path_translations" ("old_path", "new_path", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["old_path", "/test"], ["new_path", "/captured"], ["created_at", "2015-06-19 22:17:37.539068"], ["updated_at", "2015-06-19 22:17:37.539068"]]
|
687
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
688
|
+
Processing by PathRewrite::PathController#rewrite as HTML
|
689
|
+
Parameters: {"path"=>"test"}
|
690
|
+
[1m[35mPathRewrite::PathTranslation Load (0.1ms)[0m SELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1 [["old_path", "/test"]]
|
691
|
+
Redirecting /test to /captured from request http://test.host/test
|
692
|
+
Redirected to http://test.host/captured
|
693
|
+
Completed 301 Moved Permanently in 4ms (ActiveRecord: 0.1ms)
|
694
|
+
[1m[36m (6.4ms)[0m [1mrollback transaction[0m
|
695
|
+
[1m[35m (0.0ms)[0m begin transaction
|
696
|
+
Processing by PathRewrite::PathController#rewrite as HTML
|
697
|
+
Parameters: {"path"=>"non_translated_path"}
|
698
|
+
[1m[36mPathRewrite::PathTranslation Load (0.1ms)[0m [1mSELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1[0m [["old_path", "/non_translated_path"]]
|
699
|
+
Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms)
|
700
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
701
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
702
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
703
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
704
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
705
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
706
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
707
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
708
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
709
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
710
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
711
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
712
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
713
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
714
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
715
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "path_rewrite_path_translations" ("old_path", "new_path", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["old_path", "/test"], ["new_path", "/redirected"], ["created_at", "2015-06-19 22:17:37.565862"], ["updated_at", "2015-06-19 22:17:37.565862"]]
|
716
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
717
|
+
[1m[36mPathRewrite::PathTranslation Load (0.1ms)[0m [1mSELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1[0m [["old_path", "/test"]]
|
718
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
719
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
720
|
+
[1m[35mPathRewrite::PathTranslation Load (0.1ms)[0m SELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1 [["old_path", "/test"]]
|
721
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
722
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
723
|
+
[1m[35m (0.1ms)[0m begin transaction
|
724
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
725
|
+
[1m[35m (0.0ms)[0m begin transaction
|
726
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
727
|
+
[1m[35m (0.0ms)[0m begin transaction
|
728
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
729
|
+
[1m[35m (0.0ms)[0m begin transaction
|
730
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
731
|
+
[1m[35m (0.0ms)[0m begin transaction
|
732
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
733
|
+
[1m[35m (0.0ms)[0m begin transaction
|
734
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
735
|
+
[1m[35m (0.0ms)[0m begin transaction
|
736
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
737
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "path_rewrite_path_translations" ("old_path", "new_path", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["old_path", "/test"], ["new_path", "/redirected"], ["created_at", "2015-06-19 22:27:12.322734"], ["updated_at", "2015-06-19 22:27:12.322734"]]
|
738
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
739
|
+
[1m[35mPathRewrite::PathTranslation Load (0.1ms)[0m SELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1 [["old_path", "/test"]]
|
740
|
+
[1m[36m (6.5ms)[0m [1mrollback transaction[0m
|
741
|
+
[1m[35m (0.0ms)[0m begin transaction
|
742
|
+
[1m[36mPathRewrite::PathTranslation Load (0.1ms)[0m [1mSELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1[0m [["old_path", "/test"]]
|
743
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
744
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
745
|
+
Processing by PathRewrite::PathController#rewrite as HTML
|
746
|
+
Parameters: {"path"=>"non_translated_path"}
|
747
|
+
[1m[35mPathRewrite::PathTranslation Load (0.1ms)[0m SELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1 [["old_path", "/non_translated_path"]]
|
748
|
+
Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms)
|
749
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
750
|
+
[1m[35m (0.0ms)[0m begin transaction
|
751
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
752
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "path_rewrite_path_translations" ("old_path", "new_path", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["old_path", "/test"], ["new_path", "/captured"], ["created_at", "2015-06-19 22:27:12.346799"], ["updated_at", "2015-06-19 22:27:12.346799"]]
|
753
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
754
|
+
Processing by PathRewrite::PathController#rewrite as HTML
|
755
|
+
Parameters: {"path"=>"test"}
|
756
|
+
[1m[35mPathRewrite::PathTranslation Load (0.1ms)[0m SELECT "path_rewrite_path_translations".* FROM "path_rewrite_path_translations" WHERE "path_rewrite_path_translations"."old_path" = ? LIMIT 1 [["old_path", "/test"]]
|
757
|
+
Redirecting /test to /captured from request http://test.host/test
|
758
|
+
Redirected to http://test.host/captured
|
759
|
+
Completed 301 Moved Permanently in 1ms (ActiveRecord: 0.1ms)
|
760
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|