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: 78d114e95cd15b64aa87b68a36de33da6b1a9527
4
- data.tar.gz: 0a757f3386a15098a7199673177ff82d2e684052
3
+ metadata.gz: e19b6572c0f28169e9d691a3c4a06d2e4ec2d18b
4
+ data.tar.gz: 4613caae3a14d45a1c6bbc5d412d0dd63fa28b5e
5
5
  SHA512:
6
- metadata.gz: 9fba8920bb3deaa32ccfc7570904da6952ce791f4da0e1fdc53f9cd698c06f89e38f72785068ca43273dae777301d915f7d6523241ba5dc5c581589da84c5184
7
- data.tar.gz: 7a47e097f79ec5f89a8b4230b4b88425c0bedc1056224a95ee50123939250b75488f56e611f0b2bd9c57f87908a7b0334cf405a5339df3b1ab9d224572899bbe
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
- session[:jump_back_stored_referer] ? redirect_to(clear_referer) : redirect_to(path)
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
@@ -1,3 +1,3 @@
1
1
  module JumpBack
2
- VERSION = "0.1.1"
2
+ VERSION = "0.2.1"
3
3
  end
@@ -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
@@ -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
   (0.1ms) rollback transaction
11718
+  (0.5ms) begin transaction
11719
+  (0.1ms) rollback transaction
11720
+  (0.1ms) begin transaction
11721
+  (0.1ms) rollback transaction
11722
+  (0.1ms) begin transaction
11723
+  (0.1ms) rollback transaction
11724
+  (0.1ms) begin transaction
11725
+  (0.1ms) rollback transaction
11726
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
11738
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
11746
+  (0.1ms) begin transaction
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
+  (0.0ms) rollback transaction
11752
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
11760
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
11766
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
11771
+  (0.0ms) begin transaction
11772
+ Processing by TestsController#create as HTML
11773
+ Redirected to http://test.host/
11774
+ Completed 301 Moved Permanently in 0ms (ActiveRecord: 0.0ms)
11775
+  (0.0ms) rollback transaction
11776
+  (0.1ms) begin transaction
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
+  (0.0ms) rollback transaction
11781
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
11786
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
11795
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
11800
+  (0.1ms) begin transaction
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
+  (0.0ms) rollback transaction
11805
+  (0.1ms) begin transaction
11806
+ Processing by TestsController#create as HTML
11807
+ Redirected to http://test.host/
11808
+ Completed 301 Moved Permanently in 0ms (ActiveRecord: 0.0ms)
11809
+  (0.1ms) rollback transaction
11810
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
11816
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
11825
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
11830
+  (0.1ms) begin transaction
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
+  (0.0ms) rollback transaction
11838
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
11844
+  (0.0ms) begin transaction
11845
+ Processing by TestsController#new as HTML
11846
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
11847
+  (0.1ms) rollback transaction
11848
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
11855
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
11863
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
11884
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
11911
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
11935
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
11948
+  (0.4ms) begin transaction
11949
+  (0.1ms) rollback transaction
11950
+  (0.1ms) begin transaction
11951
+  (0.1ms) rollback transaction
11952
+  (0.1ms) begin transaction
11953
+  (0.1ms) rollback transaction
11954
+  (0.1ms) begin transaction
11955
+  (0.1ms) rollback transaction
11956
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
11965
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
11974
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
11979
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
11984
+  (0.1ms) begin transaction
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
+  (0.0ms) rollback transaction
11989
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
11994
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
11999
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
12005
+  (0.0ms) begin transaction
12006
+ Processing by TestsController#create as HTML
12007
+ Redirected to http://test.host/
12008
+ Completed 301 Moved Permanently in 0ms (ActiveRecord: 0.0ms)
12009
+  (0.1ms) rollback transaction
12010
+  (0.1ms) begin transaction
12011
+ Processing by TestsController#create as HTML
12012
+ Redirected to http://test.host/
12013
+ Completed 301 Moved Permanently in 0ms (ActiveRecord: 0.0ms)
12014
+  (0.0ms) rollback transaction
12015
+  (0.1ms) begin transaction
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
+  (0.0ms) rollback transaction
12020
+  (0.1ms) begin transaction
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
+  (0.0ms) rollback transaction
12028
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
12034
+  (0.1ms) begin transaction
12035
+ Processing by TestsController#new as HTML
12036
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
12037
+  (0.1ms) rollback transaction
12038
+  (0.0ms) begin transaction
12039
+ Processing by TestsController#show as HTML
12040
+ Parameters: {"id"=>"1"}
12041
+ Completed 500 Internal Server Error in 0ms
12042
+  (0.1ms) rollback transaction
12043
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
12054
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
12062
+  (0.0ms) begin transaction
12063
+ Processing by TestsController#show as HTML
12064
+ Parameters: {"id"=>"1"}
12065
+ Completed 500 Internal Server Error in 0ms
12066
+  (0.1ms) rollback transaction
12067
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
12075
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
12081
+  (0.1ms) begin transaction
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
+  (0.0ms) rollback transaction
12087
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
12094
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
12102
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
12123
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
12150
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
12174
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
12187
+  (0.3ms) begin transaction
12188
+  (0.1ms) rollback transaction
12189
+  (0.1ms) begin transaction
12190
+  (0.0ms) rollback transaction
12191
+  (0.1ms) begin transaction
12192
+  (0.0ms) rollback transaction
12193
+  (0.1ms) begin transaction
12194
+  (0.1ms) rollback transaction
12195
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
12210
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
12235
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
12264
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
12297
+  (0.1ms) begin transaction
12298
+ Processing by TestsController#create as HTML
12299
+ Redirected to http://test.host/
12300
+ Completed 301 Moved Permanently in 0ms (ActiveRecord: 0.0ms)
12301
+  (0.1ms) rollback transaction
12302
+  (0.1ms) begin transaction
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
+  (0.0ms) rollback transaction
12307
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
12312
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
12317
+  (0.1ms) begin transaction
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
+  (0.0ms) rollback transaction
12325
+  (0.1ms) begin transaction
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
+  (0.0ms) rollback transaction
12334
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
12339
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
12345
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
12350
+  (0.1ms) begin transaction
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
+  (0.0ms) rollback transaction
12359
+  (0.1ms) begin transaction
12360
+ Processing by TestsController#create as HTML
12361
+ Redirected to http://test.host/
12362
+ Completed 301 Moved Permanently in 0ms (ActiveRecord: 0.0ms)
12363
+  (0.0ms) rollback transaction
12364
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
12369
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
12377
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
12384
+  (0.0ms) begin transaction
12385
+ Processing by TestsController#new as HTML
12386
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
12387
+  (0.0ms) rollback transaction
12388
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
12394
+  (0.1ms) begin transaction
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
+  (0.0ms) rollback transaction
12402
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
12413
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
12419
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
12427
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
12433
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
12439
+  (0.2ms) begin transaction
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
+  (0.1ms) rollback transaction
12445
+  (0.3ms) begin transaction
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
+  (0.1ms) rollback transaction
12460
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
12489
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
12514
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
12547
+  (0.1ms) begin transaction
12548
+  (0.1ms) rollback transaction
12549
+  (0.1ms) begin transaction
12550
+  (0.0ms) rollback transaction
12551
+  (0.1ms) begin transaction
12552
+  (0.0ms) rollback transaction
12553
+  (0.1ms) begin transaction
12554
+  (0.1ms) rollback transaction
12555
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
12564
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
12571
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
12576
+  (0.1ms) begin transaction
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
+  (0.0ms) rollback transaction
12584
+  (0.0ms) begin transaction
12585
+ Processing by TestsController#create as HTML
12586
+ Redirected to http://test.host/
12587
+ Completed 301 Moved Permanently in 0ms (ActiveRecord: 0.0ms)
12588
+  (0.1ms) rollback transaction
12589
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
12594
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
12599
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
12608
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
12613
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
12619
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
12624
+  (0.1ms) begin transaction
12625
+ Processing by TestsController#create as HTML
12626
+ Redirected to http://test.host/
12627
+ Completed 301 Moved Permanently in 0ms (ActiveRecord: 0.0ms)
12628
+  (0.1ms) rollback transaction
12629
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
12634
+  (0.1ms) begin transaction
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
+  (0.0ms) rollback transaction
12643
+  (0.0ms) begin transaction
12644
+ Processing by TestsController#new as HTML
12645
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
12646
+  (0.1ms) rollback transaction
12647
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
12653
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
12661
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
12672
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
12678
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
12684
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
12692
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
12698
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jump_back
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter Debelak