gatherable 0.0.3 → 1.0.0

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: 1bc54ea40f0ff6de78097880a7d42d2834f306d8
4
- data.tar.gz: fcb75a6c7179f72178572d47a705fedbe49bf3f4
3
+ metadata.gz: 0f007c6e6ea1daa0fff5704b0d51712355c7c0c9
4
+ data.tar.gz: e6ac90f1dc73c6ff83fd2decaa086c1414cc5f46
5
5
  SHA512:
6
- metadata.gz: fb4de29feebad9d784db1a92ec528ecef1c6b48ffc39e53b0b37656e1ede4c187f9766a259f1ed456d9807588be75be8f57de8d1e3d88c6dc24d1473d269b9c0
7
- data.tar.gz: c14233cd87eee21548f98ffe881fc15a85008b253914b3367470fb2d9a2cbedfe5f47cbb1344348a51a5bd7f88ced6e23b677e918e5c6d0a01bb06d90ccae955
6
+ metadata.gz: 5f4210c65012cf900ecbcbc1b324f40b99100006a7e8f57d078e9357994b47ad29ed27a414aa166f154d2cf1c9260ca54ecad46d62247b6e1a1c96f9bf02a47b
7
+ data.tar.gz: 34877dc28efeae9a1fdd046c730172039f92147ffa0c35ee5134cca4e6cb4981ab9282e9b4686e23bc5c65452aab3ff62fc66b2b4e2edb14661cd6556547df61
@@ -22,7 +22,7 @@ module Gatherable
22
22
  end
23
23
 
24
24
  def model_class
25
- Object.const_get(model_name)
25
+ Gatherable.const_get(unmodularized_model_name)
26
26
  end
27
27
 
28
28
  def model_name
@@ -30,15 +30,19 @@ module Gatherable
30
30
  end
31
31
 
32
32
  def model_id
33
- "#{unmodularized_model_name}_id"
33
+ "#{model_name_as_var}_id"
34
34
  end
35
35
 
36
36
  def unmodularized_model_name
37
- model_name.split('::').last.downcase
37
+ model_name.split('::').last
38
+ end
39
+
40
+ def model_name_as_var
41
+ unmodularized_model_name.underscore
38
42
  end
39
43
 
40
44
  def model_params
41
- params.require(unmodularized_model_name).permit(
45
+ params.require(model_name_as_var).permit(
42
46
  *model_class.column_names
43
47
  ).merge(global_identifier => params[global_identifier])
44
48
  end
@@ -16,8 +16,7 @@ class DataTable
16
16
  def classify
17
17
  return Gatherable.const_get(class_name) if Gatherable.const_defined?(class_name)
18
18
  klass = Gatherable.const_set(class_name, Class.new(ActiveRecord::Base))
19
- klass.table_name = name.to_s.pluralize
20
- klass.table_name_prefix = Gatherable.config.schema_name + '.'
19
+ klass.table_name = Gatherable.config.schema_name + '.' + name.to_s.pluralize
21
20
  klass
22
21
  end
23
22
 
@@ -23,7 +23,7 @@ var #{data_table.class_name} = {
23
23
  },
