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 +4 -4
- data/app/controllers/gatherable/application_controller.rb +8 -4
- data/app/models/data_table.rb +1 -2
- data/app/writers/javascript_writer.rb +1 -1
- data/app/writers/migration_writer.rb +4 -4
- data/lib/gatherable/version.rb +1 -1
- data/lib/generators/gatherable/templates/gatherable.rb +1 -1
- data/spec/dummy/log/test.log +2968 -0
- data/spec/lib/gatherable_spec.rb +2 -6
- data/spec/lib/generators/gatherable_generator_spec.rb +1 -1
- metadata +21 -21
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0f007c6e6ea1daa0fff5704b0d51712355c7c0c9
|
4
|
+
data.tar.gz: e6ac90f1dc73c6ff83fd2decaa086c1414cc5f46
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
-
|
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
|
-
"#{
|
33
|
+
"#{model_name_as_var}_id"
|
34
34
|
end
|
35
35
|
|
36
36
|
def unmodularized_model_name
|
37
|
-
model_name.split('::').last
|
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(
|
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
|
data/app/models/data_table.rb
CHANGED
@@ -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#{
|
62
|
+
class CreateGatherable#{data_table.name.to_s.classify} < ActiveRecord::Migration
|
63
63
|
def up
|
64
|
-
create_table '#{
|
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 '#{
|
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_#{
|
85
|
+
@file_suffix ||= "create_gatherable_#{data_table.name}.rb"
|
86
86
|
end
|
87
87
|
|
88
88
|
def already_found_message
|
data/lib/gatherable/version.rb
CHANGED
data/spec/dummy/log/test.log
CHANGED
@@ -16867,3 +16867,2971 @@ Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
|
16867
16867
|
[1m[35m (0.1ms)[0m ROLLBACK
|
16868
16868
|
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
16869
16869
|
[1m[35m (0.1ms)[0m ROLLBACK
|
16870
|
+
[1m[36mActiveRecord::SchemaMigration Load (24.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
16871
|
+
[1m[36m (113.4ms)[0m [1mDROP DATABASE IF EXISTS "gatherable_test"[0m
|
16872
|
+
[1m[35m (327.0ms)[0m CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
|
16873
|
+
[1m[36m (113.7ms)[0m [1mDROP DATABASE IF EXISTS "gatherable_test"[0m
|
16874
|
+
[1m[35m (233.3ms)[0m CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
|
16875
|
+
[1m[36m (113.1ms)[0m [1mDROP DATABASE IF EXISTS "gatherable_test"[0m
|
16876
|
+
[1m[35m (233.1ms)[0m CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
|
16877
|
+
[1m[36m (27.7ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL) [0m
|
16878
|
+
[1m[35m (1.4ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
16879
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
16880
|
+
Migrating to CreateGatherableSchema (20160203081639)
|
16881
|
+
[1m[35m (0.1ms)[0m BEGIN
|
16882
|
+
[1m[36m (0.4ms)[0m [1mCREATE SCHEMA gatherable[0m
|
16883
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160203081639"]]
|
16884
|
+
[1m[36m (5.8ms)[0m [1mCOMMIT[0m
|
16885
|
+
Migrating to CreateGatherablePrice (20160203081640)
|
16886
|
+
[1m[35m (0.1ms)[0m BEGIN
|
16887
|
+
[1m[36m (20.1ms)[0m [1mCREATE TABLE "gatherable"."prices" ("price_id" serial primary key, "price" decimal, "session_id" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
16888
|
+
[1m[35m (0.9ms)[0m CREATE INDEX "index_gatherable.prices_on_session_id" ON "gatherable"."prices" ("session_id")
|
16889
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20160203081640"]]
|
16890
|
+
[1m[35m (0.4ms)[0m COMMIT
|
16891
|
+
Migrating to CreateGatherableRequestedLoanAmount (20160203081641)
|
16892
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
16893
|
+
[1m[35m (2.3ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mCREATE INDEX "index_gatherable.requested_loan_amounts_on_session_id" ON "gatherable"."requested_loan_amounts" ("session_id")[0m
|
16895
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160203081641"]]
|
16896
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m
|
16897
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
16903
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
16909
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
16915
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
16921
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
16927
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
16933
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
16939
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
16945
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
16951
|
+
[1m[35m (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
16957
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
16964
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
16971
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
16983
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
16989
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
16995
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17002
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17009
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17016
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17023
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17029
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17035
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17041
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17047
|
+
[1m[35m (0.1ms)[0m BEGIN
|
17048
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17049
|
+
[1m[35m (0.1ms)[0m BEGIN
|
17050
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17051
|
+
[1m[35m (0.1ms)[0m BEGIN
|
17052
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17053
|
+
[1m[35m (0.1ms)[0m BEGIN
|
17054
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17055
|
+
[1m[35m (0.1ms)[0m BEGIN
|
17056
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17057
|
+
[1m[35m (0.1ms)[0m BEGIN
|
17058
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17059
|
+
[1m[35m (0.1ms)[0m BEGIN
|
17060
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
17061
|
+
[1m[35m (0.0ms)[0m BEGIN
|
17062
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17063
|
+
[1m[35m (0.0ms)[0m BEGIN
|
17064
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
17065
|
+
[1m[35m (0.0ms)[0m BEGIN
|
17066
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
17067
|
+
[1m[35m (0.1ms)[0m BEGIN
|
17068
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17069
|
+
[1m[35m (0.1ms)[0m BEGIN
|
17070
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17071
|
+
[1m[35m (0.0ms)[0m BEGIN
|
17072
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
17073
|
+
[1m[35m (0.1ms)[0m BEGIN
|
17074
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17075
|
+
[1m[35m (0.0ms)[0m BEGIN
|
17076
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
17077
|
+
[1m[35m (0.0ms)[0m BEGIN
|
17078
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17079
|
+
[1m[35m (0.0ms)[0m BEGIN
|
17080
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
17081
|
+
[1m[35m (0.1ms)[0m BEGIN
|
17082
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17083
|
+
[1m[35m (0.0ms)[0m BEGIN
|
17084
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17085
|
+
[1m[35m (0.1ms)[0m BEGIN
|
17086
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17087
|
+
[1m[35m (0.1ms)[0m BEGIN
|
17088
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17089
|
+
[1m[35m (0.1ms)[0m BEGIN
|
17090
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17091
|
+
[1m[35m (0.1ms)[0m BEGIN
|
17092
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17093
|
+
[1m[35m (0.1ms)[0m BEGIN
|
17094
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17095
|
+
[1m[35m (0.1ms)[0m BEGIN
|
17096
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17097
|
+
[1m[35m (0.1ms)[0m BEGIN
|
17098
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17099
|
+
[1m[35m (0.0ms)[0m BEGIN
|
17100
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
17101
|
+
[1m[35m (0.0ms)[0m BEGIN
|
17102
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
17103
|
+
[1m[35m (0.0ms)[0m BEGIN
|
17104
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17105
|
+
[1m[35m (0.1ms)[0m BEGIN
|
17106
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17107
|
+
[1m[35m (0.1ms)[0m BEGIN
|
17108
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17109
|
+
[1m[35m (0.1ms)[0m BEGIN
|
17110
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17111
|
+
[1m[35m (0.0ms)[0m BEGIN
|
17112
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17113
|
+
[1m[35m (0.0ms)[0m BEGIN
|
17114
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17115
|
+
[1m[35m (0.0ms)[0m BEGIN
|
17116
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17117
|
+
[1m[35m (0.0ms)[0m BEGIN
|
17118
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17119
|
+
[1m[35m (0.1ms)[0m BEGIN
|
17120
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17121
|
+
[1m[35m (0.1ms)[0m BEGIN
|
17122
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17123
|
+
[1m[35m (0.1ms)[0m BEGIN
|
17124
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17125
|
+
[1m[35m (0.0ms)[0m BEGIN
|
17126
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17127
|
+
[1m[35m (0.1ms)[0m BEGIN
|
17128
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17129
|
+
[1m[35m (0.1ms)[0m BEGIN
|
17130
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17131
|
+
[1m[35m (0.0ms)[0m BEGIN
|
17132
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17133
|
+
[1m[35m (0.1ms)[0m BEGIN
|
17134
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17135
|
+
[1m[35m (0.1ms)[0m BEGIN
|
17136
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17137
|
+
[1m[35m (0.0ms)[0m BEGIN
|
17138
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17139
|
+
[1m[35m (0.1ms)[0m BEGIN
|
17140
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17141
|
+
[1m[35m (0.1ms)[0m BEGIN
|
17142
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17143
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
17144
|
+
[1m[36m (112.6ms)[0m [1mDROP DATABASE IF EXISTS "gatherable_test"[0m
|
17145
|
+
[1m[35m (293.0ms)[0m CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
|
17146
|
+
[1m[35m (25.1ms)[0m CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
|
17147
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
17148
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
17149
|
+
Migrating to CreateGatherableSchema (20160203081851)
|
17150
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
17151
|
+
[1m[35m (0.2ms)[0m CREATE SCHEMA gatherable
|
17152
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20160203081851"]]
|
17153
|
+
[1m[35m (0.2ms)[0m COMMIT
|
17154
|
+
Migrating to CreateGatherablePrice (20160203081852)
|
17155
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
17156
|
+
[1m[35m (2.4ms)[0m 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
|
+
[1m[36m (0.5ms)[0m [1mCREATE INDEX "index_gatherable.prices_on_session_id" ON "gatherable"."prices" ("session_id")[0m
|
17158
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160203081852"]]
|
17159
|
+
[1m[36m (1.3ms)[0m [1mCOMMIT[0m
|
17160
|
+
Migrating to CreateGatherableRequestedLoanAmount (20160203081853)
|
17161
|
+
[1m[35m (0.1ms)[0m BEGIN
|
17162
|
+
[1m[36m (5.5ms)[0m [1mCREATE 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) [0m
|
17163
|
+
[1m[35m (0.9ms)[0m CREATE INDEX "index_gatherable.requested_loan_amounts_on_session_id" ON "gatherable"."requested_loan_amounts" ("session_id")
|
17164
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20160203081853"]]
|
17165
|
+
[1m[35m (0.5ms)[0m COMMIT
|
17166
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17172
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
17178
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17184
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17190
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17196
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17202
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17208
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17214
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17220
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17226
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17233
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17240
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17252
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17258
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17264
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17271
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17278
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17285
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17292
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17298
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17304
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17310
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17316
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
17317
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17318
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
17319
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17320
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
17321
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17322
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
17323
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17324
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
17325
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17326
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
17327
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17328
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
17329
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17330
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
17331
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17332
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
17333
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17334
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
17335
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17336
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
17337
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17338
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
17339
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17340
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
17341
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17342
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
17343
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17344
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
17345
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17346
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
17347
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17348
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
17349
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
17350
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
17351
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
17352
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
17353
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17354
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
17355
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
17356
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
17357
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
17358
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
17359
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
17360
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
17361
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17362
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
17363
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17364
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
17365
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
17366
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
17367
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
17368
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
17369
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
17370
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
17371
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17372
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
17373
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
17374
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
17375
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
17376
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
17377
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
17378
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
17379
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17380
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
17381
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17382
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
17383
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17384
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
17385
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17386
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
17387
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17388
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
17389
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17390
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
17391
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17392
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
17393
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17394
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
17395
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17396
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
17397
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17398
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
17399
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17400
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
17401
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17402
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
17403
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17404
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
17405
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17406
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
17407
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17408
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
17409
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17410
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
17411
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17412
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
17413
|
+
[1m[36m (114.8ms)[0m [1mDROP DATABASE IF EXISTS "gatherable_test"[0m
|
17414
|
+
[1m[35m (361.7ms)[0m CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
|
17415
|
+
[1m[36m (113.1ms)[0m [1mDROP DATABASE IF EXISTS "gatherable_test"[0m
|
17416
|
+
[1m[35m (231.1ms)[0m CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
|
17417
|
+
[1m[36m (112.1ms)[0m [1mDROP DATABASE IF EXISTS "gatherable_test"[0m
|
17418
|
+
[1m[35m (254.9ms)[0m CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
|
17419
|
+
[1m[36m (184.1ms)[0m [1mDROP DATABASE IF EXISTS "gatherable_test"[0m
|
17420
|
+
[1m[35m (234.0ms)[0m CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
|
17421
|
+
[1m[36m (112.8ms)[0m [1mDROP DATABASE IF EXISTS "gatherable_test"[0m
|
17422
|
+
[1m[35m (231.1ms)[0m CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
|
17423
|
+
[1m[36m (14.5ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL) [0m
|
17424
|
+
[1m[35m (10.6ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
17425
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
17426
|
+
Migrating to CreateGatherableSchema (20160203092109)
|
17427
|
+
[1m[35m (0.1ms)[0m BEGIN
|
17428
|
+
[1m[36m (0.3ms)[0m [1mCREATE SCHEMA gatherable[0m
|
17429
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160203092109"]]
|
17430
|
+
[1m[36m (5.9ms)[0m [1mCOMMIT[0m
|
17431
|
+
Migrating to CreateGatherablePrice (20160203092110)
|
17432
|
+
[1m[35m (0.1ms)[0m BEGIN
|
17433
|
+
[1m[36m (19.0ms)[0m [1mCREATE TABLE "gatherable"."prices" ("price_id" serial primary key, "price" decimal, "session_id" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
17434
|
+
[1m[35m (0.6ms)[0m CREATE INDEX "index_gatherable.prices_on_session_id" ON "gatherable"."prices" ("session_id")
|
17435
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20160203092110"]]
|
17436
|
+
[1m[35m (0.3ms)[0m COMMIT
|
17437
|
+
Migrating to CreateGatherableRequestedLoanAmount (20160203092111)
|
17438
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
17439
|
+
[1m[35m (1.9ms)[0m 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
|
+
[1m[36m (0.5ms)[0m [1mCREATE INDEX "index_gatherable.requested_loan_amounts_on_session_id" ON "gatherable"."requested_loan_amounts" ("session_id")[0m
|
17441
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160203092111"]]
|
17442
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m
|
17443
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17449
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17455
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
17461
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17467
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17473
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17479
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.3ms)[0m [1mROLLBACK[0m
|
17485
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17491
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17497
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17503
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
17510
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17517
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17529
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17535
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17541
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17548
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17555
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17562
|
+
[1m[35m (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17569
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17575
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17581
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17587
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17593
|
+
[1m[35m (0.0ms)[0m BEGIN
|
17594
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
17595
|
+
[1m[35m (0.1ms)[0m BEGIN
|
17596
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
17597
|
+
[1m[35m (0.1ms)[0m BEGIN
|
17598
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17599
|
+
[1m[35m (0.0ms)[0m BEGIN
|
17600
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
17601
|
+
[1m[35m (0.0ms)[0m BEGIN
|
17602
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17603
|
+
[1m[35m (0.0ms)[0m BEGIN
|
17604
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17605
|
+
[1m[35m (0.1ms)[0m BEGIN
|
17606
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17607
|
+
[1m[35m (0.1ms)[0m BEGIN
|
17608
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17609
|
+
[1m[35m (0.0ms)[0m BEGIN
|
17610
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17611
|
+
[1m[35m (0.0ms)[0m BEGIN
|
17612
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17613
|
+
[1m[35m (0.0ms)[0m BEGIN
|
17614
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
17615
|
+
[1m[35m (0.0ms)[0m BEGIN
|
17616
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
17617
|
+
[1m[35m (0.0ms)[0m BEGIN
|
17618
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
17619
|
+
[1m[35m (0.0ms)[0m BEGIN
|
17620
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
17621
|
+
[1m[35m (0.0ms)[0m BEGIN
|
17622
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
17623
|
+
[1m[35m (0.0ms)[0m BEGIN
|
17624
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
17625
|
+
[1m[35m (0.0ms)[0m BEGIN
|
17626
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
17627
|
+
[1m[35m (0.0ms)[0m BEGIN
|
17628
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
17629
|
+
[1m[35m (0.0ms)[0m BEGIN
|
17630
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17631
|
+
[1m[35m (0.1ms)[0m BEGIN
|
17632
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17633
|
+
[1m[35m (0.0ms)[0m BEGIN
|
17634
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
17635
|
+
[1m[35m (0.0ms)[0m BEGIN
|
17636
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
17637
|
+
[1m[35m (0.1ms)[0m BEGIN
|
17638
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17639
|
+
[1m[35m (0.1ms)[0m BEGIN
|
17640
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
17641
|
+
[1m[35m (0.1ms)[0m BEGIN
|
17642
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17643
|
+
[1m[35m (0.0ms)[0m BEGIN
|
17644
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
17645
|
+
[1m[35m (0.0ms)[0m BEGIN
|
17646
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17647
|
+
[1m[35m (0.1ms)[0m BEGIN
|
17648
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17649
|
+
[1m[35m (0.0ms)[0m BEGIN
|
17650
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
17651
|
+
[1m[35m (0.1ms)[0m BEGIN
|
17652
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17653
|
+
[1m[35m (0.0ms)[0m BEGIN
|
17654
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
17655
|
+
[1m[35m (0.1ms)[0m BEGIN
|
17656
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17657
|
+
[1m[35m (0.1ms)[0m BEGIN
|
17658
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17659
|
+
[1m[35m (0.0ms)[0m BEGIN
|
17660
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17661
|
+
[1m[35m (0.0ms)[0m BEGIN
|
17662
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17663
|
+
[1m[35m (0.0ms)[0m BEGIN
|
17664
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17665
|
+
[1m[35m (0.1ms)[0m BEGIN
|
17666
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17667
|
+
[1m[35m (0.0ms)[0m BEGIN
|
17668
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17669
|
+
[1m[35m (0.0ms)[0m BEGIN
|
17670
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17671
|
+
[1m[35m (0.1ms)[0m BEGIN
|
17672
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17673
|
+
[1m[35m (0.1ms)[0m BEGIN
|
17674
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17675
|
+
[1m[35m (0.1ms)[0m BEGIN
|
17676
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17677
|
+
[1m[35m (0.1ms)[0m BEGIN
|
17678
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17679
|
+
[1m[35m (0.1ms)[0m BEGIN
|
17680
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17681
|
+
[1m[35m (0.0ms)[0m BEGIN
|
17682
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17683
|
+
[1m[35m (0.0ms)[0m BEGIN
|
17684
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17685
|
+
[1m[35m (0.0ms)[0m BEGIN
|
17686
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17687
|
+
[1m[35m (0.1ms)[0m BEGIN
|
17688
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
17689
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
17690
|
+
[1m[36m (111.7ms)[0m [1mDROP DATABASE IF EXISTS "gatherable_test"[0m
|
17691
|
+
[1m[35m (345.1ms)[0m CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
|
17692
|
+
[1m[35m (14.0ms)[0m CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
|
17693
|
+
[1m[36m (10.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
17694
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.3ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
17695
|
+
Migrating to CreateGatherableSchema (20160203095734)
|
17696
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
17697
|
+
[1m[35m (0.2ms)[0m CREATE SCHEMA gatherable
|
17698
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20160203095734"]]
|
17699
|
+
[1m[35m (5.9ms)[0m COMMIT
|
17700
|
+
Migrating to CreateGatherablePrice (20160203095735)
|
17701
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
17702
|
+
[1m[35m (13.9ms)[0m 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
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_gatherable.prices_on_session_id" ON "gatherable"."prices" ("session_id")[0m
|
17704
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160203095735"]]
|
17705
|
+
[1m[36m (0.4ms)[0m [1mCOMMIT[0m
|
17706
|
+
Migrating to CreateGatherableRequestedLoanAmount (20160203095736)
|
17707
|
+
[1m[35m (0.1ms)[0m BEGIN
|
17708
|
+
[1m[36m (2.5ms)[0m [1mCREATE 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) [0m
|
17709
|
+
[1m[35m (0.6ms)[0m CREATE INDEX "index_gatherable.requested_loan_amounts_on_session_id" ON "gatherable"."requested_loan_amounts" ("session_id")
|
17710
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20160203095736"]]
|
17711
|
+
[1m[35m (0.3ms)[0m COMMIT
|
17712
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17718
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17724
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17730
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17736
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17742
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17748
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17754
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17760
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17766
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17772
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17779
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17786
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17798
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17804
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17810
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17817
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17824
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17831
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17838
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17844
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17850
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17856
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17862
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
17863
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17864
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
17865
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17866
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
17867
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17868
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
17869
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17870
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
17871
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17872
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
17873
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17874
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
17875
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17876
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
17877
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17878
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
17879
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
17880
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
17881
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
17882
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
17883
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
17884
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
17885
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
17886
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
17887
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
17888
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
17889
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
17890
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
17891
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
17892
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
17893
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
17894
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
17895
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
17896
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
17897
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
17898
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
17899
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
17900
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
17901
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
17902
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
17903
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
17904
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
17905
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
17906
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
17907
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
17908
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
17909
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
17910
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
17911
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17912
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
17913
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
17914
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
17915
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
17916
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
17917
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
17918
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
17919
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
17920
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
17921
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
17922
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
17923
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17924
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
17925
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17926
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
17927
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17928
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
17929
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17930
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
17931
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17932
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
17933
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17934
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
17935
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17936
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
17937
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17938
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
17939
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17940
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
17941
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17942
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
17943
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17944
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
17945
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17946
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
17947
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17948
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
17949
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17950
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
17951
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17952
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
17953
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17954
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
17955
|
+
[1m[36m (114.1ms)[0m [1mDROP DATABASE IF EXISTS "gatherable_test"[0m
|
17956
|
+
[1m[35m (234.2ms)[0m CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
|
17957
|
+
[1m[35m (13.5ms)[0m CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
|
17958
|
+
[1m[36m (10.5ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
17959
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.3ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
17960
|
+
Migrating to CreateGatherableSchema (20160203095856)
|
17961
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
17962
|
+
[1m[35m (0.2ms)[0m CREATE SCHEMA gatherable
|
17963
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20160203095856"]]
|
17964
|
+
[1m[35m (0.2ms)[0m COMMIT
|
17965
|
+
Migrating to CreateGatherablePrice (20160203095857)
|
17966
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
17967
|
+
[1m[35m (2.6ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mCREATE INDEX "index_gatherable.prices_on_session_id" ON "gatherable"."prices" ("session_id")[0m
|
17969
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160203095857"]]
|
17970
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m
|
17971
|
+
Migrating to CreateGatherableRequestedLoanAmount (20160203095858)
|
17972
|
+
[1m[35m (0.1ms)[0m BEGIN
|
17973
|
+
[1m[36m (1.9ms)[0m [1mCREATE 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) [0m
|
17974
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_gatherable.requested_loan_amounts_on_session_id" ON "gatherable"."requested_loan_amounts" ("session_id")
|
17975
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20160203095858"]]
|
17976
|
+
[1m[35m (0.3ms)[0m COMMIT
|
17977
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17983
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17989
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
17995
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18001
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18007
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18013
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18019
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18025
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18031
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18037
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18044
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18051
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18063
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18069
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18075
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18082
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18089
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18096
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18103
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18109
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18115
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18121
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18127
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18128
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18129
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18130
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18131
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18132
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
18133
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18134
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
18135
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18136
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18137
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
18138
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
18139
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18140
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
18141
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18142
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
18143
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18144
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
18145
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18146
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
18147
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18148
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
18149
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18150
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
18151
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18152
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
18153
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18154
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
18155
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18156
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
18157
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18158
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
18159
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18160
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18161
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18162
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
18163
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18164
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
18165
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18166
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
18167
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18168
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
18169
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18170
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
18171
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18172
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
18173
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18174
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
18175
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18176
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
18177
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18178
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
18179
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18180
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
18181
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18182
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
18183
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18184
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
18185
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18186
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18187
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
18188
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18189
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18190
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18191
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18192
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18193
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18194
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18195
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18196
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18197
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18198
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18199
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18200
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18201
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
18202
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18203
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
18204
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18205
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18206
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18207
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
18208
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18209
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
18210
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18211
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
18212
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18213
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
18214
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18215
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18216
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18217
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18218
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18219
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
18220
|
+
[1m[36m (114.7ms)[0m [1mDROP DATABASE IF EXISTS "gatherable_test"[0m
|
18221
|
+
[1m[35m (229.9ms)[0m CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
|
18222
|
+
[1m[35m (12.9ms)[0m CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
|
18223
|
+
[1m[36m (15.4ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
18224
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.3ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
18225
|
+
Migrating to CreateGatherableSchema (20160203095922)
|
18226
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
18227
|
+
[1m[35m (0.3ms)[0m CREATE SCHEMA gatherable
|
18228
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20160203095922"]]
|
18229
|
+
[1m[35m (5.6ms)[0m COMMIT
|
18230
|
+
Migrating to CreateGatherablePrice (20160203095923)
|
18231
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
18232
|
+
[1m[35m (2.5ms)[0m 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
|
+
[1m[36m (0.5ms)[0m [1mCREATE INDEX "index_gatherable.prices_on_session_id" ON "gatherable"."prices" ("session_id")[0m
|
18234
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160203095923"]]
|
18235
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m
|
18236
|
+
Migrating to CreateGatherableRequestedLoanAmount (20160203095924)
|
18237
|
+
[1m[35m (0.1ms)[0m BEGIN
|
18238
|
+
[1m[36m (2.1ms)[0m [1mCREATE 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) [0m
|
18239
|
+
[1m[35m (0.6ms)[0m CREATE INDEX "index_gatherable.requested_loan_amounts_on_session_id" ON "gatherable"."requested_loan_amounts" ("session_id")
|
18240
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20160203095924"]]
|
18241
|
+
[1m[35m (0.3ms)[0m COMMIT
|
18242
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
18248
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18254
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18260
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18266
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18272
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18278
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18284
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18290
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18296
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18302
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18309
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18316
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18328
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18334
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18340
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18347
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18354
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18361
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18368
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18374
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18380
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18386
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18392
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
18393
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18394
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
18395
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18396
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18397
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
18398
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
18399
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18400
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18401
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18402
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
18403
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18404
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18405
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18406
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
18407
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
18408
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
18409
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18410
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18411
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18412
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
18413
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18414
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
18415
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18416
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18417
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18418
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
18419
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18420
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18421
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18422
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
18423
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18424
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
18425
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18426
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
18427
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18428
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
18429
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18430
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
18431
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18432
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
18433
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18434
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18435
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18436
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18437
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18438
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18439
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18440
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18441
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18442
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
18443
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18444
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18445
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
18446
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18447
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
18448
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
18449
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18450
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18451
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
18452
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18453
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18454
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
18455
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18456
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
18457
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18458
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
18459
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18460
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18461
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18462
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
18463
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18464
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
18465
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18466
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18467
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18468
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
18469
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18470
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18471
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18472
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18473
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18474
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18475
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18476
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
18477
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18478
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
18479
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18480
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
18481
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18482
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
18483
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18484
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
18485
|
+
[1m[36m (114.6ms)[0m [1mDROP DATABASE IF EXISTS "gatherable_test"[0m
|
18486
|
+
[1m[35m (241.9ms)[0m CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
|
18487
|
+
[1m[35m (14.0ms)[0m CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
|
18488
|
+
[1m[36m (11.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
18489
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
18490
|
+
Migrating to CreateGatherableSchema (20160203102103)
|
18491
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
18492
|
+
[1m[35m (0.3ms)[0m CREATE SCHEMA gatherable
|
18493
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20160203102103"]]
|
18494
|
+
[1m[35m (0.2ms)[0m COMMIT
|
18495
|
+
Migrating to CreateGatherablePrice (20160203102104)
|
18496
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
18497
|
+
[1m[35m (2.3ms)[0m 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
|
+
[1m[36m (0.4ms)[0m [1mCREATE INDEX "index_gatherable.prices_on_session_id" ON "gatherable"."prices" ("session_id")[0m
|
18499
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160203102104"]]
|
18500
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m
|
18501
|
+
Migrating to CreateGatherableRequestedLoanAmount (20160203102105)
|
18502
|
+
[1m[35m (0.1ms)[0m BEGIN
|
18503
|
+
[1m[36m (1.9ms)[0m [1mCREATE 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) [0m
|
18504
|
+
[1m[35m (0.6ms)[0m CREATE INDEX "index_gatherable.requested_loan_amounts_on_session_id" ON "gatherable"."requested_loan_amounts" ("session_id")
|
18505
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20160203102105"]]
|
18506
|
+
[1m[35m (0.3ms)[0m COMMIT
|
18507
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18513
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18519
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18525
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18531
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18537
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18543
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18549
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18555
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18561
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18567
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18574
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18581
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18593
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18599
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18605
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18612
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18619
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18626
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18633
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18639
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18645
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18651
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18657
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
18658
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18659
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18660
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18661
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
18662
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18663
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18664
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
18665
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18666
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18667
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18668
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
18669
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
18670
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
18671
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18672
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
18673
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18674
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
18675
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18676
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18677
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
18678
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18679
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18680
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
18681
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18682
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
18683
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18684
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
18685
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18686
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
18687
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18688
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
18689
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18690
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
18691
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18692
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
18693
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18694
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
18695
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
18696
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
18697
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
18698
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
18699
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
18700
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18701
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18702
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
18703
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18704
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18705
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18706
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
18707
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18708
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18709
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18710
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
18711
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18712
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
18713
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18714
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
18715
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18716
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18717
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
18718
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18719
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18720
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18721
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18722
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18723
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
18724
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18725
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
18726
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18727
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
18728
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18729
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18730
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18731
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18732
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18733
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
18734
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18735
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
18736
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18737
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
18738
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18739
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
18740
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18741
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
18742
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18743
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18744
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18745
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18746
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18747
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
18748
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18749
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
18750
|
+
[1m[36m (114.6ms)[0m [1mDROP DATABASE IF EXISTS "gatherable_test"[0m
|
18751
|
+
[1m[35m (231.2ms)[0m CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
|
18752
|
+
[1m[35m (13.6ms)[0m CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
|
18753
|
+
[1m[36m (11.4ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
18754
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.3ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
18755
|
+
Migrating to CreateGatherableSchema (20160203102258)
|
18756
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
18757
|
+
[1m[35m (0.2ms)[0m CREATE SCHEMA gatherable
|
18758
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20160203102258"]]
|
18759
|
+
[1m[35m (0.3ms)[0m COMMIT
|
18760
|
+
Migrating to CreateGatherablePrice (20160203102259)
|
18761
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
18762
|
+
[1m[35m (2.8ms)[0m 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
|
+
[1m[36m (0.5ms)[0m [1mCREATE INDEX "index_gatherable.prices_on_session_id" ON "gatherable"."prices" ("session_id")[0m
|
18764
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160203102259"]]
|
18765
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m
|
18766
|
+
Migrating to CreateGatherableRequestedLoanAmount (20160203102300)
|
18767
|
+
[1m[35m (0.1ms)[0m BEGIN
|
18768
|
+
[1m[36m (2.0ms)[0m [1mCREATE 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) [0m
|
18769
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_gatherable.requested_loan_amounts_on_session_id" ON "gatherable"."requested_loan_amounts" ("session_id")
|
18770
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20160203102300"]]
|
18771
|
+
[1m[35m (0.3ms)[0m COMMIT
|
18772
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
18778
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
18779
|
+
[1m[36m (114.6ms)[0m [1mDROP DATABASE IF EXISTS "gatherable_test"[0m
|
18780
|
+
[1m[35m (229.0ms)[0m CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
|
18781
|
+
[1m[35m (13.8ms)[0m CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
|
18782
|
+
[1m[36m (13.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
18783
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.3ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
18784
|
+
Migrating to CreateGatherableSchema (20160203102907)
|
18785
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
18786
|
+
[1m[35m (0.2ms)[0m CREATE SCHEMA gatherable
|
18787
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20160203102907"]]
|
18788
|
+
[1m[35m (0.2ms)[0m COMMIT
|
18789
|
+
Migrating to CreateGatherablePrice (20160203102908)
|
18790
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
18791
|
+
[1m[35m (3.1ms)[0m 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
|
+
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_gatherable.prices_on_session_id" ON "gatherable"."prices" ("session_id")[0m
|
18793
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160203102908"]]
|
18794
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m
|
18795
|
+
Migrating to CreateGatherableRequestedLoanAmount (20160203102909)
|
18796
|
+
[1m[35m (0.2ms)[0m BEGIN
|
18797
|
+
[1m[36m (2.9ms)[0m [1mCREATE 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) [0m
|
18798
|
+
[1m[35m (0.6ms)[0m CREATE INDEX "index_gatherable.requested_loan_amounts_on_session_id" ON "gatherable"."requested_loan_amounts" ("session_id")
|
18799
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20160203102909"]]
|
18800
|
+
[1m[35m (0.3ms)[0m COMMIT
|
18801
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
18807
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18813
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18819
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18825
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18831
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18837
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18843
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18849
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18855
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18861
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18868
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18875
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18887
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18893
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18899
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18906
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18913
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18920
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18927
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18933
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18939
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18945
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18951
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18952
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
18953
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
18954
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18955
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
18956
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18957
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
18958
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18959
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
18960
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18961
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18962
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
18963
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18964
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18965
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18966
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
18967
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18968
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18969
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18970
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18971
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18972
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
18973
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18974
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18975
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18976
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
18977
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18978
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
18979
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
18980
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
18981
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18982
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18983
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18984
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18985
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18986
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18987
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18988
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18989
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
18990
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18991
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18992
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
18993
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18994
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
18995
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
18996
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
18997
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
18998
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
18999
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19000
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
19001
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19002
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
19003
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19004
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
19005
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
19006
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
19007
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19008
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19009
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19010
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19011
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
19012
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19013
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19014
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19015
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19016
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19017
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19018
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19019
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19020
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19021
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19022
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19023
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
19024
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19025
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19026
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19027
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
19028
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19029
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
19030
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19031
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
19032
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19033
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
19034
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19035
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
19036
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19037
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
19038
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19039
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
19040
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19041
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
19042
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19043
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
19044
|
+
[1m[36m (114.1ms)[0m [1mDROP DATABASE IF EXISTS "gatherable_test"[0m
|
19045
|
+
[1m[35m (233.1ms)[0m CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
|
19046
|
+
[1m[35m (19.5ms)[0m CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
|
19047
|
+
[1m[36m (4.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
19048
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.3ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
19049
|
+
Migrating to CreateGatherableSchema (20160203103602)
|
19050
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
19051
|
+
[1m[35m (0.2ms)[0m CREATE SCHEMA gatherable
|
19052
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20160203103602"]]
|
19053
|
+
[1m[35m (0.3ms)[0m COMMIT
|
19054
|
+
Migrating to CreateGatherablePrice (20160203103603)
|
19055
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
19056
|
+
[1m[35m (2.6ms)[0m 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
|
+
[1m[36m (0.5ms)[0m [1mCREATE INDEX "index_gatherable.prices_on_session_id" ON "gatherable"."prices" ("session_id")[0m
|
19058
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160203103603"]]
|
19059
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m
|
19060
|
+
Migrating to CreateGatherableRequestedLoanAmount (20160203103604)
|
19061
|
+
[1m[35m (0.1ms)[0m BEGIN
|
19062
|
+
[1m[36m (2.0ms)[0m [1mCREATE 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) [0m
|
19063
|
+
[1m[35m (0.6ms)[0m CREATE INDEX "index_gatherable.requested_loan_amounts_on_session_id" ON "gatherable"."requested_loan_amounts" ("session_id")
|
19064
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20160203103604"]]
|
19065
|
+
[1m[35m (0.3ms)[0m COMMIT
|
19066
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19072
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19078
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19084
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19090
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19096
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19102
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19108
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19114
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19120
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19126
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19133
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19140
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19152
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19158
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19164
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19171
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19178
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19185
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19192
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19198
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19204
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19210
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19216
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19217
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
19218
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19219
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
19220
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
19221
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19222
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19223
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
19224
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19225
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19226
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19227
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
19228
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
19229
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19230
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
19231
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19232
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
19233
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
19234
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19235
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
19236
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19237
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
19238
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19239
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
19240
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19241
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
19242
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
19243
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19244
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
19245
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
19246
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
19247
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
19248
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19249
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19250
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19251
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
19252
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19253
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19254
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
19255
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19256
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19257
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
19258
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19259
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
19260
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19261
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
19262
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
19263
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19264
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
19265
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
19266
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19267
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
19268
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19269
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
19270
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19271
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
19272
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19273
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
19274
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19275
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19276
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19277
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19278
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19279
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19280
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19281
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19282
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19283
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19284
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19285
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19286
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19287
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19288
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
19289
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19290
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19291
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19292
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
19293
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19294
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
19295
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19296
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19297
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19298
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19299
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19300
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19301
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19302
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
19303
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19304
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
19305
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19306
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
19307
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19308
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
19309
|
+
[1m[36m (111.8ms)[0m [1mDROP DATABASE IF EXISTS "gatherable_test"[0m
|
19310
|
+
[1m[35m (230.8ms)[0m CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
|
19311
|
+
[1m[35m (14.6ms)[0m CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
|
19312
|
+
[1m[36m (35.2ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
19313
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.3ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
19314
|
+
Migrating to CreateGatherableSchema (20160203103744)
|
19315
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
19316
|
+
[1m[35m (0.3ms)[0m CREATE SCHEMA gatherable
|
19317
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20160203103744"]]
|
19318
|
+
[1m[35m (0.2ms)[0m COMMIT
|
19319
|
+
Migrating to CreateGatherablePrice (20160203103745)
|
19320
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
19321
|
+
[1m[35m (2.4ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mCREATE INDEX "index_gatherable.prices_on_session_id" ON "gatherable"."prices" ("session_id")[0m
|
19323
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160203103745"]]
|
19324
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m
|
19325
|
+
Migrating to CreateGatherableRequestedLoanAmount (20160203103746)
|
19326
|
+
[1m[35m (0.1ms)[0m BEGIN
|
19327
|
+
[1m[36m (2.3ms)[0m [1mCREATE 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) [0m
|
19328
|
+
[1m[35m (0.6ms)[0m CREATE INDEX "index_gatherable.requested_loan_amounts_on_session_id" ON "gatherable"."requested_loan_amounts" ("session_id")
|
19329
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20160203103746"]]
|
19330
|
+
[1m[35m (0.3ms)[0m COMMIT
|
19331
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
19337
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19343
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19349
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19355
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19361
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19367
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
19373
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19379
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19385
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19391
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19398
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19405
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19417
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19423
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19429
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19436
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19443
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19450
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19457
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19463
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
19469
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19475
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19481
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19482
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
19483
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19484
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
19485
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
19486
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
19487
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
19488
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19489
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
19490
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19491
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19492
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19493
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
19494
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19495
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19496
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19497
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19498
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19499
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19500
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
19501
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19502
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
19503
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19504
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
19505
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19506
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
19507
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19508
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19509
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19510
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
19511
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
19512
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
19513
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19514
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
19515
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
19516
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19517
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19518
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
19519
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19520
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
19521
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19522
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
19523
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19524
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
19525
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19526
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
19527
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19528
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
19529
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19530
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
19531
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19532
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
19533
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19534
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
19535
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19536
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
19537
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19538
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
19539
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19540
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19541
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19542
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19543
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
19544
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19545
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
19546
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19547
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19548
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19549
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19550
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19551
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
19552
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19553
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
19554
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19555
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19556
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19557
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
19558
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19559
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19560
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19561
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19562
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19563
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
19564
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19565
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
19566
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19567
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
19568
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19569
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19570
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19571
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19572
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19573
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
19574
|
+
[1m[36m (112.2ms)[0m [1mDROP DATABASE IF EXISTS "gatherable_test"[0m
|
19575
|
+
[1m[35m (233.2ms)[0m CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
|
19576
|
+
[1m[35m (14.5ms)[0m CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
|
19577
|
+
[1m[36m (10.4ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
19578
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.3ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
19579
|
+
Migrating to CreateGatherableSchema (20160203103900)
|
19580
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
19581
|
+
[1m[35m (0.3ms)[0m CREATE SCHEMA gatherable
|
19582
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20160203103900"]]
|
19583
|
+
[1m[35m (0.2ms)[0m COMMIT
|
19584
|
+
Migrating to CreateGatherablePrice (20160203103901)
|
19585
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
19586
|
+
[1m[35m (2.3ms)[0m 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
|
+
[1m[36m (0.5ms)[0m [1mCREATE INDEX "index_gatherable.prices_on_session_id" ON "gatherable"."prices" ("session_id")[0m
|
19588
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160203103901"]]
|
19589
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m
|
19590
|
+
Migrating to CreateGatherableRequestedLoanAmount (20160203103902)
|
19591
|
+
[1m[35m (0.2ms)[0m BEGIN
|
19592
|
+
[1m[36m (1.9ms)[0m [1mCREATE 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) [0m
|
19593
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_gatherable.requested_loan_amounts_on_session_id" ON "gatherable"."requested_loan_amounts" ("session_id")
|
19594
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20160203103902"]]
|
19595
|
+
[1m[35m (0.3ms)[0m COMMIT
|
19596
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19602
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19608
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19614
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19620
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19626
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19632
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19638
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19644
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19650
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19656
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19663
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19670
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19682
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19688
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19694
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19701
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19708
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19715
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19722
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19728
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19734
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19740
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19746
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
19747
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19748
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
19749
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19750
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
19751
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19752
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
19753
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19754
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
19755
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19756
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
19757
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19758
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
19759
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19760
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
19761
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19762
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
19763
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19764
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19765
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
19766
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19767
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19768
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19769
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
19770
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19771
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
19772
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19773
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
19774
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19775
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
19776
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19777
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
19778
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19779
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
19780
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19781
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
19782
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19783
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
19784
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19785
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
19786
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19787
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
19788
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19789
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
19790
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19791
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
19792
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19793
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
19794
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19795
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
19796
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19797
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19798
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19799
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
19800
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19801
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19802
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
19803
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19804
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
19805
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19806
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19807
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19808
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19809
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19810
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
19811
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19812
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19813
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19814
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19815
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19816
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
19817
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19818
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
19819
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19820
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
19821
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19822
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
19823
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19824
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
19825
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19826
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
19827
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19828
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
19829
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19830
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19831
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19832
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19833
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19834
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19835
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
19836
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
19837
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|