jump_back 0.1.1 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e19b6572c0f28169e9d691a3c4a06d2e4ec2d18b
|
4
|
+
data.tar.gz: 4613caae3a14d45a1c6bbc5d412d0dd63fa28b5e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6c40a2cbba6764332b545150487e96a07e705d4f9189b83079d13c956b46c6a72d0c893ed5731e6e26a19a7b6305f16796d2835b2c7dc549650b7eff2d0c5de7
|
7
|
+
data.tar.gz: 589cd35d811e8a6ee2fd27c506d2d92e5887c66da9b08ae0cb159b4281a5bb77928c06f79ef65774a802b1a342d79b7817544462cf1a74ac2df1a98c4efc74e4
|
@@ -4,8 +4,9 @@ module JumpBack
|
|
4
4
|
session[:jump_back_stored_referer] ||= request.referer
|
5
5
|
end
|
6
6
|
|
7
|
-
def return_to_referer(path=root_path)
|
8
|
-
|
7
|
+
def return_to_referer(path=root_path, options={})
|
8
|
+
parsed_args = parse_jump_back_arguments(path, options)
|
9
|
+
session[:jump_back_stored_referer] ? redirect_to(clear_referer, parsed_args[:redirect_options]) : redirect_to(parsed_args[:path], parsed_args[:redirect_options])
|
9
10
|
end
|
10
11
|
|
11
12
|
def clear_referer
|
data/lib/jump_back/version.rb
CHANGED
@@ -150,5 +150,17 @@ describe TestsController, type: :controller do
|
|
150
150
|
get :show, id: 1
|
151
151
|
expect(response).to redirect_to(new_test_path)
|
152
152
|
end
|
153
|
+
|
154
|
+
it 'should pass options to redirect_to with a default path specified' do
|
155
|
+
get :show, id: 1
|
156
|
+
expect(flash[:alert]).to eq('Go away!')
|
157
|
+
expect(response.status).to eq(301)
|
158
|
+
end
|
159
|
+
|
160
|
+
it 'should pass options to redirect_to without a default path specified' do
|
161
|
+
put :update, id: 1
|
162
|
+
expect(flash[:notice]).to eq('Updated!')
|
163
|
+
expect(response.status).to eq(302)
|
164
|
+
end
|
153
165
|
end
|
154
166
|
end
|
@@ -3,7 +3,7 @@ class TestsController < ApplicationController
|
|
3
3
|
end
|
4
4
|
|
5
5
|
def show
|
6
|
-
return_to_referer new_test_path
|
6
|
+
return_to_referer new_test_path, alert: 'Go away!', status: 301
|
7
7
|
end
|
8
8
|
|
9
9
|
def new
|
@@ -20,7 +20,7 @@ class TestsController < ApplicationController
|
|
20
20
|
end
|
21
21
|
|
22
22
|
def update
|
23
|
-
return_to_referer
|
23
|
+
return_to_referer notice: 'Updated!', status: 302
|
24
24
|
end
|
25
25
|
|
26
26
|
def destroy
|
data/spec/dummy/log/test.log
CHANGED
@@ -11715,3 +11715,989 @@ Started GET "/tests/new" for 127.0.0.1 at 2015-01-14 10:51:02 -0600
|
|
11715
11715
|
Processing by TestsController#new as HTML
|
11716
11716
|
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
11717
11717
|
[1m[35m (0.1ms)[0m rollback transaction
|
11718
|
+
[1m[36m (0.5ms)[0m [1mbegin transaction[0m
|
11719
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
11720
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
11721
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
11722
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
11723
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
11724
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
11725
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
11726
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
11727
|
+
Processing by TestsController#new as HTML
|
11728
|
+
Rendered tests/new.html.erb within layouts/application (0.6ms)
|
11729
|
+
Completed 200 OK in 13ms (Views: 13.0ms | ActiveRecord: 0.0ms)
|
11730
|
+
Processing by TestsController#create as HTML
|
11731
|
+
Redirected to /tests/1
|
11732
|
+
Completed 301 Moved Permanently in 38ms (Views: 13.0ms | ActiveRecord: 0.0ms)
|
11733
|
+
Processing by TestsController#update as HTML
|
11734
|
+
Parameters: {"id"=>"1"}
|
11735
|
+
Redirected to http://test.host/tests/1
|
11736
|
+
Completed 302 Found in 1ms (Views: 13.0ms | ActiveRecord: 0.0ms)
|
11737
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
11738
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
11739
|
+
Processing by TestsController#new as HTML
|
11740
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
11741
|
+
Processing by TestsController#update as HTML
|
11742
|
+
Parameters: {"id"=>"1"}
|
11743
|
+
Redirected to http://test.host/tests/1
|
11744
|
+
Completed 302 Found in 0ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
11745
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
11746
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
11747
|
+
Processing by TestsController#update as HTML
|
11748
|
+
Parameters: {"id"=>"1"}
|
11749
|
+
Redirected to http://test.host/
|
11750
|
+
Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
|
11751
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11752
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
11753
|
+
Processing by TestsController#new as HTML
|
11754
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
11755
|
+
Processing by TestsController#update as HTML
|
11756
|
+
Parameters: {"id"=>"1"}
|
11757
|
+
Redirected to http://test.host/tests/1
|
11758
|
+
Completed 302 Found in 0ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
11759
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
11760
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
11761
|
+
Processing by TestsController#show as HTML
|
11762
|
+
Parameters: {"id"=>"1"}
|
11763
|
+
Redirected to http://test.host/tests/new
|
11764
|
+
Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
|
11765
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
11766
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11767
|
+
Processing by TestsController#offsite_without_default as HTML
|
11768
|
+
Redirected to http://rubyonrails.org/
|
11769
|
+
Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
|
11770
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
11771
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11772
|
+
Processing by TestsController#create as HTML
|
11773
|
+
Redirected to http://test.host/
|
11774
|
+
Completed 301 Moved Permanently in 0ms (ActiveRecord: 0.0ms)
|
11775
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11776
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
11777
|
+
Processing by TestsController#offsite_with_default as HTML
|
11778
|
+
Redirected to http://rubyonrails.org/
|
11779
|
+
Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
|
11780
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11781
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
11782
|
+
Processing by TestsController#offsite_without_default as HTML
|
11783
|
+
Redirected to http://rubyonrails.org/
|
11784
|
+
Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
|
11785
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
11786
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
11787
|
+
Processing by TestsController#create as HTML
|
11788
|
+
Redirected to http://test.host/
|
11789
|
+
Completed 301 Moved Permanently in 1ms (ActiveRecord: 0.0ms)
|
11790
|
+
Processing by TestsController#destroy as HTML
|
11791
|
+
Parameters: {"id"=>"1"}
|
11792
|
+
Redirected to http://test.host/tests/new
|
11793
|
+
Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
|
11794
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
11795
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
11796
|
+
Processing by TestsController#offsite_with_default as HTML
|
11797
|
+
Redirected to http://rubyonrails.org/
|
11798
|
+
Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
|
11799
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
11800
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
11801
|
+
Processing by TestsController#offsite_without_default as HTML
|
11802
|
+
Redirected to http://test.host/
|
11803
|
+
Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
|
11804
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11805
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
11806
|
+
Processing by TestsController#create as HTML
|
11807
|
+
Redirected to http://test.host/
|
11808
|
+
Completed 301 Moved Permanently in 0ms (ActiveRecord: 0.0ms)
|
11809
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
11810
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11811
|
+
Processing by TestsController#destroy as HTML
|
11812
|
+
Parameters: {"id"=>"1"}
|
11813
|
+
Redirected to http://test.host/tests/new
|
11814
|
+
Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
|
11815
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
11816
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11817
|
+
Processing by TestsController#create as HTML
|
11818
|
+
Redirected to /tests/1
|
11819
|
+
Completed 301 Moved Permanently in 0ms (ActiveRecord: 0.0ms)
|
11820
|
+
Processing by TestsController#destroy as HTML
|
11821
|
+
Parameters: {"id"=>"2"}
|
11822
|
+
Redirected to /tests/1
|
11823
|
+
Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
|
11824
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
11825
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11826
|
+
Processing by TestsController#offsite_with_default as HTML
|
11827
|
+
Redirected to http://test.host/tests/new
|
11828
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
11829
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
11830
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
11831
|
+
Processing by TestsController#offsite_with_default as HTML
|
11832
|
+
Redirected to http://test.host/tests/new
|
11833
|
+
Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
|
11834
|
+
Processing by TestsController#offsite_without_default as HTML
|
11835
|
+
Redirected to http://test.host/
|
11836
|
+
Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
|
11837
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11838
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11839
|
+
Processing by TestsController#new as HTML
|
11840
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
11841
|
+
Processing by TestsController#new as HTML
|
11842
|
+
Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
11843
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11844
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11845
|
+
Processing by TestsController#new as HTML
|
11846
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
11847
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
11848
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
11849
|
+
Processing by TestsController#new as HTML
|
11850
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
11851
|
+
Processing by TestsController#edit as HTML
|
11852
|
+
Parameters: {"id"=>"1"}
|
11853
|
+
Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
11854
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
11855
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
11856
|
+
Processing by TestsController#new as HTML
|
11857
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
11858
|
+
Processing by TestsController#destroy as HTML
|
11859
|
+
Parameters: {"id"=>"1"}
|
11860
|
+
Redirected to /tests/1
|
11861
|
+
Completed 302 Found in 0ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
11862
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
11863
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
11864
|
+
Started GET "/tests/1/edit" for 127.0.0.1 at 2015-01-14 10:58:25 -0600
|
11865
|
+
Processing by TestsController#edit as HTML
|
11866
|
+
Parameters: {"id"=>"1"}
|
11867
|
+
Completed 200 OK in 29ms (Views: 14.9ms | ActiveRecord: 0.0ms)
|
11868
|
+
Started GET "/tests/new" for 127.0.0.1 at 2015-01-14 10:58:25 -0600
|
11869
|
+
Processing by TestsController#new as HTML
|
11870
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
11871
|
+
Started GET "/tests" for 127.0.0.1 at 2015-01-14 10:58:25 -0600
|
11872
|
+
Processing by TestsController#index as HTML
|
11873
|
+
Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
|
11874
|
+
Started PUT "/tests/1" for 127.0.0.1 at 2015-01-14 10:58:25 -0600
|
11875
|
+
Processing by TestsController#update as HTML
|
11876
|
+
Parameters: {"utf8"=>"✓", "commit"=>"Update test", "id"=>"1"}
|
11877
|
+
Redirected to http://www.example.com/tests/1/edit
|
11878
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
11879
|
+
Started GET "/tests/1/edit" for 127.0.0.1 at 2015-01-14 10:58:25 -0600
|
11880
|
+
Processing by TestsController#edit as HTML
|
11881
|
+
Parameters: {"id"=>"1"}
|
11882
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
11883
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
11884
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
11885
|
+
Started GET "/tests/1/edit" for 127.0.0.1 at 2015-01-14 10:58:25 -0600
|
11886
|
+
Processing by TestsController#edit as HTML
|
11887
|
+
Parameters: {"id"=>"1"}
|
11888
|
+
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
11889
|
+
Started GET "/tests/new" for 127.0.0.1 at 2015-01-14 10:58:25 -0600
|
11890
|
+
Processing by TestsController#new as HTML
|
11891
|
+
Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
11892
|
+
Started GET "/tests" for 127.0.0.1 at 2015-01-14 10:58:25 -0600
|
11893
|
+
Processing by TestsController#index as HTML
|
11894
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
11895
|
+
Started GET "/tests/new" for 127.0.0.1 at 2015-01-14 10:58:25 -0600
|
11896
|
+
Processing by TestsController#new as HTML
|
11897
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
11898
|
+
Started GET "/tests" for 127.0.0.1 at 2015-01-14 10:58:25 -0600
|
11899
|
+
Processing by TestsController#index as HTML
|
11900
|
+
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
11901
|
+
Started PUT "/tests/1" for 127.0.0.1 at 2015-01-14 10:58:25 -0600
|
11902
|
+
Processing by TestsController#update as HTML
|
11903
|
+
Parameters: {"utf8"=>"✓", "commit"=>"Update test", "id"=>"1"}
|
11904
|
+
Redirected to http://www.example.com/tests/1/edit
|
11905
|
+
Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
|
11906
|
+
Started GET "/tests/1/edit" for 127.0.0.1 at 2015-01-14 10:58:25 -0600
|
11907
|
+
Processing by TestsController#edit as HTML
|
11908
|
+
Parameters: {"id"=>"1"}
|
11909
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
11910
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
11911
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
11912
|
+
Started GET "/tests/1/edit" for 127.0.0.1 at 2015-01-14 10:58:25 -0600
|
11913
|
+
Processing by TestsController#edit as HTML
|
11914
|
+
Parameters: {"id"=>"1"}
|
11915
|
+
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
11916
|
+
Started GET "/tests/new" for 127.0.0.1 at 2015-01-14 10:58:25 -0600
|
11917
|
+
Processing by TestsController#new as HTML
|
11918
|
+
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
11919
|
+
Started GET "/tests/1/edit" for 127.0.0.1 at 2015-01-14 10:58:25 -0600
|
11920
|
+
Processing by TestsController#edit as HTML
|
11921
|
+
Parameters: {"id"=>"1"}
|
11922
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
11923
|
+
Started GET "/tests" for 127.0.0.1 at 2015-01-14 10:58:25 -0600
|
11924
|
+
Processing by TestsController#index as HTML
|
11925
|
+
Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
11926
|
+
Started PUT "/tests/1" for 127.0.0.1 at 2015-01-14 10:58:25 -0600
|
11927
|
+
Processing by TestsController#update as HTML
|
11928
|
+
Parameters: {"utf8"=>"✓", "commit"=>"Update test", "id"=>"1"}
|
11929
|
+
Redirected to http://www.example.com/tests/new
|
11930
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
11931
|
+
Started GET "/tests/new" for 127.0.0.1 at 2015-01-14 10:58:25 -0600
|
11932
|
+
Processing by TestsController#new as HTML
|
11933
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
11934
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
11935
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
11936
|
+
Started GET "/tests/new" for 127.0.0.1 at 2015-01-14 10:58:25 -0600
|
11937
|
+
Processing by TestsController#new as HTML
|
11938
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
11939
|
+
Started POST "/tests" for 127.0.0.1 at 2015-01-14 10:58:25 -0600
|
11940
|
+
Processing by TestsController#create as HTML
|
11941
|
+
Parameters: {"utf8"=>"✓", "commit"=>"New test"}
|
11942
|
+
Redirected to http://www.example.com/tests/new
|
11943
|
+
Completed 301 Moved Permanently in 1ms (ActiveRecord: 0.0ms)
|
11944
|
+
Started GET "/tests/new" for 127.0.0.1 at 2015-01-14 10:58:25 -0600
|
11945
|
+
Processing by TestsController#new as HTML
|
11946
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
11947
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
11948
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
11949
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
11950
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
11951
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
11952
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
11953
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
11954
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
11955
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
11956
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
11957
|
+
Processing by TestsController#create as HTML
|
11958
|
+
Redirected to /tests/1
|
11959
|
+
Completed 301 Moved Permanently in 1ms (ActiveRecord: 0.0ms)
|
11960
|
+
Processing by TestsController#destroy as HTML
|
11961
|
+
Parameters: {"id"=>"2"}
|
11962
|
+
Redirected to /tests/1
|
11963
|
+
Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
|
11964
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
11965
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
11966
|
+
Processing by TestsController#create as HTML
|
11967
|
+
Redirected to http://test.host/
|
11968
|
+
Completed 301 Moved Permanently in 0ms (ActiveRecord: 0.0ms)
|
11969
|
+
Processing by TestsController#destroy as HTML
|
11970
|
+
Parameters: {"id"=>"1"}
|
11971
|
+
Redirected to http://test.host/tests/new
|
11972
|
+
Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
|
11973
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
11974
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11975
|
+
Processing by TestsController#offsite_without_default as HTML
|
11976
|
+
Redirected to http://test.host/
|
11977
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
11978
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
11979
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
11980
|
+
Processing by TestsController#offsite_with_default as HTML
|
11981
|
+
Redirected to http://rubyonrails.org/
|
11982
|
+
Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
|
11983
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
11984
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
11985
|
+
Processing by TestsController#offsite_without_default as HTML
|
11986
|
+
Redirected to http://rubyonrails.org/
|
11987
|
+
Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
|
11988
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11989
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11990
|
+
Processing by TestsController#offsite_with_default as HTML
|
11991
|
+
Redirected to http://rubyonrails.org/
|
11992
|
+
Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
|
11993
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
11994
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11995
|
+
Processing by TestsController#offsite_without_default as HTML
|
11996
|
+
Redirected to http://rubyonrails.org/
|
11997
|
+
Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
|
11998
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
11999
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12000
|
+
Processing by TestsController#destroy as HTML
|
12001
|
+
Parameters: {"id"=>"1"}
|
12002
|
+
Redirected to http://test.host/tests/new
|
12003
|
+
Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
|
12004
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12005
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12006
|
+
Processing by TestsController#create as HTML
|
12007
|
+
Redirected to http://test.host/
|
12008
|
+
Completed 301 Moved Permanently in 0ms (ActiveRecord: 0.0ms)
|
12009
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12010
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12011
|
+
Processing by TestsController#create as HTML
|
12012
|
+
Redirected to http://test.host/
|
12013
|
+
Completed 301 Moved Permanently in 0ms (ActiveRecord: 0.0ms)
|
12014
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12015
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12016
|
+
Processing by TestsController#offsite_with_default as HTML
|
12017
|
+
Redirected to http://test.host/tests/new
|
12018
|
+
Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
|
12019
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12020
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12021
|
+
Processing by TestsController#offsite_with_default as HTML
|
12022
|
+
Redirected to http://test.host/tests/new
|
12023
|
+
Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
|
12024
|
+
Processing by TestsController#offsite_without_default as HTML
|
12025
|
+
Redirected to http://test.host/
|
12026
|
+
Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
|
12027
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12028
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12029
|
+
Processing by TestsController#new as HTML
|
12030
|
+
Completed 200 OK in 9ms (Views: 8.6ms | ActiveRecord: 0.0ms)
|
12031
|
+
Processing by TestsController#new as HTML
|
12032
|
+
Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
12033
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12034
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12035
|
+
Processing by TestsController#new as HTML
|
12036
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
12037
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12038
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12039
|
+
Processing by TestsController#show as HTML
|
12040
|
+
Parameters: {"id"=>"1"}
|
12041
|
+
Completed 500 Internal Server Error in 0ms
|
12042
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12043
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12044
|
+
Processing by TestsController#new as HTML
|
12045
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
12046
|
+
Processing by TestsController#create as HTML
|
12047
|
+
Redirected to /tests/1
|
12048
|
+
Completed 301 Moved Permanently in 0ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
12049
|
+
Processing by TestsController#update as HTML
|
12050
|
+
Parameters: {"id"=>"1"}
|
12051
|
+
Redirected to http://test.host/tests/1
|
12052
|
+
Completed 302 Found in 0ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
12053
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12054
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12055
|
+
Processing by TestsController#new as HTML
|
12056
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
12057
|
+
Processing by TestsController#update as HTML
|
12058
|
+
Parameters: {"id"=>"1"}
|
12059
|
+
Redirected to http://test.host/tests/1
|
12060
|
+
Completed 302 Found in 0ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
12061
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12062
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12063
|
+
Processing by TestsController#show as HTML
|
12064
|
+
Parameters: {"id"=>"1"}
|
12065
|
+
Completed 500 Internal Server Error in 0ms
|
12066
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12067
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12068
|
+
Processing by TestsController#new as HTML
|
12069
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
12070
|
+
Processing by TestsController#update as HTML
|
12071
|
+
Parameters: {"id"=>"1"}
|
12072
|
+
Redirected to http://test.host/tests/1
|
12073
|
+
Completed 302 Found in 0ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
12074
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12075
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12076
|
+
Processing by TestsController#update as HTML
|
12077
|
+
Parameters: {"id"=>"1"}
|
12078
|
+
Redirected to http://test.host/tests/1?notice=Updated%21
|
12079
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
12080
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12081
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12082
|
+
Processing by TestsController#update as HTML
|
12083
|
+
Parameters: {"id"=>"1"}
|
12084
|
+
Redirected to http://test.host/tests/1?notice=Updated%21
|
12085
|
+
Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
|
12086
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12087
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12088
|
+
Processing by TestsController#new as HTML
|
12089
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
12090
|
+
Processing by TestsController#edit as HTML
|
12091
|
+
Parameters: {"id"=>"1"}
|
12092
|
+
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
12093
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12094
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12095
|
+
Processing by TestsController#new as HTML
|
12096
|
+
Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
12097
|
+
Processing by TestsController#destroy as HTML
|
12098
|
+
Parameters: {"id"=>"1"}
|
12099
|
+
Redirected to /tests/1
|
12100
|
+
Completed 302 Found in 0ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
12101
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12102
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12103
|
+
Started GET "/tests/1/edit" for 127.0.0.1 at 2015-01-14 11:03:25 -0600
|
12104
|
+
Processing by TestsController#edit as HTML
|
12105
|
+
Parameters: {"id"=>"1"}
|
12106
|
+
Completed 200 OK in 18ms (Views: 9.8ms | ActiveRecord: 0.0ms)
|
12107
|
+
Started GET "/tests/new" for 127.0.0.1 at 2015-01-14 11:03:25 -0600
|
12108
|
+
Processing by TestsController#new as HTML
|
12109
|
+
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
12110
|
+
Started GET "/tests" for 127.0.0.1 at 2015-01-14 11:03:25 -0600
|
12111
|
+
Processing by TestsController#index as HTML
|
12112
|
+
Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
12113
|
+
Started PUT "/tests/1" for 127.0.0.1 at 2015-01-14 11:03:25 -0600
|
12114
|
+
Processing by TestsController#update as HTML
|
12115
|
+
Parameters: {"utf8"=>"✓", "commit"=>"Update test", "id"=>"1"}
|
12116
|
+
Redirected to http://www.example.com/tests/1/edit
|
12117
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
12118
|
+
Started GET "/tests/1/edit" for 127.0.0.1 at 2015-01-14 11:03:25 -0600
|
12119
|
+
Processing by TestsController#edit as HTML
|
12120
|
+
Parameters: {"id"=>"1"}
|
12121
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
12122
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12123
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12124
|
+
Started GET "/tests/1/edit" for 127.0.0.1 at 2015-01-14 11:03:25 -0600
|
12125
|
+
Processing by TestsController#edit as HTML
|
12126
|
+
Parameters: {"id"=>"1"}
|
12127
|
+
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
12128
|
+
Started GET "/tests/new" for 127.0.0.1 at 2015-01-14 11:03:25 -0600
|
12129
|
+
Processing by TestsController#new as HTML
|
12130
|
+
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
12131
|
+
Started GET "/tests" for 127.0.0.1 at 2015-01-14 11:03:25 -0600
|
12132
|
+
Processing by TestsController#index as HTML
|
12133
|
+
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
12134
|
+
Started GET "/tests/new" for 127.0.0.1 at 2015-01-14 11:03:25 -0600
|
12135
|
+
Processing by TestsController#new as HTML
|
12136
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
12137
|
+
Started GET "/tests" for 127.0.0.1 at 2015-01-14 11:03:25 -0600
|
12138
|
+
Processing by TestsController#index as HTML
|
12139
|
+
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
12140
|
+
Started PUT "/tests/1" for 127.0.0.1 at 2015-01-14 11:03:25 -0600
|
12141
|
+
Processing by TestsController#update as HTML
|
12142
|
+
Parameters: {"utf8"=>"✓", "commit"=>"Update test", "id"=>"1"}
|
12143
|
+
Redirected to http://www.example.com/tests/1/edit
|
12144
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
12145
|
+
Started GET "/tests/1/edit" for 127.0.0.1 at 2015-01-14 11:03:25 -0600
|
12146
|
+
Processing by TestsController#edit as HTML
|
12147
|
+
Parameters: {"id"=>"1"}
|
12148
|
+
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
12149
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12150
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12151
|
+
Started GET "/tests/1/edit" for 127.0.0.1 at 2015-01-14 11:03:25 -0600
|
12152
|
+
Processing by TestsController#edit as HTML
|
12153
|
+
Parameters: {"id"=>"1"}
|
12154
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
12155
|
+
Started GET "/tests/new" for 127.0.0.1 at 2015-01-14 11:03:25 -0600
|
12156
|
+
Processing by TestsController#new as HTML
|
12157
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
12158
|
+
Started GET "/tests/1/edit" for 127.0.0.1 at 2015-01-14 11:03:25 -0600
|
12159
|
+
Processing by TestsController#edit as HTML
|
12160
|
+
Parameters: {"id"=>"1"}
|
12161
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
12162
|
+
Started GET "/tests" for 127.0.0.1 at 2015-01-14 11:03:25 -0600
|
12163
|
+
Processing by TestsController#index as HTML
|
12164
|
+
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
12165
|
+
Started PUT "/tests/1" for 127.0.0.1 at 2015-01-14 11:03:25 -0600
|
12166
|
+
Processing by TestsController#update as HTML
|
12167
|
+
Parameters: {"utf8"=>"✓", "commit"=>"Update test", "id"=>"1"}
|
12168
|
+
Redirected to http://www.example.com/tests/new
|
12169
|
+
Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
|
12170
|
+
Started GET "/tests/new" for 127.0.0.1 at 2015-01-14 11:03:25 -0600
|
12171
|
+
Processing by TestsController#new as HTML
|
12172
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
12173
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12174
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12175
|
+
Started GET "/tests/new" for 127.0.0.1 at 2015-01-14 11:03:25 -0600
|
12176
|
+
Processing by TestsController#new as HTML
|
12177
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
12178
|
+
Started POST "/tests" for 127.0.0.1 at 2015-01-14 11:03:25 -0600
|
12179
|
+
Processing by TestsController#create as HTML
|
12180
|
+
Parameters: {"utf8"=>"✓", "commit"=>"New test"}
|
12181
|
+
Redirected to http://www.example.com/tests/new
|
12182
|
+
Completed 301 Moved Permanently in 1ms (ActiveRecord: 0.0ms)
|
12183
|
+
Started GET "/tests/new" for 127.0.0.1 at 2015-01-14 11:03:25 -0600
|
12184
|
+
Processing by TestsController#new as HTML
|
12185
|
+
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
12186
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12187
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
12188
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12189
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12190
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12191
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12192
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12193
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12194
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12195
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12196
|
+
Started GET "/tests/new" for 127.0.0.1 at 2015-01-14 11:04:47 -0600
|
12197
|
+
Processing by TestsController#new as HTML
|
12198
|
+
Rendered tests/new.html.erb within layouts/application (1.6ms)
|
12199
|
+
Completed 200 OK in 27ms (Views: 14.1ms | ActiveRecord: 0.0ms)
|
12200
|
+
Started POST "/tests" for 127.0.0.1 at 2015-01-14 11:04:47 -0600
|
12201
|
+
Processing by TestsController#create as HTML
|
12202
|
+
Parameters: {"utf8"=>"✓", "commit"=>"New test"}
|
12203
|
+
Redirected to http://www.example.com/tests/new
|
12204
|
+
Completed 301 Moved Permanently in 1ms (ActiveRecord: 0.0ms)
|
12205
|
+
Started GET "/tests/new" for 127.0.0.1 at 2015-01-14 11:04:47 -0600
|
12206
|
+
Processing by TestsController#new as HTML
|
12207
|
+
Rendered tests/new.html.erb within layouts/application (0.5ms)
|
12208
|
+
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
12209
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12210
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12211
|
+
Started GET "/tests/1/edit" for 127.0.0.1 at 2015-01-14 11:04:47 -0600
|
12212
|
+
Processing by TestsController#edit as HTML
|
12213
|
+
Parameters: {"id"=>"1"}
|
12214
|
+
Rendered tests/edit.html.erb within layouts/application (0.6ms)
|
12215
|
+
Completed 200 OK in 39ms (Views: 38.6ms | ActiveRecord: 0.0ms)
|
12216
|
+
Started GET "/tests/new" for 127.0.0.1 at 2015-01-14 11:04:47 -0600
|
12217
|
+
Processing by TestsController#new as HTML
|
12218
|
+
Rendered tests/new.html.erb within layouts/application (0.5ms)
|
12219
|
+
Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
12220
|
+
Started GET "/tests" for 127.0.0.1 at 2015-01-14 11:04:47 -0600
|
12221
|
+
Processing by TestsController#index as HTML
|
12222
|
+
Rendered tests/index.html.erb within layouts/application (1.0ms)
|
12223
|
+
Completed 200 OK in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
|
12224
|
+
Started PUT "/tests/1" for 127.0.0.1 at 2015-01-14 11:04:47 -0600
|
12225
|
+
Processing by TestsController#update as HTML
|
12226
|
+
Parameters: {"utf8"=>"✓", "commit"=>"Update test", "id"=>"1"}
|
12227
|
+
Redirected to http://www.example.com/tests/1/edit
|
12228
|
+
Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
|
12229
|
+
Started GET "/tests/1/edit" for 127.0.0.1 at 2015-01-14 11:04:47 -0600
|
12230
|
+
Processing by TestsController#edit as HTML
|
12231
|
+
Parameters: {"id"=>"1"}
|
12232
|
+
Rendered tests/edit.html.erb within layouts/application (0.3ms)
|
12233
|
+
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
12234
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12235
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12236
|
+
Started GET "/tests/1/edit" for 127.0.0.1 at 2015-01-14 11:04:47 -0600
|
12237
|
+
Processing by TestsController#edit as HTML
|
12238
|
+
Parameters: {"id"=>"1"}
|
12239
|
+
Rendered tests/edit.html.erb within layouts/application (0.2ms)
|
12240
|
+
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
12241
|
+
Started GET "/tests/new" for 127.0.0.1 at 2015-01-14 11:04:47 -0600
|
12242
|
+
Processing by TestsController#new as HTML
|
12243
|
+
Rendered tests/new.html.erb within layouts/application (0.4ms)
|
12244
|
+
Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
12245
|
+
Started GET "/tests/1/edit" for 127.0.0.1 at 2015-01-14 11:04:47 -0600
|
12246
|
+
Processing by TestsController#edit as HTML
|
12247
|
+
Parameters: {"id"=>"1"}
|
12248
|
+
Rendered tests/edit.html.erb within layouts/application (0.2ms)
|
12249
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
12250
|
+
Started GET "/tests" for 127.0.0.1 at 2015-01-14 11:04:47 -0600
|
12251
|
+
Processing by TestsController#index as HTML
|
12252
|
+
Rendered tests/index.html.erb within layouts/application (0.7ms)
|
12253
|
+
Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
12254
|
+
Started PUT "/tests/1" for 127.0.0.1 at 2015-01-14 11:04:47 -0600
|
12255
|
+
Processing by TestsController#update as HTML
|
12256
|
+
Parameters: {"utf8"=>"✓", "commit"=>"Update test", "id"=>"1"}
|
12257
|
+
Redirected to http://www.example.com/tests/new
|
12258
|
+
Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
|
12259
|
+
Started GET "/tests/new" for 127.0.0.1 at 2015-01-14 11:04:47 -0600
|
12260
|
+
Processing by TestsController#new as HTML
|
12261
|
+
Rendered tests/new.html.erb within layouts/application (0.4ms)
|
12262
|
+
Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
12263
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12264
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12265
|
+
Started GET "/tests/1/edit" for 127.0.0.1 at 2015-01-14 11:04:48 -0600
|
12266
|
+
Processing by TestsController#edit as HTML
|
12267
|
+
Parameters: {"id"=>"1"}
|
12268
|
+
Rendered tests/edit.html.erb within layouts/application (0.2ms)
|
12269
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
12270
|
+
Started GET "/tests/new" for 127.0.0.1 at 2015-01-14 11:04:48 -0600
|
12271
|
+
Processing by TestsController#new as HTML
|
12272
|
+
Rendered tests/new.html.erb within layouts/application (0.3ms)
|
12273
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
12274
|
+
Started GET "/tests" for 127.0.0.1 at 2015-01-14 11:04:48 -0600
|
12275
|
+
Processing by TestsController#index as HTML
|
12276
|
+
Rendered tests/index.html.erb within layouts/application (0.4ms)
|
12277
|
+
Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
12278
|
+
Started GET "/tests/new" for 127.0.0.1 at 2015-01-14 11:04:48 -0600
|
12279
|
+
Processing by TestsController#new as HTML
|
12280
|
+
Rendered tests/new.html.erb within layouts/application (0.4ms)
|
12281
|
+
Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
12282
|
+
Started GET "/tests" for 127.0.0.1 at 2015-01-14 11:04:48 -0600
|
12283
|
+
Processing by TestsController#index as HTML
|
12284
|
+
Rendered tests/index.html.erb within layouts/application (0.4ms)
|
12285
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
12286
|
+
Started PUT "/tests/1" for 127.0.0.1 at 2015-01-14 11:04:48 -0600
|
12287
|
+
Processing by TestsController#update as HTML
|
12288
|
+
Parameters: {"utf8"=>"✓", "commit"=>"Update test", "id"=>"1"}
|
12289
|
+
Redirected to http://www.example.com/tests/1/edit
|
12290
|
+
Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
|
12291
|
+
Started GET "/tests/1/edit" for 127.0.0.1 at 2015-01-14 11:04:48 -0600
|
12292
|
+
Processing by TestsController#edit as HTML
|
12293
|
+
Parameters: {"id"=>"1"}
|
12294
|
+
Rendered tests/edit.html.erb within layouts/application (0.2ms)
|
12295
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
12296
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12297
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12298
|
+
Processing by TestsController#create as HTML
|
12299
|
+
Redirected to http://test.host/
|
12300
|
+
Completed 301 Moved Permanently in 0ms (ActiveRecord: 0.0ms)
|
12301
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12302
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12303
|
+
Processing by TestsController#offsite_with_default as HTML
|
12304
|
+
Redirected to http://rubyonrails.org/
|
12305
|
+
Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
|
12306
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12307
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12308
|
+
Processing by TestsController#offsite_with_default as HTML
|
12309
|
+
Redirected to http://test.host/tests/new
|
12310
|
+
Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
|
12311
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12312
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12313
|
+
Processing by TestsController#offsite_with_default as HTML
|
12314
|
+
Redirected to http://rubyonrails.org/
|
12315
|
+
Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
|
12316
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12317
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12318
|
+
Processing by TestsController#offsite_with_default as HTML
|
12319
|
+
Redirected to http://test.host/tests/new
|
12320
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
12321
|
+
Processing by TestsController#offsite_without_default as HTML
|
12322
|
+
Redirected to http://test.host/
|
12323
|
+
Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
|
12324
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12325
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12326
|
+
Processing by TestsController#create as HTML
|
12327
|
+
Redirected to http://test.host/
|
12328
|
+
Completed 301 Moved Permanently in 0ms (ActiveRecord: 0.0ms)
|
12329
|
+
Processing by TestsController#destroy as HTML
|
12330
|
+
Parameters: {"id"=>"1"}
|
12331
|
+
Redirected to http://test.host/tests/new
|
12332
|
+
Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
|
12333
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12334
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12335
|
+
Processing by TestsController#offsite_without_default as HTML
|
12336
|
+
Redirected to http://rubyonrails.org/
|
12337
|
+
Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
|
12338
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12339
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12340
|
+
Processing by TestsController#destroy as HTML
|
12341
|
+
Parameters: {"id"=>"1"}
|
12342
|
+
Redirected to http://test.host/tests/new
|
12343
|
+
Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
|
12344
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12345
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12346
|
+
Processing by TestsController#offsite_without_default as HTML
|
12347
|
+
Redirected to http://rubyonrails.org/
|
12348
|
+
Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
|
12349
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12350
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12351
|
+
Processing by TestsController#create as HTML
|
12352
|
+
Redirected to /tests/1
|
12353
|
+
Completed 301 Moved Permanently in 0ms (ActiveRecord: 0.0ms)
|
12354
|
+
Processing by TestsController#destroy as HTML
|
12355
|
+
Parameters: {"id"=>"2"}
|
12356
|
+
Redirected to /tests/1
|
12357
|
+
Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
|
12358
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12359
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12360
|
+
Processing by TestsController#create as HTML
|
12361
|
+
Redirected to http://test.host/
|
12362
|
+
Completed 301 Moved Permanently in 0ms (ActiveRecord: 0.0ms)
|
12363
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12364
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12365
|
+
Processing by TestsController#offsite_without_default as HTML
|
12366
|
+
Redirected to http://test.host/
|
12367
|
+
Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
|
12368
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12369
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12370
|
+
Processing by TestsController#new as HTML
|
12371
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
12372
|
+
Processing by TestsController#destroy as HTML
|
12373
|
+
Parameters: {"id"=>"1"}
|
12374
|
+
Redirected to /tests/1
|
12375
|
+
Completed 302 Found in 0ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
12376
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12377
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12378
|
+
Processing by TestsController#new as HTML
|
12379
|
+
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
12380
|
+
Processing by TestsController#edit as HTML
|
12381
|
+
Parameters: {"id"=>"1"}
|
12382
|
+
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
12383
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12384
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12385
|
+
Processing by TestsController#new as HTML
|
12386
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
12387
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12388
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12389
|
+
Processing by TestsController#new as HTML
|
12390
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
12391
|
+
Processing by TestsController#new as HTML
|
12392
|
+
Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
12393
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12394
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12395
|
+
Processing by TestsController#new as HTML
|
12396
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
12397
|
+
Processing by TestsController#update as HTML
|
12398
|
+
Parameters: {"id"=>"1"}
|
12399
|
+
Redirected to http://test.host/tests/1
|
12400
|
+
Completed 302 Found in 0ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
12401
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12402
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12403
|
+
Processing by TestsController#new as HTML
|
12404
|
+
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
12405
|
+
Processing by TestsController#create as HTML
|
12406
|
+
Redirected to /tests/1
|
12407
|
+
Completed 301 Moved Permanently in 0ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
12408
|
+
Processing by TestsController#update as HTML
|
12409
|
+
Parameters: {"id"=>"1"}
|
12410
|
+
Redirected to http://test.host/tests/1
|
12411
|
+
Completed 302 Found in 0ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
12412
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12413
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12414
|
+
Processing by TestsController#show as HTML
|
12415
|
+
Parameters: {"id"=>"1"}
|
12416
|
+
Redirected to http://test.host/tests/new
|
12417
|
+
Completed 301 Moved Permanently in 0ms (ActiveRecord: 0.0ms)
|
12418
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12419
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12420
|
+
Processing by TestsController#new as HTML
|
12421
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
12422
|
+
Processing by TestsController#update as HTML
|
12423
|
+
Parameters: {"id"=>"1"}
|
12424
|
+
Redirected to http://test.host/tests/1
|
12425
|
+
Completed 302 Found in 0ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
12426
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12427
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12428
|
+
Processing by TestsController#update as HTML
|
12429
|
+
Parameters: {"id"=>"1"}
|
12430
|
+
Redirected to http://test.host/tests/1?notice=Updated%21
|
12431
|
+
Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
|
12432
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12433
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12434
|
+
Processing by TestsController#show as HTML
|
12435
|
+
Parameters: {"id"=>"1"}
|
12436
|
+
Redirected to http://test.host/tests/new
|
12437
|
+
Completed 301 Moved Permanently in 0ms (ActiveRecord: 0.0ms)
|
12438
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12439
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
12440
|
+
Processing by TestsController#update as HTML
|
12441
|
+
Parameters: {"id"=>"1"}
|
12442
|
+
Redirected to http://test.host/tests/1?notice=Updated%21
|
12443
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
12444
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12445
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
12446
|
+
Started GET "/tests/new" for 127.0.0.1 at 2015-01-14 11:06:00 -0600
|
12447
|
+
Processing by TestsController#new as HTML
|
12448
|
+
Rendered tests/new.html.erb within layouts/application (36.7ms)
|
12449
|
+
Completed 200 OK in 59ms (Views: 50.4ms | ActiveRecord: 0.0ms)
|
12450
|
+
Started POST "/tests" for 127.0.0.1 at 2015-01-14 11:06:00 -0600
|
12451
|
+
Processing by TestsController#create as HTML
|
12452
|
+
Parameters: {"utf8"=>"✓", "commit"=>"New test"}
|
12453
|
+
Redirected to http://www.example.com/tests/new
|
12454
|
+
Completed 301 Moved Permanently in 1ms (ActiveRecord: 0.0ms)
|
12455
|
+
Started GET "/tests/new" for 127.0.0.1 at 2015-01-14 11:06:00 -0600
|
12456
|
+
Processing by TestsController#new as HTML
|
12457
|
+
Rendered tests/new.html.erb within layouts/application (0.3ms)
|
12458
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
12459
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12460
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12461
|
+
Started GET "/tests/1/edit" for 127.0.0.1 at 2015-01-14 11:06:00 -0600
|
12462
|
+
Processing by TestsController#edit as HTML
|
12463
|
+
Parameters: {"id"=>"1"}
|
12464
|
+
Rendered tests/edit.html.erb within layouts/application (0.5ms)
|
12465
|
+
Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
|
12466
|
+
Started GET "/tests/new" for 127.0.0.1 at 2015-01-14 11:06:00 -0600
|
12467
|
+
Processing by TestsController#new as HTML
|
12468
|
+
Rendered tests/new.html.erb within layouts/application (0.3ms)
|
12469
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
12470
|
+
Started GET "/tests/1/edit" for 127.0.0.1 at 2015-01-14 11:06:00 -0600
|
12471
|
+
Processing by TestsController#edit as HTML
|
12472
|
+
Parameters: {"id"=>"1"}
|
12473
|
+
Rendered tests/edit.html.erb within layouts/application (0.1ms)
|
12474
|
+
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
12475
|
+
Started GET "/tests" for 127.0.0.1 at 2015-01-14 11:06:00 -0600
|
12476
|
+
Processing by TestsController#index as HTML
|
12477
|
+
Rendered tests/index.html.erb within layouts/application (0.7ms)
|
12478
|
+
Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
12479
|
+
Started PUT "/tests/1" for 127.0.0.1 at 2015-01-14 11:06:00 -0600
|
12480
|
+
Processing by TestsController#update as HTML
|
12481
|
+
Parameters: {"utf8"=>"✓", "commit"=>"Update test", "id"=>"1"}
|
12482
|
+
Redirected to http://www.example.com/tests/new
|
12483
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
12484
|
+
Started GET "/tests/new" for 127.0.0.1 at 2015-01-14 11:06:00 -0600
|
12485
|
+
Processing by TestsController#new as HTML
|
12486
|
+
Rendered tests/new.html.erb within layouts/application (0.3ms)
|
12487
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
12488
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12489
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12490
|
+
Started GET "/tests/1/edit" for 127.0.0.1 at 2015-01-14 11:06:00 -0600
|
12491
|
+
Processing by TestsController#edit as HTML
|
12492
|
+
Parameters: {"id"=>"1"}
|
12493
|
+
Rendered tests/edit.html.erb within layouts/application (0.1ms)
|
12494
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
12495
|
+
Started GET "/tests/new" for 127.0.0.1 at 2015-01-14 11:06:00 -0600
|
12496
|
+
Processing by TestsController#new as HTML
|
12497
|
+
Rendered tests/new.html.erb within layouts/application (0.2ms)
|
12498
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
12499
|
+
Started GET "/tests" for 127.0.0.1 at 2015-01-14 11:06:00 -0600
|
12500
|
+
Processing by TestsController#index as HTML
|
12501
|
+
Rendered tests/index.html.erb within layouts/application (0.3ms)
|
12502
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
12503
|
+
Started PUT "/tests/1" for 127.0.0.1 at 2015-01-14 11:06:00 -0600
|
12504
|
+
Processing by TestsController#update as HTML
|
12505
|
+
Parameters: {"utf8"=>"✓", "commit"=>"Update test", "id"=>"1"}
|
12506
|
+
Redirected to http://www.example.com/tests/1/edit
|
12507
|
+
Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
|
12508
|
+
Started GET "/tests/1/edit" for 127.0.0.1 at 2015-01-14 11:06:00 -0600
|
12509
|
+
Processing by TestsController#edit as HTML
|
12510
|
+
Parameters: {"id"=>"1"}
|
12511
|
+
Rendered tests/edit.html.erb within layouts/application (0.1ms)
|
12512
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
12513
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12514
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12515
|
+
Started GET "/tests/1/edit" for 127.0.0.1 at 2015-01-14 11:06:00 -0600
|
12516
|
+
Processing by TestsController#edit as HTML
|
12517
|
+
Parameters: {"id"=>"1"}
|
12518
|
+
Rendered tests/edit.html.erb within layouts/application (0.2ms)
|
12519
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
12520
|
+
Started GET "/tests/new" for 127.0.0.1 at 2015-01-14 11:06:00 -0600
|
12521
|
+
Processing by TestsController#new as HTML
|
12522
|
+
Rendered tests/new.html.erb within layouts/application (0.3ms)
|
12523
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
12524
|
+
Started GET "/tests" for 127.0.0.1 at 2015-01-14 11:06:00 -0600
|
12525
|
+
Processing by TestsController#index as HTML
|
12526
|
+
Rendered tests/index.html.erb within layouts/application (0.3ms)
|
12527
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
12528
|
+
Started GET "/tests/new" for 127.0.0.1 at 2015-01-14 11:06:00 -0600
|
12529
|
+
Processing by TestsController#new as HTML
|
12530
|
+
Rendered tests/new.html.erb within layouts/application (0.3ms)
|
12531
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
12532
|
+
Started GET "/tests" for 127.0.0.1 at 2015-01-14 11:06:00 -0600
|
12533
|
+
Processing by TestsController#index as HTML
|
12534
|
+
Rendered tests/index.html.erb within layouts/application (0.4ms)
|
12535
|
+
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
12536
|
+
Started PUT "/tests/1" for 127.0.0.1 at 2015-01-14 11:06:00 -0600
|
12537
|
+
Processing by TestsController#update as HTML
|
12538
|
+
Parameters: {"utf8"=>"✓", "commit"=>"Update test", "id"=>"1"}
|
12539
|
+
Redirected to http://www.example.com/tests/1/edit
|
12540
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
12541
|
+
Started GET "/tests/1/edit" for 127.0.0.1 at 2015-01-14 11:06:00 -0600
|
12542
|
+
Processing by TestsController#edit as HTML
|
12543
|
+
Parameters: {"id"=>"1"}
|
12544
|
+
Rendered tests/edit.html.erb within layouts/application (0.1ms)
|
12545
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
12546
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12547
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12548
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12549
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12550
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12551
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12552
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12553
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12554
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12555
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12556
|
+
Processing by TestsController#new as HTML
|
12557
|
+
Rendered tests/new.html.erb within layouts/application (0.4ms)
|
12558
|
+
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
12559
|
+
Processing by TestsController#destroy as HTML
|
12560
|
+
Parameters: {"id"=>"1"}
|
12561
|
+
Redirected to /tests/1
|
12562
|
+
Completed 302 Found in 0ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
12563
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12564
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12565
|
+
Processing by TestsController#new as HTML
|
12566
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
12567
|
+
Processing by TestsController#edit as HTML
|
12568
|
+
Parameters: {"id"=>"1"}
|
12569
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
12570
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12571
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12572
|
+
Processing by TestsController#offsite_without_default as HTML
|
12573
|
+
Redirected to http://rubyonrails.org/
|
12574
|
+
Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
|
12575
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12576
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12577
|
+
Processing by TestsController#offsite_with_default as HTML
|
12578
|
+
Redirected to http://test.host/tests/new
|
12579
|
+
Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
|
12580
|
+
Processing by TestsController#offsite_without_default as HTML
|
12581
|
+
Redirected to http://test.host/
|
12582
|
+
Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
|
12583
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12584
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12585
|
+
Processing by TestsController#create as HTML
|
12586
|
+
Redirected to http://test.host/
|
12587
|
+
Completed 301 Moved Permanently in 0ms (ActiveRecord: 0.0ms)
|
12588
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12589
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12590
|
+
Processing by TestsController#offsite_with_default as HTML
|
12591
|
+
Redirected to http://rubyonrails.org/
|
12592
|
+
Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
|
12593
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12594
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12595
|
+
Processing by TestsController#offsite_without_default as HTML
|
12596
|
+
Redirected to http://test.host/
|
12597
|
+
Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
|
12598
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12599
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12600
|
+
Processing by TestsController#create as HTML
|
12601
|
+
Redirected to /tests/1
|
12602
|
+
Completed 301 Moved Permanently in 0ms (ActiveRecord: 0.0ms)
|
12603
|
+
Processing by TestsController#destroy as HTML
|
12604
|
+
Parameters: {"id"=>"2"}
|
12605
|
+
Redirected to /tests/1
|
12606
|
+
Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
|
12607
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12608
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12609
|
+
Processing by TestsController#offsite_without_default as HTML
|
12610
|
+
Redirected to http://rubyonrails.org/
|
12611
|
+
Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
|
12612
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12613
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12614
|
+
Processing by TestsController#destroy as HTML
|
12615
|
+
Parameters: {"id"=>"1"}
|
12616
|
+
Redirected to http://test.host/tests/new
|
12617
|
+
Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
|
12618
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12619
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12620
|
+
Processing by TestsController#offsite_with_default as HTML
|
12621
|
+
Redirected to http://test.host/tests/new
|
12622
|
+
Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
|
12623
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12624
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12625
|
+
Processing by TestsController#create as HTML
|
12626
|
+
Redirected to http://test.host/
|
12627
|
+
Completed 301 Moved Permanently in 0ms (ActiveRecord: 0.0ms)
|
12628
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12629
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12630
|
+
Processing by TestsController#offsite_with_default as HTML
|
12631
|
+
Redirected to http://rubyonrails.org/
|
12632
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
12633
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12634
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12635
|
+
Processing by TestsController#create as HTML
|
12636
|
+
Redirected to http://test.host/
|
12637
|
+
Completed 301 Moved Permanently in 0ms (ActiveRecord: 0.0ms)
|
12638
|
+
Processing by TestsController#destroy as HTML
|
12639
|
+
Parameters: {"id"=>"1"}
|
12640
|
+
Redirected to http://test.host/tests/new
|
12641
|
+
Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
|
12642
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12643
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12644
|
+
Processing by TestsController#new as HTML
|
12645
|
+
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
12646
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12647
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12648
|
+
Processing by TestsController#new as HTML
|
12649
|
+
Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
12650
|
+
Processing by TestsController#new as HTML
|
12651
|
+
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
12652
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12653
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12654
|
+
Processing by TestsController#new as HTML
|
12655
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
12656
|
+
Processing by TestsController#update as HTML
|
12657
|
+
Parameters: {"id"=>"1"}
|
12658
|
+
Redirected to http://test.host/tests/1
|
12659
|
+
Completed 302 Found in 0ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
12660
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12661
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12662
|
+
Processing by TestsController#new as HTML
|
12663
|
+
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
12664
|
+
Processing by TestsController#create as HTML
|
12665
|
+
Redirected to /tests/1
|
12666
|
+
Completed 301 Moved Permanently in 0ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
12667
|
+
Processing by TestsController#update as HTML
|
12668
|
+
Parameters: {"id"=>"1"}
|
12669
|
+
Redirected to http://test.host/tests/1
|
12670
|
+
Completed 302 Found in 0ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
12671
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12672
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12673
|
+
Processing by TestsController#update as HTML
|
12674
|
+
Parameters: {"id"=>"1"}
|
12675
|
+
Redirected to http://test.host/
|
12676
|
+
Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
|
12677
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12678
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12679
|
+
Processing by TestsController#show as HTML
|
12680
|
+
Parameters: {"id"=>"1"}
|
12681
|
+
Redirected to http://test.host/tests/new
|
12682
|
+
Completed 301 Moved Permanently in 0ms (ActiveRecord: 0.0ms)
|
12683
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12684
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12685
|
+
Processing by TestsController#new as HTML
|
12686
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
12687
|
+
Processing by TestsController#update as HTML
|
12688
|
+
Parameters: {"id"=>"1"}
|
12689
|
+
Redirected to http://test.host/tests/1
|
12690
|
+
Completed 302 Found in 0ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
12691
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12692
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12693
|
+
Processing by TestsController#show as HTML
|
12694
|
+
Parameters: {"id"=>"1"}
|
12695
|
+
Redirected to http://test.host/tests/new
|
12696
|
+
Completed 301 Moved Permanently in 0ms (ActiveRecord: 0.0ms)
|
12697
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12698
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12699
|
+
Processing by TestsController#update as HTML
|
12700
|
+
Parameters: {"id"=>"1"}
|
12701
|
+
Redirected to http://test.host/
|
12702
|
+
Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
|
12703
|
+
[1m[35m (0.0ms)[0m rollback transaction
|