24
24
  get: function(global_identifier, id) {
25
25
  $.ajax({
26
- url: '/gatherable/' + global_identifier + '/#{data_table.name}/' + options[#{data_table.name}_id],
26
+ url: '/gatherable/' + global_identifier + '/#{data_table.name}/' + options[#{data_table.name}_id]
27
27
  });
28
28
  }
29
29
  }
@@ -59,9 +59,9 @@ end
59
59
 
60
60
  def file_template
61
61
  <<-template
62
- class CreateGatherable#{table_name.classify} < ActiveRecord::Migration
62
+ class CreateGatherable#{data_table.name.to_s.classify} < ActiveRecord::Migration
63
63
  def up
64
- create_table '#{Gatherable.config.schema_name}.#{table_name}', :primary_key => '#{data_table.name}_id' do |t|
64
+ create_table '#{table_name}', :primary_key => '#{data_table.name}_id' do |t|
65
65
  #{migration_columns}
66
66
  t.string :#{Gatherable.config.global_identifier}, :index => true
67
67
  t.timestamps :null => false
@@ -69,7 +69,7 @@ class CreateGatherable#{table_name.classify} < ActiveRecord::Migration
69
69
  end
70
70
 
71
71
  def down
72
- drop_table '#{Gatherable.config.schema_name}.#{table_name}'
72
+ drop_table '#{table_name}'
73
73
  end
74
74
  end
75
75
  template
@@ -82,7 +82,7 @@ end
82
82
  end
83
83
 
84
84
  def file_suffix
85
- @file_suffix ||= "create_gatherable_#{table_name.singularize}.rb"
85
+ @file_suffix ||= "create_gatherable_#{data_table.name}.rb"
86
86
  end
87
87
 
88
88
  def already_found_message
@@ -1,3 +1,3 @@
1
1
  module Gatherable
2
- VERSION = "0.0.3"
2
+ VERSION = "1.0.0"
3
3
  end
@@ -1,5 +1,5 @@
1
1
  Gatherable.configure do |c|
2
- c.global_identifier = :session_id
2
+ c.global_identifier = :gatherable_id
3
3
 
4
4
  # c.data_point :data_point_name, :data_point_type
5
5
  c.data_point :price, :decimal
@@ -16867,3 +16867,2971 @@ Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
16867
16867
   (0.1ms) ROLLBACK
16868
16868
   (0.1ms) BEGIN
16869
16869
   (0.1ms) ROLLBACK
16870
+ ActiveRecord::SchemaMigration Load (24.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
16871
+  (113.4ms) DROP DATABASE IF EXISTS "gatherable_test"
16872
+  (327.0ms) CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
16873
+  (113.7ms) DROP DATABASE IF EXISTS "gatherable_test"
16874
+  (233.3ms) CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
16875
+  (113.1ms) DROP DATABASE IF EXISTS "gatherable_test"
16876
+  (233.1ms) CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
16877
+  (27.7ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
16878
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
16879
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
16880
+ Migrating to CreateGatherableSchema (20160203081639)
16881
+  (0.1ms) BEGIN
16882
+  (0.4ms) CREATE SCHEMA gatherable
16883
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160203081639"]]
16884
+  (5.8ms) COMMIT
16885
+ Migrating to CreateGatherablePrice (20160203081640)
16886
+  (0.1ms) BEGIN
16887
+  (20.1ms) CREATE TABLE "gatherable"."prices" ("price_id" serial primary key, "price" decimal, "session_id" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
16888
+  (0.9ms) CREATE INDEX "index_gatherable.prices_on_session_id" ON "gatherable"."prices" ("session_id")
16889
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160203081640"]]
16890
+  (0.4ms) COMMIT
16891
+ Migrating to CreateGatherableRequestedLoanAmount (20160203081641)
16892
+  (0.2ms) BEGIN
16893
+  (2.3ms) CREATE TABLE "gatherable"."requested_loan_amounts" ("requested_loan_amount_id" serial primary key, "requested_loan_amount" decimal, "total_cost" decimal, "monthly_repayment_amount" decimal, "session_id" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
16894
+  (0.6ms) CREATE INDEX "index_gatherable.requested_loan_amounts_on_session_id" ON "gatherable"."requested_loan_amounts" ("session_id")
16895
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160203081641"]]
16896
+  (0.3ms) COMMIT
16897
+  (0.1ms) BEGIN
16898
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 08:16:39 -0600
16899
+ Processing by Gatherable::PricesController#create as JSON
16900
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
16901
+ Completed 201 Created in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
16902
+  (0.2ms) ROLLBACK
16903
+  (0.1ms) BEGIN
16904
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 08:16:39 -0600
16905
+ Processing by Gatherable::PricesController#create as JSON
16906
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
16907
+ Completed 201 Created in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
16908
+  (0.1ms) ROLLBACK
16909
+  (0.0ms) BEGIN
16910
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 08:16:39 -0600
16911
+ Processing by Gatherable::PricesController#create as JSON
16912
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
16913
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
16914
+  (0.1ms) ROLLBACK
16915
+  (0.0ms) BEGIN
16916
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 08:16:39 -0600
16917
+ Processing by Gatherable::PricesController#create as JSON
16918
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
16919
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
16920
+  (0.1ms) ROLLBACK
16921
+  (0.1ms) BEGIN
16922
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 08:16:39 -0600
16923
+ Processing by Gatherable::PricesController#create as JSON
16924
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
16925
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
16926
+  (0.1ms) ROLLBACK
16927
+  (0.0ms) BEGIN
16928
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 08:16:39 -0600
16929
+ Processing by Gatherable::PricesController#create as JSON
16930
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
16931
+ Completed 201 Created in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
16932
+  (0.1ms) ROLLBACK
16933
+  (0.0ms) BEGIN
16934
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 08:16:39 -0600
16935
+ Processing by Gatherable::PricesController#create as JSON
16936
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
16937
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
16938
+  (0.1ms) ROLLBACK
16939
+  (0.1ms) BEGIN
16940
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 08:16:39 -0600
16941
+ Processing by Gatherable::PricesController#create as JSON
16942
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
16943
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
16944
+  (0.1ms) ROLLBACK
16945
+  (0.1ms) BEGIN
16946
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 08:16:39 -0600
16947
+ Processing by Gatherable::PricesController#create as JSON
16948
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
16949
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
16950
+  (0.1ms) ROLLBACK
16951
+  (0.2ms) BEGIN
16952
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 08:16:39 -0600
16953
+ Processing by Gatherable::PricesController#create as JSON
16954
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
16955
+ Completed 201 Created in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
16956
+  (0.1ms) ROLLBACK
16957
+  (0.1ms) BEGIN
16958
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 08:16:39 -0600
16959
+ Processing by Gatherable::PricesController#create as JSON
16960
+ Parameters: {"price"=>{"price"=>"3.0"}, "session_id"=>"session_id123"}
16961
+ Filter chain halted as :authenticate rendered or redirected
16962
+ Completed 401 Unauthorized in 7ms (ActiveRecord: 0.0ms)
16963
+  (0.1ms) ROLLBACK
16964
+  (0.1ms) BEGIN
16965
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 08:16:39 -0600
16966
+ Processing by Gatherable::PricesController#create as JSON
16967
+ Parameters: {"price"=>{"price"=>"3.0"}, "session_id"=>"session_id123"}
16968
+ Filter chain halted as :authenticate rendered or redirected
16969
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
16970
+  (0.1ms) ROLLBACK
16971
+  (0.1ms) BEGIN
16972
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 08:16:39 -0600
16973
+ Processing by Gatherable::PricesController#create as JSON
16974
+ Parameters: {"price"=>{"price"=>"3.0"}, "session_id"=>"session_id123"}
16975
+ Filter chain halted as :authenticate rendered or redirected
16976
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
16977
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 08:16:39 -0600
16978
+ Processing by Gatherable::PricesController#create as JSON
16979
+ Parameters: {"price"=>{"price"=>"3.0"}, "session_id"=>"session_id123"}
16980
+ Filter chain halted as :authenticate rendered or redirected
16981
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
16982
+  (0.1ms) ROLLBACK
16983
+  (0.1ms) BEGIN
16984
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 08:16:39 -0600
16985
+ Processing by Gatherable::PricesController#create as JSON
16986
+ Parameters: {"yolo"=>"swag", "session_id"=>"session_id123"}
16987
+ Completed 422 Unprocessable Entity in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
16988
+  (0.1ms) ROLLBACK
16989
+  (0.0ms) BEGIN
16990
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 08:16:39 -0600
16991
+ Processing by Gatherable::PricesController#create as JSON
16992
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
16993
+ Completed 201 Created in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
16994
+  (0.1ms) ROLLBACK
16995
+  (0.1ms) BEGIN
16996
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 08:16:39 -0600
16997
+ Processing by Gatherable::PricesController#create as JSON
16998
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
16999
+ Unpermitted parameter: yolo
17000
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
17001
+  (0.1ms) ROLLBACK
17002
+  (0.1ms) BEGIN
17003
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 08:16:39 -0600
17004
+ Processing by Gatherable::PricesController#create as JSON
17005
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
17006
+ Unpermitted parameter: yolo
17007
+ Completed 201 Created in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
17008
+  (0.1ms) ROLLBACK
17009
+  (0.0ms) BEGIN
17010
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 08:16:39 -0600
17011
+ Processing by Gatherable::PricesController#create as JSON
17012
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
17013
+ Unpermitted parameter: yolo
17014
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
17015
+  (0.1ms) ROLLBACK
17016
+  (0.0ms) BEGIN
17017
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 08:16:39 -0600
17018
+ Processing by Gatherable::PricesController#create as JSON
17019
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
17020
+ Unpermitted parameter: yolo
17021
+ Completed 201 Created in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
17022
+  (0.1ms) ROLLBACK
17023
+  (0.0ms) BEGIN
17024
+ Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-02-03 08:16:39 -0600
17025
+ Processing by Gatherable::PricesController#show as JSON
17026
+ Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
17027
+ Completed 302 Found in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
17028
+  (0.1ms) ROLLBACK
17029
+  (0.0ms) BEGIN
17030
+ Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-02-03 08:16:39 -0600
17031
+ Processing by Gatherable::PricesController#show as JSON
17032
+ Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
17033
+ Completed 302 Found in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
17034
+  (0.1ms) ROLLBACK
17035
+  (0.1ms) BEGIN
17036
+ Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-02-03 08:16:39 -0600
17037
+ Processing by Gatherable::PricesController#show as JSON
17038
+ Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
17039
+ Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
17040
+  (0.1ms) ROLLBACK
17041
+  (0.1ms) BEGIN
17042
+ Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-02-03 08:16:39 -0600
17043
+ Processing by Gatherable::PricesController#show as JSON
17044
+ Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
17045
+ Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
17046
+  (0.1ms) ROLLBACK
17047
+  (0.1ms) BEGIN
17048
+  (0.1ms) ROLLBACK
17049
+  (0.1ms) BEGIN
17050
+  (0.1ms) ROLLBACK
17051
+  (0.1ms) BEGIN
17052
+  (0.1ms) ROLLBACK
17053
+  (0.1ms) BEGIN
17054
+  (0.1ms) ROLLBACK
17055
+  (0.1ms) BEGIN
17056
+  (0.1ms) ROLLBACK
17057
+  (0.1ms) BEGIN
17058
+  (0.1ms) ROLLBACK
17059
+  (0.1ms) BEGIN
17060
+  (0.0ms) ROLLBACK
17061
+  (0.0ms) BEGIN
17062
+  (0.1ms) ROLLBACK
17063
+  (0.0ms) BEGIN
17064
+  (0.0ms) ROLLBACK
17065
+  (0.0ms) BEGIN
17066
+  (0.0ms) ROLLBACK
17067
+  (0.1ms) BEGIN
17068
+  (0.1ms) ROLLBACK
17069
+  (0.1ms) BEGIN
17070
+  (0.1ms) ROLLBACK
17071
+  (0.0ms) BEGIN
17072
+  (0.0ms) ROLLBACK
17073
+  (0.1ms) BEGIN
17074
+  (0.1ms) ROLLBACK
17075
+  (0.0ms) BEGIN
17076
+  (0.0ms) ROLLBACK
17077
+  (0.0ms) BEGIN
17078
+  (0.1ms) ROLLBACK
17079
+  (0.0ms) BEGIN
17080
+  (0.0ms) ROLLBACK
17081
+  (0.1ms) BEGIN
17082
+  (0.1ms) ROLLBACK
17083
+  (0.0ms) BEGIN
17084
+  (0.1ms) ROLLBACK
17085
+  (0.1ms) BEGIN
17086
+  (0.1ms) ROLLBACK
17087
+  (0.1ms) BEGIN
17088
+  (0.1ms) ROLLBACK
17089
+  (0.1ms) BEGIN
17090
+  (0.1ms) ROLLBACK
17091
+  (0.1ms) BEGIN
17092
+  (0.1ms) ROLLBACK
17093
+  (0.1ms) BEGIN
17094
+  (0.1ms) ROLLBACK
17095
+  (0.1ms) BEGIN
17096
+  (0.1ms) ROLLBACK
17097
+  (0.1ms) BEGIN
17098
+  (0.1ms) ROLLBACK
17099
+  (0.0ms) BEGIN
17100
+  (0.0ms) ROLLBACK
17101
+  (0.0ms) BEGIN
17102
+  (0.0ms) ROLLBACK
17103
+  (0.0ms) BEGIN
17104
+  (0.1ms) ROLLBACK
17105
+  (0.1ms) BEGIN
17106
+  (0.1ms) ROLLBACK
17107
+  (0.1ms) BEGIN
17108
+  (0.1ms) ROLLBACK
17109
+  (0.1ms) BEGIN
17110
+  (0.1ms) ROLLBACK
17111
+  (0.0ms) BEGIN
17112
+  (0.1ms) ROLLBACK
17113
+  (0.0ms) BEGIN
17114
+  (0.1ms) ROLLBACK
17115
+  (0.0ms) BEGIN
17116
+  (0.1ms) ROLLBACK
17117
+  (0.0ms) BEGIN
17118
+  (0.1ms) ROLLBACK
17119
+  (0.1ms) BEGIN
17120
+  (0.1ms) ROLLBACK
17121
+  (0.1ms) BEGIN
17122
+  (0.1ms) ROLLBACK
17123
+  (0.1ms) BEGIN
17124
+  (0.1ms) ROLLBACK
17125
+  (0.0ms) BEGIN
17126
+  (0.1ms) ROLLBACK
17127
+  (0.1ms) BEGIN
17128
+  (0.1ms) ROLLBACK
17129
+  (0.1ms) BEGIN
17130
+  (0.1ms) ROLLBACK
17131
+  (0.0ms) BEGIN
17132
+  (0.1ms) ROLLBACK
17133
+  (0.1ms) BEGIN
17134
+  (0.1ms) ROLLBACK
17135
+  (0.1ms) BEGIN
17136
+  (0.1ms) ROLLBACK
17137
+  (0.0ms) BEGIN
17138
+  (0.1ms) ROLLBACK
17139
+  (0.1ms) BEGIN
17140
+  (0.1ms) ROLLBACK
17141
+  (0.1ms) BEGIN
17142
+  (0.1ms) ROLLBACK
17143
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
17144
+  (112.6ms) DROP DATABASE IF EXISTS "gatherable_test"
17145
+  (293.0ms) CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
17146
+  (25.1ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
17147
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
17148
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
17149
+ Migrating to CreateGatherableSchema (20160203081851)
17150
+  (0.1ms) BEGIN
17151
+  (0.2ms) CREATE SCHEMA gatherable
17152
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160203081851"]]
17153
+  (0.2ms) COMMIT
17154
+ Migrating to CreateGatherablePrice (20160203081852)
17155
+  (0.1ms) BEGIN
17156
+  (2.4ms) CREATE TABLE "gatherable"."prices" ("price_id" serial primary key, "price" decimal, "session_id" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
17157
+  (0.5ms) CREATE INDEX "index_gatherable.prices_on_session_id" ON "gatherable"."prices" ("session_id")
17158
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160203081852"]]
17159
+  (1.3ms) COMMIT
17160
+ Migrating to CreateGatherableRequestedLoanAmount (20160203081853)
17161
+  (0.1ms) BEGIN
17162
+  (5.5ms) CREATE TABLE "gatherable"."requested_loan_amounts" ("requested_loan_amount_id" serial primary key, "requested_loan_amount" decimal, "total_cost" decimal, "monthly_repayment_amount" decimal, "session_id" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
17163
+  (0.9ms) CREATE INDEX "index_gatherable.requested_loan_amounts_on_session_id" ON "gatherable"."requested_loan_amounts" ("session_id")
17164
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160203081853"]]
17165
+  (0.5ms) COMMIT
17166
+  (0.1ms) BEGIN
17167
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 08:18:51 -0600
17168
+ Processing by Gatherable::PricesController#create as JSON
17169
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
17170
+ Completed 201 Created in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
17171
+  (0.1ms) ROLLBACK
17172
+  (0.0ms) BEGIN
17173
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 08:18:51 -0600
17174
+ Processing by Gatherable::PricesController#create as JSON
17175
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
17176
+ Completed 201 Created in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
17177
+  (0.2ms) ROLLBACK
17178
+  (0.1ms) BEGIN
17179
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 08:18:51 -0600
17180
+ Processing by Gatherable::PricesController#create as JSON
17181
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
17182
+ Completed 201 Created in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
17183
+  (0.1ms) ROLLBACK
17184
+  (0.0ms) BEGIN
17185
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 08:18:51 -0600
17186
+ Processing by Gatherable::PricesController#create as JSON
17187
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
17188
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
17189
+  (0.1ms) ROLLBACK
17190
+  (0.0ms) BEGIN
17191
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 08:18:51 -0600
17192
+ Processing by Gatherable::PricesController#create as JSON
17193
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
17194
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
17195
+  (0.1ms) ROLLBACK
17196
+  (0.0ms) BEGIN
17197
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 08:18:51 -0600
17198
+ Processing by Gatherable::PricesController#create as JSON
17199
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
17200
+ Completed 201 Created in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
17201
+  (0.1ms) ROLLBACK
17202
+  (0.0ms) BEGIN
17203
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 08:18:51 -0600
17204
+ Processing by Gatherable::PricesController#create as JSON
17205
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
17206
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
17207
+  (0.1ms) ROLLBACK
17208
+  (0.1ms) BEGIN
17209
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 08:18:51 -0600
17210
+ Processing by Gatherable::PricesController#create as JSON
17211
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
17212
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
17213
+  (0.1ms) ROLLBACK
17214
+  (0.1ms) BEGIN
17215
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 08:18:51 -0600
17216
+ Processing by Gatherable::PricesController#create as JSON
17217
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
17218
+ Completed 201 Created in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
17219
+  (0.1ms) ROLLBACK
17220
+  (0.0ms) BEGIN
17221
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 08:18:51 -0600
17222
+ Processing by Gatherable::PricesController#create as JSON
17223
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
17224
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
17225
+  (0.1ms) ROLLBACK
17226
+  (0.0ms) BEGIN
17227
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 08:18:51 -0600
17228
+ Processing by Gatherable::PricesController#create as JSON
17229
+ Parameters: {"price"=>{"price"=>"3.0"}, "session_id"=>"session_id123"}
17230
+ Filter chain halted as :authenticate rendered or redirected
17231
+ Completed 401 Unauthorized in 6ms (ActiveRecord: 0.0ms)
17232
+  (0.1ms) ROLLBACK
17233
+  (0.0ms) BEGIN
17234
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 08:18:51 -0600
17235
+ Processing by Gatherable::PricesController#create as JSON
17236
+ Parameters: {"price"=>{"price"=>"3.0"}, "session_id"=>"session_id123"}
17237
+ Filter chain halted as :authenticate rendered or redirected
17238
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
17239
+  (0.1ms) ROLLBACK
17240
+  (0.1ms) BEGIN
17241
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 08:18:51 -0600
17242
+ Processing by Gatherable::PricesController#create as JSON
17243
+ Parameters: {"price"=>{"price"=>"3.0"}, "session_id"=>"session_id123"}
17244
+ Filter chain halted as :authenticate rendered or redirected
17245
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
17246
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 08:18:51 -0600
17247
+ Processing by Gatherable::PricesController#create as JSON
17248
+ Parameters: {"price"=>{"price"=>"3.0"}, "session_id"=>"session_id123"}
17249
+ Filter chain halted as :authenticate rendered or redirected
17250
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
17251
+  (0.1ms) ROLLBACK
17252
+  (0.1ms) BEGIN
17253
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 08:18:51 -0600
17254
+ Processing by Gatherable::PricesController#create as JSON
17255
+ Parameters: {"yolo"=>"swag", "session_id"=>"session_id123"}
17256
+ Completed 422 Unprocessable Entity in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
17257
+  (0.1ms) ROLLBACK
17258
+  (0.0ms) BEGIN
17259
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 08:18:51 -0600
17260
+ Processing by Gatherable::PricesController#create as JSON
17261
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
17262
+ Completed 201 Created in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
17263
+  (0.1ms) ROLLBACK
17264
+  (0.1ms) BEGIN
17265
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 08:18:51 -0600
17266
+ Processing by Gatherable::PricesController#create as JSON
17267
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
17268
+ Unpermitted parameter: yolo
17269
+ Completed 201 Created in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
17270
+  (0.1ms) ROLLBACK
17271
+  (0.1ms) BEGIN
17272
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 08:18:51 -0600
17273
+ Processing by Gatherable::PricesController#create as JSON
17274
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
17275
+ Unpermitted parameter: yolo
17276
+ Completed 201 Created in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
17277
+  (0.1ms) ROLLBACK
17278
+  (0.1ms) BEGIN
17279
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 08:18:51 -0600
17280
+ Processing by Gatherable::PricesController#create as JSON
17281
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
17282
+ Unpermitted parameter: yolo
17283
+ Completed 201 Created in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
17284
+  (0.1ms) ROLLBACK
17285
+  (0.0ms) BEGIN
17286
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 08:18:51 -0600
17287
+ Processing by Gatherable::PricesController#create as JSON
17288
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
17289
+ Unpermitted parameter: yolo
17290
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
17291
+  (0.1ms) ROLLBACK
17292
+  (0.1ms) BEGIN
17293
+ Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-02-03 08:18:51 -0600
17294
+ Processing by Gatherable::PricesController#show as JSON
17295
+ Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
17296
+ Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.0ms)
17297
+  (0.1ms) ROLLBACK
17298
+  (0.1ms) BEGIN
17299
+ Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-02-03 08:18:51 -0600
17300
+ Processing by Gatherable::PricesController#show as JSON
17301
+ Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
17302
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
17303
+  (0.1ms) ROLLBACK
17304
+  (0.0ms) BEGIN
17305
+ Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-02-03 08:18:51 -0600
17306
+ Processing by Gatherable::PricesController#show as JSON
17307
+ Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
17308
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
17309
+  (0.1ms) ROLLBACK
17310
+  (0.1ms) BEGIN
17311
+ Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-02-03 08:18:51 -0600
17312
+ Processing by Gatherable::PricesController#show as JSON
17313
+ Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
17314
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
17315
+  (0.1ms) ROLLBACK
17316
+  (0.1ms) BEGIN
17317
+  (0.1ms) ROLLBACK
17318
+  (0.1ms) BEGIN
17319
+  (0.1ms) ROLLBACK
17320
+  (0.1ms) BEGIN
17321
+  (0.1ms) ROLLBACK
17322
+  (0.1ms) BEGIN
17323
+  (0.1ms) ROLLBACK
17324
+  (0.1ms) BEGIN
17325
+  (0.1ms) ROLLBACK
17326
+  (0.1ms) BEGIN
17327
+  (0.1ms) ROLLBACK
17328
+  (0.1ms) BEGIN
17329
+  (0.1ms) ROLLBACK
17330
+  (0.1ms) BEGIN
17331
+  (0.1ms) ROLLBACK
17332
+  (0.0ms) BEGIN
17333
+  (0.1ms) ROLLBACK
17334
+  (0.0ms) BEGIN
17335
+  (0.1ms) ROLLBACK
17336
+  (0.1ms) BEGIN
17337
+  (0.1ms) ROLLBACK
17338
+  (0.1ms) BEGIN
17339
+  (0.1ms) ROLLBACK
17340
+  (0.0ms) BEGIN
17341
+  (0.1ms) ROLLBACK
17342
+  (0.0ms) BEGIN
17343
+  (0.1ms) ROLLBACK
17344
+  (0.1ms) BEGIN
17345
+  (0.1ms) ROLLBACK
17346
+  (0.0ms) BEGIN
17347
+  (0.1ms) ROLLBACK
17348
+  (0.0ms) BEGIN
17349
+  (0.0ms) ROLLBACK
17350
+  (0.0ms) BEGIN
17351
+  (0.0ms) ROLLBACK
17352
+  (0.1ms) BEGIN
17353
+  (0.1ms) ROLLBACK
17354
+  (0.0ms) BEGIN
17355
+  (0.0ms) ROLLBACK
17356
+  (0.0ms) BEGIN
17357
+  (0.0ms) ROLLBACK
17358
+  (0.0ms) BEGIN
17359
+  (0.0ms) ROLLBACK
17360
+  (0.0ms) BEGIN
17361
+  (0.1ms) ROLLBACK
17362
+  (0.1ms) BEGIN
17363
+  (0.1ms) ROLLBACK
17364
+  (0.0ms) BEGIN
17365
+  (0.0ms) ROLLBACK
17366
+  (0.0ms) BEGIN
17367
+  (0.0ms) ROLLBACK
17368
+  (0.0ms) BEGIN
17369
+  (0.0ms) ROLLBACK
17370
+  (0.0ms) BEGIN
17371
+  (0.1ms) ROLLBACK
17372
+  (0.0ms) BEGIN
17373
+  (0.0ms) ROLLBACK
17374
+  (0.0ms) BEGIN
17375
+  (0.0ms) ROLLBACK
17376
+  (0.0ms) BEGIN
17377
+  (0.0ms) ROLLBACK
17378
+  (0.0ms) BEGIN
17379
+  (0.1ms) ROLLBACK
17380
+  (0.1ms) BEGIN
17381
+  (0.1ms) ROLLBACK
17382
+  (0.0ms) BEGIN
17383
+  (0.1ms) ROLLBACK
17384
+  (0.0ms) BEGIN
17385
+  (0.1ms) ROLLBACK
17386
+  (0.1ms) BEGIN
17387
+  (0.1ms) ROLLBACK
17388
+  (0.1ms) BEGIN
17389
+  (0.1ms) ROLLBACK
17390
+  (0.1ms) BEGIN
17391
+  (0.1ms) ROLLBACK
17392
+  (0.1ms) BEGIN
17393
+  (0.1ms) ROLLBACK
17394
+  (0.0ms) BEGIN
17395
+  (0.1ms) ROLLBACK
17396
+  (0.0ms) BEGIN
17397
+  (0.1ms) ROLLBACK
17398
+  (0.0ms) BEGIN
17399
+  (0.1ms) ROLLBACK
17400
+  (0.1ms) BEGIN
17401
+  (0.1ms) ROLLBACK
17402
+  (0.1ms) BEGIN
17403
+  (0.1ms) ROLLBACK
17404
+  (0.0ms) BEGIN
17405
+  (0.1ms) ROLLBACK
17406
+  (0.0ms) BEGIN
17407
+  (0.1ms) ROLLBACK
17408
+  (0.0ms) BEGIN
17409
+  (0.1ms) ROLLBACK
17410
+  (0.1ms) BEGIN
17411
+  (0.1ms) ROLLBACK
17412
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
17413
+  (114.8ms) DROP DATABASE IF EXISTS "gatherable_test"
17414
+  (361.7ms) CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
17415
+  (113.1ms) DROP DATABASE IF EXISTS "gatherable_test"
17416
+  (231.1ms) CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
17417
+  (112.1ms) DROP DATABASE IF EXISTS "gatherable_test"
17418
+  (254.9ms) CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
17419
+  (184.1ms) DROP DATABASE IF EXISTS "gatherable_test"
17420
+  (234.0ms) CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
17421
+  (112.8ms) DROP DATABASE IF EXISTS "gatherable_test"
17422
+  (231.1ms) CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
17423
+  (14.5ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
17424
+  (10.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
17425
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
17426
+ Migrating to CreateGatherableSchema (20160203092109)
17427
+  (0.1ms) BEGIN
17428
+  (0.3ms) CREATE SCHEMA gatherable
17429
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160203092109"]]
17430
+  (5.9ms) COMMIT
17431
+ Migrating to CreateGatherablePrice (20160203092110)
17432
+  (0.1ms) BEGIN
17433
+  (19.0ms) CREATE TABLE "gatherable"."prices" ("price_id" serial primary key, "price" decimal, "session_id" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
17434
+  (0.6ms) CREATE INDEX "index_gatherable.prices_on_session_id" ON "gatherable"."prices" ("session_id")
17435
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160203092110"]]
17436
+  (0.3ms) COMMIT
17437
+ Migrating to CreateGatherableRequestedLoanAmount (20160203092111)
17438
+  (0.1ms) BEGIN
17439
+  (1.9ms) CREATE TABLE "gatherable"."requested_loan_amounts" ("requested_loan_amount_id" serial primary key, "requested_loan_amount" decimal, "total_cost" decimal, "monthly_repayment_amount" decimal, "session_id" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
17440
+  (0.5ms) CREATE INDEX "index_gatherable.requested_loan_amounts_on_session_id" ON "gatherable"."requested_loan_amounts" ("session_id")
17441
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160203092111"]]
17442
+  (0.3ms) COMMIT
17443
+  (0.1ms) BEGIN
17444
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:21:09 -0600
17445
+ Processing by Gatherable::PricesController#create as JSON
17446
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
17447
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
17448
+  (0.1ms) ROLLBACK
17449
+  (0.0ms) BEGIN
17450
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:21:09 -0600
17451
+ Processing by Gatherable::PricesController#create as JSON
17452
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
17453
+ Completed 201 Created in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
17454
+  (0.1ms) ROLLBACK
17455
+  (0.0ms) BEGIN
17456
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:21:09 -0600
17457
+ Processing by Gatherable::PricesController#create as JSON
17458
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
17459
+ Completed 201 Created in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
17460
+  (0.2ms) ROLLBACK
17461
+  (0.0ms) BEGIN
17462
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:21:09 -0600
17463
+ Processing by Gatherable::PricesController#create as JSON
17464
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
17465
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
17466
+  (0.1ms) ROLLBACK
17467
+  (0.0ms) BEGIN
17468
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:21:09 -0600
17469
+ Processing by Gatherable::PricesController#create as JSON
17470
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
17471
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
17472
+  (0.1ms) ROLLBACK
17473
+  (0.0ms) BEGIN
17474
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:21:09 -0600
17475
+ Processing by Gatherable::PricesController#create as JSON
17476
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
17477
+ Completed 201 Created in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
17478
+  (0.1ms) ROLLBACK
17479
+  (0.1ms) BEGIN
17480
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:21:09 -0600
17481
+ Processing by Gatherable::PricesController#create as JSON
17482
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
17483
+ Completed 201 Created in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
17484
+  (0.3ms) ROLLBACK
17485
+  (0.1ms) BEGIN
17486
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:21:09 -0600
17487
+ Processing by Gatherable::PricesController#create as JSON
17488
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
17489
+ Completed 201 Created in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
17490
+  (0.1ms) ROLLBACK
17491
+  (0.1ms) BEGIN
17492
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:21:09 -0600
17493
+ Processing by Gatherable::PricesController#create as JSON
17494
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
17495
+ Completed 201 Created in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
17496
+  (0.1ms) ROLLBACK
17497
+  (0.0ms) BEGIN
17498
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:21:09 -0600
17499
+ Processing by Gatherable::PricesController#create as JSON
17500
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
17501
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
17502
+  (0.1ms) ROLLBACK
17503
+  (0.0ms) BEGIN
17504
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:21:09 -0600
17505
+ Processing by Gatherable::PricesController#create as JSON
17506
+ Parameters: {"price"=>{"price"=>"3.0"}, "session_id"=>"session_id123"}
17507
+ Filter chain halted as :authenticate rendered or redirected
17508
+ Completed 401 Unauthorized in 7ms (ActiveRecord: 0.0ms)
17509
+  (0.2ms) ROLLBACK
17510
+  (0.1ms) BEGIN
17511
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:21:09 -0600
17512
+ Processing by Gatherable::PricesController#create as JSON
17513
+ Parameters: {"price"=>{"price"=>"3.0"}, "session_id"=>"session_id123"}
17514
+ Filter chain halted as :authenticate rendered or redirected
17515
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
17516
+  (0.1ms) ROLLBACK
17517
+  (0.1ms) BEGIN
17518
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:21:09 -0600
17519
+ Processing by Gatherable::PricesController#create as JSON
17520
+ Parameters: {"price"=>{"price"=>"3.0"}, "session_id"=>"session_id123"}
17521
+ Filter chain halted as :authenticate rendered or redirected
17522
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
17523
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:21:09 -0600
17524
+ Processing by Gatherable::PricesController#create as JSON
17525
+ Parameters: {"price"=>{"price"=>"3.0"}, "session_id"=>"session_id123"}
17526
+ Filter chain halted as :authenticate rendered or redirected
17527
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
17528
+  (0.1ms) ROLLBACK
17529
+  (0.1ms) BEGIN
17530
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:21:09 -0600
17531
+ Processing by Gatherable::PricesController#create as JSON
17532
+ Parameters: {"yolo"=>"swag", "session_id"=>"session_id123"}
17533
+ Completed 422 Unprocessable Entity in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
17534
+  (0.1ms) ROLLBACK
17535
+  (0.0ms) BEGIN
17536
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:21:09 -0600
17537
+ Processing by Gatherable::PricesController#create as JSON
17538
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
17539
+ Completed 201 Created in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
17540
+  (0.1ms) ROLLBACK
17541
+  (0.1ms) BEGIN
17542
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:21:09 -0600
17543
+ Processing by Gatherable::PricesController#create as JSON
17544
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
17545
+ Unpermitted parameter: yolo
17546
+ Completed 201 Created in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
17547
+  (0.1ms) ROLLBACK
17548
+  (0.1ms) BEGIN
17549
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:21:09 -0600
17550
+ Processing by Gatherable::PricesController#create as JSON
17551
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
17552
+ Unpermitted parameter: yolo
17553
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
17554
+  (0.1ms) ROLLBACK
17555
+  (0.0ms) BEGIN
17556
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:21:09 -0600
17557
+ Processing by Gatherable::PricesController#create as JSON
17558
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
17559
+ Unpermitted parameter: yolo
17560
+ Completed 201 Created in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
17561
+  (0.1ms) ROLLBACK
17562
+  (0.2ms) BEGIN
17563
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:21:09 -0600
17564
+ Processing by Gatherable::PricesController#create as JSON
17565
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
17566
+ Unpermitted parameter: yolo
17567
+ Completed 201 Created in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
17568
+  (0.1ms) ROLLBACK
17569
+  (0.1ms) BEGIN
17570
+ Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-02-03 09:21:09 -0600
17571
+ Processing by Gatherable::PricesController#show as JSON
17572
+ Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
17573
+ Completed 500 Internal Server Error in 15ms (ActiveRecord: 0.0ms)
17574
+  (0.1ms) ROLLBACK
17575
+  (0.1ms) BEGIN
17576
+ Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-02-03 09:21:09 -0600
17577
+ Processing by Gatherable::PricesController#show as JSON
17578
+ Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
17579
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
17580
+  (0.1ms) ROLLBACK
17581
+  (0.1ms) BEGIN
17582
+ Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-02-03 09:21:09 -0600
17583
+ Processing by Gatherable::PricesController#show as JSON
17584
+ Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
17585
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
17586
+  (0.1ms) ROLLBACK
17587
+  (0.0ms) BEGIN
17588
+ Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-02-03 09:21:09 -0600
17589
+ Processing by Gatherable::PricesController#show as JSON
17590
+ Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
17591
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
17592
+  (0.1ms) ROLLBACK
17593
+  (0.0ms) BEGIN
17594
+  (0.0ms) ROLLBACK
17595
+  (0.1ms) BEGIN
17596
+  (0.0ms) ROLLBACK
17597
+  (0.1ms) BEGIN
17598
+  (0.1ms) ROLLBACK
17599
+  (0.0ms) BEGIN
17600
+  (0.0ms) ROLLBACK
17601
+  (0.0ms) BEGIN
17602
+  (0.1ms) ROLLBACK
17603
+  (0.0ms) BEGIN
17604
+  (0.1ms) ROLLBACK
17605
+  (0.1ms) BEGIN
17606
+  (0.1ms) ROLLBACK
17607
+  (0.1ms) BEGIN
17608
+  (0.1ms) ROLLBACK
17609
+  (0.0ms) BEGIN
17610
+  (0.1ms) ROLLBACK
17611
+  (0.0ms) BEGIN
17612
+  (0.1ms) ROLLBACK
17613
+  (0.0ms) BEGIN
17614
+  (0.0ms) ROLLBACK
17615
+  (0.0ms) BEGIN
17616
+  (0.0ms) ROLLBACK
17617
+  (0.0ms) BEGIN
17618
+  (0.0ms) ROLLBACK
17619
+  (0.0ms) BEGIN
17620
+  (0.0ms) ROLLBACK
17621
+  (0.0ms) BEGIN
17622
+  (0.0ms) ROLLBACK
17623
+  (0.0ms) BEGIN
17624
+  (0.0ms) ROLLBACK
17625
+  (0.0ms) BEGIN
17626
+  (0.0ms) ROLLBACK
17627
+  (0.0ms) BEGIN
17628
+  (0.0ms) ROLLBACK
17629
+  (0.0ms) BEGIN
17630
+  (0.1ms) ROLLBACK
17631
+  (0.1ms) BEGIN
17632
+  (0.1ms) ROLLBACK
17633
+  (0.0ms) BEGIN
17634
+  (0.0ms) ROLLBACK
17635
+  (0.0ms) BEGIN
17636
+  (0.0ms) ROLLBACK
17637
+  (0.1ms) BEGIN
17638
+  (0.1ms) ROLLBACK
17639
+  (0.1ms) BEGIN
17640
+  (0.0ms) ROLLBACK
17641
+  (0.1ms) BEGIN
17642
+  (0.1ms) ROLLBACK
17643
+  (0.0ms) BEGIN
17644
+  (0.0ms) ROLLBACK
17645
+  (0.0ms) BEGIN
17646
+  (0.1ms) ROLLBACK
17647
+  (0.1ms) BEGIN
17648
+  (0.1ms) ROLLBACK
17649
+  (0.0ms) BEGIN
17650
+  (0.0ms) ROLLBACK
17651
+  (0.1ms) BEGIN
17652
+  (0.1ms) ROLLBACK
17653
+  (0.0ms) BEGIN
17654
+  (0.0ms) ROLLBACK
17655
+  (0.1ms) BEGIN
17656
+  (0.1ms) ROLLBACK
17657
+  (0.1ms) BEGIN
17658
+  (0.1ms) ROLLBACK
17659
+  (0.0ms) BEGIN
17660
+  (0.1ms) ROLLBACK
17661
+  (0.0ms) BEGIN
17662
+  (0.1ms) ROLLBACK
17663
+  (0.0ms) BEGIN
17664
+  (0.1ms) ROLLBACK
17665
+  (0.1ms) BEGIN
17666
+  (0.1ms) ROLLBACK
17667
+  (0.0ms) BEGIN
17668
+  (0.1ms) ROLLBACK
17669
+  (0.0ms) BEGIN
17670
+  (0.1ms) ROLLBACK
17671
+  (0.1ms) BEGIN
17672
+  (0.1ms) ROLLBACK
17673
+  (0.1ms) BEGIN
17674
+  (0.1ms) ROLLBACK
17675
+  (0.1ms) BEGIN
17676
+  (0.1ms) ROLLBACK
17677
+  (0.1ms) BEGIN
17678
+  (0.1ms) ROLLBACK
17679
+  (0.1ms) BEGIN
17680
+  (0.1ms) ROLLBACK
17681
+  (0.0ms) BEGIN
17682
+  (0.1ms) ROLLBACK
17683
+  (0.0ms) BEGIN
17684
+  (0.1ms) ROLLBACK
17685
+  (0.0ms) BEGIN
17686
+  (0.1ms) ROLLBACK
17687
+  (0.1ms) BEGIN
17688
+  (0.1ms) ROLLBACK
17689
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
17690
+  (111.7ms) DROP DATABASE IF EXISTS "gatherable_test"
17691
+  (345.1ms) CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
17692
+  (14.0ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
17693
+  (10.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
17694
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
17695
+ Migrating to CreateGatherableSchema (20160203095734)
17696
+  (0.1ms) BEGIN
17697
+  (0.2ms) CREATE SCHEMA gatherable
17698
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160203095734"]]
17699
+  (5.9ms) COMMIT
17700
+ Migrating to CreateGatherablePrice (20160203095735)
17701
+  (0.1ms) BEGIN
17702
+  (13.9ms) CREATE TABLE "gatherable"."prices" ("price_id" serial primary key, "price" decimal, "session_id" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
17703
+  (0.8ms) CREATE INDEX "index_gatherable.prices_on_session_id" ON "gatherable"."prices" ("session_id")
17704
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160203095735"]]
17705
+  (0.4ms) COMMIT
17706
+ Migrating to CreateGatherableRequestedLoanAmount (20160203095736)
17707
+  (0.1ms) BEGIN
17708
+  (2.5ms) CREATE TABLE "gatherable"."requested_loan_amounts" ("requested_loan_amount_id" serial primary key, "requested_loan_amount" decimal, "total_cost" decimal, "monthly_repayment_amount" decimal, "session_id" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
17709
+  (0.6ms) CREATE INDEX "index_gatherable.requested_loan_amounts_on_session_id" ON "gatherable"."requested_loan_amounts" ("session_id")
17710
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160203095736"]]
17711
+  (0.3ms) COMMIT
17712
+  (0.1ms) BEGIN
17713
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:57:34 -0600
17714
+ Processing by Gatherable::PricesController#create as JSON
17715
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
17716
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
17717
+  (0.1ms) ROLLBACK
17718
+  (0.1ms) BEGIN
17719
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:57:34 -0600
17720
+ Processing by Gatherable::PricesController#create as JSON
17721
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
17722
+ Completed 201 Created in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
17723
+  (0.1ms) ROLLBACK
17724
+  (0.1ms) BEGIN
17725
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:57:34 -0600
17726
+ Processing by Gatherable::PricesController#create as JSON
17727
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
17728
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
17729
+  (0.1ms) ROLLBACK
17730
+  (0.0ms) BEGIN
17731
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:57:34 -0600
17732
+ Processing by Gatherable::PricesController#create as JSON
17733
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
17734
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
17735
+  (0.1ms) ROLLBACK
17736
+  (0.0ms) BEGIN
17737
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:57:34 -0600
17738
+ Processing by Gatherable::PricesController#create as JSON
17739
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
17740
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
17741
+  (0.1ms) ROLLBACK
17742
+  (0.0ms) BEGIN
17743
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:57:34 -0600
17744
+ Processing by Gatherable::PricesController#create as JSON
17745
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
17746
+ Completed 201 Created in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
17747
+  (0.1ms) ROLLBACK
17748
+  (0.0ms) BEGIN
17749
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:57:34 -0600
17750
+ Processing by Gatherable::PricesController#create as JSON
17751
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
17752
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
17753
+  (0.1ms) ROLLBACK
17754
+  (0.1ms) BEGIN
17755
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:57:34 -0600
17756
+ Processing by Gatherable::PricesController#create as JSON
17757
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
17758
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
17759
+  (0.1ms) ROLLBACK
17760
+  (0.0ms) BEGIN
17761
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:57:34 -0600
17762
+ Processing by Gatherable::PricesController#create as JSON
17763
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
17764
+ Completed 201 Created in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
17765
+  (0.1ms) ROLLBACK
17766
+  (0.1ms) BEGIN
17767
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:57:34 -0600
17768
+ Processing by Gatherable::PricesController#create as JSON
17769
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
17770
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
17771
+  (0.1ms) ROLLBACK
17772
+  (0.1ms) BEGIN
17773
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:57:34 -0600
17774
+ Processing by Gatherable::PricesController#create as JSON
17775
+ Parameters: {"price"=>{"price"=>"3.0"}, "session_id"=>"session_id123"}
17776
+ Filter chain halted as :authenticate rendered or redirected
17777
+ Completed 401 Unauthorized in 7ms (ActiveRecord: 0.0ms)
17778
+  (0.1ms) ROLLBACK
17779
+  (0.1ms) BEGIN
17780
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:57:34 -0600
17781
+ Processing by Gatherable::PricesController#create as JSON
17782
+ Parameters: {"price"=>{"price"=>"3.0"}, "session_id"=>"session_id123"}
17783
+ Filter chain halted as :authenticate rendered or redirected
17784
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
17785
+  (0.1ms) ROLLBACK
17786
+  (0.1ms) BEGIN
17787
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:57:34 -0600
17788
+ Processing by Gatherable::PricesController#create as JSON
17789
+ Parameters: {"price"=>{"price"=>"3.0"}, "session_id"=>"session_id123"}
17790
+ Filter chain halted as :authenticate rendered or redirected
17791
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
17792
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:57:34 -0600
17793
+ Processing by Gatherable::PricesController#create as JSON
17794
+ Parameters: {"price"=>{"price"=>"3.0"}, "session_id"=>"session_id123"}
17795
+ Filter chain halted as :authenticate rendered or redirected
17796
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
17797
+  (0.1ms) ROLLBACK
17798
+  (0.1ms) BEGIN
17799
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:57:34 -0600
17800
+ Processing by Gatherable::PricesController#create as JSON
17801
+ Parameters: {"yolo"=>"swag", "session_id"=>"session_id123"}
17802
+ Completed 422 Unprocessable Entity in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
17803
+  (0.1ms) ROLLBACK
17804
+  (0.1ms) BEGIN
17805
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:57:34 -0600
17806
+ Processing by Gatherable::PricesController#create as JSON
17807
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
17808
+ Completed 201 Created in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
17809
+  (0.1ms) ROLLBACK
17810
+  (0.1ms) BEGIN
17811
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:57:34 -0600
17812
+ Processing by Gatherable::PricesController#create as JSON
17813
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
17814
+ Unpermitted parameter: yolo
17815
+ Completed 201 Created in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
17816
+  (0.1ms) ROLLBACK
17817
+  (0.0ms) BEGIN
17818
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:57:34 -0600
17819
+ Processing by Gatherable::PricesController#create as JSON
17820
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
17821
+ Unpermitted parameter: yolo
17822
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
17823
+  (0.1ms) ROLLBACK
17824
+  (0.0ms) BEGIN
17825
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:57:34 -0600
17826
+ Processing by Gatherable::PricesController#create as JSON
17827
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
17828
+ Unpermitted parameter: yolo
17829
+ Completed 201 Created in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
17830
+  (0.1ms) ROLLBACK
17831
+  (0.0ms) BEGIN
17832
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:57:34 -0600
17833
+ Processing by Gatherable::PricesController#create as JSON
17834
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
17835
+ Unpermitted parameter: yolo
17836
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
17837
+  (0.1ms) ROLLBACK
17838
+  (0.1ms) BEGIN
17839
+ Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-02-03 09:57:34 -0600
17840
+ Processing by Gatherable::PricesController#show as JSON
17841
+ Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
17842
+ Completed 500 Internal Server Error in 15ms (ActiveRecord: 0.0ms)
17843
+  (0.1ms) ROLLBACK
17844
+  (0.1ms) BEGIN
17845
+ Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-02-03 09:57:34 -0600
17846
+ Processing by Gatherable::PricesController#show as JSON
17847
+ Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
17848
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
17849
+  (0.1ms) ROLLBACK
17850
+  (0.0ms) BEGIN
17851
+ Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-02-03 09:57:34 -0600
17852
+ Processing by Gatherable::PricesController#show as JSON
17853
+ Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
17854
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
17855
+  (0.1ms) ROLLBACK
17856
+  (0.0ms) BEGIN
17857
+ Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-02-03 09:57:34 -0600
17858
+ Processing by Gatherable::PricesController#show as JSON
17859
+ Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
17860
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
17861
+  (0.1ms) ROLLBACK
17862
+  (0.1ms) BEGIN
17863
+  (0.1ms) ROLLBACK
17864
+  (0.1ms) BEGIN
17865
+  (0.1ms) ROLLBACK
17866
+  (0.1ms) BEGIN
17867
+  (0.1ms) ROLLBACK
17868
+  (0.1ms) BEGIN
17869
+  (0.1ms) ROLLBACK
17870
+  (0.1ms) BEGIN
17871
+  (0.1ms) ROLLBACK
17872
+  (0.1ms) BEGIN
17873
+  (0.1ms) ROLLBACK
17874
+  (0.1ms) BEGIN
17875
+  (0.1ms) ROLLBACK
17876
+  (0.1ms) BEGIN
17877
+  (0.1ms) ROLLBACK
17878
+  (0.0ms) BEGIN
17879
+  (0.0ms) ROLLBACK
17880
+  (0.0ms) BEGIN
17881
+  (0.0ms) ROLLBACK
17882
+  (0.0ms) BEGIN
17883
+  (0.0ms) ROLLBACK
17884
+  (0.0ms) BEGIN
17885
+  (0.0ms) ROLLBACK
17886
+  (0.0ms) BEGIN
17887
+  (0.0ms) ROLLBACK
17888
+  (0.0ms) BEGIN
17889
+  (0.0ms) ROLLBACK
17890
+  (0.0ms) BEGIN
17891
+  (0.0ms) ROLLBACK
17892
+  (0.0ms) BEGIN
17893
+  (0.0ms) ROLLBACK
17894
+  (0.0ms) BEGIN
17895
+  (0.0ms) ROLLBACK
17896
+  (0.0ms) BEGIN
17897
+  (0.0ms) ROLLBACK
17898
+  (0.0ms) BEGIN
17899
+  (0.0ms) ROLLBACK
17900
+  (0.0ms) BEGIN
17901
+  (0.0ms) ROLLBACK
17902
+  (0.0ms) BEGIN
17903
+  (0.0ms) ROLLBACK
17904
+  (0.0ms) BEGIN
17905
+  (0.0ms) ROLLBACK
17906
+  (0.0ms) BEGIN
17907
+  (0.0ms) ROLLBACK
17908
+  (0.0ms) BEGIN
17909
+  (0.0ms) ROLLBACK
17910
+  (0.1ms) BEGIN
17911
+  (0.1ms) ROLLBACK
17912
+  (0.0ms) BEGIN
17913
+  (0.0ms) ROLLBACK
17914
+  (0.0ms) BEGIN
17915
+  (0.0ms) ROLLBACK
17916
+  (0.0ms) BEGIN
17917
+  (0.0ms) ROLLBACK
17918
+  (0.0ms) BEGIN
17919
+  (0.0ms) ROLLBACK
17920
+  (0.0ms) BEGIN
17921
+  (0.0ms) ROLLBACK
17922
+  (0.1ms) BEGIN
17923
+  (0.1ms) ROLLBACK
17924
+  (0.0ms) BEGIN
17925
+  (0.1ms) ROLLBACK
17926
+  (0.1ms) BEGIN
17927
+  (0.1ms) ROLLBACK
17928
+  (0.0ms) BEGIN
17929
+  (0.1ms) ROLLBACK
17930
+  (0.1ms) BEGIN
17931
+  (0.1ms) ROLLBACK
17932
+  (0.1ms) BEGIN
17933
+  (0.1ms) ROLLBACK
17934
+  (0.1ms) BEGIN
17935
+  (0.1ms) ROLLBACK
17936
+  (0.1ms) BEGIN
17937
+  (0.1ms) ROLLBACK
17938
+  (0.1ms) BEGIN
17939
+  (0.1ms) ROLLBACK
17940
+  (0.1ms) BEGIN
17941
+  (0.1ms) ROLLBACK
17942
+  (0.1ms) BEGIN
17943
+  (0.1ms) ROLLBACK
17944
+  (0.0ms) BEGIN
17945
+  (0.1ms) ROLLBACK
17946
+  (0.0ms) BEGIN
17947
+  (0.1ms) ROLLBACK
17948
+  (0.0ms) BEGIN
17949
+  (0.1ms) ROLLBACK
17950
+  (0.1ms) BEGIN
17951
+  (0.1ms) ROLLBACK
17952
+  (0.1ms) BEGIN
17953
+  (0.1ms) ROLLBACK
17954
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
17955
+  (114.1ms) DROP DATABASE IF EXISTS "gatherable_test"
17956
+  (234.2ms) CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
17957
+  (13.5ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
17958
+  (10.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
17959
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
17960
+ Migrating to CreateGatherableSchema (20160203095856)
17961
+  (0.1ms) BEGIN
17962
+  (0.2ms) CREATE SCHEMA gatherable
17963
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160203095856"]]
17964
+  (0.2ms) COMMIT
17965
+ Migrating to CreateGatherablePrice (20160203095857)
17966
+  (0.1ms) BEGIN
17967
+  (2.6ms) CREATE TABLE "gatherable"."prices" ("price_id" serial primary key, "price" decimal, "session_id" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
17968
+  (0.6ms) CREATE INDEX "index_gatherable.prices_on_session_id" ON "gatherable"."prices" ("session_id")
17969
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160203095857"]]
17970
+  (0.3ms) COMMIT
17971
+ Migrating to CreateGatherableRequestedLoanAmount (20160203095858)
17972
+  (0.1ms) BEGIN
17973
+  (1.9ms) CREATE TABLE "gatherable"."requested_loan_amounts" ("requested_loan_amount_id" serial primary key, "requested_loan_amount" decimal, "total_cost" decimal, "monthly_repayment_amount" decimal, "session_id" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
17974
+  (0.8ms) CREATE INDEX "index_gatherable.requested_loan_amounts_on_session_id" ON "gatherable"."requested_loan_amounts" ("session_id")
17975
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160203095858"]]
17976
+  (0.3ms) COMMIT
17977
+  (0.1ms) BEGIN
17978
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:58:56 -0600
17979
+ Processing by Gatherable::PricesController#create as JSON
17980
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
17981
+ Completed 201 Created in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
17982
+  (0.1ms) ROLLBACK
17983
+  (0.0ms) BEGIN
17984
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:58:56 -0600
17985
+ Processing by Gatherable::PricesController#create as JSON
17986
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
17987
+ Completed 201 Created in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
17988
+  (0.1ms) ROLLBACK
17989
+  (0.0ms) BEGIN
17990
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:58:56 -0600
17991
+ Processing by Gatherable::PricesController#create as JSON
17992
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
17993
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
17994
+  (0.1ms) ROLLBACK
17995
+  (0.0ms) BEGIN
17996
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:58:56 -0600
17997
+ Processing by Gatherable::PricesController#create as JSON
17998
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
17999
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
18000
+  (0.1ms) ROLLBACK
18001
+  (0.0ms) BEGIN
18002
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:58:56 -0600
18003
+ Processing by Gatherable::PricesController#create as JSON
18004
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
18005
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
18006
+  (0.1ms) ROLLBACK
18007
+  (0.0ms) BEGIN
18008
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:58:56 -0600
18009
+ Processing by Gatherable::PricesController#create as JSON
18010
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
18011
+ Completed 201 Created in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
18012
+  (0.1ms) ROLLBACK
18013
+  (0.1ms) BEGIN
18014
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:58:56 -0600
18015
+ Processing by Gatherable::PricesController#create as JSON
18016
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
18017
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
18018
+  (0.1ms) ROLLBACK
18019
+  (0.1ms) BEGIN
18020
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:58:56 -0600
18021
+ Processing by Gatherable::PricesController#create as JSON
18022
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
18023
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
18024
+  (0.1ms) ROLLBACK
18025
+  (0.1ms) BEGIN
18026
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:58:56 -0600
18027
+ Processing by Gatherable::PricesController#create as JSON
18028
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
18029
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
18030
+  (0.1ms) ROLLBACK
18031
+  (0.0ms) BEGIN
18032
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:58:56 -0600
18033
+ Processing by Gatherable::PricesController#create as JSON
18034
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
18035
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
18036
+  (0.1ms) ROLLBACK
18037
+  (0.0ms) BEGIN
18038
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:58:56 -0600
18039
+ Processing by Gatherable::PricesController#create as JSON
18040
+ Parameters: {"price"=>{"price"=>"3.0"}, "session_id"=>"session_id123"}
18041
+ Filter chain halted as :authenticate rendered or redirected
18042
+ Completed 401 Unauthorized in 6ms (ActiveRecord: 0.0ms)
18043
+  (0.1ms) ROLLBACK
18044
+  (0.1ms) BEGIN
18045
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:58:56 -0600
18046
+ Processing by Gatherable::PricesController#create as JSON
18047
+ Parameters: {"price"=>{"price"=>"3.0"}, "session_id"=>"session_id123"}
18048
+ Filter chain halted as :authenticate rendered or redirected
18049
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
18050
+  (0.1ms) ROLLBACK
18051
+  (0.0ms) BEGIN
18052
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:58:56 -0600
18053
+ Processing by Gatherable::PricesController#create as JSON
18054
+ Parameters: {"price"=>{"price"=>"3.0"}, "session_id"=>"session_id123"}
18055
+ Filter chain halted as :authenticate rendered or redirected
18056
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
18057
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:58:56 -0600
18058
+ Processing by Gatherable::PricesController#create as JSON
18059
+ Parameters: {"price"=>{"price"=>"3.0"}, "session_id"=>"session_id123"}
18060
+ Filter chain halted as :authenticate rendered or redirected
18061
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
18062
+  (0.1ms) ROLLBACK
18063
+  (0.1ms) BEGIN
18064
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:58:56 -0600
18065
+ Processing by Gatherable::PricesController#create as JSON
18066
+ Parameters: {"yolo"=>"swag", "session_id"=>"session_id123"}
18067
+ Completed 422 Unprocessable Entity in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
18068
+  (0.1ms) ROLLBACK
18069
+  (0.0ms) BEGIN
18070
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:58:56 -0600
18071
+ Processing by Gatherable::PricesController#create as JSON
18072
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
18073
+ Completed 201 Created in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
18074
+  (0.1ms) ROLLBACK
18075
+  (0.2ms) BEGIN
18076
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:58:56 -0600
18077
+ Processing by Gatherable::PricesController#create as JSON
18078
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
18079
+ Unpermitted parameter: yolo
18080
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
18081
+  (0.1ms) ROLLBACK
18082
+  (0.0ms) BEGIN
18083
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:58:56 -0600
18084
+ Processing by Gatherable::PricesController#create as JSON
18085
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
18086
+ Unpermitted parameter: yolo
18087
+ Completed 201 Created in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
18088
+  (0.1ms) ROLLBACK
18089
+  (0.0ms) BEGIN
18090
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:58:56 -0600
18091
+ Processing by Gatherable::PricesController#create as JSON
18092
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
18093
+ Unpermitted parameter: yolo
18094
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
18095
+  (0.1ms) ROLLBACK
18096
+  (0.1ms) BEGIN
18097
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:58:56 -0600
18098
+ Processing by Gatherable::PricesController#create as JSON
18099
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
18100
+ Unpermitted parameter: yolo
18101
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
18102
+  (0.1ms) ROLLBACK
18103
+  (0.1ms) BEGIN
18104
+ Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-02-03 09:58:56 -0600
18105
+ Processing by Gatherable::PricesController#show as JSON
18106
+ Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
18107
+ Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.0ms)
18108
+  (0.1ms) ROLLBACK
18109
+  (0.1ms) BEGIN
18110
+ Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-02-03 09:58:56 -0600
18111
+ Processing by Gatherable::PricesController#show as JSON
18112
+ Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
18113
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
18114
+  (0.1ms) ROLLBACK
18115
+  (0.0ms) BEGIN
18116
+ Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-02-03 09:58:56 -0600
18117
+ Processing by Gatherable::PricesController#show as JSON
18118
+ Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
18119
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
18120
+  (0.1ms) ROLLBACK
18121
+  (0.0ms) BEGIN
18122
+ Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-02-03 09:58:56 -0600
18123
+ Processing by Gatherable::PricesController#show as JSON
18124
+ Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
18125
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
18126
+  (0.1ms) ROLLBACK
18127
+  (0.0ms) BEGIN
18128
+  (0.1ms) ROLLBACK
18129
+  (0.0ms) BEGIN
18130
+  (0.1ms) ROLLBACK
18131
+  (0.0ms) BEGIN
18132
+  (0.0ms) ROLLBACK
18133
+  (0.0ms) BEGIN
18134
+  (0.0ms) ROLLBACK
18135
+  (0.0ms) BEGIN
18136
+  (0.1ms) ROLLBACK
18137
+  (0.1ms) BEGIN
18138
+  (0.0ms) ROLLBACK
18139
+  (0.0ms) BEGIN
18140
+  (0.0ms) ROLLBACK
18141
+  (0.0ms) BEGIN
18142
+  (0.0ms) ROLLBACK
18143
+  (0.0ms) BEGIN
18144
+  (0.0ms) ROLLBACK
18145
+  (0.0ms) BEGIN
18146
+  (0.0ms) ROLLBACK
18147
+  (0.0ms) BEGIN
18148
+  (0.0ms) ROLLBACK
18149
+  (0.0ms) BEGIN
18150
+  (0.0ms) ROLLBACK
18151
+  (0.0ms) BEGIN
18152
+  (0.0ms) ROLLBACK
18153
+  (0.0ms) BEGIN
18154
+  (0.0ms) ROLLBACK
18155
+  (0.0ms) BEGIN
18156
+  (0.0ms) ROLLBACK
18157
+  (0.0ms) BEGIN
18158
+  (0.0ms) ROLLBACK
18159
+  (0.0ms) BEGIN
18160
+  (0.1ms) ROLLBACK
18161
+  (0.0ms) BEGIN
18162
+  (0.0ms) ROLLBACK
18163
+  (0.0ms) BEGIN
18164
+  (0.0ms) ROLLBACK
18165
+  (0.0ms) BEGIN
18166
+  (0.0ms) ROLLBACK
18167
+  (0.0ms) BEGIN
18168
+  (0.0ms) ROLLBACK
18169
+  (0.0ms) BEGIN
18170
+  (0.0ms) ROLLBACK
18171
+  (0.0ms) BEGIN
18172
+  (0.0ms) ROLLBACK
18173
+  (0.0ms) BEGIN
18174
+  (0.0ms) ROLLBACK
18175
+  (0.0ms) BEGIN
18176
+  (0.0ms) ROLLBACK
18177
+  (0.0ms) BEGIN
18178
+  (0.0ms) ROLLBACK
18179
+  (0.0ms) BEGIN
18180
+  (0.0ms) ROLLBACK
18181
+  (0.0ms) BEGIN
18182
+  (0.0ms) ROLLBACK
18183
+  (0.0ms) BEGIN
18184
+  (0.0ms) ROLLBACK
18185
+  (0.0ms) BEGIN
18186
+  (0.1ms) ROLLBACK
18187
+  (0.1ms) BEGIN
18188
+  (0.1ms) ROLLBACK
18189
+  (0.0ms) BEGIN
18190
+  (0.1ms) ROLLBACK
18191
+  (0.0ms) BEGIN
18192
+  (0.1ms) ROLLBACK
18193
+  (0.0ms) BEGIN
18194
+  (0.1ms) ROLLBACK
18195
+  (0.0ms) BEGIN
18196
+  (0.1ms) ROLLBACK
18197
+  (0.0ms) BEGIN
18198
+  (0.1ms) ROLLBACK
18199
+  (0.0ms) BEGIN
18200
+  (0.1ms) ROLLBACK
18201
+  (0.1ms) BEGIN
18202
+  (0.1ms) ROLLBACK
18203
+  (0.1ms) BEGIN
18204
+  (0.1ms) ROLLBACK
18205
+  (0.0ms) BEGIN
18206
+  (0.1ms) ROLLBACK
18207
+  (0.1ms) BEGIN
18208
+  (0.1ms) ROLLBACK
18209
+  (0.1ms) BEGIN
18210
+  (0.1ms) ROLLBACK
18211
+  (0.1ms) BEGIN
18212
+  (0.1ms) ROLLBACK
18213
+  (0.1ms) BEGIN
18214
+  (0.1ms) ROLLBACK
18215
+  (0.0ms) BEGIN
18216
+  (0.1ms) ROLLBACK
18217
+  (0.0ms) BEGIN
18218
+  (0.1ms) ROLLBACK
18219
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
18220
+  (114.7ms) DROP DATABASE IF EXISTS "gatherable_test"
18221
+  (229.9ms) CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
18222
+  (12.9ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
18223
+  (15.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
18224
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
18225
+ Migrating to CreateGatherableSchema (20160203095922)
18226
+  (0.2ms) BEGIN
18227
+  (0.3ms) CREATE SCHEMA gatherable
18228
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160203095922"]]
18229
+  (5.6ms) COMMIT
18230
+ Migrating to CreateGatherablePrice (20160203095923)
18231
+  (0.1ms) BEGIN
18232
+  (2.5ms) CREATE TABLE "gatherable"."prices" ("price_id" serial primary key, "price" decimal, "session_id" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
18233
+  (0.5ms) CREATE INDEX "index_gatherable.prices_on_session_id" ON "gatherable"."prices" ("session_id")
18234
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160203095923"]]
18235
+  (0.3ms) COMMIT
18236
+ Migrating to CreateGatherableRequestedLoanAmount (20160203095924)
18237
+  (0.1ms) BEGIN
18238
+  (2.1ms) CREATE TABLE "gatherable"."requested_loan_amounts" ("requested_loan_amount_id" serial primary key, "requested_loan_amount" decimal, "total_cost" decimal, "monthly_repayment_amount" decimal, "session_id" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
18239
+  (0.6ms) CREATE INDEX "index_gatherable.requested_loan_amounts_on_session_id" ON "gatherable"."requested_loan_amounts" ("session_id")
18240
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160203095924"]]
18241
+  (0.3ms) COMMIT
18242
+  (0.1ms) BEGIN
18243
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:59:22 -0600
18244
+ Processing by Gatherable::PricesController#create as JSON
18245
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
18246
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
18247
+  (0.2ms) ROLLBACK
18248
+  (0.1ms) BEGIN
18249
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:59:22 -0600
18250
+ Processing by Gatherable::PricesController#create as JSON
18251
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
18252
+ Completed 201 Created in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
18253
+  (0.1ms) ROLLBACK
18254
+  (0.0ms) BEGIN
18255
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:59:22 -0600
18256
+ Processing by Gatherable::PricesController#create as JSON
18257
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
18258
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
18259
+  (0.1ms) ROLLBACK
18260
+  (0.0ms) BEGIN
18261
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:59:22 -0600
18262
+ Processing by Gatherable::PricesController#create as JSON
18263
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
18264
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
18265
+  (0.1ms) ROLLBACK
18266
+  (0.1ms) BEGIN
18267
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:59:22 -0600
18268
+ Processing by Gatherable::PricesController#create as JSON
18269
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
18270
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
18271
+  (0.1ms) ROLLBACK
18272
+  (0.1ms) BEGIN
18273
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:59:22 -0600
18274
+ Processing by Gatherable::PricesController#create as JSON
18275
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
18276
+ Completed 201 Created in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
18277
+  (0.1ms) ROLLBACK
18278
+  (0.1ms) BEGIN
18279
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:59:22 -0600
18280
+ Processing by Gatherable::PricesController#create as JSON
18281
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
18282
+ Completed 201 Created in 2ms (Views: 0.4ms | ActiveRecord: 0.0ms)
18283
+  (0.1ms) ROLLBACK
18284
+  (0.2ms) BEGIN
18285
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:59:22 -0600
18286
+ Processing by Gatherable::PricesController#create as JSON
18287
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
18288
+ Completed 201 Created in 2ms (Views: 0.4ms | ActiveRecord: 0.0ms)
18289
+  (0.1ms) ROLLBACK
18290
+  (0.1ms) BEGIN
18291
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:59:22 -0600
18292
+ Processing by Gatherable::PricesController#create as JSON
18293
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
18294
+ Completed 201 Created in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
18295
+  (0.1ms) ROLLBACK
18296
+  (0.1ms) BEGIN
18297
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:59:22 -0600
18298
+ Processing by Gatherable::PricesController#create as JSON
18299
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
18300
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
18301
+  (0.1ms) ROLLBACK
18302
+  (0.1ms) BEGIN
18303
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:59:22 -0600
18304
+ Processing by Gatherable::PricesController#create as JSON
18305
+ Parameters: {"price"=>{"price"=>"3.0"}, "session_id"=>"session_id123"}
18306
+ Filter chain halted as :authenticate rendered or redirected
18307
+ Completed 401 Unauthorized in 7ms (ActiveRecord: 0.0ms)
18308
+  (0.1ms) ROLLBACK
18309
+  (0.0ms) BEGIN
18310
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:59:22 -0600
18311
+ Processing by Gatherable::PricesController#create as JSON
18312
+ Parameters: {"price"=>{"price"=>"3.0"}, "session_id"=>"session_id123"}
18313
+ Filter chain halted as :authenticate rendered or redirected
18314
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
18315
+  (0.1ms) ROLLBACK
18316
+  (0.0ms) BEGIN
18317
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:59:22 -0600
18318
+ Processing by Gatherable::PricesController#create as JSON
18319
+ Parameters: {"price"=>{"price"=>"3.0"}, "session_id"=>"session_id123"}
18320
+ Filter chain halted as :authenticate rendered or redirected
18321
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
18322
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:59:22 -0600
18323
+ Processing by Gatherable::PricesController#create as JSON
18324
+ Parameters: {"price"=>{"price"=>"3.0"}, "session_id"=>"session_id123"}
18325
+ Filter chain halted as :authenticate rendered or redirected
18326
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
18327
+  (0.1ms) ROLLBACK
18328
+  (0.0ms) BEGIN
18329
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:59:22 -0600
18330
+ Processing by Gatherable::PricesController#create as JSON
18331
+ Parameters: {"yolo"=>"swag", "session_id"=>"session_id123"}
18332
+ Completed 422 Unprocessable Entity in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
18333
+  (0.1ms) ROLLBACK
18334
+  (0.0ms) BEGIN
18335
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:59:22 -0600
18336
+ Processing by Gatherable::PricesController#create as JSON
18337
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
18338
+ Completed 201 Created in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
18339
+  (0.1ms) ROLLBACK
18340
+  (0.0ms) BEGIN
18341
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:59:22 -0600
18342
+ Processing by Gatherable::PricesController#create as JSON
18343
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
18344
+ Unpermitted parameter: yolo
18345
+ Completed 201 Created in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
18346
+  (0.1ms) ROLLBACK
18347
+  (0.1ms) BEGIN
18348
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:59:22 -0600
18349
+ Processing by Gatherable::PricesController#create as JSON
18350
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
18351
+ Unpermitted parameter: yolo
18352
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
18353
+  (0.1ms) ROLLBACK
18354
+  (0.1ms) BEGIN
18355
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:59:22 -0600
18356
+ Processing by Gatherable::PricesController#create as JSON
18357
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
18358
+ Unpermitted parameter: yolo
18359
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
18360
+  (0.1ms) ROLLBACK
18361
+  (0.1ms) BEGIN
18362
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 09:59:22 -0600
18363
+ Processing by Gatherable::PricesController#create as JSON
18364
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
18365
+ Unpermitted parameter: yolo
18366
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
18367
+  (0.1ms) ROLLBACK
18368
+  (0.1ms) BEGIN
18369
+ Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-02-03 09:59:22 -0600
18370
+ Processing by Gatherable::PricesController#show as JSON
18371
+ Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
18372
+ Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.0ms)
18373
+  (0.1ms) ROLLBACK
18374
+  (0.1ms) BEGIN
18375
+ Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-02-03 09:59:22 -0600
18376
+ Processing by Gatherable::PricesController#show as JSON
18377
+ Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
18378
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
18379
+  (0.1ms) ROLLBACK
18380
+  (0.1ms) BEGIN
18381
+ Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-02-03 09:59:22 -0600
18382
+ Processing by Gatherable::PricesController#show as JSON
18383
+ Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
18384
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
18385
+  (0.1ms) ROLLBACK
18386
+  (0.1ms) BEGIN
18387
+ Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-02-03 09:59:22 -0600
18388
+ Processing by Gatherable::PricesController#show as JSON
18389
+ Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
18390
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
18391
+  (0.1ms) ROLLBACK
18392
+  (0.1ms) BEGIN
18393
+  (0.1ms) ROLLBACK
18394
+  (0.1ms) BEGIN
18395
+  (0.1ms) ROLLBACK
18396
+  (0.0ms) BEGIN
18397
+  (0.0ms) ROLLBACK
18398
+  (0.1ms) BEGIN
18399
+  (0.1ms) ROLLBACK
18400
+  (0.0ms) BEGIN
18401
+  (0.1ms) ROLLBACK
18402
+  (0.1ms) BEGIN
18403
+  (0.1ms) ROLLBACK
18404
+  (0.0ms) BEGIN
18405
+  (0.1ms) ROLLBACK
18406
+  (0.1ms) BEGIN
18407
+  (0.0ms) ROLLBACK
18408
+  (0.1ms) BEGIN
18409
+  (0.1ms) ROLLBACK
18410
+  (0.0ms) BEGIN
18411
+  (0.1ms) ROLLBACK
18412
+  (0.1ms) BEGIN
18413
+  (0.1ms) ROLLBACK
18414
+  (0.1ms) BEGIN
18415
+  (0.1ms) ROLLBACK
18416
+  (0.0ms) BEGIN
18417
+  (0.1ms) ROLLBACK
18418
+  (0.1ms) BEGIN
18419
+  (0.1ms) ROLLBACK
18420
+  (0.0ms) BEGIN
18421
+  (0.1ms) ROLLBACK
18422
+  (0.1ms) BEGIN
18423
+  (0.1ms) ROLLBACK
18424
+  (0.1ms) BEGIN
18425
+  (0.1ms) ROLLBACK
18426
+  (0.1ms) BEGIN
18427
+  (0.1ms) ROLLBACK
18428
+  (0.1ms) BEGIN
18429
+  (0.1ms) ROLLBACK
18430
+  (0.1ms) BEGIN
18431
+  (0.1ms) ROLLBACK
18432
+  (0.1ms) BEGIN
18433
+  (0.1ms) ROLLBACK
18434
+  (0.0ms) BEGIN
18435
+  (0.1ms) ROLLBACK
18436
+  (0.0ms) BEGIN
18437
+  (0.1ms) ROLLBACK
18438
+  (0.0ms) BEGIN
18439
+  (0.1ms) ROLLBACK
18440
+  (0.0ms) BEGIN
18441
+  (0.1ms) ROLLBACK
18442
+  (0.1ms) BEGIN
18443
+  (0.1ms) ROLLBACK
18444
+  (0.0ms) BEGIN
18445
+  (0.0ms) ROLLBACK
18446
+  (0.0ms) BEGIN
18447
+  (0.0ms) ROLLBACK
18448
+  (0.1ms) BEGIN
18449
+  (0.1ms) ROLLBACK
18450
+  (0.0ms) BEGIN
18451
+  (0.2ms) ROLLBACK
18452
+  (0.0ms) BEGIN
18453
+  (0.1ms) ROLLBACK
18454
+  (0.1ms) BEGIN
18455
+  (0.1ms) ROLLBACK
18456
+  (0.1ms) BEGIN
18457
+  (0.1ms) ROLLBACK
18458
+  (0.1ms) BEGIN
18459
+  (0.1ms) ROLLBACK
18460
+  (0.0ms) BEGIN
18461
+  (0.1ms) ROLLBACK
18462
+  (0.1ms) BEGIN
18463
+  (0.1ms) ROLLBACK
18464
+  (0.1ms) BEGIN
18465
+  (0.1ms) ROLLBACK
18466
+  (0.0ms) BEGIN
18467
+  (0.1ms) ROLLBACK
18468
+  (0.1ms) BEGIN
18469
+  (0.1ms) ROLLBACK
18470
+  (0.0ms) BEGIN
18471
+  (0.1ms) ROLLBACK
18472
+  (0.0ms) BEGIN
18473
+  (0.1ms) ROLLBACK
18474
+  (0.0ms) BEGIN
18475
+  (0.1ms) ROLLBACK
18476
+  (0.2ms) BEGIN
18477
+  (0.1ms) ROLLBACK
18478
+  (0.1ms) BEGIN
18479
+  (0.1ms) ROLLBACK
18480
+  (0.1ms) BEGIN
18481
+  (0.1ms) ROLLBACK
18482
+  (0.1ms) BEGIN
18483
+  (0.1ms) ROLLBACK
18484
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
18485
+  (114.6ms) DROP DATABASE IF EXISTS "gatherable_test"
18486
+  (241.9ms) CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
18487
+  (14.0ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
18488
+  (11.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
18489
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
18490
+ Migrating to CreateGatherableSchema (20160203102103)
18491
+  (0.1ms) BEGIN
18492
+  (0.3ms) CREATE SCHEMA gatherable
18493
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160203102103"]]
18494
+  (0.2ms) COMMIT
18495
+ Migrating to CreateGatherablePrice (20160203102104)
18496
+  (0.1ms) BEGIN
18497
+  (2.3ms) CREATE TABLE "gatherable"."prices" ("price_id" serial primary key, "price" decimal, "session_id" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
18498
+  (0.4ms) CREATE INDEX "index_gatherable.prices_on_session_id" ON "gatherable"."prices" ("session_id")
18499
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160203102104"]]
18500
+  (0.3ms) COMMIT
18501
+ Migrating to CreateGatherableRequestedLoanAmount (20160203102105)
18502
+  (0.1ms) BEGIN
18503
+  (1.9ms) CREATE TABLE "gatherable"."requested_loan_amounts" ("requested_loan_amount_id" serial primary key, "requested_loan_amount" decimal, "total_cost" decimal, "monthly_repayment_amount" decimal, "session_id" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
18504
+  (0.6ms) CREATE INDEX "index_gatherable.requested_loan_amounts_on_session_id" ON "gatherable"."requested_loan_amounts" ("session_id")
18505
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160203102105"]]
18506
+  (0.3ms) COMMIT
18507
+  (0.1ms) BEGIN
18508
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:21:03 -0600
18509
+ Processing by Gatherable::PricesController#create as JSON
18510
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
18511
+ Completed 201 Created in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
18512
+  (0.1ms) ROLLBACK
18513
+  (0.0ms) BEGIN
18514
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:21:03 -0600
18515
+ Processing by Gatherable::PricesController#create as JSON
18516
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
18517
+ Completed 201 Created in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
18518
+  (0.1ms) ROLLBACK
18519
+  (0.1ms) BEGIN
18520
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:21:03 -0600
18521
+ Processing by Gatherable::PricesController#create as JSON
18522
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
18523
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
18524
+  (0.1ms) ROLLBACK
18525
+  (0.0ms) BEGIN
18526
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:21:03 -0600
18527
+ Processing by Gatherable::PricesController#create as JSON
18528
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
18529
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
18530
+  (0.1ms) ROLLBACK
18531
+  (0.0ms) BEGIN
18532
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:21:03 -0600
18533
+ Processing by Gatherable::PricesController#create as JSON
18534
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
18535
+ Completed 201 Created in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
18536
+  (0.1ms) ROLLBACK
18537
+  (0.1ms) BEGIN
18538
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:21:03 -0600
18539
+ Processing by Gatherable::PricesController#create as JSON
18540
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
18541
+ Completed 201 Created in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
18542
+  (0.1ms) ROLLBACK
18543
+  (0.0ms) BEGIN
18544
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:21:03 -0600
18545
+ Processing by Gatherable::PricesController#create as JSON
18546
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
18547
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
18548
+  (0.1ms) ROLLBACK
18549
+  (0.0ms) BEGIN
18550
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:21:03 -0600
18551
+ Processing by Gatherable::PricesController#create as JSON
18552
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
18553
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
18554
+  (0.1ms) ROLLBACK
18555
+  (0.1ms) BEGIN
18556
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:21:03 -0600
18557
+ Processing by Gatherable::PricesController#create as JSON
18558
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
18559
+ Completed 201 Created in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
18560
+  (0.1ms) ROLLBACK
18561
+  (0.0ms) BEGIN
18562
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:21:03 -0600
18563
+ Processing by Gatherable::PricesController#create as JSON
18564
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
18565
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
18566
+  (0.1ms) ROLLBACK
18567
+  (0.1ms) BEGIN
18568
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:21:03 -0600
18569
+ Processing by Gatherable::PricesController#create as JSON
18570
+ Parameters: {"price"=>{"price"=>"3.0"}, "session_id"=>"session_id123"}
18571
+ Filter chain halted as :authenticate rendered or redirected
18572
+ Completed 401 Unauthorized in 6ms (ActiveRecord: 0.0ms)
18573
+  (0.1ms) ROLLBACK
18574
+  (0.0ms) BEGIN
18575
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:21:03 -0600
18576
+ Processing by Gatherable::PricesController#create as JSON
18577
+ Parameters: {"price"=>{"price"=>"3.0"}, "session_id"=>"session_id123"}
18578
+ Filter chain halted as :authenticate rendered or redirected
18579
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
18580
+  (0.1ms) ROLLBACK
18581
+  (0.1ms) BEGIN
18582
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:21:03 -0600
18583
+ Processing by Gatherable::PricesController#create as JSON
18584
+ Parameters: {"price"=>{"price"=>"3.0"}, "session_id"=>"session_id123"}
18585
+ Filter chain halted as :authenticate rendered or redirected
18586
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
18587
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:21:03 -0600
18588
+ Processing by Gatherable::PricesController#create as JSON
18589
+ Parameters: {"price"=>{"price"=>"3.0"}, "session_id"=>"session_id123"}
18590
+ Filter chain halted as :authenticate rendered or redirected
18591
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
18592
+  (0.1ms) ROLLBACK
18593
+  (0.1ms) BEGIN
18594
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:21:03 -0600
18595
+ Processing by Gatherable::PricesController#create as JSON
18596
+ Parameters: {"yolo"=>"swag", "session_id"=>"session_id123"}
18597
+ Completed 422 Unprocessable Entity in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
18598
+  (0.1ms) ROLLBACK
18599
+  (0.1ms) BEGIN
18600
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:21:03 -0600
18601
+ Processing by Gatherable::PricesController#create as JSON
18602
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
18603
+ Completed 201 Created in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
18604
+  (0.1ms) ROLLBACK
18605
+  (0.1ms) BEGIN
18606
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:21:03 -0600
18607
+ Processing by Gatherable::PricesController#create as JSON
18608
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
18609
+ Unpermitted parameter: yolo
18610
+ Completed 201 Created in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
18611
+  (0.1ms) ROLLBACK
18612
+  (0.0ms) BEGIN
18613
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:21:03 -0600
18614
+ Processing by Gatherable::PricesController#create as JSON
18615
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
18616
+ Unpermitted parameter: yolo
18617
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
18618
+  (0.1ms) ROLLBACK
18619
+  (0.0ms) BEGIN
18620
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:21:03 -0600
18621
+ Processing by Gatherable::PricesController#create as JSON
18622
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
18623
+ Unpermitted parameter: yolo
18624
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
18625
+  (0.1ms) ROLLBACK
18626
+  (0.0ms) BEGIN
18627
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:21:03 -0600
18628
+ Processing by Gatherable::PricesController#create as JSON
18629
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
18630
+ Unpermitted parameter: yolo
18631
+ Completed 201 Created in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
18632
+  (0.1ms) ROLLBACK
18633
+  (0.0ms) BEGIN
18634
+ Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-02-03 10:21:03 -0600
18635
+ Processing by Gatherable::PricesController#show as JSON
18636
+ Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
18637
+ Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.0ms)
18638
+  (0.1ms) ROLLBACK
18639
+  (0.1ms) BEGIN
18640
+ Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-02-03 10:21:03 -0600
18641
+ Processing by Gatherable::PricesController#show as JSON
18642
+ Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
18643
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
18644
+  (0.1ms) ROLLBACK
18645
+  (0.1ms) BEGIN
18646
+ Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-02-03 10:21:03 -0600
18647
+ Processing by Gatherable::PricesController#show as JSON
18648
+ Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
18649
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
18650
+  (0.1ms) ROLLBACK
18651
+  (0.0ms) BEGIN
18652
+ Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-02-03 10:21:03 -0600
18653
+ Processing by Gatherable::PricesController#show as JSON
18654
+ Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
18655
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
18656
+  (0.1ms) ROLLBACK
18657
+  (0.1ms) BEGIN
18658
+  (0.1ms) ROLLBACK
18659
+  (0.0ms) BEGIN
18660
+  (0.1ms) ROLLBACK
18661
+  (0.1ms) BEGIN
18662
+  (0.1ms) ROLLBACK
18663
+  (0.0ms) BEGIN
18664
+  (0.0ms) ROLLBACK
18665
+  (0.0ms) BEGIN
18666
+  (0.1ms) ROLLBACK
18667
+  (0.0ms) BEGIN
18668
+  (0.0ms) ROLLBACK
18669
+  (0.1ms) BEGIN
18670
+  (0.0ms) ROLLBACK
18671
+  (0.0ms) BEGIN
18672
+  (0.0ms) ROLLBACK
18673
+  (0.0ms) BEGIN
18674
+  (0.0ms) ROLLBACK
18675
+  (0.0ms) BEGIN
18676
+  (0.1ms) ROLLBACK
18677
+  (0.1ms) BEGIN
18678
+  (0.1ms) ROLLBACK
18679
+  (0.0ms) BEGIN
18680
+  (0.0ms) ROLLBACK
18681
+  (0.0ms) BEGIN
18682
+  (0.0ms) ROLLBACK
18683
+  (0.0ms) BEGIN
18684
+  (0.0ms) ROLLBACK
18685
+  (0.0ms) BEGIN
18686
+  (0.0ms) ROLLBACK
18687
+  (0.0ms) BEGIN
18688
+  (0.0ms) ROLLBACK
18689
+  (0.0ms) BEGIN
18690
+  (0.0ms) ROLLBACK
18691
+  (0.0ms) BEGIN
18692
+  (0.0ms) ROLLBACK
18693
+  (0.0ms) BEGIN
18694
+  (0.0ms) ROLLBACK
18695
+  (0.1ms) BEGIN
18696
+  (0.0ms) ROLLBACK
18697
+  (0.1ms) BEGIN
18698
+  (0.0ms) ROLLBACK
18699
+  (0.1ms) BEGIN
18700
+  (0.1ms) ROLLBACK
18701
+  (0.0ms) BEGIN
18702
+  (0.0ms) ROLLBACK
18703
+  (0.0ms) BEGIN
18704
+  (0.1ms) ROLLBACK
18705
+  (0.0ms) BEGIN
18706
+  (0.0ms) ROLLBACK
18707
+  (0.0ms) BEGIN
18708
+  (0.1ms) ROLLBACK
18709
+  (0.0ms) BEGIN
18710
+  (0.0ms) ROLLBACK
18711
+  (0.0ms) BEGIN
18712
+  (0.0ms) ROLLBACK
18713
+  (0.0ms) BEGIN
18714
+  (0.0ms) ROLLBACK
18715
+  (0.0ms) BEGIN
18716
+  (0.1ms) ROLLBACK
18717
+  (0.1ms) BEGIN
18718
+  (0.1ms) ROLLBACK
18719
+  (0.0ms) BEGIN
18720
+  (0.1ms) ROLLBACK
18721
+  (0.0ms) BEGIN
18722
+  (0.1ms) ROLLBACK
18723
+  (0.1ms) BEGIN
18724
+  (0.1ms) ROLLBACK
18725
+  (0.1ms) BEGIN
18726
+  (0.1ms) ROLLBACK
18727
+  (0.1ms) BEGIN
18728
+  (0.1ms) ROLLBACK
18729
+  (0.0ms) BEGIN
18730
+  (0.1ms) ROLLBACK
18731
+  (0.0ms) BEGIN
18732
+  (0.1ms) ROLLBACK
18733
+  (0.1ms) BEGIN
18734
+  (0.1ms) ROLLBACK
18735
+  (0.1ms) BEGIN
18736
+  (0.1ms) ROLLBACK
18737
+  (0.1ms) BEGIN
18738
+  (0.1ms) ROLLBACK
18739
+  (0.1ms) BEGIN
18740
+  (0.1ms) ROLLBACK
18741
+  (0.1ms) BEGIN
18742
+  (0.1ms) ROLLBACK
18743
+  (0.0ms) BEGIN
18744
+  (0.1ms) ROLLBACK
18745
+  (0.0ms) BEGIN
18746
+  (0.1ms) ROLLBACK
18747
+  (0.1ms) BEGIN
18748
+  (0.1ms) ROLLBACK
18749
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
18750
+  (114.6ms) DROP DATABASE IF EXISTS "gatherable_test"
18751
+  (231.2ms) CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
18752
+  (13.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
18753
+  (11.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
18754
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
18755
+ Migrating to CreateGatherableSchema (20160203102258)
18756
+  (0.1ms) BEGIN
18757
+  (0.2ms) CREATE SCHEMA gatherable
18758
+ SQL (0.6ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160203102258"]]
18759
+  (0.3ms) COMMIT
18760
+ Migrating to CreateGatherablePrice (20160203102259)
18761
+  (0.1ms) BEGIN
18762
+  (2.8ms) CREATE TABLE "gatherable"."prices" ("price_id" serial primary key, "price" decimal, "session_id" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
18763
+  (0.5ms) CREATE INDEX "index_gatherable.prices_on_session_id" ON "gatherable"."prices" ("session_id")
18764
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160203102259"]]
18765
+  (0.3ms) COMMIT
18766
+ Migrating to CreateGatherableRequestedLoanAmount (20160203102300)
18767
+  (0.1ms) BEGIN
18768
+  (2.0ms) CREATE TABLE "gatherable"."requested_loan_amounts" ("requested_loan_amount_id" serial primary key, "requested_loan_amount" decimal, "total_cost" decimal, "monthly_repayment_amount" decimal, "session_id" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
18769
+  (0.7ms) CREATE INDEX "index_gatherable.requested_loan_amounts_on_session_id" ON "gatherable"."requested_loan_amounts" ("session_id")
18770
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160203102300"]]
18771
+  (0.3ms) COMMIT
18772
+  (0.1ms) BEGIN
18773
+ Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-02-03 10:22:58 -0600
18774
+ Processing by Gatherable::PricesController#show as JSON
18775
+ Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
18776
+ Completed 500 Internal Server Error in 353880ms (ActiveRecord: 0.4ms)
18777
+  (0.2ms) ROLLBACK
18778
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
18779
+  (114.6ms) DROP DATABASE IF EXISTS "gatherable_test"
18780
+  (229.0ms) CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
18781
+  (13.8ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
18782
+  (13.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
18783
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
18784
+ Migrating to CreateGatherableSchema (20160203102907)
18785
+  (0.1ms) BEGIN
18786
+  (0.2ms) CREATE SCHEMA gatherable
18787
+ SQL (0.8ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160203102907"]]
18788
+  (0.2ms) COMMIT
18789
+ Migrating to CreateGatherablePrice (20160203102908)
18790
+  (0.1ms) BEGIN
18791
+  (3.1ms) CREATE TABLE "gatherable"."prices" ("price_id" serial primary key, "price" decimal, "session_id" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
18792
+  (0.7ms) CREATE INDEX "index_gatherable.prices_on_session_id" ON "gatherable"."prices" ("session_id")
18793
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160203102908"]]
18794
+  (0.3ms) COMMIT
18795
+ Migrating to CreateGatherableRequestedLoanAmount (20160203102909)
18796
+  (0.2ms) BEGIN
18797
+  (2.9ms) CREATE TABLE "gatherable"."requested_loan_amounts" ("requested_loan_amount_id" serial primary key, "requested_loan_amount" decimal, "total_cost" decimal, "monthly_repayment_amount" decimal, "session_id" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
18798
+  (0.6ms) CREATE INDEX "index_gatherable.requested_loan_amounts_on_session_id" ON "gatherable"."requested_loan_amounts" ("session_id")
18799
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160203102909"]]
18800
+  (0.3ms) COMMIT
18801
+  (0.1ms) BEGIN
18802
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:29:07 -0600
18803
+ Processing by Gatherable::PricesController#create as JSON
18804
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
18805
+ Completed 201 Created in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
18806
+  (0.2ms) ROLLBACK
18807
+  (0.1ms) BEGIN
18808
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:29:07 -0600
18809
+ Processing by Gatherable::PricesController#create as JSON
18810
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
18811
+ Completed 201 Created in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
18812
+  (0.1ms) ROLLBACK
18813
+  (0.1ms) BEGIN
18814
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:29:07 -0600
18815
+ Processing by Gatherable::PricesController#create as JSON
18816
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
18817
+ Completed 201 Created in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
18818
+  (0.1ms) ROLLBACK
18819
+  (0.1ms) BEGIN
18820
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:29:07 -0600
18821
+ Processing by Gatherable::PricesController#create as JSON
18822
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
18823
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
18824
+  (0.1ms) ROLLBACK
18825
+  (0.1ms) BEGIN
18826
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:29:07 -0600
18827
+ Processing by Gatherable::PricesController#create as JSON
18828
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
18829
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
18830
+  (0.1ms) ROLLBACK
18831
+  (0.1ms) BEGIN
18832
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:29:07 -0600
18833
+ Processing by Gatherable::PricesController#create as JSON
18834
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
18835
+ Completed 201 Created in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
18836
+  (0.1ms) ROLLBACK
18837
+  (0.0ms) BEGIN
18838
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:29:07 -0600
18839
+ Processing by Gatherable::PricesController#create as JSON
18840
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
18841
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
18842
+  (0.1ms) ROLLBACK
18843
+  (0.1ms) BEGIN
18844
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:29:07 -0600
18845
+ Processing by Gatherable::PricesController#create as JSON
18846
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
18847
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
18848
+  (0.1ms) ROLLBACK
18849
+  (0.1ms) BEGIN
18850
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:29:07 -0600
18851
+ Processing by Gatherable::PricesController#create as JSON
18852
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
18853
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
18854
+  (0.1ms) ROLLBACK
18855
+  (0.0ms) BEGIN
18856
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:29:07 -0600
18857
+ Processing by Gatherable::PricesController#create as JSON
18858
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
18859
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
18860
+  (0.1ms) ROLLBACK
18861
+  (0.0ms) BEGIN
18862
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:29:07 -0600
18863
+ Processing by Gatherable::PricesController#create as JSON
18864
+ Parameters: {"price"=>{"price"=>"3.0"}, "session_id"=>"session_id123"}
18865
+ Filter chain halted as :authenticate rendered or redirected
18866
+ Completed 401 Unauthorized in 6ms (ActiveRecord: 0.0ms)
18867
+  (0.1ms) ROLLBACK
18868
+  (0.1ms) BEGIN
18869
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:29:07 -0600
18870
+ Processing by Gatherable::PricesController#create as JSON
18871
+ Parameters: {"price"=>{"price"=>"3.0"}, "session_id"=>"session_id123"}
18872
+ Filter chain halted as :authenticate rendered or redirected
18873
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
18874
+  (0.1ms) ROLLBACK
18875
+  (0.1ms) BEGIN
18876
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:29:07 -0600
18877
+ Processing by Gatherable::PricesController#create as JSON
18878
+ Parameters: {"price"=>{"price"=>"3.0"}, "session_id"=>"session_id123"}
18879
+ Filter chain halted as :authenticate rendered or redirected
18880
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
18881
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:29:07 -0600
18882
+ Processing by Gatherable::PricesController#create as JSON
18883
+ Parameters: {"price"=>{"price"=>"3.0"}, "session_id"=>"session_id123"}
18884
+ Filter chain halted as :authenticate rendered or redirected
18885
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
18886
+  (0.1ms) ROLLBACK
18887
+  (0.1ms) BEGIN
18888
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:29:07 -0600
18889
+ Processing by Gatherable::PricesController#create as JSON
18890
+ Parameters: {"yolo"=>"swag", "session_id"=>"session_id123"}
18891
+ Completed 422 Unprocessable Entity in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
18892
+  (0.1ms) ROLLBACK
18893
+  (0.1ms) BEGIN
18894
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:29:07 -0600
18895
+ Processing by Gatherable::PricesController#create as JSON
18896
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
18897
+ Completed 201 Created in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
18898
+  (0.1ms) ROLLBACK
18899
+  (0.1ms) BEGIN
18900
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:29:07 -0600
18901
+ Processing by Gatherable::PricesController#create as JSON
18902
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
18903
+ Unpermitted parameter: yolo
18904
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
18905
+  (0.1ms) ROLLBACK
18906
+  (0.0ms) BEGIN
18907
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:29:07 -0600
18908
+ Processing by Gatherable::PricesController#create as JSON
18909
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
18910
+ Unpermitted parameter: yolo
18911
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
18912
+  (0.1ms) ROLLBACK
18913
+  (0.0ms) BEGIN
18914
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:29:07 -0600
18915
+ Processing by Gatherable::PricesController#create as JSON
18916
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
18917
+ Unpermitted parameter: yolo
18918
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
18919
+  (0.1ms) ROLLBACK
18920
+  (0.1ms) BEGIN
18921
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:29:07 -0600
18922
+ Processing by Gatherable::PricesController#create as JSON
18923
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
18924
+ Unpermitted parameter: yolo
18925
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
18926
+  (0.1ms) ROLLBACK
18927
+  (0.1ms) BEGIN
18928
+ Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-02-03 10:29:07 -0600
18929
+ Processing by Gatherable::PricesController#show as JSON
18930
+ Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
18931
+ Completed 302 Found in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
18932
+  (0.1ms) ROLLBACK
18933
+  (0.0ms) BEGIN
18934
+ Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-02-03 10:29:07 -0600
18935
+ Processing by Gatherable::PricesController#show as JSON
18936
+ Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
18937
+ Completed 302 Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
18938
+  (0.1ms) ROLLBACK
18939
+  (0.0ms) BEGIN
18940
+ Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-02-03 10:29:07 -0600
18941
+ Processing by Gatherable::PricesController#show as JSON
18942
+ Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
18943
+ Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
18944
+  (0.1ms) ROLLBACK
18945
+  (0.0ms) BEGIN
18946
+ Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-02-03 10:29:07 -0600
18947
+ Processing by Gatherable::PricesController#show as JSON
18948
+ Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
18949
+ Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
18950
+  (0.1ms) ROLLBACK
18951
+  (0.0ms) BEGIN
18952
+  (0.0ms) ROLLBACK
18953
+  (0.1ms) BEGIN
18954
+  (0.1ms) ROLLBACK
18955
+  (0.1ms) BEGIN
18956
+  (0.1ms) ROLLBACK
18957
+  (0.1ms) BEGIN
18958
+  (0.1ms) ROLLBACK
18959
+  (0.1ms) BEGIN
18960
+  (0.1ms) ROLLBACK
18961
+  (0.0ms) BEGIN
18962
+  (0.0ms) ROLLBACK
18963
+  (0.0ms) BEGIN
18964
+  (0.1ms) ROLLBACK
18965
+  (0.0ms) BEGIN
18966
+  (0.0ms) ROLLBACK
18967
+  (0.0ms) BEGIN
18968
+  (0.1ms) ROLLBACK
18969
+  (0.0ms) BEGIN
18970
+  (0.1ms) ROLLBACK
18971
+  (0.0ms) BEGIN
18972
+  (0.0ms) ROLLBACK
18973
+  (0.0ms) BEGIN
18974
+  (0.1ms) ROLLBACK
18975
+  (0.0ms) BEGIN
18976
+  (0.0ms) ROLLBACK
18977
+  (0.0ms) BEGIN
18978
+  (0.0ms) ROLLBACK
18979
+  (0.1ms) BEGIN
18980
+  (0.0ms) ROLLBACK
18981
+  (0.0ms) BEGIN
18982
+  (0.1ms) ROLLBACK
18983
+  (0.0ms) BEGIN
18984
+  (0.1ms) ROLLBACK
18985
+  (0.0ms) BEGIN
18986
+  (0.1ms) ROLLBACK
18987
+  (0.0ms) BEGIN
18988
+  (0.1ms) ROLLBACK
18989
+  (0.1ms) BEGIN
18990
+  (0.1ms) ROLLBACK
18991
+  (0.0ms) BEGIN
18992
+  (0.1ms) ROLLBACK
18993
+  (0.0ms) BEGIN
18994
+  (0.0ms) ROLLBACK
18995
+  (0.1ms) BEGIN
18996
+  (0.0ms) ROLLBACK
18997
+  (0.0ms) BEGIN
18998
+  (0.0ms) ROLLBACK
18999
+  (0.0ms) BEGIN
19000
+  (0.0ms) ROLLBACK
19001
+  (0.0ms) BEGIN
19002
+  (0.0ms) ROLLBACK
19003
+  (0.0ms) BEGIN
19004
+  (0.0ms) ROLLBACK
19005
+  (0.1ms) BEGIN
19006
+  (0.0ms) ROLLBACK
19007
+  (0.0ms) BEGIN
19008
+  (0.1ms) ROLLBACK
19009
+  (0.0ms) BEGIN
19010
+  (0.1ms) ROLLBACK
19011
+  (0.1ms) BEGIN
19012
+  (0.1ms) ROLLBACK
19013
+  (0.0ms) BEGIN
19014
+  (0.1ms) ROLLBACK
19015
+  (0.0ms) BEGIN
19016
+  (0.1ms) ROLLBACK
19017
+  (0.0ms) BEGIN
19018
+  (0.1ms) ROLLBACK
19019
+  (0.0ms) BEGIN
19020
+  (0.1ms) ROLLBACK
19021
+  (0.0ms) BEGIN
19022
+  (0.1ms) ROLLBACK
19023
+  (0.1ms) BEGIN
19024
+  (0.1ms) ROLLBACK
19025
+  (0.0ms) BEGIN
19026
+  (0.1ms) ROLLBACK
19027
+  (0.1ms) BEGIN
19028
+  (0.1ms) ROLLBACK
19029
+  (0.1ms) BEGIN
19030
+  (0.1ms) ROLLBACK
19031
+  (0.1ms) BEGIN
19032
+  (0.1ms) ROLLBACK
19033
+  (0.1ms) BEGIN
19034
+  (0.1ms) ROLLBACK
19035
+  (0.1ms) BEGIN
19036
+  (0.1ms) ROLLBACK
19037
+  (0.1ms) BEGIN
19038
+  (0.1ms) ROLLBACK
19039
+  (0.1ms) BEGIN
19040
+  (0.1ms) ROLLBACK
19041
+  (0.1ms) BEGIN
19042
+  (0.1ms) ROLLBACK
19043
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
19044
+  (114.1ms) DROP DATABASE IF EXISTS "gatherable_test"
19045
+  (233.1ms) CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
19046
+  (19.5ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
19047
+  (4.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
19048
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
19049
+ Migrating to CreateGatherableSchema (20160203103602)
19050
+  (0.1ms) BEGIN
19051
+  (0.2ms) CREATE SCHEMA gatherable
19052
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160203103602"]]
19053
+  (0.3ms) COMMIT
19054
+ Migrating to CreateGatherablePrice (20160203103603)
19055
+  (0.1ms) BEGIN
19056
+  (2.6ms) CREATE TABLE "gatherable"."prices" ("price_id" serial primary key, "price" decimal, "session_id" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
19057
+  (0.5ms) CREATE INDEX "index_gatherable.prices_on_session_id" ON "gatherable"."prices" ("session_id")
19058
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160203103603"]]
19059
+  (0.3ms) COMMIT
19060
+ Migrating to CreateGatherableRequestedLoanAmount (20160203103604)
19061
+  (0.1ms) BEGIN
19062
+  (2.0ms) CREATE TABLE "gatherable"."requested_loan_amounts" ("requested_loan_amount_id" serial primary key, "requested_loan_amount" decimal, "total_cost" decimal, "monthly_repayment_amount" decimal, "session_id" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
19063
+  (0.6ms) CREATE INDEX "index_gatherable.requested_loan_amounts_on_session_id" ON "gatherable"."requested_loan_amounts" ("session_id")
19064
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160203103604"]]
19065
+  (0.3ms) COMMIT
19066
+  (0.1ms) BEGIN
19067
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:36:03 -0600
19068
+ Processing by Gatherable::PricesController#create as JSON
19069
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
19070
+ Completed 201 Created in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
19071
+  (0.1ms) ROLLBACK
19072
+  (0.0ms) BEGIN
19073
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:36:03 -0600
19074
+ Processing by Gatherable::PricesController#create as JSON
19075
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
19076
+ Completed 201 Created in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
19077
+  (0.1ms) ROLLBACK
19078
+  (0.0ms) BEGIN
19079
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:36:03 -0600
19080
+ Processing by Gatherable::PricesController#create as JSON
19081
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
19082
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
19083
+  (0.1ms) ROLLBACK
19084
+  (0.1ms) BEGIN
19085
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:36:03 -0600
19086
+ Processing by Gatherable::PricesController#create as JSON
19087
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
19088
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
19089
+  (0.1ms) ROLLBACK
19090
+  (0.1ms) BEGIN
19091
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:36:03 -0600
19092
+ Processing by Gatherable::PricesController#create as JSON
19093
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
19094
+ Completed 201 Created in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
19095
+  (0.1ms) ROLLBACK
19096
+  (0.1ms) BEGIN
19097
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:36:03 -0600
19098
+ Processing by Gatherable::PricesController#create as JSON
19099
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
19100
+ Completed 201 Created in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
19101
+  (0.1ms) ROLLBACK
19102
+  (0.0ms) BEGIN
19103
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:36:03 -0600
19104
+ Processing by Gatherable::PricesController#create as JSON
19105
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
19106
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
19107
+  (0.1ms) ROLLBACK
19108
+  (0.1ms) BEGIN
19109
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:36:03 -0600
19110
+ Processing by Gatherable::PricesController#create as JSON
19111
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
19112
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
19113
+  (0.1ms) ROLLBACK
19114
+  (0.1ms) BEGIN
19115
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:36:03 -0600
19116
+ Processing by Gatherable::PricesController#create as JSON
19117
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
19118
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
19119
+  (0.1ms) ROLLBACK
19120
+  (0.0ms) BEGIN
19121
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:36:03 -0600
19122
+ Processing by Gatherable::PricesController#create as JSON
19123
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
19124
+ Completed 201 Created in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
19125
+  (0.1ms) ROLLBACK
19126
+  (0.0ms) BEGIN
19127
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:36:03 -0600
19128
+ Processing by Gatherable::PricesController#create as JSON
19129
+ Parameters: {"price"=>{"price"=>"3.0"}, "session_id"=>"session_id123"}
19130
+ Filter chain halted as :authenticate rendered or redirected
19131
+ Completed 401 Unauthorized in 7ms (ActiveRecord: 0.0ms)
19132
+  (0.1ms) ROLLBACK
19133
+  (0.0ms) BEGIN
19134
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:36:03 -0600
19135
+ Processing by Gatherable::PricesController#create as JSON
19136
+ Parameters: {"price"=>{"price"=>"3.0"}, "session_id"=>"session_id123"}
19137
+ Filter chain halted as :authenticate rendered or redirected
19138
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
19139
+  (0.1ms) ROLLBACK
19140
+  (0.0ms) BEGIN
19141
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:36:03 -0600
19142
+ Processing by Gatherable::PricesController#create as JSON
19143
+ Parameters: {"price"=>{"price"=>"3.0"}, "session_id"=>"session_id123"}
19144
+ Filter chain halted as :authenticate rendered or redirected
19145
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
19146
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:36:03 -0600
19147
+ Processing by Gatherable::PricesController#create as JSON
19148
+ Parameters: {"price"=>{"price"=>"3.0"}, "session_id"=>"session_id123"}
19149
+ Filter chain halted as :authenticate rendered or redirected
19150
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
19151
+  (0.1ms) ROLLBACK
19152
+  (0.0ms) BEGIN
19153
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:36:03 -0600
19154
+ Processing by Gatherable::PricesController#create as JSON
19155
+ Parameters: {"yolo"=>"swag", "session_id"=>"session_id123"}
19156
+ Completed 422 Unprocessable Entity in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
19157
+  (0.1ms) ROLLBACK
19158
+  (0.0ms) BEGIN
19159
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:36:03 -0600
19160
+ Processing by Gatherable::PricesController#create as JSON
19161
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
19162
+ Completed 201 Created in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
19163
+  (0.1ms) ROLLBACK
19164
+  (0.1ms) BEGIN
19165
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:36:03 -0600
19166
+ Processing by Gatherable::PricesController#create as JSON
19167
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
19168
+ Unpermitted parameter: yolo
19169
+ Completed 201 Created in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
19170
+  (0.1ms) ROLLBACK
19171
+  (0.1ms) BEGIN
19172
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:36:03 -0600
19173
+ Processing by Gatherable::PricesController#create as JSON
19174
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
19175
+ Unpermitted parameter: yolo
19176
+ Completed 201 Created in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
19177
+  (0.1ms) ROLLBACK
19178
+  (0.0ms) BEGIN
19179
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:36:03 -0600
19180
+ Processing by Gatherable::PricesController#create as JSON
19181
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
19182
+ Unpermitted parameter: yolo
19183
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
19184
+  (0.1ms) ROLLBACK
19185
+  (0.0ms) BEGIN
19186
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:36:03 -0600
19187
+ Processing by Gatherable::PricesController#create as JSON
19188
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
19189
+ Unpermitted parameter: yolo
19190
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
19191
+  (0.1ms) ROLLBACK
19192
+  (0.1ms) BEGIN
19193
+ Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-02-03 10:36:03 -0600
19194
+ Processing by Gatherable::PricesController#show as JSON
19195
+ Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
19196
+ Completed 302 Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
19197
+  (0.1ms) ROLLBACK
19198
+  (0.0ms) BEGIN
19199
+ Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-02-03 10:36:03 -0600
19200
+ Processing by Gatherable::PricesController#show as JSON
19201
+ Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
19202
+ Completed 302 Found in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
19203
+  (0.1ms) ROLLBACK
19204
+  (0.1ms) BEGIN
19205
+ Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-02-03 10:36:03 -0600
19206
+ Processing by Gatherable::PricesController#show as JSON
19207
+ Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
19208
+ Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
19209
+  (0.1ms) ROLLBACK
19210
+  (0.1ms) BEGIN
19211
+ Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-02-03 10:36:03 -0600
19212
+ Processing by Gatherable::PricesController#show as JSON
19213
+ Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
19214
+ Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
19215
+  (0.1ms) ROLLBACK
19216
+  (0.0ms) BEGIN
19217
+  (0.0ms) ROLLBACK
19218
+  (0.0ms) BEGIN
19219
+  (0.0ms) ROLLBACK
19220
+  (0.1ms) BEGIN
19221
+  (0.1ms) ROLLBACK
19222
+  (0.0ms) BEGIN
19223
+  (0.0ms) ROLLBACK
19224
+  (0.0ms) BEGIN
19225
+  (0.1ms) ROLLBACK
19226
+  (0.0ms) BEGIN
19227
+  (0.0ms) ROLLBACK
19228
+  (0.1ms) BEGIN
19229
+  (0.1ms) ROLLBACK
19230
+  (0.1ms) BEGIN
19231
+  (0.1ms) ROLLBACK
19232
+  (0.1ms) BEGIN
19233
+  (0.0ms) ROLLBACK
19234
+  (0.0ms) BEGIN
19235
+  (0.0ms) ROLLBACK
19236
+  (0.0ms) BEGIN
19237
+  (0.0ms) ROLLBACK
19238
+  (0.0ms) BEGIN
19239
+  (0.0ms) ROLLBACK
19240
+  (0.0ms) BEGIN
19241
+  (0.0ms) ROLLBACK
19242
+  (0.1ms) BEGIN
19243
+  (0.1ms) ROLLBACK
19244
+  (0.1ms) BEGIN
19245
+  (0.0ms) ROLLBACK
19246
+  (0.1ms) BEGIN
19247
+  (0.0ms) ROLLBACK
19248
+  (0.0ms) BEGIN
19249
+  (0.1ms) ROLLBACK
19250
+  (0.0ms) BEGIN
19251
+  (0.0ms) ROLLBACK
19252
+  (0.0ms) BEGIN
19253
+  (0.1ms) ROLLBACK
19254
+  (0.1ms) BEGIN
19255
+  (0.1ms) ROLLBACK
19256
+  (0.0ms) BEGIN
19257
+  (0.0ms) ROLLBACK
19258
+  (0.0ms) BEGIN
19259
+  (0.0ms) ROLLBACK
19260
+  (0.0ms) BEGIN
19261
+  (0.0ms) ROLLBACK
19262
+  (0.1ms) BEGIN
19263
+  (0.1ms) ROLLBACK
19264
+  (0.1ms) BEGIN
19265
+  (0.0ms) ROLLBACK
19266
+  (0.0ms) BEGIN
19267
+  (0.0ms) ROLLBACK
19268
+  (0.0ms) BEGIN
19269
+  (0.0ms) ROLLBACK
19270
+  (0.0ms) BEGIN
19271
+  (0.0ms) ROLLBACK
19272
+  (0.0ms) BEGIN
19273
+  (0.0ms) ROLLBACK
19274
+  (0.0ms) BEGIN
19275
+  (0.1ms) ROLLBACK
19276
+  (0.0ms) BEGIN
19277
+  (0.1ms) ROLLBACK
19278
+  (0.0ms) BEGIN
19279
+  (0.1ms) ROLLBACK
19280
+  (0.0ms) BEGIN
19281
+  (0.1ms) ROLLBACK
19282
+  (0.0ms) BEGIN
19283
+  (0.1ms) ROLLBACK
19284
+  (0.0ms) BEGIN
19285
+  (0.1ms) ROLLBACK
19286
+  (0.0ms) BEGIN
19287
+  (0.1ms) ROLLBACK
19288
+  (0.1ms) BEGIN
19289
+  (0.1ms) ROLLBACK
19290
+  (0.0ms) BEGIN
19291
+  (0.1ms) ROLLBACK
19292
+  (0.1ms) BEGIN
19293
+  (0.1ms) ROLLBACK
19294
+  (0.1ms) BEGIN
19295
+  (0.1ms) ROLLBACK
19296
+  (0.0ms) BEGIN
19297
+  (0.1ms) ROLLBACK
19298
+  (0.0ms) BEGIN
19299
+  (0.1ms) ROLLBACK
19300
+  (0.0ms) BEGIN
19301
+  (0.1ms) ROLLBACK
19302
+  (0.1ms) BEGIN
19303
+  (0.1ms) ROLLBACK
19304
+  (0.1ms) BEGIN
19305
+  (0.1ms) ROLLBACK
19306
+  (0.1ms) BEGIN
19307
+  (0.1ms) ROLLBACK
19308
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
19309
+  (111.8ms) DROP DATABASE IF EXISTS "gatherable_test"
19310
+  (230.8ms) CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
19311
+  (14.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
19312
+  (35.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
19313
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
19314
+ Migrating to CreateGatherableSchema (20160203103744)
19315
+  (0.1ms) BEGIN
19316
+  (0.3ms) CREATE SCHEMA gatherable
19317
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160203103744"]]
19318
+  (0.2ms) COMMIT
19319
+ Migrating to CreateGatherablePrice (20160203103745)
19320
+  (0.1ms) BEGIN
19321
+  (2.4ms) CREATE TABLE "gatherable"."prices" ("price_id" serial primary key, "price" decimal, "session_id" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
19322
+  (0.6ms) CREATE INDEX "index_gatherable.prices_on_session_id" ON "gatherable"."prices" ("session_id")
19323
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160203103745"]]
19324
+  (0.3ms) COMMIT
19325
+ Migrating to CreateGatherableRequestedLoanAmount (20160203103746)
19326
+  (0.1ms) BEGIN
19327
+  (2.3ms) CREATE TABLE "gatherable"."requested_loan_amounts" ("requested_loan_amount_id" serial primary key, "requested_loan_amount" decimal, "total_cost" decimal, "monthly_repayment_amount" decimal, "session_id" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
19328
+  (0.6ms) CREATE INDEX "index_gatherable.requested_loan_amounts_on_session_id" ON "gatherable"."requested_loan_amounts" ("session_id")
19329
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160203103746"]]
19330
+  (0.3ms) COMMIT
19331
+  (0.1ms) BEGIN
19332
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:37:44 -0600
19333
+ Processing by Gatherable::PricesController#create as JSON
19334
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
19335
+ Completed 201 Created in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
19336
+  (0.2ms) ROLLBACK
19337
+  (0.0ms) BEGIN
19338
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:37:44 -0600
19339
+ Processing by Gatherable::PricesController#create as JSON
19340
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
19341
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
19342
+  (0.1ms) ROLLBACK
19343
+  (0.0ms) BEGIN
19344
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:37:44 -0600
19345
+ Processing by Gatherable::PricesController#create as JSON
19346
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
19347
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
19348
+  (0.1ms) ROLLBACK
19349
+  (0.0ms) BEGIN
19350
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:37:44 -0600
19351
+ Processing by Gatherable::PricesController#create as JSON
19352
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
19353
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
19354
+  (0.1ms) ROLLBACK
19355
+  (0.0ms) BEGIN
19356
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:37:44 -0600
19357
+ Processing by Gatherable::PricesController#create as JSON
19358
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
19359
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
19360
+  (0.1ms) ROLLBACK
19361
+  (0.0ms) BEGIN
19362
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:37:44 -0600
19363
+ Processing by Gatherable::PricesController#create as JSON
19364
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
19365
+ Completed 201 Created in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
19366
+  (0.1ms) ROLLBACK
19367
+  (0.1ms) BEGIN
19368
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:37:44 -0600
19369
+ Processing by Gatherable::PricesController#create as JSON
19370
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
19371
+ Completed 201 Created in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
19372
+  (0.2ms) ROLLBACK
19373
+  (0.1ms) BEGIN
19374
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:37:44 -0600
19375
+ Processing by Gatherable::PricesController#create as JSON
19376
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
19377
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
19378
+  (0.1ms) ROLLBACK
19379
+  (0.0ms) BEGIN
19380
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:37:44 -0600
19381
+ Processing by Gatherable::PricesController#create as JSON
19382
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
19383
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
19384
+  (0.1ms) ROLLBACK
19385
+  (0.1ms) BEGIN
19386
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:37:44 -0600
19387
+ Processing by Gatherable::PricesController#create as JSON
19388
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
19389
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
19390
+  (0.1ms) ROLLBACK
19391
+  (0.1ms) BEGIN
19392
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:37:44 -0600
19393
+ Processing by Gatherable::PricesController#create as JSON
19394
+ Parameters: {"price"=>{"price"=>"3.0"}, "session_id"=>"session_id123"}
19395
+ Filter chain halted as :authenticate rendered or redirected
19396
+ Completed 401 Unauthorized in 6ms (ActiveRecord: 0.0ms)
19397
+  (0.1ms) ROLLBACK
19398
+  (0.0ms) BEGIN
19399
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:37:45 -0600
19400
+ Processing by Gatherable::PricesController#create as JSON
19401
+ Parameters: {"price"=>{"price"=>"3.0"}, "session_id"=>"session_id123"}
19402
+ Filter chain halted as :authenticate rendered or redirected
19403
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
19404
+  (0.1ms) ROLLBACK
19405
+  (0.0ms) BEGIN
19406
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:37:45 -0600
19407
+ Processing by Gatherable::PricesController#create as JSON
19408
+ Parameters: {"price"=>{"price"=>"3.0"}, "session_id"=>"session_id123"}
19409
+ Filter chain halted as :authenticate rendered or redirected
19410
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
19411
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:37:45 -0600
19412
+ Processing by Gatherable::PricesController#create as JSON
19413
+ Parameters: {"price"=>{"price"=>"3.0"}, "session_id"=>"session_id123"}
19414
+ Filter chain halted as :authenticate rendered or redirected
19415
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
19416
+  (0.1ms) ROLLBACK
19417
+  (0.0ms) BEGIN
19418
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:37:45 -0600
19419
+ Processing by Gatherable::PricesController#create as JSON
19420
+ Parameters: {"yolo"=>"swag", "session_id"=>"session_id123"}
19421
+ Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
19422
+  (0.1ms) ROLLBACK
19423
+  (0.1ms) BEGIN
19424
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:37:45 -0600
19425
+ Processing by Gatherable::PricesController#create as JSON
19426
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
19427
+ Completed 201 Created in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
19428
+  (0.1ms) ROLLBACK
19429
+  (0.0ms) BEGIN
19430
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:37:45 -0600
19431
+ Processing by Gatherable::PricesController#create as JSON
19432
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
19433
+ Unpermitted parameter: yolo
19434
+ Completed 201 Created in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
19435
+  (0.1ms) ROLLBACK
19436
+  (0.1ms) BEGIN
19437
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:37:45 -0600
19438
+ Processing by Gatherable::PricesController#create as JSON
19439
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
19440
+ Unpermitted parameter: yolo
19441
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
19442
+  (0.1ms) ROLLBACK
19443
+  (0.0ms) BEGIN
19444
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:37:45 -0600
19445
+ Processing by Gatherable::PricesController#create as JSON
19446
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
19447
+ Unpermitted parameter: yolo
19448
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
19449
+  (0.1ms) ROLLBACK
19450
+  (0.0ms) BEGIN
19451
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:37:45 -0600
19452
+ Processing by Gatherable::PricesController#create as JSON
19453
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
19454
+ Unpermitted parameter: yolo
19455
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
19456
+  (0.1ms) ROLLBACK
19457
+  (0.1ms) BEGIN
19458
+ Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-02-03 10:37:45 -0600
19459
+ Processing by Gatherable::PricesController#show as JSON
19460
+ Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
19461
+ Completed 302 Found in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
19462
+  (0.1ms) ROLLBACK
19463
+  (0.0ms) BEGIN
19464
+ Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-02-03 10:37:45 -0600
19465
+ Processing by Gatherable::PricesController#show as JSON
19466
+ Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
19467
+ Completed 302 Found in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
19468
+  (0.2ms) ROLLBACK
19469
+  (0.1ms) BEGIN
19470
+ Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-02-03 10:37:45 -0600
19471
+ Processing by Gatherable::PricesController#show as JSON
19472
+ Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
19473
+ Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
19474
+  (0.1ms) ROLLBACK
19475
+  (0.0ms) BEGIN
19476
+ Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-02-03 10:37:45 -0600
19477
+ Processing by Gatherable::PricesController#show as JSON
19478
+ Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
19479
+ Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
19480
+  (0.1ms) ROLLBACK
19481
+  (0.0ms) BEGIN
19482
+  (0.0ms) ROLLBACK
19483
+  (0.0ms) BEGIN
19484
+  (0.0ms) ROLLBACK
19485
+  (0.1ms) BEGIN
19486
+  (0.0ms) ROLLBACK
19487
+  (0.1ms) BEGIN
19488
+  (0.1ms) ROLLBACK
19489
+  (0.1ms) BEGIN
19490
+  (0.1ms) ROLLBACK
19491
+  (0.0ms) BEGIN
19492
+  (0.1ms) ROLLBACK
19493
+  (0.1ms) BEGIN
19494
+  (0.1ms) ROLLBACK
19495
+  (0.0ms) BEGIN
19496
+  (0.1ms) ROLLBACK
19497
+  (0.0ms) BEGIN
19498
+  (0.1ms) ROLLBACK
19499
+  (0.0ms) BEGIN
19500
+  (0.0ms) ROLLBACK
19501
+  (0.0ms) BEGIN
19502
+  (0.0ms) ROLLBACK
19503
+  (0.0ms) BEGIN
19504
+  (0.0ms) ROLLBACK
19505
+  (0.0ms) BEGIN
19506
+  (0.0ms) ROLLBACK
19507
+  (0.0ms) BEGIN
19508
+  (0.1ms) ROLLBACK
19509
+  (0.0ms) BEGIN
19510
+  (0.0ms) ROLLBACK
19511
+  (0.1ms) BEGIN
19512
+  (0.0ms) ROLLBACK
19513
+  (0.0ms) BEGIN
19514
+  (0.0ms) ROLLBACK
19515
+  (0.1ms) BEGIN
19516
+  (0.1ms) ROLLBACK
19517
+  (0.0ms) BEGIN
19518
+  (0.0ms) ROLLBACK
19519
+  (0.0ms) BEGIN
19520
+  (0.0ms) ROLLBACK
19521
+  (0.0ms) BEGIN
19522
+  (0.0ms) ROLLBACK
19523
+  (0.0ms) BEGIN
19524
+  (0.0ms) ROLLBACK
19525
+  (0.0ms) BEGIN
19526
+  (0.0ms) ROLLBACK
19527
+  (0.0ms) BEGIN
19528
+  (0.0ms) ROLLBACK
19529
+  (0.0ms) BEGIN
19530
+  (0.0ms) ROLLBACK
19531
+  (0.0ms) BEGIN
19532
+  (0.0ms) ROLLBACK
19533
+  (0.0ms) BEGIN
19534
+  (0.0ms) ROLLBACK
19535
+  (0.0ms) BEGIN
19536
+  (0.0ms) ROLLBACK
19537
+  (0.0ms) BEGIN
19538
+  (0.0ms) ROLLBACK
19539
+  (0.0ms) BEGIN
19540
+  (0.1ms) ROLLBACK
19541
+  (0.0ms) BEGIN
19542
+  (0.1ms) ROLLBACK
19543
+  (0.1ms) BEGIN
19544
+  (0.1ms) ROLLBACK
19545
+  (0.1ms) BEGIN
19546
+  (0.1ms) ROLLBACK
19547
+  (0.0ms) BEGIN
19548
+  (0.1ms) ROLLBACK
19549
+  (0.0ms) BEGIN
19550
+  (0.1ms) ROLLBACK
19551
+  (0.1ms) BEGIN
19552
+  (0.1ms) ROLLBACK
19553
+  (0.1ms) BEGIN
19554
+  (0.1ms) ROLLBACK
19555
+  (0.0ms) BEGIN
19556
+  (0.1ms) ROLLBACK
19557
+  (0.1ms) BEGIN
19558
+  (0.1ms) ROLLBACK
19559
+  (0.0ms) BEGIN
19560
+  (0.1ms) ROLLBACK
19561
+  (0.0ms) BEGIN
19562
+  (0.1ms) ROLLBACK
19563
+  (0.1ms) BEGIN
19564
+  (0.1ms) ROLLBACK
19565
+  (0.1ms) BEGIN
19566
+  (0.1ms) ROLLBACK
19567
+  (0.1ms) BEGIN
19568
+  (0.1ms) ROLLBACK
19569
+  (0.0ms) BEGIN
19570
+  (0.1ms) ROLLBACK
19571
+  (0.0ms) BEGIN
19572
+  (0.1ms) ROLLBACK
19573
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
19574
+  (112.2ms) DROP DATABASE IF EXISTS "gatherable_test"
19575
+  (233.2ms) CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
19576
+  (14.5ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
19577
+  (10.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
19578
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
19579
+ Migrating to CreateGatherableSchema (20160203103900)
19580
+  (0.1ms) BEGIN
19581
+  (0.3ms) CREATE SCHEMA gatherable
19582
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160203103900"]]
19583
+  (0.2ms) COMMIT
19584
+ Migrating to CreateGatherablePrice (20160203103901)
19585
+  (0.1ms) BEGIN
19586
+  (2.3ms) CREATE TABLE "gatherable"."prices" ("price_id" serial primary key, "price" decimal, "session_id" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
19587
+  (0.5ms) CREATE INDEX "index_gatherable.prices_on_session_id" ON "gatherable"."prices" ("session_id")
19588
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160203103901"]]
19589
+  (0.3ms) COMMIT
19590
+ Migrating to CreateGatherableRequestedLoanAmount (20160203103902)
19591
+  (0.2ms) BEGIN
19592
+  (1.9ms) CREATE TABLE "gatherable"."requested_loan_amounts" ("requested_loan_amount_id" serial primary key, "requested_loan_amount" decimal, "total_cost" decimal, "monthly_repayment_amount" decimal, "session_id" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
19593
+  (0.7ms) CREATE INDEX "index_gatherable.requested_loan_amounts_on_session_id" ON "gatherable"."requested_loan_amounts" ("session_id")
19594
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160203103902"]]
19595
+  (0.3ms) COMMIT
19596
+  (0.1ms) BEGIN
19597
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:39:00 -0600
19598
+ Processing by Gatherable::PricesController#create as JSON
19599
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
19600
+ Completed 201 Created in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
19601
+  (0.1ms) ROLLBACK
19602
+  (0.1ms) BEGIN
19603
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:39:00 -0600
19604
+ Processing by Gatherable::PricesController#create as JSON
19605
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
19606
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
19607
+  (0.1ms) ROLLBACK
19608
+  (0.0ms) BEGIN
19609
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:39:00 -0600
19610
+ Processing by Gatherable::PricesController#create as JSON
19611
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
19612
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
19613
+  (0.1ms) ROLLBACK
19614
+  (0.0ms) BEGIN
19615
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:39:00 -0600
19616
+ Processing by Gatherable::PricesController#create as JSON
19617
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
19618
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
19619
+  (0.1ms) ROLLBACK
19620
+  (0.0ms) BEGIN
19621
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:39:00 -0600
19622
+ Processing by Gatherable::PricesController#create as JSON
19623
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
19624
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
19625
+  (0.1ms) ROLLBACK
19626
+  (0.0ms) BEGIN
19627
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:39:00 -0600
19628
+ Processing by Gatherable::PricesController#create as JSON
19629
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
19630
+ Completed 201 Created in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
19631
+  (0.1ms) ROLLBACK
19632
+  (0.0ms) BEGIN
19633
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:39:00 -0600
19634
+ Processing by Gatherable::PricesController#create as JSON
19635
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
19636
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
19637
+  (0.1ms) ROLLBACK
19638
+  (0.1ms) BEGIN
19639
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:39:00 -0600
19640
+ Processing by Gatherable::PricesController#create as JSON
19641
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
19642
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
19643
+  (0.1ms) ROLLBACK
19644
+  (0.1ms) BEGIN
19645
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:39:00 -0600
19646
+ Processing by Gatherable::PricesController#create as JSON
19647
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
19648
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
19649
+  (0.1ms) ROLLBACK
19650
+  (0.1ms) BEGIN
19651
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:39:00 -0600
19652
+ Processing by Gatherable::PricesController#create as JSON
19653
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
19654
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
19655
+  (0.1ms) ROLLBACK
19656
+  (0.1ms) BEGIN
19657
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:39:00 -0600
19658
+ Processing by Gatherable::PricesController#create as JSON
19659
+ Parameters: {"price"=>{"price"=>"3.0"}, "session_id"=>"session_id123"}
19660
+ Filter chain halted as :authenticate rendered or redirected
19661
+ Completed 401 Unauthorized in 7ms (ActiveRecord: 0.0ms)
19662
+  (0.1ms) ROLLBACK
19663
+  (0.0ms) BEGIN
19664
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:39:00 -0600
19665
+ Processing by Gatherable::PricesController#create as JSON
19666
+ Parameters: {"price"=>{"price"=>"3.0"}, "session_id"=>"session_id123"}
19667
+ Filter chain halted as :authenticate rendered or redirected
19668
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
19669
+  (0.1ms) ROLLBACK
19670
+  (0.0ms) BEGIN
19671
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:39:00 -0600
19672
+ Processing by Gatherable::PricesController#create as JSON
19673
+ Parameters: {"price"=>{"price"=>"3.0"}, "session_id"=>"session_id123"}
19674
+ Filter chain halted as :authenticate rendered or redirected
19675
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
19676
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:39:00 -0600
19677
+ Processing by Gatherable::PricesController#create as JSON
19678
+ Parameters: {"price"=>{"price"=>"3.0"}, "session_id"=>"session_id123"}
19679
+ Filter chain halted as :authenticate rendered or redirected
19680
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
19681
+  (0.1ms) ROLLBACK
19682
+  (0.1ms) BEGIN
19683
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:39:00 -0600
19684
+ Processing by Gatherable::PricesController#create as JSON
19685
+ Parameters: {"yolo"=>"swag", "session_id"=>"session_id123"}
19686
+ Completed 422 Unprocessable Entity in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
19687
+  (0.1ms) ROLLBACK
19688
+  (0.1ms) BEGIN
19689
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:39:00 -0600
19690
+ Processing by Gatherable::PricesController#create as JSON
19691
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
19692
+ Completed 201 Created in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
19693
+  (0.1ms) ROLLBACK
19694
+  (0.1ms) BEGIN
19695
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:39:00 -0600
19696
+ Processing by Gatherable::PricesController#create as JSON
19697
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
19698
+ Unpermitted parameter: yolo
19699
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
19700
+  (0.1ms) ROLLBACK
19701
+  (0.1ms) BEGIN
19702
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:39:00 -0600
19703
+ Processing by Gatherable::PricesController#create as JSON
19704
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
19705
+ Unpermitted parameter: yolo
19706
+ Completed 201 Created in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
19707
+  (0.1ms) ROLLBACK
19708
+  (0.1ms) BEGIN
19709
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:39:00 -0600
19710
+ Processing by Gatherable::PricesController#create as JSON
19711
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
19712
+ Unpermitted parameter: yolo
19713
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
19714
+  (0.1ms) ROLLBACK
19715
+  (0.0ms) BEGIN
19716
+ Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-02-03 10:39:00 -0600
19717
+ Processing by Gatherable::PricesController#create as JSON
19718
+ Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
19719
+ Unpermitted parameter: yolo
19720
+ Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
19721
+  (0.1ms) ROLLBACK
19722
+  (0.0ms) BEGIN
19723
+ Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-02-03 10:39:00 -0600
19724
+ Processing by Gatherable::PricesController#show as JSON
19725
+ Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
19726
+ Completed 302 Found in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
19727
+  (0.1ms) ROLLBACK
19728
+  (0.0ms) BEGIN
19729
+ Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-02-03 10:39:00 -0600
19730
+ Processing by Gatherable::PricesController#show as JSON
19731
+ Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
19732
+ Completed 302 Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
19733
+  (0.1ms) ROLLBACK
19734
+  (0.0ms) BEGIN
19735
+ Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-02-03 10:39:00 -0600
19736
+ Processing by Gatherable::PricesController#show as JSON
19737
+ Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
19738
+ Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
19739
+  (0.1ms) ROLLBACK
19740
+  (0.0ms) BEGIN
19741
+ Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-02-03 10:39:00 -0600
19742
+ Processing by Gatherable::PricesController#show as JSON
19743
+ Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
19744
+ Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
19745
+  (0.1ms) ROLLBACK
19746
+  (0.1ms) BEGIN
19747
+  (0.1ms) ROLLBACK
19748
+  (0.1ms) BEGIN
19749
+  (0.1ms) ROLLBACK
19750
+  (0.1ms) BEGIN
19751
+  (0.1ms) ROLLBACK
19752
+  (0.1ms) BEGIN
19753
+  (0.1ms) ROLLBACK
19754
+  (0.1ms) BEGIN
19755
+  (0.1ms) ROLLBACK
19756
+  (0.1ms) BEGIN
19757
+  (0.1ms) ROLLBACK
19758
+  (0.1ms) BEGIN
19759
+  (0.1ms) ROLLBACK
19760
+  (0.1ms) BEGIN
19761
+  (0.1ms) ROLLBACK
19762
+  (0.1ms) BEGIN
19763
+  (0.1ms) ROLLBACK
19764
+  (0.0ms) BEGIN
19765
+  (0.0ms) ROLLBACK
19766
+  (0.0ms) BEGIN
19767
+  (0.1ms) ROLLBACK
19768
+  (0.0ms) BEGIN
19769
+  (0.0ms) ROLLBACK
19770
+  (0.0ms) BEGIN
19771
+  (0.0ms) ROLLBACK
19772
+  (0.0ms) BEGIN
19773
+  (0.0ms) ROLLBACK
19774
+  (0.0ms) BEGIN
19775
+  (0.0ms) ROLLBACK
19776
+  (0.0ms) BEGIN
19777
+  (0.0ms) ROLLBACK
19778
+  (0.0ms) BEGIN
19779
+  (0.0ms) ROLLBACK
19780
+  (0.0ms) BEGIN
19781
+  (0.0ms) ROLLBACK
19782
+  (0.0ms) BEGIN
19783
+  (0.0ms) ROLLBACK
19784
+  (0.0ms) BEGIN
19785
+  (0.0ms) ROLLBACK
19786
+  (0.0ms) BEGIN
19787
+  (0.0ms) ROLLBACK
19788
+  (0.0ms) BEGIN
19789
+  (0.0ms) ROLLBACK
19790
+  (0.0ms) BEGIN
19791
+  (0.0ms) ROLLBACK
19792
+  (0.0ms) BEGIN
19793
+  (0.0ms) ROLLBACK
19794
+  (0.0ms) BEGIN
19795
+  (0.0ms) ROLLBACK
19796
+  (0.0ms) BEGIN
19797
+  (0.1ms) ROLLBACK
19798
+  (0.0ms) BEGIN
19799
+  (0.0ms) ROLLBACK
19800
+  (0.0ms) BEGIN
19801
+  (0.1ms) ROLLBACK
19802
+  (0.1ms) BEGIN
19803
+  (0.1ms) ROLLBACK
19804
+  (0.1ms) BEGIN
19805
+  (0.1ms) ROLLBACK
19806
+  (0.0ms) BEGIN
19807
+  (0.1ms) ROLLBACK
19808
+  (0.0ms) BEGIN
19809
+  (0.1ms) ROLLBACK
19810
+  (0.1ms) BEGIN
19811
+  (0.1ms) ROLLBACK
19812
+  (0.0ms) BEGIN
19813
+  (0.1ms) ROLLBACK
19814
+  (0.0ms) BEGIN
19815
+  (0.1ms) ROLLBACK
19816
+  (0.1ms) BEGIN
19817
+  (0.1ms) ROLLBACK
19818
+  (0.1ms) BEGIN
19819
+  (0.1ms) ROLLBACK
19820
+  (0.1ms) BEGIN
19821
+  (0.1ms) ROLLBACK
19822
+  (0.1ms) BEGIN
19823
+  (0.1ms) ROLLBACK
19824
+  (0.1ms) BEGIN
19825
+  (0.1ms) ROLLBACK
19826
+  (0.1ms) BEGIN
19827
+  (0.1ms) ROLLBACK
19828
+  (0.1ms) BEGIN
19829
+  (0.1ms) ROLLBACK
19830
+  (0.0ms) BEGIN
19831
+  (0.1ms) ROLLBACK
19832
+  (0.0ms) BEGIN
19833
+  (0.1ms) ROLLBACK
19834
+  (0.0ms) BEGIN
19835
+  (0.1ms) ROLLBACK
19836
+  (0.0ms) BEGIN
19837
+  (0.1ms) ROLLBACK