gatherable 2.0.0 → 2.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/controllers/gatherable/application_controller.rb +13 -2
- data/app/models/data_table.rb +6 -2
- data/app/writers/javascript_writer.rb +7 -3
- data/lib/gatherable/version.rb +1 -1
- data/spec/controllers/gatherable/application_controller_spec.rb +1 -1
- data/spec/dummy/log/test.log +4021 -0
- data/spec/lib/generators/gatherable_generator_spec.rb +3 -3
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6c9a82043d385955e2fcbb9802e1df99e895965a
|
4
|
+
data.tar.gz: fbf14584d8b89aaa20abf60f036ec8374436cf9f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0fbe39938c38139753fe3a700cb1e63ec179002a3d4c3c3f6ac0d1b31ef208b387ac7a3fcb1b923c5db5b1ab864099d8b3d45c1d5be586cc9793785a18312da0
|
7
|
+
data.tar.gz: 06df1bcdf3ae23c49e1397e1e45e349c7009c2117263aacc95785ce3f53eaada877de24e45ed6db702f9924d61683169f04d8695f9783f20db8460b54178b015
|
@@ -74,9 +74,20 @@ module Gatherable
|
|
74
74
|
end
|
75
75
|
|
76
76
|
def model_params
|
77
|
-
params.require(model_name_as_var).permit(
|
78
|
-
*model_class.column_names - [global_id]
|
77
|
+
scalar_vals = params.require(model_name_as_var).permit(
|
78
|
+
*model_class.column_names - [global_id] - non_scalar_model_params
|
79
79
|
).merge(global_id => global_id_val)
|
80
|
+
non_scalar_vals = non_scalar_model_params.each_with_object(Hash.new) do |attr, vals|
|
81
|
+
vals[attr] = params[model_name_as_var][attr]
|
82
|
+
end
|
83
|
+
non_scalar_vals.merge(scalar_vals)
|
84
|
+
end
|
85
|
+
|
86
|
+
def non_scalar_model_params
|
87
|
+
columns = model_class.columns_hash.select do |_column_name, column_attributes|
|
88
|
+
column_attributes.sql_type == 'json'
|
89
|
+
end
|
90
|
+
columns.keys
|
80
91
|
end
|
81
92
|
|
82
93
|
def global_id
|
data/app/models/data_table.rb
CHANGED
@@ -13,7 +13,11 @@ class DataTable
|
|
13
13
|
@name = name
|
14
14
|
@columns = columns
|
15
15
|
@new_record_strategy = options[:new_record_strategy] || :insert
|
16
|
-
|
16
|
+
if options[:allowed_controller_actions].present?
|
17
|
+
@allowed_controller_actions = Array(options[:allowed_controller_actions]).map(&:to_sym)
|
18
|
+
else
|
19
|
+
@allowed_controller_actions = legacy_controller_actions
|
20
|
+
end
|
17
21
|
self.class.all[name.to_sym] = self
|
18
22
|
end
|
19
23
|
|
@@ -40,6 +44,6 @@ class DataTable
|
|
40
44
|
private
|
41
45
|
|
42
46
|
def legacy_controller_actions
|
43
|
-
|
47
|
+
[:show, :create]
|
44
48
|
end
|
45
49
|
end
|
@@ -12,18 +12,22 @@ class JavascriptWriter
|
|
12
12
|
return
|
13
13
|
end
|
14
14
|
File.open(javascript_class, 'w') do |f|
|
15
|
+
if Gatherable.config.prefixed_resources.include?(data_table.name)
|
16
|
+
function_arg = 'global_identifier, '
|
17
|
+
path_arg = ' + global_identifier + /'
|
18
|
+
end
|
15
19
|
f.puts <<-class
|
16
20
|
var #{data_table.class_name} = {
|
17
|
-
create: function(
|
21
|
+
create: function(#{function_arg}options){
|
18
22
|
$.ajax({
|
19
|
-
url: '/gatherable
|
23
|
+
url: '/gatherable/#{path_arg}#{data_table.name.to_s.pluralize}',
|
20
24
|
method: 'POST',
|
21
25
|
data: { #{data_table.name}: options }
|
22
26
|
});
|
23
27
|
},
|
24
28
|
get: function(global_identifier, id) {
|
25
29
|
$.ajax({
|
26
|
-
url: '/gatherable
|
30
|
+
url: '/gatherable/#{path_arg}#{data_table.name}/' + options[#{data_table.name}_id]
|
27
31
|
});
|
28
32
|
}
|
29
33
|
}
|
data/lib/gatherable/version.rb
CHANGED
@@ -3,7 +3,7 @@ require 'rails_helper'
|
|
3
3
|
describe 'Gatherable::PricesController', :type => :request do
|
4
4
|
|
5
5
|
let(:data_table) { Gatherable.config.data_tables.first }
|
6
|
-
let(:model_name) { data_table.name }
|
6
|
+
let(:model_name) { data_table.name.to_s }
|
7
7
|
let(:model_class) { data_table.classify }
|
8
8
|
let(:controller_class) { data_table.controllerify }
|
9
9
|
let(:global_id) { 'session_id123' }
|
data/spec/dummy/log/test.log
CHANGED
@@ -155510,3 +155510,4024 @@ Started DELETE "/gatherable/prices/1.json" for 127.0.0.1 at 2016-03-02 21:01:48
|
|
155510
155510
|
[1m[35m (0.1ms)[0m ROLLBACK
|
155511
155511
|
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
155512
155512
|
[1m[35m (0.1ms)[0m ROLLBACK
|
155513
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
155514
|
+
[1m[36m (113.3ms)[0m [1mDROP DATABASE IF EXISTS "gatherable_test"[0m
|
155515
|
+
[1m[35m (963.8ms)[0m CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
|
155516
|
+
[1m[35m (18.0ms)[0m CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
|
155517
|
+
[1m[36m (6.7ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
155518
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.3ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
155519
|
+
Migrating to CreateGatherableSchema (20160307205025)
|
155520
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
155521
|
+
[1m[35m (0.3ms)[0m CREATE SCHEMA gatherable
|
155522
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20160307205025"]]
|
155523
|
+
[1m[35m (5.5ms)[0m COMMIT
|
155524
|
+
Migrating to CreateGatherablePrice (20160307205026)
|
155525
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
155526
|
+
[1m[35m (20.7ms)[0m CREATE TABLE "gatherable"."prices" ("price_id" serial primary key, "price" decimal NOT NULL, "session_id" character varying, "created_at" timestamp NOT NULL)
|
155527
|
+
[1m[36m (3.4ms)[0m [1mCREATE INDEX "index_gatherable.prices_on_session_id" ON "gatherable"."prices" ("session_id")[0m
|
155528
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160307205026"]]
|
155529
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m
|
155530
|
+
[1m[35m (1.6ms)[0m BEGIN
|
155531
|
+
Started GET "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 20:50:25 -0600
|
155532
|
+
Processing by Gatherable::PricesController#index as JSON
|
155533
|
+
Parameters: {"session_id"=>"session_id123"}
|
155534
|
+
Completed 302 Found in 8ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
155535
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
155536
|
+
[1m[35m (0.0ms)[0m BEGIN
|
155537
|
+
Started GET "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 20:50:25 -0600
|
155538
|
+
Processing by Gatherable::PricesController#index as JSON
|
155539
|
+
Parameters: {"session_id"=>"session_id123"}
|
155540
|
+
Completed 302 Found in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
155541
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
155542
|
+
[1m[35m (0.0ms)[0m BEGIN
|
155543
|
+
Started GET "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 20:50:25 -0600
|
155544
|
+
Processing by Gatherable::PricesController#index as JSON
|
155545
|
+
Parameters: {"session_id"=>"session_id123"}
|
155546
|
+
[1m[36mGatherable::Price Load (0.3ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1[0m [["session_id", "session_id123"]]
|
155547
|
+
Completed 302 Found in 5ms (Views: 0.9ms | ActiveRecord: 0.3ms)
|
155548
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
155549
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
155550
|
+
Started GET "/gatherable/session_id123123/prices.json" for 127.0.0.1 at 2016-03-07 20:50:25 -0600
|
155551
|
+
Processing by Gatherable::PricesController#index as JSON
|
155552
|
+
Parameters: {"session_id"=>"session_id123123"}
|
155553
|
+
Filter chain halted as :authenticate rendered or redirected
|
155554
|
+
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
|
155555
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
155556
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
155557
|
+
Started GET "/gatherable/session_id123123/prices.json" for 127.0.0.1 at 2016-03-07 20:50:25 -0600
|
155558
|
+
Processing by Gatherable::PricesController#index as JSON
|
155559
|
+
Parameters: {"session_id"=>"session_id123123"}
|
155560
|
+
Filter chain halted as :authenticate rendered or redirected
|
155561
|
+
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
|
155562
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
155563
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
155564
|
+
Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-03-07 20:50:25 -0600
|
155565
|
+
Processing by Gatherable::PricesController#show as JSON
|
155566
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
|
155567
|
+
Completed 302 Found in 2ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
155568
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
155569
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
155570
|
+
Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-03-07 20:50:25 -0600
|
155571
|
+
Processing by Gatherable::PricesController#show as JSON
|
155572
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
|
155573
|
+
Completed 302 Found in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
155574
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
155575
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
155576
|
+
Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-03-07 20:50:25 -0600
|
155577
|
+
Processing by Gatherable::PricesController#show as JSON
|
155578
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
|
155579
|
+
Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
155580
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
155581
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
155582
|
+
Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-03-07 20:50:25 -0600
|
155583
|
+
Processing by Gatherable::PricesController#show as JSON
|
155584
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
|
155585
|
+
Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
155586
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
155587
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
155588
|
+
Started GET "/gatherable/session_id123123/prices.json" for 127.0.0.1 at 2016-03-07 20:50:25 -0600
|
155589
|
+
Processing by Gatherable::PricesController#index as JSON
|
155590
|
+
Parameters: {"session_id"=>"session_id123123"}
|
155591
|
+
Filter chain halted as :authenticate rendered or redirected
|
155592
|
+
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
|
155593
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
155594
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
155595
|
+
Started GET "/gatherable/session_id123123/prices.json" for 127.0.0.1 at 2016-03-07 20:50:25 -0600
|
155596
|
+
Processing by Gatherable::PricesController#index as JSON
|
155597
|
+
Parameters: {"session_id"=>"session_id123123"}
|
155598
|
+
Filter chain halted as :authenticate rendered or redirected
|
155599
|
+
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
|
155600
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
155601
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
155602
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 20:50:25 -0600
|
155603
|
+
Processing by Gatherable::PricesController#create as JSON
|
155604
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
155605
|
+
Completed 500 Internal Server Error in 27ms (ActiveRecord: 0.0ms)
|
155606
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
155607
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
155608
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 20:50:25 -0600
|
155609
|
+
Processing by Gatherable::PricesController#create as JSON
|
155610
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
155611
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
155612
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 02:50:25.494960"]]
|
155613
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
155614
|
+
Completed 201 Created in 3ms (Views: 0.2ms | ActiveRecord: 0.5ms)
|
155615
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
155616
|
+
[1m[35m (0.0ms)[0m BEGIN
|
155617
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 20:50:25 -0600
|
155618
|
+
Processing by Gatherable::PricesController#create as JSON
|
155619
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
155620
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
155621
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 02:50:25.504922"]]
|
155622
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
155623
|
+
Completed 201 Created in 2ms (Views: 0.2ms | ActiveRecord: 0.4ms)
|
155624
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
155625
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
155626
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 20:50:25 -0600
|
155627
|
+
Processing by Gatherable::PricesController#create as JSON
|
155628
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
155629
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
155630
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 02:50:25.514123"]]
|
155631
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
155632
|
+
Completed 201 Created in 2ms (Views: 0.2ms | ActiveRecord: 0.4ms)
|
155633
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
155634
|
+
[1m[35m (0.0ms)[0m BEGIN
|
155635
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 20:50:25 -0600
|
155636
|
+
Processing by Gatherable::PricesController#create as JSON
|
155637
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
155638
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
155639
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 02:50:25.524093"]]
|
155640
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
155641
|
+
Completed 201 Created in 2ms (Views: 0.2ms | ActiveRecord: 0.4ms)
|
155642
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
155643
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
155644
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 20:50:25 -0600
|
155645
|
+
Processing by Gatherable::PricesController#create as JSON
|
155646
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
155647
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
155648
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 02:50:25.533794"]]
|
155649
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
155650
|
+
Completed 201 Created in 2ms (Views: 0.2ms | ActiveRecord: 0.4ms)
|
155651
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
155652
|
+
[1m[35m (0.1ms)[0m BEGIN
|
155653
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 20:50:25 -0600
|
155654
|
+
Processing by Gatherable::PricesController#create as JSON
|
155655
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
155656
|
+
[1m[36mGatherable::Price Load (0.2ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1 LIMIT 1[0m [["session_id", "session_id123"]]
|
155657
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
155658
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "gatherable"."prices" ("session_id", "price", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["session_id", "session_id123"], ["price", "3.0"], ["created_at", "2016-03-08 02:50:25.545922"]]
|
155659
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
155660
|
+
Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.5ms)
|
155661
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
155662
|
+
[1m[35m (0.0ms)[0m BEGIN
|
155663
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
155664
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "76.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 02:50:25.551066"]]
|
155665
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
155666
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 20:50:25 -0600
|
155667
|
+
Processing by Gatherable::PricesController#create as JSON
|
155668
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
155669
|
+
[1m[35mGatherable::Price Load (0.2ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1 LIMIT 1 [["session_id", "session_id123"]]
|
155670
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
155671
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "gatherable"."prices" SET "price" = $1 WHERE "gatherable"."prices"."price_id" = $2 [["price", "3.0"], ["price_id", 7]]
|
155672
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
155673
|
+
Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.5ms)
|
155674
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 7]]
|
155675
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
155676
|
+
[1m[35m (0.0ms)[0m BEGIN
|
155677
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
155678
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "76.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 02:50:25.563221"]]
|
155679
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
155680
|
+
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "gatherable"."prices"
|
155681
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 20:50:25 -0600
|
155682
|
+
Processing by Gatherable::PricesController#create as JSON
|
155683
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
155684
|
+
[1m[36mGatherable::Price Load (0.2ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1 LIMIT 1[0m [["session_id", "session_id123"]]
|
155685
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
155686
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "gatherable"."prices" SET "price" = $1 WHERE "gatherable"."prices"."price_id" = $2[0m [["price", "3.0"], ["price_id", 8]]
|
155687
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
155688
|
+
Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.5ms)
|
155689
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "gatherable"."prices"[0m
|
155690
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
155691
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
155692
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "gatherable"."prices"
|
155693
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 20:50:25 -0600
|
155694
|
+
Processing by Gatherable::PricesController#create as JSON
|
155695
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
155696
|
+
[1m[36mGatherable::Price Load (0.2ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1 LIMIT 1[0m [["session_id", "session_id123"]]
|
155697
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
155698
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "gatherable"."prices" ("session_id", "price", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["session_id", "session_id123"], ["price", "3.0"], ["created_at", "2016-03-08 02:50:25.588194"]]
|
155699
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
155700
|
+
Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.6ms)
|
155701
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "gatherable"."prices"[0m
|
155702
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
155703
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
155704
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 20:50:25 -0600
|
155705
|
+
Processing by Gatherable::PricesController#create as JSON
|
155706
|
+
Parameters: {"yolo"=>"swag", "session_id"=>"session_id123"}
|
155707
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
155708
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
155709
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
155710
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 20:50:25 -0600
|
155711
|
+
Processing by Gatherable::PricesController#create as JSON
|
155712
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
155713
|
+
Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms)
|
155714
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
155715
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
155716
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 20:50:25 -0600
|
155717
|
+
Processing by Gatherable::PricesController#create as JSON
|
155718
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
155719
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
155720
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 02:50:25.615943"]]
|
155721
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
155722
|
+
Completed 201 Created in 2ms (Views: 0.2ms | ActiveRecord: 0.3ms)
|
155723
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
155724
|
+
[1m[35m (0.0ms)[0m BEGIN
|
155725
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 20:50:25 -0600
|
155726
|
+
Processing by Gatherable::PricesController#create as JSON
|
155727
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
155728
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
155729
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 02:50:25.625847"]]
|
155730
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
155731
|
+
Completed 201 Created in 2ms (Views: 0.2ms | ActiveRecord: 0.4ms)
|
155732
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
155733
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
155734
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 20:50:25 -0600
|
155735
|
+
Processing by Gatherable::PricesController#create as JSON
|
155736
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
155737
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
155738
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 02:50:25.634935"]]
|
155739
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
155740
|
+
Completed 201 Created in 2ms (Views: 0.2ms | ActiveRecord: 0.4ms)
|
155741
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
155742
|
+
[1m[35m (0.1ms)[0m BEGIN
|
155743
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 20:50:25 -0600
|
155744
|
+
Processing by Gatherable::PricesController#create as JSON
|
155745
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
155746
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
155747
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 02:50:25.644846"]]
|
155748
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
155749
|
+
Completed 201 Created in 2ms (Views: 0.2ms | ActiveRecord: 0.3ms)
|
155750
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
155751
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
155752
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 20:50:25 -0600
|
155753
|
+
Processing by Gatherable::PricesController#create as JSON
|
155754
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
155755
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
155756
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 02:50:25.653015"]]
|
155757
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
155758
|
+
Completed 201 Created in 2ms (Views: 0.2ms | ActiveRecord: 0.2ms)
|
155759
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
155760
|
+
[1m[35m (0.1ms)[0m BEGIN
|
155761
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 20:50:25 -0600
|
155762
|
+
Processing by Gatherable::PricesController#create as JSON
|
155763
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
155764
|
+
[1m[36mGatherable::Price Load (0.2ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1 LIMIT 1[0m [["session_id", "session_id123"]]
|
155765
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
155766
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "gatherable"."prices" ("session_id", "price", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["session_id", "session_id123"], ["price", "3.0"], ["created_at", "2016-03-08 02:50:25.664011"]]
|
155767
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
155768
|
+
Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.5ms)
|
155769
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
155770
|
+
[1m[35m (0.1ms)[0m BEGIN
|
155771
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
155772
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "76.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 02:50:25.678686"]]
|
155773
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
155774
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 20:50:25 -0600
|
155775
|
+
Processing by Gatherable::PricesController#create as JSON
|
155776
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
155777
|
+
[1m[35mGatherable::Price Load (0.2ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1 LIMIT 1 [["session_id", "session_id123"]]
|
155778
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
155779
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "gatherable"."prices" SET "price" = $1 WHERE "gatherable"."prices"."price_id" = $2 [["price", "3.0"], ["price_id", 16]]
|
155780
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
155781
|
+
Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.6ms)
|
155782
|
+
[1m[35mGatherable::Price Load (0.2ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 16]]
|
155783
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
155784
|
+
[1m[35m (0.0ms)[0m BEGIN
|
155785
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
155786
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "76.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 02:50:25.692947"]]
|
155787
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
155788
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "gatherable"."prices"
|
155789
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 20:50:25 -0600
|
155790
|
+
Processing by Gatherable::PricesController#create as JSON
|
155791
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
155792
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1 LIMIT 1[0m [["session_id", "session_id123"]]
|
155793
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
155794
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "gatherable"."prices" SET "price" = $1 WHERE "gatherable"."prices"."price_id" = $2[0m [["price", "3.0"], ["price_id", 17]]
|
155795
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
155796
|
+
Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.4ms)
|
155797
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "gatherable"."prices"[0m
|
155798
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
155799
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
155800
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "gatherable"."prices"
|
155801
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 20:50:25 -0600
|
155802
|
+
Processing by Gatherable::PricesController#create as JSON
|
155803
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
155804
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1 LIMIT 1[0m [["session_id", "session_id123"]]
|
155805
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
155806
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "gatherable"."prices" ("session_id", "price", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["session_id", "session_id123"], ["price", "3.0"], ["created_at", "2016-03-08 02:50:25.711569"]]
|
155807
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
155808
|
+
Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.5ms)
|
155809
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "gatherable"."prices"[0m
|
155810
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
155811
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
155812
|
+
Started POST "/gatherable/session_id123123/prices.json" for 127.0.0.1 at 2016-03-07 20:50:25 -0600
|
155813
|
+
Processing by Gatherable::PricesController#create as JSON
|
155814
|
+
Parameters: {"session_id"=>"session_id123123"}
|
155815
|
+
Filter chain halted as :authenticate rendered or redirected
|
155816
|
+
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
|
155817
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
155818
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
155819
|
+
Started POST "/gatherable/session_id123123/prices.json" for 127.0.0.1 at 2016-03-07 20:50:25 -0600
|
155820
|
+
Processing by Gatherable::PricesController#create as JSON
|
155821
|
+
Parameters: {"session_id"=>"session_id123123"}
|
155822
|
+
Filter chain halted as :authenticate rendered or redirected
|
155823
|
+
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
|
155824
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
155825
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
155826
|
+
Started POST "/gatherable/session_id123123/prices.json" for 127.0.0.1 at 2016-03-07 20:50:25 -0600
|
155827
|
+
Processing by Gatherable::PricesController#create as JSON
|
155828
|
+
Parameters: {"session_id"=>"session_id123123"}
|
155829
|
+
Filter chain halted as :authenticate rendered or redirected
|
155830
|
+
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
|
155831
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "gatherable"."prices"
|
155832
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "gatherable"."prices"[0m
|
155833
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
155834
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
155835
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
155836
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "price_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["price_id", 1], ["created_at", "2016-03-08 02:50:25.749362"]]
|
155837
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
155838
|
+
Started PUT "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-03-07 20:50:25 -0600
|
155839
|
+
Processing by Gatherable::PricesController#update as JSON
|
155840
|
+
Parameters: {"price"=>{"price"=>"4.0"}, "session_id"=>"session_id123", "price_id"=>"1"}
|
155841
|
+
[1m[36mGatherable::Price Load (0.3ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 1]]
|
155842
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
155843
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "gatherable"."prices" SET "price" = $1, "session_id" = $2 WHERE "gatherable"."prices"."price_id" = $3[0m [["price", "4.0"], ["session_id", "session_id123"], ["price_id", 1]]
|
155844
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
155845
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 1]]
|
155846
|
+
Completed 200 OK in 7ms (Views: 0.4ms | ActiveRecord: 0.7ms)
|
155847
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 1]]
|
155848
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
155849
|
+
[1m[35m (0.1ms)[0m BEGIN
|
155850
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
155851
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "gatherable"."prices" ("price", "price_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["price_id", 1], ["created_at", "2016-03-08 02:50:25.766953"]]
|
155852
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
155853
|
+
Started PUT "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-03-07 20:50:25 -0600
|
155854
|
+
Processing by Gatherable::PricesController#update as JSON
|
155855
|
+
Parameters: {"price"=>{"price"=>"4.0"}, "session_id"=>"session_id123", "price_id"=>"1"}
|
155856
|
+
[1m[35mGatherable::Price Load (0.3ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 1]]
|
155857
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
155858
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "gatherable"."prices" SET "price" = $1, "session_id" = $2 WHERE "gatherable"."prices"."price_id" = $3 [["price", "4.0"], ["session_id", "session_id123"], ["price_id", 1]]
|
155859
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
155860
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 1]]
|
155861
|
+
Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.6ms)
|
155862
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
155863
|
+
[1m[35m (0.1ms)[0m BEGIN
|
155864
|
+
Started PUT "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-03-07 20:50:25 -0600
|
155865
|
+
Processing by Gatherable::PricesController#update as JSON
|
155866
|
+
Parameters: {"price"=>"2016-03-07", "session_id"=>"session_id123", "price_id"=>"1"}
|
155867
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
155868
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
155869
|
+
[1m[35m (0.1ms)[0m BEGIN
|
155870
|
+
Started PUT "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-03-07 20:50:25 -0600
|
155871
|
+
Processing by Gatherable::PricesController#update as JSON
|
155872
|
+
Parameters: {"price"=>"2016-03-07", "session_id"=>"session_id123", "price_id"=>"1"}
|
155873
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
155874
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
155875
|
+
[1m[35m (0.1ms)[0m BEGIN
|
155876
|
+
Started PUT "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-03-07 20:50:25 -0600
|
155877
|
+
Processing by Gatherable::PricesController#update as JSON
|
155878
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
|
155879
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 0]]
|
155880
|
+
Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms)
|
155881
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
155882
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
155883
|
+
Started PUT "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-03-07 20:50:25 -0600
|
155884
|
+
Processing by Gatherable::PricesController#update as JSON
|
155885
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
|
155886
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 0]]
|
155887
|
+
Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms)
|
155888
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
155889
|
+
[1m[35m (0.0ms)[0m BEGIN
|
155890
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
155891
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 02:50:25.817303"]]
|
155892
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
155893
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 19]]
|
155894
|
+
Started PUT "/gatherable/session_id123123/prices/19.json" for 127.0.0.1 at 2016-03-07 20:50:25 -0600
|
155895
|
+
Processing by Gatherable::PricesController#update as JSON
|
155896
|
+
Parameters: {"session_id"=>"session_id123123", "price_id"=>"19"}
|
155897
|
+
Filter chain halted as :authenticate rendered or redirected
|
155898
|
+
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
|
155899
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
155900
|
+
[1m[35m (0.1ms)[0m BEGIN
|
155901
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
155902
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 02:50:25.828733"]]
|
155903
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
155904
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 20]]
|
155905
|
+
Started PUT "/gatherable/session_id123123/prices/20.json" for 127.0.0.1 at 2016-03-07 20:50:25 -0600
|
155906
|
+
Processing by Gatherable::PricesController#update as JSON
|
155907
|
+
Parameters: {"session_id"=>"session_id123123", "price_id"=>"20"}
|
155908
|
+
Filter chain halted as :authenticate rendered or redirected
|
155909
|
+
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
|
155910
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
155911
|
+
[1m[35m (0.1ms)[0m BEGIN
|
155912
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
155913
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 02:50:25.840357"]]
|
155914
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
155915
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 21]]
|
155916
|
+
Started PUT "/gatherable/session_id123123/prices/21.json" for 127.0.0.1 at 2016-03-07 20:50:25 -0600
|
155917
|
+
Processing by Gatherable::PricesController#update as JSON
|
155918
|
+
Parameters: {"session_id"=>"session_id123123", "price_id"=>"21"}
|
155919
|
+
Filter chain halted as :authenticate rendered or redirected
|
155920
|
+
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
|
155921
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 21]]
|
155922
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
155923
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
155924
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
155925
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 02:50:25.850406"]]
|
155926
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
155927
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 22]]
|
155928
|
+
Started DELETE "/gatherable/session_id123/prices/22.json" for 127.0.0.1 at 2016-03-07 20:50:25 -0600
|
155929
|
+
Processing by Gatherable::PricesController#destroy as JSON
|
155930
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"22"}
|
155931
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 22]]
|
155932
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1[0m [["price_id", 22]]
|
155933
|
+
Completed 204 No Content in 2ms (ActiveRecord: 0.3ms)
|
155934
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 [["price_id", 22]]
|
155935
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
155936
|
+
[1m[35m (0.0ms)[0m BEGIN
|
155937
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
155938
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 02:50:25.861455"]]
|
155939
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
155940
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 23]]
|
155941
|
+
Started DELETE "/gatherable/session_id123/prices/23.json" for 127.0.0.1 at 2016-03-07 20:50:25 -0600
|
155942
|
+
Processing by Gatherable::PricesController#destroy as JSON
|
155943
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"23"}
|
155944
|
+
[1m[36mGatherable::Price Load (0.2ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 23]]
|
155945
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 [["price_id", 23]]
|
155946
|
+
Completed 204 No Content in 1ms (ActiveRecord: 0.3ms)
|
155947
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
155948
|
+
[1m[35m (0.1ms)[0m BEGIN
|
155949
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
155950
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 02:50:25.871599"]]
|
155951
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
155952
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 24]]
|
155953
|
+
Started DELETE "/gatherable/session_id123/prices/24.json" for 127.0.0.1 at 2016-03-07 20:50:25 -0600
|
155954
|
+
Processing by Gatherable::PricesController#destroy as JSON
|
155955
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"24"}
|
155956
|
+
[1m[36mGatherable::Price Load (0.2ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 24]]
|
155957
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 [["price_id", 24]]
|
155958
|
+
Completed 204 No Content in 1ms (ActiveRecord: 0.3ms)
|
155959
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
155960
|
+
[1m[35m (0.1ms)[0m BEGIN
|
155961
|
+
Started DELETE "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-03-07 20:50:25 -0600
|
155962
|
+
Processing by Gatherable::PricesController#destroy as JSON
|
155963
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
|
155964
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 0]]
|
155965
|
+
Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms)
|
155966
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
155967
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
155968
|
+
Started DELETE "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-03-07 20:50:25 -0600
|
155969
|
+
Processing by Gatherable::PricesController#destroy as JSON
|
155970
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
|
155971
|
+
[1m[35mGatherable::Price Load (0.2ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 0]]
|
155972
|
+
Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.2ms)
|
155973
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
155974
|
+
[1m[35m (0.1ms)[0m BEGIN
|
155975
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
155976
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 02:50:25.900892"]]
|
155977
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
155978
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 25]]
|
155979
|
+
Started DELETE "/gatherable/session_id123123/prices/25.json" for 127.0.0.1 at 2016-03-07 20:50:25 -0600
|
155980
|
+
Processing by Gatherable::PricesController#destroy as JSON
|
155981
|
+
Parameters: {"session_id"=>"session_id123123", "price_id"=>"25"}
|
155982
|
+
Filter chain halted as :authenticate rendered or redirected
|
155983
|
+
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
|
155984
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
155985
|
+
[1m[35m (0.1ms)[0m BEGIN
|
155986
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
155987
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 02:50:25.912001"]]
|
155988
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
155989
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 26]]
|
155990
|
+
Started DELETE "/gatherable/session_id123123/prices/26.json" for 127.0.0.1 at 2016-03-07 20:50:25 -0600
|
155991
|
+
Processing by Gatherable::PricesController#destroy as JSON
|
155992
|
+
Parameters: {"session_id"=>"session_id123123", "price_id"=>"26"}
|
155993
|
+
Filter chain halted as :authenticate rendered or redirected
|
155994
|
+
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
|
155995
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
155996
|
+
[1m[35m (0.1ms)[0m BEGIN
|
155997
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
155998
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 02:50:25.923954"]]
|
155999
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
156000
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 27]]
|
156001
|
+
Started DELETE "/gatherable/session_id123123/prices/27.json" for 127.0.0.1 at 2016-03-07 20:50:25 -0600
|
156002
|
+
Processing by Gatherable::PricesController#destroy as JSON
|
156003
|
+
Parameters: {"session_id"=>"session_id123123", "price_id"=>"27"}
|
156004
|
+
Filter chain halted as :authenticate rendered or redirected
|
156005
|
+
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
|
156006
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
156007
|
+
[1m[35m (0.0ms)[0m BEGIN
|
156008
|
+
Started GET "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 20:50:25 -0600
|
156009
|
+
Processing by Gatherable::PricesController#index as JSON
|
156010
|
+
Completed 302 Found in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
156011
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
156012
|
+
[1m[35m (0.1ms)[0m BEGIN
|
156013
|
+
Started GET "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 20:50:25 -0600
|
156014
|
+
Processing by Gatherable::PricesController#index as JSON
|
156015
|
+
Completed 302 Found in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
156016
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
156017
|
+
[1m[35m (0.1ms)[0m BEGIN
|
156018
|
+
Started GET "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 20:50:25 -0600
|
156019
|
+
Processing by Gatherable::PricesController#index as JSON
|
156020
|
+
[1m[36mGatherable::Price Load (0.2ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1[0m [["session_id", "session_id123"]]
|
156021
|
+
Completed 302 Found in 2ms (Views: 0.6ms | ActiveRecord: 0.2ms)
|
156022
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156023
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
156024
|
+
Started GET "/gatherable/prices/1.json" for 127.0.0.1 at 2016-03-07 20:50:25 -0600
|
156025
|
+
Processing by Gatherable::PricesController#show as JSON
|
156026
|
+
Parameters: {"price_id"=>"1"}
|
156027
|
+
Completed 302 Found in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
156028
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156029
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
156030
|
+
Started GET "/gatherable/prices/1.json" for 127.0.0.1 at 2016-03-07 20:50:25 -0600
|
156031
|
+
Processing by Gatherable::PricesController#show as JSON
|
156032
|
+
Parameters: {"price_id"=>"1"}
|
156033
|
+
Completed 302 Found in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
156034
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156035
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
156036
|
+
Started GET "/gatherable/prices/0.json" for 127.0.0.1 at 2016-03-07 20:50:25 -0600
|
156037
|
+
Processing by Gatherable::PricesController#show as JSON
|
156038
|
+
Parameters: {"price_id"=>"0"}
|
156039
|
+
Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
156040
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
156041
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
156042
|
+
Started GET "/gatherable/prices/0.json" for 127.0.0.1 at 2016-03-07 20:50:25 -0600
|
156043
|
+
Processing by Gatherable::PricesController#show as JSON
|
156044
|
+
Parameters: {"price_id"=>"0"}
|
156045
|
+
Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
156046
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156047
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
156048
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 20:50:25 -0600
|
156049
|
+
Processing by Gatherable::PricesController#create as JSON
|
156050
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
156051
|
+
Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
|
156052
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156053
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
156054
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 20:50:26 -0600
|
156055
|
+
Processing by Gatherable::PricesController#create as JSON
|
156056
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
156057
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
156058
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 02:50:26.008807"]]
|
156059
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
156060
|
+
Completed 201 Created in 2ms (Views: 0.2ms | ActiveRecord: 0.4ms)
|
156061
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
156062
|
+
[1m[35m (0.1ms)[0m BEGIN
|
156063
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 20:50:26 -0600
|
156064
|
+
Processing by Gatherable::PricesController#create as JSON
|
156065
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
156066
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
156067
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 02:50:26.020715"]]
|
156068
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
156069
|
+
Completed 201 Created in 3ms (Views: 0.2ms | ActiveRecord: 0.3ms)
|
156070
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156071
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
156072
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 20:50:26 -0600
|
156073
|
+
Processing by Gatherable::PricesController#create as JSON
|
156074
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
156075
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
156076
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 02:50:26.029944"]]
|
156077
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
156078
|
+
Completed 201 Created in 2ms (Views: 0.2ms | ActiveRecord: 0.3ms)
|
156079
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
156080
|
+
[1m[35m (0.1ms)[0m BEGIN
|
156081
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 20:50:26 -0600
|
156082
|
+
Processing by Gatherable::PricesController#create as JSON
|
156083
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
156084
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
156085
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 02:50:26.039190"]]
|
156086
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
156087
|
+
Completed 201 Created in 2ms (Views: 0.2ms | ActiveRecord: 0.3ms)
|
156088
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156089
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
156090
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 20:50:26 -0600
|
156091
|
+
Processing by Gatherable::PricesController#create as JSON
|
156092
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
156093
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
156094
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 02:50:26.047342"]]
|
156095
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
156096
|
+
Completed 201 Created in 2ms (Views: 0.2ms | ActiveRecord: 0.3ms)
|
156097
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
156098
|
+
[1m[35m (0.1ms)[0m BEGIN
|
156099
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 20:50:26 -0600
|
156100
|
+
Processing by Gatherable::PricesController#create as JSON
|
156101
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
156102
|
+
[1m[36mGatherable::Price Load (0.2ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1 LIMIT 1[0m [["session_id", "session_id123"]]
|
156103
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
156104
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "gatherable"."prices" ("session_id", "price", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["session_id", "session_id123"], ["price", "3.0"], ["created_at", "2016-03-08 02:50:26.056103"]]
|
156105
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
156106
|
+
Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.5ms)
|
156107
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
156108
|
+
[1m[35m (0.1ms)[0m BEGIN
|
156109
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
156110
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "76.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 02:50:26.061001"]]
|
156111
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
156112
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 20:50:26 -0600
|
156113
|
+
Processing by Gatherable::PricesController#create as JSON
|
156114
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
156115
|
+
[1m[35mGatherable::Price Load (0.2ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1 LIMIT 1 [["session_id", "session_id123"]]
|
156116
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
156117
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "gatherable"."prices" SET "price" = $1 WHERE "gatherable"."prices"."price_id" = $2 [["price", "3.0"], ["price_id", 34]]
|
156118
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
156119
|
+
Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.5ms)
|
156120
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 34]]
|
156121
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
156122
|
+
[1m[35m (0.1ms)[0m BEGIN
|
156123
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
156124
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "76.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 02:50:26.071819"]]
|
156125
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
156126
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "gatherable"."prices"
|
156127
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 20:50:26 -0600
|
156128
|
+
Processing by Gatherable::PricesController#create as JSON
|
156129
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
156130
|
+
[1m[36mGatherable::Price Load (0.2ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1 LIMIT 1[0m [["session_id", "session_id123"]]
|
156131
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
156132
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "gatherable"."prices" SET "price" = $1 WHERE "gatherable"."prices"."price_id" = $2[0m [["price", "3.0"], ["price_id", 35]]
|
156133
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
156134
|
+
Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.5ms)
|
156135
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "gatherable"."prices"[0m
|
156136
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156137
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
156138
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "gatherable"."prices"
|
156139
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 20:50:26 -0600
|
156140
|
+
Processing by Gatherable::PricesController#create as JSON
|
156141
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
156142
|
+
[1m[36mGatherable::Price Load (0.2ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1 LIMIT 1[0m [["session_id", "session_id123"]]
|
156143
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
156144
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "gatherable"."prices" ("session_id", "price", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["session_id", "session_id123"], ["price", "3.0"], ["created_at", "2016-03-08 02:50:26.088590"]]
|
156145
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
156146
|
+
Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.6ms)
|
156147
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "gatherable"."prices"[0m
|
156148
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156149
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
156150
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 20:50:26 -0600
|
156151
|
+
Processing by Gatherable::PricesController#create as JSON
|
156152
|
+
Parameters: {"yolo"=>"swag"}
|
156153
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
156154
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156155
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
156156
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 20:50:26 -0600
|
156157
|
+
Processing by Gatherable::PricesController#create as JSON
|
156158
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
156159
|
+
Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
|
156160
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156161
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
156162
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 20:50:26 -0600
|
156163
|
+
Processing by Gatherable::PricesController#create as JSON
|
156164
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
156165
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
156166
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 02:50:26.111402"]]
|
156167
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
156168
|
+
Completed 201 Created in 2ms (Views: 0.2ms | ActiveRecord: 0.4ms)
|
156169
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
156170
|
+
[1m[35m (0.0ms)[0m BEGIN
|
156171
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 20:50:26 -0600
|
156172
|
+
Processing by Gatherable::PricesController#create as JSON
|
156173
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
156174
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
156175
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 02:50:26.119986"]]
|
156176
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
156177
|
+
Completed 201 Created in 2ms (Views: 0.2ms | ActiveRecord: 0.4ms)
|
156178
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
156179
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
156180
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 20:50:26 -0600
|
156181
|
+
Processing by Gatherable::PricesController#create as JSON
|
156182
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
156183
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
156184
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 02:50:26.134961"]]
|
156185
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
156186
|
+
Completed 201 Created in 2ms (Views: 0.4ms | ActiveRecord: 0.3ms)
|
156187
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
156188
|
+
[1m[35m (0.1ms)[0m BEGIN
|
156189
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 20:50:26 -0600
|
156190
|
+
Processing by Gatherable::PricesController#create as JSON
|
156191
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
156192
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
156193
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 02:50:26.145740"]]
|
156194
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
156195
|
+
Completed 201 Created in 2ms (Views: 0.2ms | ActiveRecord: 0.3ms)
|
156196
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156197
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
156198
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 20:50:26 -0600
|
156199
|
+
Processing by Gatherable::PricesController#create as JSON
|
156200
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
156201
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
156202
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 02:50:26.155209"]]
|
156203
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
156204
|
+
Completed 201 Created in 3ms (Views: 0.2ms | ActiveRecord: 0.3ms)
|
156205
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
156206
|
+
[1m[35m (0.1ms)[0m BEGIN
|
156207
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 20:50:26 -0600
|
156208
|
+
Processing by Gatherable::PricesController#create as JSON
|
156209
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
156210
|
+
[1m[36mGatherable::Price Load (0.2ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1 LIMIT 1[0m [["session_id", "session_id123"]]
|
156211
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
156212
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "gatherable"."prices" ("session_id", "price", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["session_id", "session_id123"], ["price", "3.0"], ["created_at", "2016-03-08 02:50:26.166927"]]
|
156213
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
156214
|
+
Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.5ms)
|
156215
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
156216
|
+
[1m[35m (0.1ms)[0m BEGIN
|
156217
|
+
[1m[36m (0.3ms)[0m [1mSAVEPOINT active_record_1[0m
|
156218
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "76.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 02:50:26.173481"]]
|
156219
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
156220
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 20:50:26 -0600
|
156221
|
+
Processing by Gatherable::PricesController#create as JSON
|
156222
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
156223
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1 LIMIT 1 [["session_id", "session_id123"]]
|
156224
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
156225
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "gatherable"."prices" SET "price" = $1 WHERE "gatherable"."prices"."price_id" = $2 [["price", "3.0"], ["price_id", 43]]
|
156226
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
156227
|
+
Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.3ms)
|
156228
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 43]]
|
156229
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
156230
|
+
[1m[35m (0.0ms)[0m BEGIN
|
156231
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
156232
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "76.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 02:50:26.185844"]]
|
156233
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
156234
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "gatherable"."prices"
|
156235
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 20:50:26 -0600
|
156236
|
+
Processing by Gatherable::PricesController#create as JSON
|
156237
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
156238
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1 LIMIT 1[0m [["session_id", "session_id123"]]
|
156239
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
156240
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "gatherable"."prices" SET "price" = $1 WHERE "gatherable"."prices"."price_id" = $2[0m [["price", "3.0"], ["price_id", 44]]
|
156241
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
156242
|
+
Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.4ms)
|
156243
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "gatherable"."prices"[0m
|
156244
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156245
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
156246
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "gatherable"."prices"
|
156247
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 20:50:26 -0600
|
156248
|
+
Processing by Gatherable::PricesController#create as JSON
|
156249
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
156250
|
+
[1m[36mGatherable::Price Load (0.2ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1 LIMIT 1[0m [["session_id", "session_id123"]]
|
156251
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
156252
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "gatherable"."prices" ("session_id", "price", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["session_id", "session_id123"], ["price", "3.0"], ["created_at", "2016-03-08 02:50:26.205659"]]
|
156253
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
156254
|
+
Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.5ms)
|
156255
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "gatherable"."prices"[0m
|
156256
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156257
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
156258
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
156259
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "price_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["price_id", 1], ["created_at", "2016-03-08 02:50:26.213524"]]
|
156260
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
156261
|
+
Started PUT "/gatherable/prices/1.json" for 127.0.0.1 at 2016-03-07 20:50:26 -0600
|
156262
|
+
Processing by Gatherable::PricesController#update as JSON
|
156263
|
+
Parameters: {"price"=>{"price"=>"4.0"}, "price_id"=>"1"}
|
156264
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 1]]
|
156265
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
156266
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "gatherable"."prices" SET "price" = $1, "session_id" = $2 WHERE "gatherable"."prices"."price_id" = $3[0m [["price", "4.0"], ["session_id", "session_id123"], ["price_id", 1]]
|
156267
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
156268
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 1]]
|
156269
|
+
Completed 200 OK in 4ms (Views: 0.4ms | ActiveRecord: 0.6ms)
|
156270
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 1]]
|
156271
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
156272
|
+
[1m[35m (0.0ms)[0m BEGIN
|
156273
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
156274
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "gatherable"."prices" ("price", "price_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["price_id", 1], ["created_at", "2016-03-08 02:50:26.228678"]]
|
156275
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
156276
|
+
Started PUT "/gatherable/prices/1.json" for 127.0.0.1 at 2016-03-07 20:50:26 -0600
|
156277
|
+
Processing by Gatherable::PricesController#update as JSON
|
156278
|
+
Parameters: {"price"=>{"price"=>"4.0"}, "price_id"=>"1"}
|
156279
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 1]]
|
156280
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
156281
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "gatherable"."prices" SET "price" = $1, "session_id" = $2 WHERE "gatherable"."prices"."price_id" = $3 [["price", "4.0"], ["session_id", "session_id123"], ["price_id", 1]]
|
156282
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
156283
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 1]]
|
156284
|
+
Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.6ms)
|
156285
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
156286
|
+
[1m[35m (0.1ms)[0m BEGIN
|
156287
|
+
Started PUT "/gatherable/prices/1.json" for 127.0.0.1 at 2016-03-07 20:50:26 -0600
|
156288
|
+
Processing by Gatherable::PricesController#update as JSON
|
156289
|
+
Parameters: {"price"=>"2016-03-07", "price_id"=>"1"}
|
156290
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
156291
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
156292
|
+
[1m[35m (0.0ms)[0m BEGIN
|
156293
|
+
Started PUT "/gatherable/prices/1.json" for 127.0.0.1 at 2016-03-07 20:50:26 -0600
|
156294
|
+
Processing by Gatherable::PricesController#update as JSON
|
156295
|
+
Parameters: {"price"=>"2016-03-07", "price_id"=>"1"}
|
156296
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
156297
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
156298
|
+
[1m[35m (0.1ms)[0m BEGIN
|
156299
|
+
Started PUT "/gatherable/prices/0.json" for 127.0.0.1 at 2016-03-07 20:50:26 -0600
|
156300
|
+
Processing by Gatherable::PricesController#update as JSON
|
156301
|
+
Parameters: {"price_id"=>"0"}
|
156302
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 0]]
|
156303
|
+
Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms)
|
156304
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156305
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
156306
|
+
Started PUT "/gatherable/prices/0.json" for 127.0.0.1 at 2016-03-07 20:50:26 -0600
|
156307
|
+
Processing by Gatherable::PricesController#update as JSON
|
156308
|
+
Parameters: {"price_id"=>"0"}
|
156309
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 0]]
|
156310
|
+
Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms)
|
156311
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
156312
|
+
[1m[35m (0.1ms)[0m BEGIN
|
156313
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
156314
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 02:50:26.271773"]]
|
156315
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
156316
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 46]]
|
156317
|
+
Started DELETE "/gatherable/prices/46.json" for 127.0.0.1 at 2016-03-07 20:50:26 -0600
|
156318
|
+
Processing by Gatherable::PricesController#destroy as JSON
|
156319
|
+
Parameters: {"price_id"=>"46"}
|
156320
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 46]]
|
156321
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 [["price_id", 46]]
|
156322
|
+
Completed 204 No Content in 1ms (ActiveRecord: 0.3ms)
|
156323
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1[0m [["price_id", 46]]
|
156324
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156325
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
156326
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
156327
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 02:50:26.282144"]]
|
156328
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
156329
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 47]]
|
156330
|
+
Started DELETE "/gatherable/prices/47.json" for 127.0.0.1 at 2016-03-07 20:50:26 -0600
|
156331
|
+
Processing by Gatherable::PricesController#destroy as JSON
|
156332
|
+
Parameters: {"price_id"=>"47"}
|
156333
|
+
[1m[35mGatherable::Price Load (0.2ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 47]]
|
156334
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1[0m [["price_id", 47]]
|
156335
|
+
Completed 204 No Content in 2ms (ActiveRecord: 0.4ms)
|
156336
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156337
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
156338
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
156339
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 02:50:26.293778"]]
|
156340
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
156341
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 48]]
|
156342
|
+
Started DELETE "/gatherable/prices/48.json" for 127.0.0.1 at 2016-03-07 20:50:26 -0600
|
156343
|
+
Processing by Gatherable::PricesController#destroy as JSON
|
156344
|
+
Parameters: {"price_id"=>"48"}
|
156345
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 48]]
|
156346
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1[0m [["price_id", 48]]
|
156347
|
+
Completed 204 No Content in 2ms (ActiveRecord: 0.3ms)
|
156348
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156349
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
156350
|
+
Started DELETE "/gatherable/prices/0.json" for 127.0.0.1 at 2016-03-07 20:50:26 -0600
|
156351
|
+
Processing by Gatherable::PricesController#destroy as JSON
|
156352
|
+
Parameters: {"price_id"=>"0"}
|
156353
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 0]]
|
156354
|
+
Completed 404 Not Found in 1ms (Views: 0.2ms | ActiveRecord: 0.1ms)
|
156355
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
156356
|
+
[1m[35m (0.1ms)[0m BEGIN
|
156357
|
+
Started DELETE "/gatherable/prices/0.json" for 127.0.0.1 at 2016-03-07 20:50:26 -0600
|
156358
|
+
Processing by Gatherable::PricesController#destroy as JSON
|
156359
|
+
Parameters: {"price_id"=>"0"}
|
156360
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 0]]
|
156361
|
+
Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms)
|
156362
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156363
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
156364
|
+
Started GET "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 20:50:26 -0600
|
156365
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156366
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
156367
|
+
Started GET "/gatherable/prices/1.json" for 127.0.0.1 at 2016-03-07 20:50:26 -0600
|
156368
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156369
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
156370
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 20:50:26 -0600
|
156371
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156372
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
156373
|
+
Started PUT "/gatherable/prices/1.json" for 127.0.0.1 at 2016-03-07 20:50:26 -0600
|
156374
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156375
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
156376
|
+
Started DELETE "/gatherable/prices/1.json" for 127.0.0.1 at 2016-03-07 20:50:26 -0600
|
156377
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156378
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
156379
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156380
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
156381
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156382
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
156383
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156384
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
156385
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156386
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
156387
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156388
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
156389
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156390
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
156391
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
156392
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
156393
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
156394
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
156395
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
156396
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
156397
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
156398
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
156399
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156400
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
156401
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
156402
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
156403
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
156404
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
156405
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
156406
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
156407
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
156408
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
156409
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
156410
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
156411
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
156412
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
156413
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
156414
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
156415
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
156416
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
156417
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156418
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
156419
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156420
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
156421
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156422
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
156423
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156424
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
156425
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
156426
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
156427
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156428
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
156429
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156430
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
156431
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156432
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
156433
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156434
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
156435
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156436
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
156437
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156438
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
156439
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156440
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
156441
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156442
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
156443
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156444
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
156445
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156446
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
156447
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156448
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
156449
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156450
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
156451
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156452
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
156453
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156454
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
156455
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
156456
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "gatherable"."prices" ("session_id", "created_at") VALUES ($1, $2) RETURNING "price_id"[0m [["session_id", "1"], ["created_at", "2016-03-08 02:50:26.449240"]]
|
156457
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
156458
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
156459
|
+
[1m[35m (0.0ms)[0m BEGIN
|
156460
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
156461
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "gatherable"."prices" ("session_id", "price", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["session_id", "1"], ["price", "30.0"], ["created_at", "2016-03-08 02:50:26.451188"]]
|
156462
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
156463
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156464
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
156465
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
156466
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
156467
|
+
[1m[36m (121.1ms)[0m [1mDROP DATABASE IF EXISTS "gatherable_test"[0m
|
156468
|
+
[1m[35m (785.6ms)[0m CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
|
156469
|
+
[1m[35m (18.1ms)[0m CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
|
156470
|
+
[1m[36m (6.7ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
156471
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
156472
|
+
Migrating to CreateGatherableSchema (20160307205846)
|
156473
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
156474
|
+
[1m[35m (0.2ms)[0m CREATE SCHEMA gatherable
|
156475
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20160307205846"]]
|
156476
|
+
[1m[35m (0.2ms)[0m COMMIT
|
156477
|
+
Migrating to CreateGatherablePrice (20160307205847)
|
156478
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
156479
|
+
[1m[35m (10.7ms)[0m CREATE TABLE "gatherable"."prices" ("price_id" serial primary key, "price" decimal NOT NULL, "session_id" character varying, "created_at" timestamp NOT NULL)
|
156480
|
+
[1m[36m (3.1ms)[0m [1mCREATE INDEX "index_gatherable.prices_on_session_id" ON "gatherable"."prices" ("session_id")[0m
|
156481
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160307205847"]]
|
156482
|
+
[1m[36m (0.4ms)[0m [1mCOMMIT[0m
|
156483
|
+
[1m[35m (2.6ms)[0m BEGIN
|
156484
|
+
Started GET "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 20:58:46 -0600
|
156485
|
+
Processing by Gatherable::PricesController#index as JSON
|
156486
|
+
Parameters: {"session_id"=>"session_id123"}
|
156487
|
+
Completed 302 Found in 7ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
156488
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
156489
|
+
[1m[35m (0.1ms)[0m BEGIN
|
156490
|
+
Started GET "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 20:58:46 -0600
|
156491
|
+
Processing by Gatherable::PricesController#index as JSON
|
156492
|
+
Parameters: {"session_id"=>"session_id123"}
|
156493
|
+
Completed 302 Found in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
156494
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
156495
|
+
[1m[35m (0.0ms)[0m BEGIN
|
156496
|
+
Started GET "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 20:58:46 -0600
|
156497
|
+
Processing by Gatherable::PricesController#index as JSON
|
156498
|
+
Parameters: {"session_id"=>"session_id123"}
|
156499
|
+
[1m[36mGatherable::Price Load (0.3ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1[0m [["session_id", "session_id123"]]
|
156500
|
+
Completed 302 Found in 3ms (Views: 0.8ms | ActiveRecord: 0.3ms)
|
156501
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156502
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
156503
|
+
Started GET "/gatherable/session_id123123/prices.json" for 127.0.0.1 at 2016-03-07 20:58:46 -0600
|
156504
|
+
Processing by Gatherable::PricesController#index as JSON
|
156505
|
+
Parameters: {"session_id"=>"session_id123123"}
|
156506
|
+
Filter chain halted as :authenticate rendered or redirected
|
156507
|
+
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
|
156508
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156509
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
156510
|
+
Started GET "/gatherable/session_id123123/prices.json" for 127.0.0.1 at 2016-03-07 20:58:46 -0600
|
156511
|
+
Processing by Gatherable::PricesController#index as JSON
|
156512
|
+
Parameters: {"session_id"=>"session_id123123"}
|
156513
|
+
Filter chain halted as :authenticate rendered or redirected
|
156514
|
+
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
|
156515
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156516
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
156517
|
+
Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-03-07 20:58:46 -0600
|
156518
|
+
Processing by Gatherable::PricesController#show as JSON
|
156519
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
|
156520
|
+
Completed 302 Found in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
156521
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156522
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
156523
|
+
Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-03-07 20:58:46 -0600
|
156524
|
+
Processing by Gatherable::PricesController#show as JSON
|
156525
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
|
156526
|
+
Completed 302 Found in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
156527
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156528
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
156529
|
+
Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-03-07 20:58:46 -0600
|
156530
|
+
Processing by Gatherable::PricesController#show as JSON
|
156531
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
|
156532
|
+
Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
156533
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156534
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
156535
|
+
Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-03-07 20:58:46 -0600
|
156536
|
+
Processing by Gatherable::PricesController#show as JSON
|
156537
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
|
156538
|
+
Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
156539
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156540
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
156541
|
+
Started GET "/gatherable/session_id123123/prices.json" for 127.0.0.1 at 2016-03-07 20:58:46 -0600
|
156542
|
+
Processing by Gatherable::PricesController#index as JSON
|
156543
|
+
Parameters: {"session_id"=>"session_id123123"}
|
156544
|
+
Filter chain halted as :authenticate rendered or redirected
|
156545
|
+
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
|
156546
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156547
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
156548
|
+
Started GET "/gatherable/session_id123123/prices.json" for 127.0.0.1 at 2016-03-07 20:58:46 -0600
|
156549
|
+
Processing by Gatherable::PricesController#index as JSON
|
156550
|
+
Parameters: {"session_id"=>"session_id123123"}
|
156551
|
+
Filter chain halted as :authenticate rendered or redirected
|
156552
|
+
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
|
156553
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156554
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
156555
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 20:59:01 -0600
|
156556
|
+
Processing by Gatherable::PricesController#create as JSON
|
156557
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
156558
|
+
Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.0ms)
|
156559
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
156560
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
156561
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 20:59:02 -0600
|
156562
|
+
Processing by Gatherable::PricesController#create as JSON
|
156563
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
156564
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
156565
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 02:59:02.313890"]]
|
156566
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
156567
|
+
Completed 201 Created in 4ms (Views: 0.3ms | ActiveRecord: 0.5ms)
|
156568
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
156569
|
+
[1m[35m (0.1ms)[0m BEGIN
|
156570
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 20:59:02 -0600
|
156571
|
+
Processing by Gatherable::PricesController#create as JSON
|
156572
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
156573
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
156574
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 02:59:02.792639"]]
|
156575
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
156576
|
+
Completed 201 Created in 3ms (Views: 0.2ms | ActiveRecord: 0.3ms)
|
156577
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156578
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
156579
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 20:59:03 -0600
|
156580
|
+
Processing by Gatherable::PricesController#create as JSON
|
156581
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
156582
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
156583
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 02:59:03.280521"]]
|
156584
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
156585
|
+
Completed 201 Created in 3ms (Views: 0.2ms | ActiveRecord: 0.4ms)
|
156586
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
156587
|
+
[1m[35m (0.1ms)[0m BEGIN
|
156588
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
156589
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
156590
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
156591
|
+
Started GET "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
156592
|
+
Processing by Gatherable::PricesController#index as JSON
|
156593
|
+
Parameters: {"session_id"=>"session_id123"}
|
156594
|
+
Completed 302 Found in 7ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
156595
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156596
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
156597
|
+
Started GET "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
156598
|
+
Processing by Gatherable::PricesController#index as JSON
|
156599
|
+
Parameters: {"session_id"=>"session_id123"}
|
156600
|
+
Completed 302 Found in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
156601
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156602
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
156603
|
+
Started GET "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
156604
|
+
Processing by Gatherable::PricesController#index as JSON
|
156605
|
+
Parameters: {"session_id"=>"session_id123"}
|
156606
|
+
[1m[35mGatherable::Price Load (0.3ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1 [["session_id", "session_id123"]]
|
156607
|
+
Completed 302 Found in 5ms (Views: 2.1ms | ActiveRecord: 0.4ms)
|
156608
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
156609
|
+
[1m[35m (0.1ms)[0m BEGIN
|
156610
|
+
Started GET "/gatherable/session_id123123/prices.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
156611
|
+
Processing by Gatherable::PricesController#index as JSON
|
156612
|
+
Parameters: {"session_id"=>"session_id123123"}
|
156613
|
+
Filter chain halted as :authenticate rendered or redirected
|
156614
|
+
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
|
156615
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
156616
|
+
[1m[35m (0.1ms)[0m BEGIN
|
156617
|
+
Started GET "/gatherable/session_id123123/prices.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
156618
|
+
Processing by Gatherable::PricesController#index as JSON
|
156619
|
+
Parameters: {"session_id"=>"session_id123123"}
|
156620
|
+
Filter chain halted as :authenticate rendered or redirected
|
156621
|
+
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
|
156622
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
156623
|
+
[1m[35m (0.0ms)[0m BEGIN
|
156624
|
+
Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
156625
|
+
Processing by Gatherable::PricesController#show as JSON
|
156626
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
|
156627
|
+
Completed 302 Found in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
156628
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
156629
|
+
[1m[35m (0.0ms)[0m BEGIN
|
156630
|
+
Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
156631
|
+
Processing by Gatherable::PricesController#show as JSON
|
156632
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
|
156633
|
+
Completed 302 Found in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
156634
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
156635
|
+
[1m[35m (0.1ms)[0m BEGIN
|
156636
|
+
Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
156637
|
+
Processing by Gatherable::PricesController#show as JSON
|
156638
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
|
156639
|
+
Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
156640
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
156641
|
+
[1m[35m (0.0ms)[0m BEGIN
|
156642
|
+
Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
156643
|
+
Processing by Gatherable::PricesController#show as JSON
|
156644
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
|
156645
|
+
Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
156646
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
156647
|
+
[1m[35m (0.0ms)[0m BEGIN
|
156648
|
+
Started GET "/gatherable/session_id123123/prices.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
156649
|
+
Processing by Gatherable::PricesController#index as JSON
|
156650
|
+
Parameters: {"session_id"=>"session_id123123"}
|
156651
|
+
Filter chain halted as :authenticate rendered or redirected
|
156652
|
+
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
|
156653
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
156654
|
+
[1m[35m (0.0ms)[0m BEGIN
|
156655
|
+
Started GET "/gatherable/session_id123123/prices.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
156656
|
+
Processing by Gatherable::PricesController#index as JSON
|
156657
|
+
Parameters: {"session_id"=>"session_id123123"}
|
156658
|
+
Filter chain halted as :authenticate rendered or redirected
|
156659
|
+
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
|
156660
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
156661
|
+
[1m[35m (0.0ms)[0m BEGIN
|
156662
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
156663
|
+
Processing by Gatherable::PricesController#create as JSON
|
156664
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
156665
|
+
Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.0ms)
|
156666
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
156667
|
+
[1m[35m (0.1ms)[0m BEGIN
|
156668
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
156669
|
+
Processing by Gatherable::PricesController#create as JSON
|
156670
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
156671
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
156672
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:02:15.264973"]]
|
156673
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
156674
|
+
Completed 201 Created in 5ms (Views: 0.2ms | ActiveRecord: 0.4ms)
|
156675
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156676
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
156677
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
156678
|
+
Processing by Gatherable::PricesController#create as JSON
|
156679
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
156680
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
156681
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:02:15.275034"]]
|
156682
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
156683
|
+
Completed 201 Created in 2ms (Views: 0.2ms | ActiveRecord: 0.3ms)
|
156684
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
156685
|
+
[1m[35m (0.0ms)[0m BEGIN
|
156686
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
156687
|
+
Processing by Gatherable::PricesController#create as JSON
|
156688
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
156689
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
156690
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:02:15.285201"]]
|
156691
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
156692
|
+
Completed 201 Created in 3ms (Views: 0.3ms | ActiveRecord: 0.4ms)
|
156693
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156694
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
156695
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
156696
|
+
Processing by Gatherable::PricesController#create as JSON
|
156697
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
156698
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
156699
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:02:15.294810"]]
|
156700
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
156701
|
+
Completed 201 Created in 2ms (Views: 0.2ms | ActiveRecord: 0.2ms)
|
156702
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
156703
|
+
[1m[35m (0.0ms)[0m BEGIN
|
156704
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
156705
|
+
Processing by Gatherable::PricesController#create as JSON
|
156706
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
156707
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
156708
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:02:15.304655"]]
|
156709
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
156710
|
+
Completed 201 Created in 3ms (Views: 0.3ms | ActiveRecord: 0.4ms)
|
156711
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156712
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
156713
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
156714
|
+
Processing by Gatherable::PricesController#create as JSON
|
156715
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
156716
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1 LIMIT 1 [["session_id", "session_id123"]]
|
156717
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
156718
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "gatherable"."prices" ("session_id", "price", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["session_id", "session_id123"], ["price", "3.0"], ["created_at", "2016-03-08 03:02:15.317090"]]
|
156719
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
156720
|
+
Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.4ms)
|
156721
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156722
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
156723
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
156724
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "76.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:02:15.323027"]]
|
156725
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
156726
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
156727
|
+
Processing by Gatherable::PricesController#create as JSON
|
156728
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
156729
|
+
[1m[36mGatherable::Price Load (0.2ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1 LIMIT 1[0m [["session_id", "session_id123"]]
|
156730
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
156731
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "gatherable"."prices" SET "price" = $1 WHERE "gatherable"."prices"."price_id" = $2[0m [["price", "3.0"], ["price_id", 10]]
|
156732
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
156733
|
+
Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.5ms)
|
156734
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 10]]
|
156735
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
156736
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
156737
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
156738
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "76.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:02:15.338135"]]
|
156739
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
156740
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "gatherable"."prices"[0m
|
156741
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
156742
|
+
Processing by Gatherable::PricesController#create as JSON
|
156743
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
156744
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1 LIMIT 1 [["session_id", "session_id123"]]
|
156745
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
156746
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "gatherable"."prices" SET "price" = $1 WHERE "gatherable"."prices"."price_id" = $2 [["price", "3.0"], ["price_id", 11]]
|
156747
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
156748
|
+
Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.4ms)
|
156749
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "gatherable"."prices"
|
156750
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
156751
|
+
[1m[35m (0.1ms)[0m BEGIN
|
156752
|
+
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "gatherable"."prices"[0m
|
156753
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
156754
|
+
Processing by Gatherable::PricesController#create as JSON
|
156755
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
156756
|
+
[1m[35mGatherable::Price Load (0.2ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1 LIMIT 1 [["session_id", "session_id123"]]
|
156757
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
156758
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "gatherable"."prices" ("session_id", "price", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["session_id", "session_id123"], ["price", "3.0"], ["created_at", "2016-03-08 03:02:15.359174"]]
|
156759
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
156760
|
+
Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.4ms)
|
156761
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "gatherable"."prices"
|
156762
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
156763
|
+
[1m[35m (0.0ms)[0m BEGIN
|
156764
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
156765
|
+
Processing by Gatherable::PricesController#create as JSON
|
156766
|
+
Parameters: {"yolo"=>"swag", "session_id"=>"session_id123"}
|
156767
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
156768
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
156769
|
+
[1m[35m (0.0ms)[0m BEGIN
|
156770
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
156771
|
+
Processing by Gatherable::PricesController#create as JSON
|
156772
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
156773
|
+
Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms)
|
156774
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
156775
|
+
[1m[35m (0.0ms)[0m BEGIN
|
156776
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
156777
|
+
Processing by Gatherable::PricesController#create as JSON
|
156778
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
156779
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
156780
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:02:15.384629"]]
|
156781
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
156782
|
+
Completed 201 Created in 3ms (Views: 0.3ms | ActiveRecord: 0.4ms)
|
156783
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156784
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
156785
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
156786
|
+
Processing by Gatherable::PricesController#create as JSON
|
156787
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
156788
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
156789
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:02:15.394690"]]
|
156790
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
156791
|
+
Completed 201 Created in 2ms (Views: 0.2ms | ActiveRecord: 0.2ms)
|
156792
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
156793
|
+
[1m[35m (0.1ms)[0m BEGIN
|
156794
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
156795
|
+
Processing by Gatherable::PricesController#create as JSON
|
156796
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
156797
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
156798
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:02:15.404907"]]
|
156799
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
156800
|
+
Completed 201 Created in 3ms (Views: 0.2ms | ActiveRecord: 0.3ms)
|
156801
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156802
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
156803
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
156804
|
+
Processing by Gatherable::PricesController#create as JSON
|
156805
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
156806
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
156807
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:02:15.414600"]]
|
156808
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
156809
|
+
Completed 201 Created in 2ms (Views: 0.2ms | ActiveRecord: 0.3ms)
|
156810
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
156811
|
+
[1m[35m (0.1ms)[0m BEGIN
|
156812
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
156813
|
+
Processing by Gatherable::PricesController#create as JSON
|
156814
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
156815
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
156816
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:02:15.424114"]]
|
156817
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
156818
|
+
Completed 201 Created in 2ms (Views: 0.2ms | ActiveRecord: 0.3ms)
|
156819
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156820
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
156821
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
156822
|
+
Processing by Gatherable::PricesController#create as JSON
|
156823
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
156824
|
+
[1m[35mGatherable::Price Load (0.2ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1 LIMIT 1 [["session_id", "session_id123"]]
|
156825
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
156826
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "gatherable"."prices" ("session_id", "price", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["session_id", "session_id123"], ["price", "3.0"], ["created_at", "2016-03-08 03:02:15.436200"]]
|
156827
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
156828
|
+
Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.5ms)
|
156829
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156830
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
156831
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
156832
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "76.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:02:15.442038"]]
|
156833
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
156834
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
156835
|
+
Processing by Gatherable::PricesController#create as JSON
|
156836
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
156837
|
+
[1m[36mGatherable::Price Load (0.2ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1 LIMIT 1[0m [["session_id", "session_id123"]]
|
156838
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
156839
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "gatherable"."prices" SET "price" = $1 WHERE "gatherable"."prices"."price_id" = $2[0m [["price", "3.0"], ["price_id", 19]]
|
156840
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
156841
|
+
Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.5ms)
|
156842
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 19]]
|
156843
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156844
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
156845
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
156846
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "76.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:02:15.462299"]]
|
156847
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
156848
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "gatherable"."prices"[0m
|
156849
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
156850
|
+
Processing by Gatherable::PricesController#create as JSON
|
156851
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
156852
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1 LIMIT 1 [["session_id", "session_id123"]]
|
156853
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
156854
|
+
[1m[35mSQL (0.3ms)[0m UPDATE "gatherable"."prices" SET "price" = $1 WHERE "gatherable"."prices"."price_id" = $2 [["price", "3.0"], ["price_id", 20]]
|
156855
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
156856
|
+
Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.5ms)
|
156857
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "gatherable"."prices"
|
156858
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
156859
|
+
[1m[35m (0.0ms)[0m BEGIN
|
156860
|
+
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "gatherable"."prices"[0m
|
156861
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
156862
|
+
Processing by Gatherable::PricesController#create as JSON
|
156863
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
156864
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1 LIMIT 1 [["session_id", "session_id123"]]
|
156865
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
156866
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "gatherable"."prices" ("session_id", "price", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["session_id", "session_id123"], ["price", "3.0"], ["created_at", "2016-03-08 03:02:15.484681"]]
|
156867
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
156868
|
+
Completed 200 OK in 5ms (Views: 0.3ms | ActiveRecord: 0.7ms)
|
156869
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "gatherable"."prices"
|
156870
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
156871
|
+
[1m[35m (0.1ms)[0m BEGIN
|
156872
|
+
Started POST "/gatherable/session_id123123/prices.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
156873
|
+
Processing by Gatherable::PricesController#create as JSON
|
156874
|
+
Parameters: {"session_id"=>"session_id123123"}
|
156875
|
+
Filter chain halted as :authenticate rendered or redirected
|
156876
|
+
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
|
156877
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
156878
|
+
[1m[35m (0.1ms)[0m BEGIN
|
156879
|
+
Started POST "/gatherable/session_id123123/prices.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
156880
|
+
Processing by Gatherable::PricesController#create as JSON
|
156881
|
+
Parameters: {"session_id"=>"session_id123123"}
|
156882
|
+
Filter chain halted as :authenticate rendered or redirected
|
156883
|
+
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
|
156884
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
156885
|
+
[1m[35m (0.1ms)[0m BEGIN
|
156886
|
+
Started POST "/gatherable/session_id123123/prices.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
156887
|
+
Processing by Gatherable::PricesController#create as JSON
|
156888
|
+
Parameters: {"session_id"=>"session_id123123"}
|
156889
|
+
Filter chain halted as :authenticate rendered or redirected
|
156890
|
+
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
|
156891
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "gatherable"."prices"[0m
|
156892
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "gatherable"."prices"
|
156893
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
156894
|
+
[1m[35m (0.0ms)[0m BEGIN
|
156895
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
156896
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "gatherable"."prices" ("price", "price_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["price_id", 1], ["created_at", "2016-03-08 03:02:15.525234"]]
|
156897
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
156898
|
+
Started PUT "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
156899
|
+
Processing by Gatherable::PricesController#update as JSON
|
156900
|
+
Parameters: {"price"=>{"price"=>"4.0"}, "session_id"=>"session_id123", "price_id"=>"1"}
|
156901
|
+
[1m[35mGatherable::Price Load (0.3ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 1]]
|
156902
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
156903
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "gatherable"."prices" SET "price" = $1, "session_id" = $2 WHERE "gatherable"."prices"."price_id" = $3 [["price", "4.0"], ["session_id", "session_id123"], ["price_id", 1]]
|
156904
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
156905
|
+
[1m[35mGatherable::Price Load (0.2ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 1]]
|
156906
|
+
Completed 200 OK in 6ms (Views: 0.4ms | ActiveRecord: 0.7ms)
|
156907
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 1]]
|
156908
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156909
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
156910
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
156911
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "price_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["price_id", 1], ["created_at", "2016-03-08 03:02:15.543143"]]
|
156912
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
156913
|
+
Started PUT "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
156914
|
+
Processing by Gatherable::PricesController#update as JSON
|
156915
|
+
Parameters: {"price"=>{"price"=>"4.0"}, "session_id"=>"session_id123", "price_id"=>"1"}
|
156916
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 1]]
|
156917
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
156918
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "gatherable"."prices" SET "price" = $1, "session_id" = $2 WHERE "gatherable"."prices"."price_id" = $3[0m [["price", "4.0"], ["session_id", "session_id123"], ["price_id", 1]]
|
156919
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
156920
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 1]]
|
156921
|
+
Completed 200 OK in 4ms (Views: 0.4ms | ActiveRecord: 0.7ms)
|
156922
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
156923
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
156924
|
+
Started PUT "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
156925
|
+
Processing by Gatherable::PricesController#update as JSON
|
156926
|
+
Parameters: {"price"=>"2016-03-07", "session_id"=>"session_id123", "price_id"=>"1"}
|
156927
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
156928
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156929
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
156930
|
+
Started PUT "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
156931
|
+
Processing by Gatherable::PricesController#update as JSON
|
156932
|
+
Parameters: {"price"=>"2016-03-07", "session_id"=>"session_id123", "price_id"=>"1"}
|
156933
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
156934
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156935
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
156936
|
+
Started PUT "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
156937
|
+
Processing by Gatherable::PricesController#update as JSON
|
156938
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
|
156939
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 0]]
|
156940
|
+
Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms)
|
156941
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
156942
|
+
[1m[35m (0.1ms)[0m BEGIN
|
156943
|
+
Started PUT "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
156944
|
+
Processing by Gatherable::PricesController#update as JSON
|
156945
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
|
156946
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 0]]
|
156947
|
+
Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms)
|
156948
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156949
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
156950
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
156951
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:02:15.595647"]]
|
156952
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
156953
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 22]]
|
156954
|
+
Started PUT "/gatherable/session_id123123/prices/22.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
156955
|
+
Processing by Gatherable::PricesController#update as JSON
|
156956
|
+
Parameters: {"session_id"=>"session_id123123", "price_id"=>"22"}
|
156957
|
+
Filter chain halted as :authenticate rendered or redirected
|
156958
|
+
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
|
156959
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
156960
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
156961
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
156962
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:02:15.608168"]]
|
156963
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
156964
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 23]]
|
156965
|
+
Started PUT "/gatherable/session_id123123/prices/23.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
156966
|
+
Processing by Gatherable::PricesController#update as JSON
|
156967
|
+
Parameters: {"session_id"=>"session_id123123", "price_id"=>"23"}
|
156968
|
+
Filter chain halted as :authenticate rendered or redirected
|
156969
|
+
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
|
156970
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156971
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
156972
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
156973
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:02:15.620058"]]
|
156974
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
156975
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 24]]
|
156976
|
+
Started PUT "/gatherable/session_id123123/prices/24.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
156977
|
+
Processing by Gatherable::PricesController#update as JSON
|
156978
|
+
Parameters: {"session_id"=>"session_id123123", "price_id"=>"24"}
|
156979
|
+
Filter chain halted as :authenticate rendered or redirected
|
156980
|
+
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
|
156981
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 24]]
|
156982
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
156983
|
+
[1m[35m (0.0ms)[0m BEGIN
|
156984
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
156985
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:02:15.631222"]]
|
156986
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
156987
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 25]]
|
156988
|
+
Started DELETE "/gatherable/session_id123/prices/25.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
156989
|
+
Processing by Gatherable::PricesController#destroy as JSON
|
156990
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"25"}
|
156991
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 25]]
|
156992
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 [["price_id", 25]]
|
156993
|
+
Completed 204 No Content in 2ms (ActiveRecord: 0.3ms)
|
156994
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1[0m [["price_id", 25]]
|
156995
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
156996
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
156997
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
156998
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:02:15.644344"]]
|
156999
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
157000
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 26]]
|
157001
|
+
Started DELETE "/gatherable/session_id123/prices/26.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
157002
|
+
Processing by Gatherable::PricesController#destroy as JSON
|
157003
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"26"}
|
157004
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 26]]
|
157005
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1[0m [["price_id", 26]]
|
157006
|
+
Completed 204 No Content in 1ms (ActiveRecord: 0.3ms)
|
157007
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
157008
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
157009
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
157010
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:02:15.654033"]]
|
157011
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
157012
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 27]]
|
157013
|
+
Started DELETE "/gatherable/session_id123/prices/27.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
157014
|
+
Processing by Gatherable::PricesController#destroy as JSON
|
157015
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"27"}
|
157016
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 27]]
|
157017
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1[0m [["price_id", 27]]
|
157018
|
+
Completed 204 No Content in 1ms (ActiveRecord: 0.2ms)
|
157019
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
157020
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
157021
|
+
Started DELETE "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
157022
|
+
Processing by Gatherable::PricesController#destroy as JSON
|
157023
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
|
157024
|
+
[1m[35mGatherable::Price Load (0.2ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 0]]
|
157025
|
+
Completed 404 Not Found in 1ms (Views: 0.2ms | ActiveRecord: 0.2ms)
|
157026
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157027
|
+
[1m[35m (0.1ms)[0m BEGIN
|
157028
|
+
Started DELETE "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
157029
|
+
Processing by Gatherable::PricesController#destroy as JSON
|
157030
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
|
157031
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 0]]
|
157032
|
+
Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms)
|
157033
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
157034
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
157035
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
157036
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:02:15.682354"]]
|
157037
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
157038
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 28]]
|
157039
|
+
Started DELETE "/gatherable/session_id123123/prices/28.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
157040
|
+
Processing by Gatherable::PricesController#destroy as JSON
|
157041
|
+
Parameters: {"session_id"=>"session_id123123", "price_id"=>"28"}
|
157042
|
+
Filter chain halted as :authenticate rendered or redirected
|
157043
|
+
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
|
157044
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
157045
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
157046
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
157047
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:02:15.695419"]]
|
157048
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
157049
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 29]]
|
157050
|
+
Started DELETE "/gatherable/session_id123123/prices/29.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
157051
|
+
Processing by Gatherable::PricesController#destroy as JSON
|
157052
|
+
Parameters: {"session_id"=>"session_id123123", "price_id"=>"29"}
|
157053
|
+
Filter chain halted as :authenticate rendered or redirected
|
157054
|
+
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
|
157055
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
157056
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
157057
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
157058
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:02:15.707643"]]
|
157059
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
157060
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 30]]
|
157061
|
+
Started DELETE "/gatherable/session_id123123/prices/30.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
157062
|
+
Processing by Gatherable::PricesController#destroy as JSON
|
157063
|
+
Parameters: {"session_id"=>"session_id123123", "price_id"=>"30"}
|
157064
|
+
Filter chain halted as :authenticate rendered or redirected
|
157065
|
+
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
|
157066
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
157067
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
157068
|
+
Started GET "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
157069
|
+
Processing by Gatherable::PricesController#index as JSON
|
157070
|
+
Completed 302 Found in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
157071
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
157072
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
157073
|
+
Started GET "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
157074
|
+
Processing by Gatherable::PricesController#index as JSON
|
157075
|
+
Completed 302 Found in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
157076
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
157077
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
157078
|
+
Started GET "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
157079
|
+
Processing by Gatherable::PricesController#index as JSON
|
157080
|
+
[1m[35mGatherable::Price Load (0.2ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1 [["session_id", "session_id123"]]
|
157081
|
+
Completed 302 Found in 1ms (Views: 0.5ms | ActiveRecord: 0.2ms)
|
157082
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157083
|
+
[1m[35m (0.0ms)[0m BEGIN
|
157084
|
+
Started GET "/gatherable/prices/1.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
157085
|
+
Processing by Gatherable::PricesController#show as JSON
|
157086
|
+
Parameters: {"price_id"=>"1"}
|
157087
|
+
Completed 302 Found in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
157088
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157089
|
+
[1m[35m (0.1ms)[0m BEGIN
|
157090
|
+
Started GET "/gatherable/prices/1.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
157091
|
+
Processing by Gatherable::PricesController#show as JSON
|
157092
|
+
Parameters: {"price_id"=>"1"}
|
157093
|
+
Completed 302 Found in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
157094
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157095
|
+
[1m[35m (0.0ms)[0m BEGIN
|
157096
|
+
Started GET "/gatherable/prices/0.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
157097
|
+
Processing by Gatherable::PricesController#show as JSON
|
157098
|
+
Parameters: {"price_id"=>"0"}
|
157099
|
+
Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
157100
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157101
|
+
[1m[35m (0.1ms)[0m BEGIN
|
157102
|
+
Started GET "/gatherable/prices/0.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
157103
|
+
Processing by Gatherable::PricesController#show as JSON
|
157104
|
+
Parameters: {"price_id"=>"0"}
|
157105
|
+
Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
157106
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157107
|
+
[1m[35m (0.0ms)[0m BEGIN
|
157108
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
157109
|
+
Processing by Gatherable::PricesController#create as JSON
|
157110
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
157111
|
+
Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
|
157112
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157113
|
+
[1m[35m (0.0ms)[0m BEGIN
|
157114
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
157115
|
+
Processing by Gatherable::PricesController#create as JSON
|
157116
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
157117
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
157118
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:02:15.787705"]]
|
157119
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
157120
|
+
Completed 201 Created in 2ms (Views: 0.2ms | ActiveRecord: 0.4ms)
|
157121
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
157122
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
157123
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
157124
|
+
Processing by Gatherable::PricesController#create as JSON
|
157125
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
157126
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
157127
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:02:15.797221"]]
|
157128
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
157129
|
+
Completed 201 Created in 2ms (Views: 0.2ms | ActiveRecord: 0.4ms)
|
157130
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157131
|
+
[1m[35m (0.1ms)[0m BEGIN
|
157132
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
157133
|
+
Processing by Gatherable::PricesController#create as JSON
|
157134
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
157135
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
157136
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:02:15.806906"]]
|
157137
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
157138
|
+
Completed 201 Created in 2ms (Views: 0.2ms | ActiveRecord: 0.4ms)
|
157139
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
157140
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
157141
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
157142
|
+
Processing by Gatherable::PricesController#create as JSON
|
157143
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
157144
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
157145
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:02:15.814714"]]
|
157146
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
157147
|
+
Completed 201 Created in 2ms (Views: 0.2ms | ActiveRecord: 0.4ms)
|
157148
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157149
|
+
[1m[35m (0.1ms)[0m BEGIN
|
157150
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
157151
|
+
Processing by Gatherable::PricesController#create as JSON
|
157152
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
157153
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
157154
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:02:15.824881"]]
|
157155
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
157156
|
+
Completed 201 Created in 2ms (Views: 0.2ms | ActiveRecord: 0.3ms)
|
157157
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
157158
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
157159
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
157160
|
+
Processing by Gatherable::PricesController#create as JSON
|
157161
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
157162
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1 LIMIT 1 [["session_id", "session_id123"]]
|
157163
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
157164
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "gatherable"."prices" ("session_id", "price", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["session_id", "session_id123"], ["price", "3.0"], ["created_at", "2016-03-08 03:02:15.834033"]]
|
157165
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
157166
|
+
Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.5ms)
|
157167
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
157168
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
157169
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
157170
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "76.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:02:15.839248"]]
|
157171
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
157172
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
157173
|
+
Processing by Gatherable::PricesController#create as JSON
|
157174
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
157175
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1 LIMIT 1[0m [["session_id", "session_id123"]]
|
157176
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
157177
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "gatherable"."prices" SET "price" = $1 WHERE "gatherable"."prices"."price_id" = $2[0m [["price", "3.0"], ["price_id", 37]]
|
157178
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
157179
|
+
Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.5ms)
|
157180
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 37]]
|
157181
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
157182
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
157183
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
157184
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "76.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:02:15.850107"]]
|
157185
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
157186
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "gatherable"."prices"[0m
|
157187
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
157188
|
+
Processing by Gatherable::PricesController#create as JSON
|
157189
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
157190
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1 LIMIT 1 [["session_id", "session_id123"]]
|
157191
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
157192
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "gatherable"."prices" SET "price" = $1 WHERE "gatherable"."prices"."price_id" = $2 [["price", "3.0"], ["price_id", 38]]
|
157193
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
157194
|
+
Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.4ms)
|
157195
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "gatherable"."prices"
|
157196
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157197
|
+
[1m[35m (0.0ms)[0m BEGIN
|
157198
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "gatherable"."prices"[0m
|
157199
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
157200
|
+
Processing by Gatherable::PricesController#create as JSON
|
157201
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
157202
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1 LIMIT 1 [["session_id", "session_id123"]]
|
157203
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
157204
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "gatherable"."prices" ("session_id", "price", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["session_id", "session_id123"], ["price", "3.0"], ["created_at", "2016-03-08 03:02:15.865802"]]
|
157205
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
157206
|
+
Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.4ms)
|
157207
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "gatherable"."prices"
|
157208
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157209
|
+
[1m[35m (0.1ms)[0m BEGIN
|
157210
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
157211
|
+
Processing by Gatherable::PricesController#create as JSON
|
157212
|
+
Parameters: {"yolo"=>"swag"}
|
157213
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
157214
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157215
|
+
[1m[35m (0.0ms)[0m BEGIN
|
157216
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
157217
|
+
Processing by Gatherable::PricesController#create as JSON
|
157218
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
157219
|
+
Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
|
157220
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157221
|
+
[1m[35m (0.0ms)[0m BEGIN
|
157222
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
157223
|
+
Processing by Gatherable::PricesController#create as JSON
|
157224
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
157225
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
157226
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:02:15.888824"]]
|
157227
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
157228
|
+
Completed 201 Created in 2ms (Views: 0.2ms | ActiveRecord: 0.3ms)
|
157229
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
157230
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
157231
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
157232
|
+
Processing by Gatherable::PricesController#create as JSON
|
157233
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
157234
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
157235
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:02:15.897457"]]
|
157236
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
157237
|
+
Completed 201 Created in 2ms (Views: 0.2ms | ActiveRecord: 0.2ms)
|
157238
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157239
|
+
[1m[35m (0.1ms)[0m BEGIN
|
157240
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
157241
|
+
Processing by Gatherable::PricesController#create as JSON
|
157242
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
157243
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
157244
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:02:15.914655"]]
|
157245
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
157246
|
+
Completed 201 Created in 9ms (Views: 0.2ms | ActiveRecord: 0.5ms)
|
157247
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
157248
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
157249
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
157250
|
+
Processing by Gatherable::PricesController#create as JSON
|
157251
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
157252
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
157253
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:02:15.925678"]]
|
157254
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
157255
|
+
Completed 201 Created in 2ms (Views: 0.2ms | ActiveRecord: 0.2ms)
|
157256
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157257
|
+
[1m[35m (0.1ms)[0m BEGIN
|
157258
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
157259
|
+
Processing by Gatherable::PricesController#create as JSON
|
157260
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
157261
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
157262
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:02:15.936076"]]
|
157263
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
157264
|
+
Completed 201 Created in 3ms (Views: 0.2ms | ActiveRecord: 0.3ms)
|
157265
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
157266
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
157267
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
157268
|
+
Processing by Gatherable::PricesController#create as JSON
|
157269
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
157270
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1 LIMIT 1 [["session_id", "session_id123"]]
|
157271
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
157272
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "gatherable"."prices" ("session_id", "price", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["session_id", "session_id123"], ["price", "3.0"], ["created_at", "2016-03-08 03:02:15.947266"]]
|
157273
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
157274
|
+
Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.4ms)
|
157275
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
157276
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
157277
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
157278
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "76.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:02:15.953440"]]
|
157279
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
157280
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
157281
|
+
Processing by Gatherable::PricesController#create as JSON
|
157282
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
157283
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1 LIMIT 1[0m [["session_id", "session_id123"]]
|
157284
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
157285
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "gatherable"."prices" SET "price" = $1 WHERE "gatherable"."prices"."price_id" = $2[0m [["price", "3.0"], ["price_id", 46]]
|
157286
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
157287
|
+
Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.3ms)
|
157288
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 46]]
|
157289
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
157290
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
157291
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
157292
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "76.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:02:15.965814"]]
|
157293
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
157294
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "gatherable"."prices"[0m
|
157295
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
157296
|
+
Processing by Gatherable::PricesController#create as JSON
|
157297
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
157298
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1 LIMIT 1 [["session_id", "session_id123"]]
|
157299
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
157300
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "gatherable"."prices" SET "price" = $1 WHERE "gatherable"."prices"."price_id" = $2 [["price", "3.0"], ["price_id", 47]]
|
157301
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
157302
|
+
Completed 200 OK in 4ms (Views: 0.4ms | ActiveRecord: 0.6ms)
|
157303
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "gatherable"."prices"
|
157304
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157305
|
+
[1m[35m (0.1ms)[0m BEGIN
|
157306
|
+
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "gatherable"."prices"[0m
|
157307
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:02:15 -0600
|
157308
|
+
Processing by Gatherable::PricesController#create as JSON
|
157309
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
157310
|
+
[1m[35mGatherable::Price Load (0.2ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1 LIMIT 1 [["session_id", "session_id123"]]
|
157311
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
157312
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "gatherable"."prices" ("session_id", "price", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["session_id", "session_id123"], ["price", "3.0"], ["created_at", "2016-03-08 03:02:15.992061"]]
|
157313
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
157314
|
+
Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.5ms)
|
157315
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "gatherable"."prices"
|
157316
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157317
|
+
[1m[35m (0.0ms)[0m BEGIN
|
157318
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
157319
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "gatherable"."prices" ("price", "price_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["price_id", 1], ["created_at", "2016-03-08 03:02:15.998709"]]
|
157320
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
157321
|
+
Started PUT "/gatherable/prices/1.json" for 127.0.0.1 at 2016-03-07 21:02:16 -0600
|
157322
|
+
Processing by Gatherable::PricesController#update as JSON
|
157323
|
+
Parameters: {"price"=>{"price"=>"4.0"}, "price_id"=>"1"}
|
157324
|
+
[1m[35mGatherable::Price Load (0.2ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 1]]
|
157325
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
157326
|
+
[1m[35mSQL (0.3ms)[0m UPDATE "gatherable"."prices" SET "price" = $1, "session_id" = $2 WHERE "gatherable"."prices"."price_id" = $3 [["price", "4.0"], ["session_id", "session_id123"], ["price_id", 1]]
|
157327
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
157328
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 1]]
|
157329
|
+
Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.6ms)
|
157330
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 1]]
|
157331
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
157332
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
157333
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
157334
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "price_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["price_id", 1], ["created_at", "2016-03-08 03:02:16.011698"]]
|
157335
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
157336
|
+
Started PUT "/gatherable/prices/1.json" for 127.0.0.1 at 2016-03-07 21:02:16 -0600
|
157337
|
+
Processing by Gatherable::PricesController#update as JSON
|
157338
|
+
Parameters: {"price"=>{"price"=>"4.0"}, "price_id"=>"1"}
|
157339
|
+
[1m[36mGatherable::Price Load (0.2ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 1]]
|
157340
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
157341
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "gatherable"."prices" SET "price" = $1, "session_id" = $2 WHERE "gatherable"."prices"."price_id" = $3[0m [["price", "4.0"], ["session_id", "session_id123"], ["price_id", 1]]
|
157342
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
157343
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 1]]
|
157344
|
+
Completed 200 OK in 4ms (Views: 0.4ms | ActiveRecord: 0.7ms)
|
157345
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
157346
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
157347
|
+
Started PUT "/gatherable/prices/1.json" for 127.0.0.1 at 2016-03-07 21:02:16 -0600
|
157348
|
+
Processing by Gatherable::PricesController#update as JSON
|
157349
|
+
Parameters: {"price"=>"2016-03-07", "price_id"=>"1"}
|
157350
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
157351
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
157352
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
157353
|
+
Started PUT "/gatherable/prices/1.json" for 127.0.0.1 at 2016-03-07 21:02:16 -0600
|
157354
|
+
Processing by Gatherable::PricesController#update as JSON
|
157355
|
+
Parameters: {"price"=>"2016-03-07", "price_id"=>"1"}
|
157356
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
157357
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
157358
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
157359
|
+
Started PUT "/gatherable/prices/0.json" for 127.0.0.1 at 2016-03-07 21:02:16 -0600
|
157360
|
+
Processing by Gatherable::PricesController#update as JSON
|
157361
|
+
Parameters: {"price_id"=>"0"}
|
157362
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 0]]
|
157363
|
+
Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms)
|
157364
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157365
|
+
[1m[35m (0.1ms)[0m BEGIN
|
157366
|
+
Started PUT "/gatherable/prices/0.json" for 127.0.0.1 at 2016-03-07 21:02:16 -0600
|
157367
|
+
Processing by Gatherable::PricesController#update as JSON
|
157368
|
+
Parameters: {"price_id"=>"0"}
|
157369
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 0]]
|
157370
|
+
Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms)
|
157371
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
157372
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
157373
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
157374
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:02:16.061167"]]
|
157375
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
157376
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 49]]
|
157377
|
+
Started DELETE "/gatherable/prices/49.json" for 127.0.0.1 at 2016-03-07 21:02:16 -0600
|
157378
|
+
Processing by Gatherable::PricesController#destroy as JSON
|
157379
|
+
Parameters: {"price_id"=>"49"}
|
157380
|
+
[1m[35mGatherable::Price Load (0.2ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 49]]
|
157381
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1[0m [["price_id", 49]]
|
157382
|
+
Completed 204 No Content in 2ms (ActiveRecord: 0.3ms)
|
157383
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 [["price_id", 49]]
|
157384
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157385
|
+
[1m[35m (0.1ms)[0m BEGIN
|
157386
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
157387
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:02:16.073194"]]
|
157388
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
157389
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 50]]
|
157390
|
+
Started DELETE "/gatherable/prices/50.json" for 127.0.0.1 at 2016-03-07 21:02:16 -0600
|
157391
|
+
Processing by Gatherable::PricesController#destroy as JSON
|
157392
|
+
Parameters: {"price_id"=>"50"}
|
157393
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 50]]
|
157394
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 [["price_id", 50]]
|
157395
|
+
Completed 204 No Content in 1ms (ActiveRecord: 0.2ms)
|
157396
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157397
|
+
[1m[35m (0.1ms)[0m BEGIN
|
157398
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
157399
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:02:16.084174"]]
|
157400
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
157401
|
+
[1m[35mGatherable::Price Load (0.2ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 51]]
|
157402
|
+
Started DELETE "/gatherable/prices/51.json" for 127.0.0.1 at 2016-03-07 21:02:16 -0600
|
157403
|
+
Processing by Gatherable::PricesController#destroy as JSON
|
157404
|
+
Parameters: {"price_id"=>"51"}
|
157405
|
+
[1m[36mGatherable::Price Load (0.2ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 51]]
|
157406
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 [["price_id", 51]]
|
157407
|
+
Completed 204 No Content in 2ms (ActiveRecord: 0.3ms)
|
157408
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157409
|
+
[1m[35m (0.0ms)[0m BEGIN
|
157410
|
+
Started DELETE "/gatherable/prices/0.json" for 127.0.0.1 at 2016-03-07 21:02:16 -0600
|
157411
|
+
Processing by Gatherable::PricesController#destroy as JSON
|
157412
|
+
Parameters: {"price_id"=>"0"}
|
157413
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 0]]
|
157414
|
+
Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms)
|
157415
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
157416
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
157417
|
+
Started DELETE "/gatherable/prices/0.json" for 127.0.0.1 at 2016-03-07 21:02:16 -0600
|
157418
|
+
Processing by Gatherable::PricesController#destroy as JSON
|
157419
|
+
Parameters: {"price_id"=>"0"}
|
157420
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 0]]
|
157421
|
+
Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms)
|
157422
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157423
|
+
[1m[35m (0.0ms)[0m BEGIN
|
157424
|
+
Started GET "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:02:16 -0600
|
157425
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157426
|
+
[1m[35m (0.1ms)[0m BEGIN
|
157427
|
+
Started GET "/gatherable/prices/1.json" for 127.0.0.1 at 2016-03-07 21:02:16 -0600
|
157428
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157429
|
+
[1m[35m (0.0ms)[0m BEGIN
|
157430
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:02:16 -0600
|
157431
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
157432
|
+
[1m[35m (0.0ms)[0m BEGIN
|
157433
|
+
Started PUT "/gatherable/prices/1.json" for 127.0.0.1 at 2016-03-07 21:02:16 -0600
|
157434
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157435
|
+
[1m[35m (0.0ms)[0m BEGIN
|
157436
|
+
Started DELETE "/gatherable/prices/1.json" for 127.0.0.1 at 2016-03-07 21:02:16 -0600
|
157437
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157438
|
+
[1m[35m (0.1ms)[0m BEGIN
|
157439
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157440
|
+
[1m[35m (0.1ms)[0m BEGIN
|
157441
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157442
|
+
[1m[35m (0.0ms)[0m BEGIN
|
157443
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
157444
|
+
[1m[35m (0.0ms)[0m BEGIN
|
157445
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157446
|
+
[1m[35m (0.1ms)[0m BEGIN
|
157447
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157448
|
+
[1m[35m (0.1ms)[0m BEGIN
|
157449
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157450
|
+
[1m[35m (0.1ms)[0m BEGIN
|
157451
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157452
|
+
[1m[35m (0.1ms)[0m BEGIN
|
157453
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157454
|
+
[1m[35m (0.0ms)[0m BEGIN
|
157455
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
157456
|
+
[1m[35m (0.1ms)[0m BEGIN
|
157457
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
157458
|
+
[1m[35m (0.0ms)[0m BEGIN
|
157459
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
157460
|
+
[1m[35m (0.0ms)[0m BEGIN
|
157461
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157462
|
+
[1m[35m (0.0ms)[0m BEGIN
|
157463
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
157464
|
+
[1m[35m (0.0ms)[0m BEGIN
|
157465
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
157466
|
+
[1m[35m (0.0ms)[0m BEGIN
|
157467
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157468
|
+
[1m[35m (0.0ms)[0m BEGIN
|
157469
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157470
|
+
[1m[35m (0.0ms)[0m BEGIN
|
157471
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
157472
|
+
[1m[35m (0.0ms)[0m BEGIN
|
157473
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157474
|
+
[1m[35m (0.0ms)[0m BEGIN
|
157475
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
157476
|
+
[1m[35m (0.0ms)[0m BEGIN
|
157477
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157478
|
+
[1m[35m (0.1ms)[0m BEGIN
|
157479
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157480
|
+
[1m[35m (0.1ms)[0m BEGIN
|
157481
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157482
|
+
[1m[35m (0.0ms)[0m BEGIN
|
157483
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157484
|
+
[1m[35m (0.0ms)[0m BEGIN
|
157485
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157486
|
+
[1m[35m (0.1ms)[0m BEGIN
|
157487
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157488
|
+
[1m[35m (0.1ms)[0m BEGIN
|
157489
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157490
|
+
[1m[35m (0.1ms)[0m BEGIN
|
157491
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157492
|
+
[1m[35m (0.1ms)[0m BEGIN
|
157493
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157494
|
+
[1m[35m (0.0ms)[0m BEGIN
|
157495
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157496
|
+
[1m[35m (0.0ms)[0m BEGIN
|
157497
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157498
|
+
[1m[35m (0.0ms)[0m BEGIN
|
157499
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157500
|
+
[1m[35m (0.0ms)[0m BEGIN
|
157501
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157502
|
+
[1m[35m (0.1ms)[0m BEGIN
|
157503
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157504
|
+
[1m[35m (0.0ms)[0m BEGIN
|
157505
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157506
|
+
[1m[35m (0.0ms)[0m BEGIN
|
157507
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157508
|
+
[1m[35m (0.0ms)[0m BEGIN
|
157509
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157510
|
+
[1m[35m (0.1ms)[0m BEGIN
|
157511
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157512
|
+
[1m[35m (0.1ms)[0m BEGIN
|
157513
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157514
|
+
[1m[35m (0.1ms)[0m BEGIN
|
157515
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
157516
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "gatherable"."prices" ("session_id", "created_at") VALUES ($1, $2) RETURNING "price_id" [["session_id", "1"], ["created_at", "2016-03-08 03:02:16.242687"]]
|
157517
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
157518
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
157519
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
157520
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
157521
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "gatherable"."prices" ("session_id", "price", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["session_id", "1"], ["price", "30.0"], ["created_at", "2016-03-08 03:02:16.244684"]]
|
157522
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
157523
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157524
|
+
[1m[35m (0.1ms)[0m BEGIN
|
157525
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157526
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
157527
|
+
[1m[36m (321.1ms)[0m [1mDROP DATABASE IF EXISTS "gatherable_test"[0m
|
157528
|
+
[1m[35m (789.1ms)[0m CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
|
157529
|
+
[1m[35m (17.5ms)[0m CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
|
157530
|
+
[1m[36m (8.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
157531
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
157532
|
+
Migrating to CreateGatherableSchema (20160307210314)
|
157533
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
157534
|
+
[1m[35m (0.2ms)[0m CREATE SCHEMA gatherable
|
157535
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20160307210314"]]
|
157536
|
+
[1m[35m (0.2ms)[0m COMMIT
|
157537
|
+
Migrating to CreateGatherablePrice (20160307210315)
|
157538
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
157539
|
+
[1m[35m (10.7ms)[0m CREATE TABLE "gatherable"."prices" ("price_id" serial primary key, "price" decimal NOT NULL, "session_id" character varying, "created_at" timestamp NOT NULL)
|
157540
|
+
[1m[36m (3.2ms)[0m [1mCREATE INDEX "index_gatherable.prices_on_session_id" ON "gatherable"."prices" ("session_id")[0m
|
157541
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160307210315"]]
|
157542
|
+
[1m[36m (0.4ms)[0m [1mCOMMIT[0m
|
157543
|
+
[1m[35m (1.7ms)[0m BEGIN
|
157544
|
+
Started GET "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:03:14 -0600
|
157545
|
+
Processing by Gatherable::PricesController#index as JSON
|
157546
|
+
Parameters: {"session_id"=>"session_id123"}
|
157547
|
+
Completed 302 Found in 7ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
157548
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157549
|
+
[1m[35m (0.1ms)[0m BEGIN
|
157550
|
+
Started GET "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:03:14 -0600
|
157551
|
+
Processing by Gatherable::PricesController#index as JSON
|
157552
|
+
Parameters: {"session_id"=>"session_id123"}
|
157553
|
+
Completed 302 Found in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
157554
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157555
|
+
[1m[35m (0.1ms)[0m BEGIN
|
157556
|
+
Started GET "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:03:14 -0600
|
157557
|
+
Processing by Gatherable::PricesController#index as JSON
|
157558
|
+
Parameters: {"session_id"=>"session_id123"}
|
157559
|
+
[1m[36mGatherable::Price Load (0.3ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1[0m [["session_id", "session_id123"]]
|
157560
|
+
Completed 302 Found in 3ms (Views: 0.8ms | ActiveRecord: 0.3ms)
|
157561
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
157562
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
157563
|
+
Started GET "/gatherable/session_id123123/prices.json" for 127.0.0.1 at 2016-03-07 21:03:14 -0600
|
157564
|
+
Processing by Gatherable::PricesController#index as JSON
|
157565
|
+
Parameters: {"session_id"=>"session_id123123"}
|
157566
|
+
Filter chain halted as :authenticate rendered or redirected
|
157567
|
+
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
|
157568
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
157569
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
157570
|
+
Started GET "/gatherable/session_id123123/prices.json" for 127.0.0.1 at 2016-03-07 21:03:14 -0600
|
157571
|
+
Processing by Gatherable::PricesController#index as JSON
|
157572
|
+
Parameters: {"session_id"=>"session_id123123"}
|
157573
|
+
Filter chain halted as :authenticate rendered or redirected
|
157574
|
+
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
|
157575
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
157576
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
157577
|
+
Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-03-07 21:03:14 -0600
|
157578
|
+
Processing by Gatherable::PricesController#show as JSON
|
157579
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
|
157580
|
+
Completed 302 Found in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
157581
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
157582
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
157583
|
+
Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-03-07 21:03:14 -0600
|
157584
|
+
Processing by Gatherable::PricesController#show as JSON
|
157585
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
|
157586
|
+
Completed 302 Found in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
157587
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
157588
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
157589
|
+
Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-03-07 21:03:14 -0600
|
157590
|
+
Processing by Gatherable::PricesController#show as JSON
|
157591
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
|
157592
|
+
Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
157593
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
157594
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
157595
|
+
Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-03-07 21:03:14 -0600
|
157596
|
+
Processing by Gatherable::PricesController#show as JSON
|
157597
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
|
157598
|
+
Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
157599
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
157600
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
157601
|
+
Started GET "/gatherable/session_id123123/prices.json" for 127.0.0.1 at 2016-03-07 21:03:14 -0600
|
157602
|
+
Processing by Gatherable::PricesController#index as JSON
|
157603
|
+
Parameters: {"session_id"=>"session_id123123"}
|
157604
|
+
Filter chain halted as :authenticate rendered or redirected
|
157605
|
+
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
|
157606
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
157607
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
157608
|
+
Started GET "/gatherable/session_id123123/prices.json" for 127.0.0.1 at 2016-03-07 21:03:14 -0600
|
157609
|
+
Processing by Gatherable::PricesController#index as JSON
|
157610
|
+
Parameters: {"session_id"=>"session_id123123"}
|
157611
|
+
Filter chain halted as :authenticate rendered or redirected
|
157612
|
+
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
|
157613
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
157614
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
157615
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:03:14 -0600
|
157616
|
+
Processing by Gatherable::PricesController#create as JSON
|
157617
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
157618
|
+
Completed 201 Created in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
157619
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
157620
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
157621
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:03:14 -0600
|
157622
|
+
Processing by Gatherable::PricesController#create as JSON
|
157623
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
157624
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
157625
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:03:14.724215"]]
|
157626
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
157627
|
+
Completed 201 Created in 3ms (Views: 0.2ms | ActiveRecord: 0.5ms)
|
157628
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157629
|
+
[1m[35m (0.1ms)[0m BEGIN
|
157630
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:03:14 -0600
|
157631
|
+
Processing by Gatherable::PricesController#create as JSON
|
157632
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
157633
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
157634
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:03:14.734182"]]
|
157635
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
157636
|
+
Completed 201 Created in 2ms (Views: 0.2ms | ActiveRecord: 0.3ms)
|
157637
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
157638
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
157639
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:03:14 -0600
|
157640
|
+
Processing by Gatherable::PricesController#create as JSON
|
157641
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
157642
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
157643
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:03:14.742984"]]
|
157644
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
157645
|
+
Completed 201 Created in 3ms (Views: 0.3ms | ActiveRecord: 0.4ms)
|
157646
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157647
|
+
[1m[35m (0.1ms)[0m BEGIN
|
157648
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:03:14 -0600
|
157649
|
+
Processing by Gatherable::PricesController#create as JSON
|
157650
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
157651
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
157652
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:03:14.753035"]]
|
157653
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
157654
|
+
Completed 201 Created in 2ms (Views: 0.2ms | ActiveRecord: 0.2ms)
|
157655
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
157656
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
157657
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:03:14 -0600
|
157658
|
+
Processing by Gatherable::PricesController#create as JSON
|
157659
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
157660
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
157661
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:03:14.762803"]]
|
157662
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
157663
|
+
Completed 201 Created in 2ms (Views: 0.2ms | ActiveRecord: 0.3ms)
|
157664
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157665
|
+
[1m[35m (0.0ms)[0m BEGIN
|
157666
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:03:14 -0600
|
157667
|
+
Processing by Gatherable::PricesController#create as JSON
|
157668
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
157669
|
+
[1m[36mGatherable::Price Load (0.2ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1 LIMIT 1[0m [["session_id", "session_id123"]]
|
157670
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
157671
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "gatherable"."prices" ("session_id", "price", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["session_id", "session_id123"], ["price", "3.0"], ["created_at", "2016-03-08 03:03:14.776366"]]
|
157672
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
157673
|
+
Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.5ms)
|
157674
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157675
|
+
[1m[35m (0.0ms)[0m BEGIN
|
157676
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
157677
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "76.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:03:14.782322"]]
|
157678
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
157679
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:03:14 -0600
|
157680
|
+
Processing by Gatherable::PricesController#create as JSON
|
157681
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
157682
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1 LIMIT 1 [["session_id", "session_id123"]]
|
157683
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
157684
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "gatherable"."prices" SET "price" = $1 WHERE "gatherable"."prices"."price_id" = $2 [["price", "3.0"], ["price_id", 7]]
|
157685
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
157686
|
+
Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.4ms)
|
157687
|
+
[1m[35mGatherable::Price Load (0.2ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 7]]
|
157688
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
157689
|
+
[1m[35m (0.1ms)[0m BEGIN
|
157690
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
157691
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "76.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:03:14.796007"]]
|
157692
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
157693
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "gatherable"."prices"
|
157694
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:03:14 -0600
|
157695
|
+
Processing by Gatherable::PricesController#create as JSON
|
157696
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
157697
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1 LIMIT 1[0m [["session_id", "session_id123"]]
|
157698
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
157699
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "gatherable"."prices" SET "price" = $1 WHERE "gatherable"."prices"."price_id" = $2[0m [["price", "3.0"], ["price_id", 8]]
|
157700
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
157701
|
+
Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.5ms)
|
157702
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "gatherable"."prices"[0m
|
157703
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
157704
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
157705
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "gatherable"."prices"
|
157706
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:03:14 -0600
|
157707
|
+
Processing by Gatherable::PricesController#create as JSON
|
157708
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
157709
|
+
[1m[36mGatherable::Price Load (0.2ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1 LIMIT 1[0m [["session_id", "session_id123"]]
|
157710
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
157711
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "gatherable"."prices" ("session_id", "price", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["session_id", "session_id123"], ["price", "3.0"], ["created_at", "2016-03-08 03:03:14.816371"]]
|
157712
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
157713
|
+
Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.5ms)
|
157714
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "gatherable"."prices"[0m
|
157715
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
157716
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
157717
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:03:14 -0600
|
157718
|
+
Processing by Gatherable::PricesController#create as JSON
|
157719
|
+
Parameters: {"yolo"=>"swag", "session_id"=>"session_id123"}
|
157720
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
157721
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
157722
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
157723
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:03:14 -0600
|
157724
|
+
Processing by Gatherable::PricesController#create as JSON
|
157725
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
157726
|
+
Completed 201 Created in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
157727
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
157728
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
157729
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:03:14 -0600
|
157730
|
+
Processing by Gatherable::PricesController#create as JSON
|
157731
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
157732
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
157733
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:03:14.842417"]]
|
157734
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
157735
|
+
Completed 201 Created in 3ms (Views: 0.2ms | ActiveRecord: 0.4ms)
|
157736
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157737
|
+
[1m[35m (0.1ms)[0m BEGIN
|
157738
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:03:14 -0600
|
157739
|
+
Processing by Gatherable::PricesController#create as JSON
|
157740
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
157741
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
157742
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:03:14.852209"]]
|
157743
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
157744
|
+
Completed 201 Created in 2ms (Views: 0.2ms | ActiveRecord: 0.3ms)
|
157745
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
157746
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
157747
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:03:14 -0600
|
157748
|
+
Processing by Gatherable::PricesController#create as JSON
|
157749
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
157750
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
157751
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:03:14.863851"]]
|
157752
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
157753
|
+
Completed 201 Created in 2ms (Views: 0.2ms | ActiveRecord: 0.3ms)
|
157754
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157755
|
+
[1m[35m (0.0ms)[0m BEGIN
|
157756
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:03:14 -0600
|
157757
|
+
Processing by Gatherable::PricesController#create as JSON
|
157758
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
157759
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
157760
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:03:14.873236"]]
|
157761
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
157762
|
+
Completed 201 Created in 2ms (Views: 0.2ms | ActiveRecord: 0.3ms)
|
157763
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
157764
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
157765
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:03:14 -0600
|
157766
|
+
Processing by Gatherable::PricesController#create as JSON
|
157767
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
157768
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
157769
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:03:14.883420"]]
|
157770
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
157771
|
+
Completed 201 Created in 2ms (Views: 0.2ms | ActiveRecord: 0.3ms)
|
157772
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157773
|
+
[1m[35m (0.0ms)[0m BEGIN
|
157774
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:03:14 -0600
|
157775
|
+
Processing by Gatherable::PricesController#create as JSON
|
157776
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
157777
|
+
[1m[36mGatherable::Price Load (0.2ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1 LIMIT 1[0m [["session_id", "session_id123"]]
|
157778
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
157779
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "gatherable"."prices" ("session_id", "price", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["session_id", "session_id123"], ["price", "3.0"], ["created_at", "2016-03-08 03:03:14.895830"]]
|
157780
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
157781
|
+
Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.4ms)
|
157782
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157783
|
+
[1m[35m (0.0ms)[0m BEGIN
|
157784
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
157785
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "76.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:03:14.901030"]]
|
157786
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
157787
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:03:14 -0600
|
157788
|
+
Processing by Gatherable::PricesController#create as JSON
|
157789
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
157790
|
+
[1m[35mGatherable::Price Load (0.2ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1 LIMIT 1 [["session_id", "session_id123"]]
|
157791
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
157792
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "gatherable"."prices" SET "price" = $1 WHERE "gatherable"."prices"."price_id" = $2 [["price", "3.0"], ["price_id", 16]]
|
157793
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
157794
|
+
Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.6ms)
|
157795
|
+
[1m[35mGatherable::Price Load (0.3ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 16]]
|
157796
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157797
|
+
[1m[35m (0.1ms)[0m BEGIN
|
157798
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
157799
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "76.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:03:14.921572"]]
|
157800
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
157801
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "gatherable"."prices"
|
157802
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:03:14 -0600
|
157803
|
+
Processing by Gatherable::PricesController#create as JSON
|
157804
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
157805
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1 LIMIT 1[0m [["session_id", "session_id123"]]
|
157806
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
157807
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "gatherable"."prices" SET "price" = $1 WHERE "gatherable"."prices"."price_id" = $2[0m [["price", "3.0"], ["price_id", 17]]
|
157808
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
157809
|
+
Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.4ms)
|
157810
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "gatherable"."prices"[0m
|
157811
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
157812
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
157813
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "gatherable"."prices"
|
157814
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:03:14 -0600
|
157815
|
+
Processing by Gatherable::PricesController#create as JSON
|
157816
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
157817
|
+
[1m[36mGatherable::Price Load (0.2ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1 LIMIT 1[0m [["session_id", "session_id123"]]
|
157818
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
157819
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "gatherable"."prices" ("session_id", "price", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["session_id", "session_id123"], ["price", "3.0"], ["created_at", "2016-03-08 03:03:14.945262"]]
|
157820
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
157821
|
+
Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.5ms)
|
157822
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "gatherable"."prices"[0m
|
157823
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
157824
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
157825
|
+
Started POST "/gatherable/session_id123123/prices.json" for 127.0.0.1 at 2016-03-07 21:03:14 -0600
|
157826
|
+
Processing by Gatherable::PricesController#create as JSON
|
157827
|
+
Parameters: {"session_id"=>"session_id123123"}
|
157828
|
+
Filter chain halted as :authenticate rendered or redirected
|
157829
|
+
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
|
157830
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
157831
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
157832
|
+
Started POST "/gatherable/session_id123123/prices.json" for 127.0.0.1 at 2016-03-07 21:03:14 -0600
|
157833
|
+
Processing by Gatherable::PricesController#create as JSON
|
157834
|
+
Parameters: {"session_id"=>"session_id123123"}
|
157835
|
+
Filter chain halted as :authenticate rendered or redirected
|
157836
|
+
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
|
157837
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
157838
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
157839
|
+
Started POST "/gatherable/session_id123123/prices.json" for 127.0.0.1 at 2016-03-07 21:03:14 -0600
|
157840
|
+
Processing by Gatherable::PricesController#create as JSON
|
157841
|
+
Parameters: {"session_id"=>"session_id123123"}
|
157842
|
+
Filter chain halted as :authenticate rendered or redirected
|
157843
|
+
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
|
157844
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "gatherable"."prices"
|
157845
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "gatherable"."prices"[0m
|
157846
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
157847
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
157848
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
157849
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "price_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["price_id", 1], ["created_at", "2016-03-08 03:03:14.986479"]]
|
157850
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
157851
|
+
Started PUT "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-03-07 21:03:14 -0600
|
157852
|
+
Processing by Gatherable::PricesController#update as JSON
|
157853
|
+
Parameters: {"price"=>{"price"=>"4.0"}, "session_id"=>"session_id123", "price_id"=>"1"}
|
157854
|
+
[1m[36mGatherable::Price Load (0.2ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 1]]
|
157855
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
157856
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "gatherable"."prices" SET "price" = $1, "session_id" = $2 WHERE "gatherable"."prices"."price_id" = $3[0m [["price", "4.0"], ["session_id", "session_id123"], ["price_id", 1]]
|
157857
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
157858
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 1]]
|
157859
|
+
Completed 200 OK in 5ms (Views: 0.3ms | ActiveRecord: 0.6ms)
|
157860
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 1]]
|
157861
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157862
|
+
[1m[35m (0.0ms)[0m BEGIN
|
157863
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
157864
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "gatherable"."prices" ("price", "price_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["price_id", 1], ["created_at", "2016-03-08 03:03:15.003736"]]
|
157865
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
157866
|
+
Started PUT "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-03-07 21:03:15 -0600
|
157867
|
+
Processing by Gatherable::PricesController#update as JSON
|
157868
|
+
Parameters: {"price"=>{"price"=>"4.0"}, "session_id"=>"session_id123", "price_id"=>"1"}
|
157869
|
+
[1m[35mGatherable::Price Load (0.2ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 1]]
|
157870
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
157871
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "gatherable"."prices" SET "price" = $1, "session_id" = $2 WHERE "gatherable"."prices"."price_id" = $3 [["price", "4.0"], ["session_id", "session_id123"], ["price_id", 1]]
|
157872
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
157873
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 1]]
|
157874
|
+
Completed 200 OK in 5ms (Views: 0.3ms | ActiveRecord: 0.7ms)
|
157875
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157876
|
+
[1m[35m (0.0ms)[0m BEGIN
|
157877
|
+
Started PUT "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-03-07 21:03:15 -0600
|
157878
|
+
Processing by Gatherable::PricesController#update as JSON
|
157879
|
+
Parameters: {"price"=>"2016-03-07", "session_id"=>"session_id123", "price_id"=>"1"}
|
157880
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
157881
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157882
|
+
[1m[35m (0.1ms)[0m BEGIN
|
157883
|
+
Started PUT "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-03-07 21:03:15 -0600
|
157884
|
+
Processing by Gatherable::PricesController#update as JSON
|
157885
|
+
Parameters: {"price"=>"2016-03-07", "session_id"=>"session_id123", "price_id"=>"1"}
|
157886
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
157887
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157888
|
+
[1m[35m (0.0ms)[0m BEGIN
|
157889
|
+
Started PUT "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-03-07 21:03:15 -0600
|
157890
|
+
Processing by Gatherable::PricesController#update as JSON
|
157891
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
|
157892
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 0]]
|
157893
|
+
Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms)
|
157894
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
157895
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
157896
|
+
Started PUT "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-03-07 21:03:15 -0600
|
157897
|
+
Processing by Gatherable::PricesController#update as JSON
|
157898
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
|
157899
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 0]]
|
157900
|
+
Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms)
|
157901
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157902
|
+
[1m[35m (0.0ms)[0m BEGIN
|
157903
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
157904
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:03:15.053518"]]
|
157905
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
157906
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 19]]
|
157907
|
+
Started PUT "/gatherable/session_id123123/prices/19.json" for 127.0.0.1 at 2016-03-07 21:03:15 -0600
|
157908
|
+
Processing by Gatherable::PricesController#update as JSON
|
157909
|
+
Parameters: {"session_id"=>"session_id123123", "price_id"=>"19"}
|
157910
|
+
Filter chain halted as :authenticate rendered or redirected
|
157911
|
+
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
|
157912
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157913
|
+
[1m[35m (0.0ms)[0m BEGIN
|
157914
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
157915
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:03:15.066250"]]
|
157916
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
157917
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 20]]
|
157918
|
+
Started PUT "/gatherable/session_id123123/prices/20.json" for 127.0.0.1 at 2016-03-07 21:03:15 -0600
|
157919
|
+
Processing by Gatherable::PricesController#update as JSON
|
157920
|
+
Parameters: {"session_id"=>"session_id123123", "price_id"=>"20"}
|
157921
|
+
Filter chain halted as :authenticate rendered or redirected
|
157922
|
+
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
|
157923
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157924
|
+
[1m[35m (0.1ms)[0m BEGIN
|
157925
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
157926
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:03:15.078557"]]
|
157927
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
157928
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 21]]
|
157929
|
+
Started PUT "/gatherable/session_id123123/prices/21.json" for 127.0.0.1 at 2016-03-07 21:03:15 -0600
|
157930
|
+
Processing by Gatherable::PricesController#update as JSON
|
157931
|
+
Parameters: {"session_id"=>"session_id123123", "price_id"=>"21"}
|
157932
|
+
Filter chain halted as :authenticate rendered or redirected
|
157933
|
+
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
|
157934
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 21]]
|
157935
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
157936
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
157937
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
157938
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:03:15.089228"]]
|
157939
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
157940
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 22]]
|
157941
|
+
Started DELETE "/gatherable/session_id123/prices/22.json" for 127.0.0.1 at 2016-03-07 21:03:15 -0600
|
157942
|
+
Processing by Gatherable::PricesController#destroy as JSON
|
157943
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"22"}
|
157944
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 22]]
|
157945
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1[0m [["price_id", 22]]
|
157946
|
+
Completed 204 No Content in 2ms (ActiveRecord: 0.3ms)
|
157947
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 [["price_id", 22]]
|
157948
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157949
|
+
[1m[35m (0.0ms)[0m BEGIN
|
157950
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
157951
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:03:15.102368"]]
|
157952
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
157953
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 23]]
|
157954
|
+
Started DELETE "/gatherable/session_id123/prices/23.json" for 127.0.0.1 at 2016-03-07 21:03:15 -0600
|
157955
|
+
Processing by Gatherable::PricesController#destroy as JSON
|
157956
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"23"}
|
157957
|
+
[1m[36mGatherable::Price Load (0.2ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 23]]
|
157958
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 [["price_id", 23]]
|
157959
|
+
Completed 204 No Content in 2ms (ActiveRecord: 0.4ms)
|
157960
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157961
|
+
[1m[35m (0.1ms)[0m BEGIN
|
157962
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
157963
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:03:15.112676"]]
|
157964
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
157965
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 24]]
|
157966
|
+
Started DELETE "/gatherable/session_id123/prices/24.json" for 127.0.0.1 at 2016-03-07 21:03:15 -0600
|
157967
|
+
Processing by Gatherable::PricesController#destroy as JSON
|
157968
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"24"}
|
157969
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 24]]
|
157970
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 [["price_id", 24]]
|
157971
|
+
Completed 204 No Content in 1ms (ActiveRecord: 0.3ms)
|
157972
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157973
|
+
[1m[35m (0.0ms)[0m BEGIN
|
157974
|
+
Started DELETE "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-03-07 21:03:15 -0600
|
157975
|
+
Processing by Gatherable::PricesController#destroy as JSON
|
157976
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
|
157977
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 0]]
|
157978
|
+
Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms)
|
157979
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
157980
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
157981
|
+
Started DELETE "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-03-07 21:03:15 -0600
|
157982
|
+
Processing by Gatherable::PricesController#destroy as JSON
|
157983
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
|
157984
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 0]]
|
157985
|
+
Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms)
|
157986
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157987
|
+
[1m[35m (0.0ms)[0m BEGIN
|
157988
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
157989
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:03:15.140703"]]
|
157990
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
157991
|
+
[1m[35mGatherable::Price Load (0.2ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 25]]
|
157992
|
+
Started DELETE "/gatherable/session_id123123/prices/25.json" for 127.0.0.1 at 2016-03-07 21:03:15 -0600
|
157993
|
+
Processing by Gatherable::PricesController#destroy as JSON
|
157994
|
+
Parameters: {"session_id"=>"session_id123123", "price_id"=>"25"}
|
157995
|
+
Filter chain halted as :authenticate rendered or redirected
|
157996
|
+
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
|
157997
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
157998
|
+
[1m[35m (0.0ms)[0m BEGIN
|
157999
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
158000
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:03:15.153439"]]
|
158001
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
158002
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 26]]
|
158003
|
+
Started DELETE "/gatherable/session_id123123/prices/26.json" for 127.0.0.1 at 2016-03-07 21:03:15 -0600
|
158004
|
+
Processing by Gatherable::PricesController#destroy as JSON
|
158005
|
+
Parameters: {"session_id"=>"session_id123123", "price_id"=>"26"}
|
158006
|
+
Filter chain halted as :authenticate rendered or redirected
|
158007
|
+
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
|
158008
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158009
|
+
[1m[35m (0.0ms)[0m BEGIN
|
158010
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
158011
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:03:15.165132"]]
|
158012
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
158013
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 27]]
|
158014
|
+
Started DELETE "/gatherable/session_id123123/prices/27.json" for 127.0.0.1 at 2016-03-07 21:03:15 -0600
|
158015
|
+
Processing by Gatherable::PricesController#destroy as JSON
|
158016
|
+
Parameters: {"session_id"=>"session_id123123", "price_id"=>"27"}
|
158017
|
+
Filter chain halted as :authenticate rendered or redirected
|
158018
|
+
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
|
158019
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
158020
|
+
[1m[35m (0.1ms)[0m BEGIN
|
158021
|
+
Started GET "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:03:15 -0600
|
158022
|
+
Processing by Gatherable::PricesController#index as JSON
|
158023
|
+
Completed 302 Found in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
158024
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158025
|
+
[1m[35m (0.0ms)[0m BEGIN
|
158026
|
+
Started GET "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:03:15 -0600
|
158027
|
+
Processing by Gatherable::PricesController#index as JSON
|
158028
|
+
Completed 302 Found in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
158029
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158030
|
+
[1m[35m (0.1ms)[0m BEGIN
|
158031
|
+
Started GET "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:03:15 -0600
|
158032
|
+
Processing by Gatherable::PricesController#index as JSON
|
158033
|
+
[1m[36mGatherable::Price Load (0.2ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1[0m [["session_id", "session_id123"]]
|
158034
|
+
Completed 302 Found in 1ms (Views: 0.5ms | ActiveRecord: 0.2ms)
|
158035
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158036
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
158037
|
+
Started GET "/gatherable/prices/1.json" for 127.0.0.1 at 2016-03-07 21:03:15 -0600
|
158038
|
+
Processing by Gatherable::PricesController#show as JSON
|
158039
|
+
Parameters: {"price_id"=>"1"}
|
158040
|
+
Completed 302 Found in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
158041
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158042
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
158043
|
+
Started GET "/gatherable/prices/1.json" for 127.0.0.1 at 2016-03-07 21:03:15 -0600
|
158044
|
+
Processing by Gatherable::PricesController#show as JSON
|
158045
|
+
Parameters: {"price_id"=>"1"}
|
158046
|
+
Completed 302 Found in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
158047
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158048
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
158049
|
+
Started GET "/gatherable/prices/0.json" for 127.0.0.1 at 2016-03-07 21:03:15 -0600
|
158050
|
+
Processing by Gatherable::PricesController#show as JSON
|
158051
|
+
Parameters: {"price_id"=>"0"}
|
158052
|
+
Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
158053
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158054
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
158055
|
+
Started GET "/gatherable/prices/0.json" for 127.0.0.1 at 2016-03-07 21:03:15 -0600
|
158056
|
+
Processing by Gatherable::PricesController#show as JSON
|
158057
|
+
Parameters: {"price_id"=>"0"}
|
158058
|
+
Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
158059
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158060
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
158061
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:03:15 -0600
|
158062
|
+
Processing by Gatherable::PricesController#create as JSON
|
158063
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
158064
|
+
Completed 201 Created in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
158065
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158066
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
158067
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:03:15 -0600
|
158068
|
+
Processing by Gatherable::PricesController#create as JSON
|
158069
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
158070
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
158071
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:03:15.250608"]]
|
158072
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
158073
|
+
Completed 201 Created in 3ms (Views: 0.2ms | ActiveRecord: 0.3ms)
|
158074
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158075
|
+
[1m[35m (0.0ms)[0m BEGIN
|
158076
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:03:15 -0600
|
158077
|
+
Processing by Gatherable::PricesController#create as JSON
|
158078
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
158079
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
158080
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:03:15.260254"]]
|
158081
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
158082
|
+
Completed 201 Created in 2ms (Views: 0.2ms | ActiveRecord: 0.3ms)
|
158083
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158084
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
158085
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:03:15 -0600
|
158086
|
+
Processing by Gatherable::PricesController#create as JSON
|
158087
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
158088
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
158089
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:03:15.269987"]]
|
158090
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
158091
|
+
Completed 201 Created in 2ms (Views: 0.2ms | ActiveRecord: 0.3ms)
|
158092
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158093
|
+
[1m[35m (0.1ms)[0m BEGIN
|
158094
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:03:15 -0600
|
158095
|
+
Processing by Gatherable::PricesController#create as JSON
|
158096
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
158097
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
158098
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:03:15.280075"]]
|
158099
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
158100
|
+
Completed 201 Created in 2ms (Views: 0.2ms | ActiveRecord: 0.3ms)
|
158101
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158102
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
158103
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:03:15 -0600
|
158104
|
+
Processing by Gatherable::PricesController#create as JSON
|
158105
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
158106
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
158107
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:03:15.287900"]]
|
158108
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
158109
|
+
Completed 201 Created in 2ms (Views: 0.3ms | ActiveRecord: 0.2ms)
|
158110
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158111
|
+
[1m[35m (0.1ms)[0m BEGIN
|
158112
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:03:15 -0600
|
158113
|
+
Processing by Gatherable::PricesController#create as JSON
|
158114
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
158115
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1 LIMIT 1[0m [["session_id", "session_id123"]]
|
158116
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
158117
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "gatherable"."prices" ("session_id", "price", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["session_id", "session_id123"], ["price", "3.0"], ["created_at", "2016-03-08 03:03:15.299911"]]
|
158118
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
158119
|
+
Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.5ms)
|
158120
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158121
|
+
[1m[35m (0.1ms)[0m BEGIN
|
158122
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
158123
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "76.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:03:15.306058"]]
|
158124
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
158125
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:03:15 -0600
|
158126
|
+
Processing by Gatherable::PricesController#create as JSON
|
158127
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
158128
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1 LIMIT 1 [["session_id", "session_id123"]]
|
158129
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
158130
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "gatherable"."prices" SET "price" = $1 WHERE "gatherable"."prices"."price_id" = $2 [["price", "3.0"], ["price_id", 34]]
|
158131
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
158132
|
+
Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.4ms)
|
158133
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 34]]
|
158134
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158135
|
+
[1m[35m (0.0ms)[0m BEGIN
|
158136
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
158137
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "76.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:03:15.317642"]]
|
158138
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
158139
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "gatherable"."prices"
|
158140
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:03:15 -0600
|
158141
|
+
Processing by Gatherable::PricesController#create as JSON
|
158142
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
158143
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1 LIMIT 1[0m [["session_id", "session_id123"]]
|
158144
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
158145
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "gatherable"."prices" SET "price" = $1 WHERE "gatherable"."prices"."price_id" = $2[0m [["price", "3.0"], ["price_id", 35]]
|
158146
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
158147
|
+
Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.5ms)
|
158148
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "gatherable"."prices"[0m
|
158149
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158150
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
158151
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "gatherable"."prices"
|
158152
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:03:15 -0600
|
158153
|
+
Processing by Gatherable::PricesController#create as JSON
|
158154
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
158155
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1 LIMIT 1[0m [["session_id", "session_id123"]]
|
158156
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
158157
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "gatherable"."prices" ("session_id", "price", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["session_id", "session_id123"], ["price", "3.0"], ["created_at", "2016-03-08 03:03:15.335517"]]
|
158158
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
158159
|
+
Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.3ms)
|
158160
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "gatherable"."prices"[0m
|
158161
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158162
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
158163
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:03:15 -0600
|
158164
|
+
Processing by Gatherable::PricesController#create as JSON
|
158165
|
+
Parameters: {"yolo"=>"swag"}
|
158166
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
158167
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158168
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
158169
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:03:15 -0600
|
158170
|
+
Processing by Gatherable::PricesController#create as JSON
|
158171
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
158172
|
+
Completed 201 Created in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
158173
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158174
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
158175
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:03:15 -0600
|
158176
|
+
Processing by Gatherable::PricesController#create as JSON
|
158177
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
158178
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
158179
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:03:15.360135"]]
|
158180
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
158181
|
+
Completed 201 Created in 3ms (Views: 0.2ms | ActiveRecord: 0.4ms)
|
158182
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158183
|
+
[1m[35m (0.0ms)[0m BEGIN
|
158184
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:03:15 -0600
|
158185
|
+
Processing by Gatherable::PricesController#create as JSON
|
158186
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
158187
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
158188
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:03:15.369028"]]
|
158189
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
158190
|
+
Completed 201 Created in 2ms (Views: 0.2ms | ActiveRecord: 0.3ms)
|
158191
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158192
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
158193
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:03:15 -0600
|
158194
|
+
Processing by Gatherable::PricesController#create as JSON
|
158195
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
158196
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
158197
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:03:15.378480"]]
|
158198
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
158199
|
+
Completed 201 Created in 2ms (Views: 0.2ms | ActiveRecord: 0.3ms)
|
158200
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158201
|
+
[1m[35m (0.0ms)[0m BEGIN
|
158202
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:03:15 -0600
|
158203
|
+
Processing by Gatherable::PricesController#create as JSON
|
158204
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
158205
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
158206
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:03:15.386533"]]
|
158207
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
158208
|
+
Completed 201 Created in 2ms (Views: 0.2ms | ActiveRecord: 0.2ms)
|
158209
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158210
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
158211
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:03:15 -0600
|
158212
|
+
Processing by Gatherable::PricesController#create as JSON
|
158213
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
158214
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
158215
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:03:15.401668"]]
|
158216
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
158217
|
+
Completed 201 Created in 2ms (Views: 0.2ms | ActiveRecord: 0.3ms)
|
158218
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158219
|
+
[1m[35m (0.0ms)[0m BEGIN
|
158220
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:03:15 -0600
|
158221
|
+
Processing by Gatherable::PricesController#create as JSON
|
158222
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
158223
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1 LIMIT 1[0m [["session_id", "session_id123"]]
|
158224
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
158225
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "gatherable"."prices" ("session_id", "price", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["session_id", "session_id123"], ["price", "3.0"], ["created_at", "2016-03-08 03:03:15.413019"]]
|
158226
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
158227
|
+
Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.3ms)
|
158228
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158229
|
+
[1m[35m (0.0ms)[0m BEGIN
|
158230
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
158231
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "76.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:03:15.419019"]]
|
158232
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
158233
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:03:15 -0600
|
158234
|
+
Processing by Gatherable::PricesController#create as JSON
|
158235
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
158236
|
+
[1m[35mGatherable::Price Load (0.2ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1 LIMIT 1 [["session_id", "session_id123"]]
|
158237
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
158238
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "gatherable"."prices" SET "price" = $1 WHERE "gatherable"."prices"."price_id" = $2 [["price", "3.0"], ["price_id", 43]]
|
158239
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
158240
|
+
Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.5ms)
|
158241
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 43]]
|
158242
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158243
|
+
[1m[35m (0.0ms)[0m BEGIN
|
158244
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
158245
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "76.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:03:15.434122"]]
|
158246
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
158247
|
+
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "gatherable"."prices"
|
158248
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:03:15 -0600
|
158249
|
+
Processing by Gatherable::PricesController#create as JSON
|
158250
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
158251
|
+
[1m[36mGatherable::Price Load (0.2ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1 LIMIT 1[0m [["session_id", "session_id123"]]
|
158252
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
158253
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "gatherable"."prices" SET "price" = $1 WHERE "gatherable"."prices"."price_id" = $2[0m [["price", "3.0"], ["price_id", 44]]
|
158254
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
158255
|
+
Completed 200 OK in 5ms (Views: 0.3ms | ActiveRecord: 0.7ms)
|
158256
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "gatherable"."prices"[0m
|
158257
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158258
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
158259
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "gatherable"."prices"
|
158260
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:03:15 -0600
|
158261
|
+
Processing by Gatherable::PricesController#create as JSON
|
158262
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
158263
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1 LIMIT 1[0m [["session_id", "session_id123"]]
|
158264
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
158265
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "gatherable"."prices" ("session_id", "price", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["session_id", "session_id123"], ["price", "3.0"], ["created_at", "2016-03-08 03:03:15.457951"]]
|
158266
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
158267
|
+
Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.4ms)
|
158268
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "gatherable"."prices"[0m
|
158269
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158270
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
158271
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
158272
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "price_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["price_id", 1], ["created_at", "2016-03-08 03:03:15.463293"]]
|
158273
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
158274
|
+
Started PUT "/gatherable/prices/1.json" for 127.0.0.1 at 2016-03-07 21:03:15 -0600
|
158275
|
+
Processing by Gatherable::PricesController#update as JSON
|
158276
|
+
Parameters: {"price"=>{"price"=>"4.0"}, "price_id"=>"1"}
|
158277
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 1]]
|
158278
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
158279
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "gatherable"."prices" SET "price" = $1, "session_id" = $2 WHERE "gatherable"."prices"."price_id" = $3[0m [["price", "4.0"], ["session_id", "session_id123"], ["price_id", 1]]
|
158280
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
158281
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 1]]
|
158282
|
+
Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.5ms)
|
158283
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 1]]
|
158284
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158285
|
+
[1m[35m (0.1ms)[0m BEGIN
|
158286
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
158287
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "gatherable"."prices" ("price", "price_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["price_id", 1], ["created_at", "2016-03-08 03:03:15.477524"]]
|
158288
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
158289
|
+
Started PUT "/gatherable/prices/1.json" for 127.0.0.1 at 2016-03-07 21:03:15 -0600
|
158290
|
+
Processing by Gatherable::PricesController#update as JSON
|
158291
|
+
Parameters: {"price"=>{"price"=>"4.0"}, "price_id"=>"1"}
|
158292
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 1]]
|
158293
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
158294
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "gatherable"."prices" SET "price" = $1, "session_id" = $2 WHERE "gatherable"."prices"."price_id" = $3 [["price", "4.0"], ["session_id", "session_id123"], ["price_id", 1]]
|
158295
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
158296
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 1]]
|
158297
|
+
Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.4ms)
|
158298
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158299
|
+
[1m[35m (0.0ms)[0m BEGIN
|
158300
|
+
Started PUT "/gatherable/prices/1.json" for 127.0.0.1 at 2016-03-07 21:03:15 -0600
|
158301
|
+
Processing by Gatherable::PricesController#update as JSON
|
158302
|
+
Parameters: {"price"=>"2016-03-07", "price_id"=>"1"}
|
158303
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
158304
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
158305
|
+
[1m[35m (0.1ms)[0m BEGIN
|
158306
|
+
Started PUT "/gatherable/prices/1.json" for 127.0.0.1 at 2016-03-07 21:03:15 -0600
|
158307
|
+
Processing by Gatherable::PricesController#update as JSON
|
158308
|
+
Parameters: {"price"=>"2016-03-07", "price_id"=>"1"}
|
158309
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
158310
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158311
|
+
[1m[35m (0.1ms)[0m BEGIN
|
158312
|
+
Started PUT "/gatherable/prices/0.json" for 127.0.0.1 at 2016-03-07 21:03:15 -0600
|
158313
|
+
Processing by Gatherable::PricesController#update as JSON
|
158314
|
+
Parameters: {"price_id"=>"0"}
|
158315
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 0]]
|
158316
|
+
Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms)
|
158317
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158318
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
158319
|
+
Started PUT "/gatherable/prices/0.json" for 127.0.0.1 at 2016-03-07 21:03:15 -0600
|
158320
|
+
Processing by Gatherable::PricesController#update as JSON
|
158321
|
+
Parameters: {"price_id"=>"0"}
|
158322
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 0]]
|
158323
|
+
Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms)
|
158324
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158325
|
+
[1m[35m (0.0ms)[0m BEGIN
|
158326
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
158327
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:03:15.525277"]]
|
158328
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
158329
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 46]]
|
158330
|
+
Started DELETE "/gatherable/prices/46.json" for 127.0.0.1 at 2016-03-07 21:03:15 -0600
|
158331
|
+
Processing by Gatherable::PricesController#destroy as JSON
|
158332
|
+
Parameters: {"price_id"=>"46"}
|
158333
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 46]]
|
158334
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 [["price_id", 46]]
|
158335
|
+
Completed 204 No Content in 2ms (ActiveRecord: 0.3ms)
|
158336
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1[0m [["price_id", 46]]
|
158337
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158338
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
158339
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
158340
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:03:15.536710"]]
|
158341
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
158342
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 47]]
|
158343
|
+
Started DELETE "/gatherable/prices/47.json" for 127.0.0.1 at 2016-03-07 21:03:15 -0600
|
158344
|
+
Processing by Gatherable::PricesController#destroy as JSON
|
158345
|
+
Parameters: {"price_id"=>"47"}
|
158346
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 47]]
|
158347
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1[0m [["price_id", 47]]
|
158348
|
+
Completed 204 No Content in 1ms (ActiveRecord: 0.3ms)
|
158349
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158350
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
158351
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
158352
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:03:15.546437"]]
|
158353
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
158354
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 48]]
|
158355
|
+
Started DELETE "/gatherable/prices/48.json" for 127.0.0.1 at 2016-03-07 21:03:15 -0600
|
158356
|
+
Processing by Gatherable::PricesController#destroy as JSON
|
158357
|
+
Parameters: {"price_id"=>"48"}
|
158358
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 48]]
|
158359
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1[0m [["price_id", 48]]
|
158360
|
+
Completed 204 No Content in 1ms (ActiveRecord: 0.3ms)
|
158361
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158362
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
158363
|
+
Started DELETE "/gatherable/prices/0.json" for 127.0.0.1 at 2016-03-07 21:03:15 -0600
|
158364
|
+
Processing by Gatherable::PricesController#destroy as JSON
|
158365
|
+
Parameters: {"price_id"=>"0"}
|
158366
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 0]]
|
158367
|
+
Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms)
|
158368
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158369
|
+
[1m[35m (0.0ms)[0m BEGIN
|
158370
|
+
Started DELETE "/gatherable/prices/0.json" for 127.0.0.1 at 2016-03-07 21:03:15 -0600
|
158371
|
+
Processing by Gatherable::PricesController#destroy as JSON
|
158372
|
+
Parameters: {"price_id"=>"0"}
|
158373
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 0]]
|
158374
|
+
Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms)
|
158375
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158376
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
158377
|
+
Started GET "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:03:15 -0600
|
158378
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158379
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
158380
|
+
Started GET "/gatherable/prices/1.json" for 127.0.0.1 at 2016-03-07 21:03:15 -0600
|
158381
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158382
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
158383
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:03:15 -0600
|
158384
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158385
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
158386
|
+
Started PUT "/gatherable/prices/1.json" for 127.0.0.1 at 2016-03-07 21:03:15 -0600
|
158387
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158388
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
158389
|
+
Started DELETE "/gatherable/prices/1.json" for 127.0.0.1 at 2016-03-07 21:03:15 -0600
|
158390
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158391
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
158392
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158393
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
158394
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
158395
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
158396
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
158397
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
158398
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
158399
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
158400
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158401
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
158402
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158403
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
158404
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158405
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
158406
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158407
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
158408
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158409
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
158410
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158411
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
158412
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
158413
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
158414
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158415
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
158416
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
158417
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
158418
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
158419
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
158420
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
158421
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
158422
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158423
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
158424
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
158425
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
158426
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
158427
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
158428
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
158429
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
158430
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158431
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
158432
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158433
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
158434
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158435
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
158436
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158437
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
158438
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158439
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
158440
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158441
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
158442
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158443
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
158444
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158445
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
158446
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158447
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
158448
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158449
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
158450
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158451
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
158452
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158453
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
158454
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158455
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
158456
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158457
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
158458
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158459
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
158460
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158461
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
158462
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158463
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
158464
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158465
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
158466
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158467
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
158468
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
158469
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "gatherable"."prices" ("session_id", "created_at") VALUES ($1, $2) RETURNING "price_id"[0m [["session_id", "1"], ["created_at", "2016-03-08 03:03:15.704813"]]
|
158470
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
158471
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158472
|
+
[1m[35m (0.1ms)[0m BEGIN
|
158473
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
158474
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "gatherable"."prices" ("session_id", "price", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["session_id", "1"], ["price", "30.0"], ["created_at", "2016-03-08 03:03:15.706917"]]
|
158475
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
158476
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158477
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
158478
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158479
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
158480
|
+
[1m[36m (322.1ms)[0m [1mDROP DATABASE IF EXISTS "gatherable_test"[0m
|
158481
|
+
[1m[35m (813.4ms)[0m CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
|
158482
|
+
[1m[35m (19.5ms)[0m CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
|
158483
|
+
[1m[36m (5.7ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
158484
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.4ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
158485
|
+
Migrating to CreateGatherableSchema (20160307210649)
|
158486
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
158487
|
+
[1m[35m (0.3ms)[0m CREATE SCHEMA gatherable
|
158488
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20160307210649"]]
|
158489
|
+
[1m[35m (0.3ms)[0m COMMIT
|
158490
|
+
Migrating to CreateGatherablePrice (20160307210650)
|
158491
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
158492
|
+
[1m[35m (10.0ms)[0m CREATE TABLE "gatherable"."prices" ("price_id" serial primary key, "price" decimal NOT NULL, "session_id" character varying, "created_at" timestamp NOT NULL)
|
158493
|
+
[1m[36m (2.8ms)[0m [1mCREATE INDEX "index_gatherable.prices_on_session_id" ON "gatherable"."prices" ("session_id")[0m
|
158494
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160307210650"]]
|
158495
|
+
[1m[36m (0.4ms)[0m [1mCOMMIT[0m
|
158496
|
+
[1m[35m (1.7ms)[0m BEGIN
|
158497
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158498
|
+
[1m[35m (0.1ms)[0m BEGIN
|
158499
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158500
|
+
[1m[35m (0.0ms)[0m BEGIN
|
158501
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158502
|
+
[1m[35m (0.0ms)[0m BEGIN
|
158503
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158504
|
+
[1m[35m (0.1ms)[0m BEGIN
|
158505
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158506
|
+
[1m[35m (0.0ms)[0m BEGIN
|
158507
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158508
|
+
[1m[35m (0.0ms)[0m BEGIN
|
158509
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158510
|
+
[1m[35m (0.0ms)[0m BEGIN
|
158511
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
158512
|
+
[1m[35m (0.1ms)[0m BEGIN
|
158513
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158514
|
+
[1m[35m (0.0ms)[0m BEGIN
|
158515
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158516
|
+
[1m[35m (0.1ms)[0m BEGIN
|
158517
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158518
|
+
[1m[35m (0.1ms)[0m BEGIN
|
158519
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158520
|
+
[1m[35m (0.1ms)[0m BEGIN
|
158521
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158522
|
+
[1m[35m (0.1ms)[0m BEGIN
|
158523
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158524
|
+
[1m[35m (0.1ms)[0m BEGIN
|
158525
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158526
|
+
[1m[35m (0.0ms)[0m BEGIN
|
158527
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158528
|
+
[1m[35m (0.1ms)[0m BEGIN
|
158529
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158530
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
158531
|
+
[1m[36m (322.1ms)[0m [1mDROP DATABASE IF EXISTS "gatherable_test"[0m
|
158532
|
+
[1m[35m (788.9ms)[0m CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
|
158533
|
+
[1m[35m (19.1ms)[0m CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
|
158534
|
+
[1m[36m (5.6ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
158535
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
158536
|
+
Migrating to CreateGatherableSchema (20160307210944)
|
158537
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
158538
|
+
[1m[35m (0.2ms)[0m CREATE SCHEMA gatherable
|
158539
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20160307210944"]]
|
158540
|
+
[1m[35m (0.2ms)[0m COMMIT
|
158541
|
+
Migrating to CreateGatherablePrice (20160307210945)
|
158542
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
158543
|
+
[1m[35m (9.5ms)[0m CREATE TABLE "gatherable"."prices" ("price_id" serial primary key, "price" decimal NOT NULL, "session_id" character varying, "created_at" timestamp NOT NULL)
|
158544
|
+
[1m[36m (2.7ms)[0m [1mCREATE INDEX "index_gatherable.prices_on_session_id" ON "gatherable"."prices" ("session_id")[0m
|
158545
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160307210945"]]
|
158546
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m
|
158547
|
+
[1m[35m (1.6ms)[0m BEGIN
|
158548
|
+
[1m[36m (0.3ms)[0m [1mROLLBACK[0m
|
158549
|
+
[1m[35m (0.1ms)[0m BEGIN
|
158550
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158551
|
+
[1m[35m (0.0ms)[0m BEGIN
|
158552
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158553
|
+
[1m[35m (0.0ms)[0m BEGIN
|
158554
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158555
|
+
[1m[35m (0.0ms)[0m BEGIN
|
158556
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158557
|
+
[1m[35m (0.0ms)[0m BEGIN
|
158558
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158559
|
+
[1m[35m (0.1ms)[0m BEGIN
|
158560
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158561
|
+
[1m[35m (0.1ms)[0m BEGIN
|
158562
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158563
|
+
[1m[35m (0.0ms)[0m BEGIN
|
158564
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158565
|
+
[1m[35m (0.1ms)[0m BEGIN
|
158566
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158567
|
+
[1m[35m (0.1ms)[0m BEGIN
|
158568
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158569
|
+
[1m[35m (0.1ms)[0m BEGIN
|
158570
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158571
|
+
[1m[35m (0.0ms)[0m BEGIN
|
158572
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158573
|
+
[1m[35m (0.1ms)[0m BEGIN
|
158574
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158575
|
+
[1m[35m (0.0ms)[0m BEGIN
|
158576
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158577
|
+
[1m[35m (0.1ms)[0m BEGIN
|
158578
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158579
|
+
[1m[35m (0.1ms)[0m BEGIN
|
158580
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158581
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
158582
|
+
[1m[36m (116.1ms)[0m [1mDROP DATABASE IF EXISTS "gatherable_test"[0m
|
158583
|
+
[1m[35m (812.7ms)[0m CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
|
158584
|
+
[1m[35m (21.7ms)[0m CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
|
158585
|
+
[1m[36m (5.7ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
158586
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
158587
|
+
Migrating to CreateGatherableSchema (20160307215932)
|
158588
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
158589
|
+
[1m[35m (0.2ms)[0m CREATE SCHEMA gatherable
|
158590
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20160307215932"]]
|
158591
|
+
[1m[35m (6.0ms)[0m COMMIT
|
158592
|
+
Migrating to CreateGatherablePrice (20160307215933)
|
158593
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
158594
|
+
[1m[35m (20.7ms)[0m CREATE TABLE "gatherable"."prices" ("price_id" serial primary key, "price" decimal NOT NULL, "session_id" character varying, "created_at" timestamp NOT NULL)
|
158595
|
+
[1m[36m (2.9ms)[0m [1mCREATE INDEX "index_gatherable.prices_on_session_id" ON "gatherable"."prices" ("session_id")[0m
|
158596
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160307215933"]]
|
158597
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m
|
158598
|
+
[1m[35m (1.7ms)[0m BEGIN
|
158599
|
+
Started GET "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:59:32 -0600
|
158600
|
+
Processing by Gatherable::PricesController#index as JSON
|
158601
|
+
Parameters: {"session_id"=>"session_id123"}
|
158602
|
+
Completed 302 Found in 10ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
158603
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
158604
|
+
[1m[35m (0.1ms)[0m BEGIN
|
158605
|
+
Started GET "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:59:32 -0600
|
158606
|
+
Processing by Gatherable::PricesController#index as JSON
|
158607
|
+
Parameters: {"session_id"=>"session_id123"}
|
158608
|
+
Completed 302 Found in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
158609
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158610
|
+
[1m[35m (0.1ms)[0m BEGIN
|
158611
|
+
Started GET "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:59:32 -0600
|
158612
|
+
Processing by Gatherable::PricesController#index as JSON
|
158613
|
+
Parameters: {"session_id"=>"session_id123"}
|
158614
|
+
[1m[36mGatherable::Price Load (0.3ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1[0m [["session_id", "session_id123"]]
|
158615
|
+
Completed 302 Found in 4ms (Views: 0.9ms | ActiveRecord: 0.3ms)
|
158616
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158617
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
158618
|
+
Started GET "/gatherable/session_id123123/prices.json" for 127.0.0.1 at 2016-03-07 21:59:32 -0600
|
158619
|
+
Processing by Gatherable::PricesController#index as JSON
|
158620
|
+
Parameters: {"session_id"=>"session_id123123"}
|
158621
|
+
Filter chain halted as :authenticate rendered or redirected
|
158622
|
+
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
|
158623
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158624
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
158625
|
+
Started GET "/gatherable/session_id123123/prices.json" for 127.0.0.1 at 2016-03-07 21:59:32 -0600
|
158626
|
+
Processing by Gatherable::PricesController#index as JSON
|
158627
|
+
Parameters: {"session_id"=>"session_id123123"}
|
158628
|
+
Filter chain halted as :authenticate rendered or redirected
|
158629
|
+
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
|
158630
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158631
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
158632
|
+
Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-03-07 21:59:32 -0600
|
158633
|
+
Processing by Gatherable::PricesController#show as JSON
|
158634
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
|
158635
|
+
Completed 302 Found in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
158636
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158637
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
158638
|
+
Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-03-07 21:59:32 -0600
|
158639
|
+
Processing by Gatherable::PricesController#show as JSON
|
158640
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
|
158641
|
+
Completed 302 Found in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
158642
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158643
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
158644
|
+
Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-03-07 21:59:32 -0600
|
158645
|
+
Processing by Gatherable::PricesController#show as JSON
|
158646
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
|
158647
|
+
Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
158648
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158649
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
158650
|
+
Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-03-07 21:59:32 -0600
|
158651
|
+
Processing by Gatherable::PricesController#show as JSON
|
158652
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
|
158653
|
+
Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
158654
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158655
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
158656
|
+
Started GET "/gatherable/session_id123123/prices.json" for 127.0.0.1 at 2016-03-07 21:59:32 -0600
|
158657
|
+
Processing by Gatherable::PricesController#index as JSON
|
158658
|
+
Parameters: {"session_id"=>"session_id123123"}
|
158659
|
+
Filter chain halted as :authenticate rendered or redirected
|
158660
|
+
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
|
158661
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158662
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
158663
|
+
Started GET "/gatherable/session_id123123/prices.json" for 127.0.0.1 at 2016-03-07 21:59:32 -0600
|
158664
|
+
Processing by Gatherable::PricesController#index as JSON
|
158665
|
+
Parameters: {"session_id"=>"session_id123123"}
|
158666
|
+
Filter chain halted as :authenticate rendered or redirected
|
158667
|
+
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
|
158668
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158669
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
158670
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:59:32 -0600
|
158671
|
+
Processing by Gatherable::PricesController#create as JSON
|
158672
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
158673
|
+
Completed 201 Created in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
158674
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158675
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
158676
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:59:32 -0600
|
158677
|
+
Processing by Gatherable::PricesController#create as JSON
|
158678
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
158679
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
158680
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:59:32.435079"]]
|
158681
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
158682
|
+
Completed 201 Created in 3ms (Views: 0.3ms | ActiveRecord: 0.4ms)
|
158683
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158684
|
+
[1m[35m (0.0ms)[0m BEGIN
|
158685
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:59:32 -0600
|
158686
|
+
Processing by Gatherable::PricesController#create as JSON
|
158687
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
158688
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
158689
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:59:32.445490"]]
|
158690
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
158691
|
+
Completed 201 Created in 2ms (Views: 0.2ms | ActiveRecord: 0.3ms)
|
158692
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158693
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
158694
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:59:32 -0600
|
158695
|
+
Processing by Gatherable::PricesController#create as JSON
|
158696
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
158697
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
158698
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:59:32.455587"]]
|
158699
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
158700
|
+
Completed 201 Created in 2ms (Views: 0.2ms | ActiveRecord: 0.4ms)
|
158701
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158702
|
+
[1m[35m (0.0ms)[0m BEGIN
|
158703
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:59:32 -0600
|
158704
|
+
Processing by Gatherable::PricesController#create as JSON
|
158705
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
158706
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
158707
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:59:32.465708"]]
|
158708
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
158709
|
+
Completed 201 Created in 2ms (Views: 0.2ms | ActiveRecord: 0.3ms)
|
158710
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158711
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
158712
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:59:32 -0600
|
158713
|
+
Processing by Gatherable::PricesController#create as JSON
|
158714
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
158715
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
158716
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:59:32.476532"]]
|
158717
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
158718
|
+
Completed 201 Created in 2ms (Views: 0.2ms | ActiveRecord: 0.4ms)
|
158719
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158720
|
+
[1m[35m (0.0ms)[0m BEGIN
|
158721
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:59:32 -0600
|
158722
|
+
Processing by Gatherable::PricesController#create as JSON
|
158723
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
158724
|
+
[1m[36mGatherable::Price Load (0.2ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1 LIMIT 1[0m [["session_id", "session_id123"]]
|
158725
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
158726
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "gatherable"."prices" ("session_id", "price", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["session_id", "session_id123"], ["price", "3.0"], ["created_at", "2016-03-08 03:59:32.490294"]]
|
158727
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
158728
|
+
Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.4ms)
|
158729
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158730
|
+
[1m[35m (0.0ms)[0m BEGIN
|
158731
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
158732
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "76.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:59:32.506823"]]
|
158733
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
158734
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:59:32 -0600
|
158735
|
+
Processing by Gatherable::PricesController#create as JSON
|
158736
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
158737
|
+
[1m[35mGatherable::Price Load (0.2ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1 LIMIT 1 [["session_id", "session_id123"]]
|
158738
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
158739
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "gatherable"."prices" SET "price" = $1 WHERE "gatherable"."prices"."price_id" = $2 [["price", "3.0"], ["price_id", 7]]
|
158740
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
158741
|
+
Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.5ms)
|
158742
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 7]]
|
158743
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158744
|
+
[1m[35m (0.0ms)[0m BEGIN
|
158745
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
158746
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "76.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:59:32.522072"]]
|
158747
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
158748
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "gatherable"."prices"
|
158749
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:59:32 -0600
|
158750
|
+
Processing by Gatherable::PricesController#create as JSON
|
158751
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
158752
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1 LIMIT 1[0m [["session_id", "session_id123"]]
|
158753
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
158754
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "gatherable"."prices" SET "price" = $1 WHERE "gatherable"."prices"."price_id" = $2[0m [["price", "3.0"], ["price_id", 8]]
|
158755
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
158756
|
+
Completed 200 OK in 4ms (Views: 0.4ms | ActiveRecord: 0.5ms)
|
158757
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "gatherable"."prices"[0m
|
158758
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158759
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
158760
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "gatherable"."prices"
|
158761
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:59:32 -0600
|
158762
|
+
Processing by Gatherable::PricesController#create as JSON
|
158763
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
158764
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1 LIMIT 1[0m [["session_id", "session_id123"]]
|
158765
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
158766
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "gatherable"."prices" ("session_id", "price", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["session_id", "session_id123"], ["price", "3.0"], ["created_at", "2016-03-08 03:59:32.545443"]]
|
158767
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
158768
|
+
Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.5ms)
|
158769
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "gatherable"."prices"[0m
|
158770
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158771
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
158772
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:59:32 -0600
|
158773
|
+
Processing by Gatherable::PricesController#create as JSON
|
158774
|
+
Parameters: {"yolo"=>"swag", "session_id"=>"session_id123"}
|
158775
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
158776
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
158777
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
158778
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:59:32 -0600
|
158779
|
+
Processing by Gatherable::PricesController#create as JSON
|
158780
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
158781
|
+
Completed 201 Created in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
158782
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158783
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
158784
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:59:32 -0600
|
158785
|
+
Processing by Gatherable::PricesController#create as JSON
|
158786
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
158787
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
158788
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:59:32.575909"]]
|
158789
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
158790
|
+
Completed 201 Created in 2ms (Views: 0.2ms | ActiveRecord: 0.4ms)
|
158791
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158792
|
+
[1m[35m (0.1ms)[0m BEGIN
|
158793
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:59:32 -0600
|
158794
|
+
Processing by Gatherable::PricesController#create as JSON
|
158795
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
158796
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
158797
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:59:32.588757"]]
|
158798
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
158799
|
+
Completed 201 Created in 3ms (Views: 0.2ms | ActiveRecord: 0.3ms)
|
158800
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158801
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
158802
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:59:32 -0600
|
158803
|
+
Processing by Gatherable::PricesController#create as JSON
|
158804
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
158805
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
158806
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:59:32.598199"]]
|
158807
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
158808
|
+
Completed 201 Created in 2ms (Views: 0.2ms | ActiveRecord: 0.2ms)
|
158809
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158810
|
+
[1m[35m (0.0ms)[0m BEGIN
|
158811
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:59:32 -0600
|
158812
|
+
Processing by Gatherable::PricesController#create as JSON
|
158813
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
158814
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
158815
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:59:32.607837"]]
|
158816
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
158817
|
+
Completed 201 Created in 2ms (Views: 0.2ms | ActiveRecord: 0.3ms)
|
158818
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158819
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
158820
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:59:32 -0600
|
158821
|
+
Processing by Gatherable::PricesController#create as JSON
|
158822
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
158823
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
158824
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:59:32.617564"]]
|
158825
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
158826
|
+
Completed 201 Created in 2ms (Views: 0.2ms | ActiveRecord: 0.3ms)
|
158827
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158828
|
+
[1m[35m (0.1ms)[0m BEGIN
|
158829
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:59:32 -0600
|
158830
|
+
Processing by Gatherable::PricesController#create as JSON
|
158831
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
158832
|
+
[1m[36mGatherable::Price Load (0.2ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1 LIMIT 1[0m [["session_id", "session_id123"]]
|
158833
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
158834
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "gatherable"."prices" ("session_id", "price", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["session_id", "session_id123"], ["price", "3.0"], ["created_at", "2016-03-08 03:59:32.628600"]]
|
158835
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
158836
|
+
Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.5ms)
|
158837
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158838
|
+
[1m[35m (0.1ms)[0m BEGIN
|
158839
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
158840
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "76.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:59:32.634946"]]
|
158841
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
158842
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:59:32 -0600
|
158843
|
+
Processing by Gatherable::PricesController#create as JSON
|
158844
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
158845
|
+
[1m[35mGatherable::Price Load (0.2ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1 LIMIT 1 [["session_id", "session_id123"]]
|
158846
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
158847
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "gatherable"."prices" SET "price" = $1 WHERE "gatherable"."prices"."price_id" = $2 [["price", "3.0"], ["price_id", 16]]
|
158848
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
158849
|
+
Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.4ms)
|
158850
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 16]]
|
158851
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158852
|
+
[1m[35m (0.0ms)[0m BEGIN
|
158853
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
158854
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "76.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:59:32.647013"]]
|
158855
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
158856
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "gatherable"."prices"
|
158857
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:59:32 -0600
|
158858
|
+
Processing by Gatherable::PricesController#create as JSON
|
158859
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
158860
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1 LIMIT 1[0m [["session_id", "session_id123"]]
|
158861
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
158862
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "gatherable"."prices" SET "price" = $1 WHERE "gatherable"."prices"."price_id" = $2[0m [["price", "3.0"], ["price_id", 17]]
|
158863
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
158864
|
+
Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.4ms)
|
158865
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "gatherable"."prices"[0m
|
158866
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158867
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
158868
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "gatherable"."prices"
|
158869
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-03-07 21:59:32 -0600
|
158870
|
+
Processing by Gatherable::PricesController#create as JSON
|
158871
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
158872
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1 LIMIT 1[0m [["session_id", "session_id123"]]
|
158873
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
158874
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "gatherable"."prices" ("session_id", "price", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["session_id", "session_id123"], ["price", "3.0"], ["created_at", "2016-03-08 03:59:32.665693"]]
|
158875
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
158876
|
+
Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.4ms)
|
158877
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "gatherable"."prices"[0m
|
158878
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158879
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
158880
|
+
Started POST "/gatherable/session_id123123/prices.json" for 127.0.0.1 at 2016-03-07 21:59:32 -0600
|
158881
|
+
Processing by Gatherable::PricesController#create as JSON
|
158882
|
+
Parameters: {"session_id"=>"session_id123123"}
|
158883
|
+
Filter chain halted as :authenticate rendered or redirected
|
158884
|
+
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
|
158885
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158886
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
158887
|
+
Started POST "/gatherable/session_id123123/prices.json" for 127.0.0.1 at 2016-03-07 21:59:32 -0600
|
158888
|
+
Processing by Gatherable::PricesController#create as JSON
|
158889
|
+
Parameters: {"session_id"=>"session_id123123"}
|
158890
|
+
Filter chain halted as :authenticate rendered or redirected
|
158891
|
+
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
|
158892
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158893
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
158894
|
+
Started POST "/gatherable/session_id123123/prices.json" for 127.0.0.1 at 2016-03-07 21:59:32 -0600
|
158895
|
+
Processing by Gatherable::PricesController#create as JSON
|
158896
|
+
Parameters: {"session_id"=>"session_id123123"}
|
158897
|
+
Filter chain halted as :authenticate rendered or redirected
|
158898
|
+
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
|
158899
|
+
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "gatherable"."prices"
|
158900
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "gatherable"."prices"[0m
|
158901
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158902
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
158903
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
158904
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "price_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["price_id", 1], ["created_at", "2016-03-08 03:59:32.706622"]]
|
158905
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
158906
|
+
Started PUT "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-03-07 21:59:32 -0600
|
158907
|
+
Processing by Gatherable::PricesController#update as JSON
|
158908
|
+
Parameters: {"price"=>{"price"=>"4.0"}, "session_id"=>"session_id123", "price_id"=>"1"}
|
158909
|
+
[1m[36mGatherable::Price Load (0.3ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 1]]
|
158910
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
158911
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "gatherable"."prices" SET "price" = $1, "session_id" = $2 WHERE "gatherable"."prices"."price_id" = $3[0m [["price", "4.0"], ["session_id", "session_id123"], ["price_id", 1]]
|
158912
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
158913
|
+
[1m[36mGatherable::Price Load (0.2ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 1]]
|
158914
|
+
Completed 200 OK in 7ms (Views: 0.4ms | ActiveRecord: 0.9ms)
|
158915
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 1]]
|
158916
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158917
|
+
[1m[35m (0.1ms)[0m BEGIN
|
158918
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
158919
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "gatherable"."prices" ("price", "price_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["price_id", 1], ["created_at", "2016-03-08 03:59:32.724931"]]
|
158920
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
158921
|
+
Started PUT "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-03-07 21:59:32 -0600
|
158922
|
+
Processing by Gatherable::PricesController#update as JSON
|
158923
|
+
Parameters: {"price"=>{"price"=>"4.0"}, "session_id"=>"session_id123", "price_id"=>"1"}
|
158924
|
+
[1m[35mGatherable::Price Load (0.2ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 1]]
|
158925
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
158926
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "gatherable"."prices" SET "price" = $1, "session_id" = $2 WHERE "gatherable"."prices"."price_id" = $3 [["price", "4.0"], ["session_id", "session_id123"], ["price_id", 1]]
|
158927
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
158928
|
+
[1m[35mGatherable::Price Load (0.2ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 1]]
|
158929
|
+
Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.7ms)
|
158930
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158931
|
+
[1m[35m (0.1ms)[0m BEGIN
|
158932
|
+
Started PUT "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-03-07 21:59:32 -0600
|
158933
|
+
Processing by Gatherable::PricesController#update as JSON
|
158934
|
+
Parameters: {"price"=>"2016-03-07", "session_id"=>"session_id123", "price_id"=>"1"}
|
158935
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
158936
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158937
|
+
[1m[35m (0.1ms)[0m BEGIN
|
158938
|
+
Started PUT "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-03-07 21:59:32 -0600
|
158939
|
+
Processing by Gatherable::PricesController#update as JSON
|
158940
|
+
Parameters: {"price"=>"2016-03-07", "session_id"=>"session_id123", "price_id"=>"1"}
|
158941
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
158942
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
158943
|
+
[1m[35m (0.1ms)[0m BEGIN
|
158944
|
+
Started PUT "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-03-07 21:59:32 -0600
|
158945
|
+
Processing by Gatherable::PricesController#update as JSON
|
158946
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
|
158947
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 0]]
|
158948
|
+
Completed 404 Not Found in 1ms (Views: 0.2ms | ActiveRecord: 0.1ms)
|
158949
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158950
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
158951
|
+
Started PUT "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-03-07 21:59:32 -0600
|
158952
|
+
Processing by Gatherable::PricesController#update as JSON
|
158953
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
|
158954
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 0]]
|
158955
|
+
Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms)
|
158956
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158957
|
+
[1m[35m (0.0ms)[0m BEGIN
|
158958
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
158959
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:59:32.779568"]]
|
158960
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
158961
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 19]]
|
158962
|
+
Started PUT "/gatherable/session_id123123/prices/19.json" for 127.0.0.1 at 2016-03-07 21:59:32 -0600
|
158963
|
+
Processing by Gatherable::PricesController#update as JSON
|
158964
|
+
Parameters: {"session_id"=>"session_id123123", "price_id"=>"19"}
|
158965
|
+
Filter chain halted as :authenticate rendered or redirected
|
158966
|
+
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
|
158967
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158968
|
+
[1m[35m (0.1ms)[0m BEGIN
|
158969
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
158970
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:59:32.792699"]]
|
158971
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
158972
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 20]]
|
158973
|
+
Started PUT "/gatherable/session_id123123/prices/20.json" for 127.0.0.1 at 2016-03-07 21:59:32 -0600
|
158974
|
+
Processing by Gatherable::PricesController#update as JSON
|
158975
|
+
Parameters: {"session_id"=>"session_id123123", "price_id"=>"20"}
|
158976
|
+
Filter chain halted as :authenticate rendered or redirected
|
158977
|
+
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
|
158978
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
158979
|
+
[1m[35m (0.0ms)[0m BEGIN
|
158980
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
158981
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:59:32.803265"]]
|
158982
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
158983
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 21]]
|
158984
|
+
Started PUT "/gatherable/session_id123123/prices/21.json" for 127.0.0.1 at 2016-03-07 21:59:32 -0600
|
158985
|
+
Processing by Gatherable::PricesController#update as JSON
|
158986
|
+
Parameters: {"session_id"=>"session_id123123", "price_id"=>"21"}
|
158987
|
+
Filter chain halted as :authenticate rendered or redirected
|
158988
|
+
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
|
158989
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 21]]
|
158990
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
158991
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
158992
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
158993
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:59:32.814520"]]
|
158994
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
158995
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 22]]
|
158996
|
+
Started DELETE "/gatherable/session_id123/prices/22.json" for 127.0.0.1 at 2016-03-07 21:59:32 -0600
|
158997
|
+
Processing by Gatherable::PricesController#destroy as JSON
|
158998
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"22"}
|
158999
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 22]]
|
159000
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1[0m [["price_id", 22]]
|
159001
|
+
Completed 204 No Content in 2ms (ActiveRecord: 0.3ms)
|
159002
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 [["price_id", 22]]
|
159003
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
159004
|
+
[1m[35m (0.0ms)[0m BEGIN
|
159005
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
159006
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:59:32.827368"]]
|
159007
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
159008
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 23]]
|
159009
|
+
Started DELETE "/gatherable/session_id123/prices/23.json" for 127.0.0.1 at 2016-03-07 21:59:32 -0600
|
159010
|
+
Processing by Gatherable::PricesController#destroy as JSON
|
159011
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"23"}
|
159012
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 23]]
|
159013
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 [["price_id", 23]]
|
159014
|
+
Completed 204 No Content in 2ms (ActiveRecord: 0.3ms)
|
159015
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
159016
|
+
[1m[35m (0.1ms)[0m BEGIN
|
159017
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
159018
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:59:32.839440"]]
|
159019
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
159020
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 24]]
|
159021
|
+
Started DELETE "/gatherable/session_id123/prices/24.json" for 127.0.0.1 at 2016-03-07 21:59:32 -0600
|
159022
|
+
Processing by Gatherable::PricesController#destroy as JSON
|
159023
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"24"}
|
159024
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 24]]
|
159025
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 [["price_id", 24]]
|
159026
|
+
Completed 204 No Content in 1ms (ActiveRecord: 0.3ms)
|
159027
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
159028
|
+
[1m[35m (0.1ms)[0m BEGIN
|
159029
|
+
Started DELETE "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-03-07 21:59:32 -0600
|
159030
|
+
Processing by Gatherable::PricesController#destroy as JSON
|
159031
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
|
159032
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 0]]
|
159033
|
+
Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms)
|
159034
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
159035
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
159036
|
+
Started DELETE "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-03-07 21:59:32 -0600
|
159037
|
+
Processing by Gatherable::PricesController#destroy as JSON
|
159038
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
|
159039
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 0]]
|
159040
|
+
Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms)
|
159041
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
159042
|
+
[1m[35m (0.1ms)[0m BEGIN
|
159043
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
159044
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:59:32.868202"]]
|
159045
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
159046
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 25]]
|
159047
|
+
Started DELETE "/gatherable/session_id123123/prices/25.json" for 127.0.0.1 at 2016-03-07 21:59:32 -0600
|
159048
|
+
Processing by Gatherable::PricesController#destroy as JSON
|
159049
|
+
Parameters: {"session_id"=>"session_id123123", "price_id"=>"25"}
|
159050
|
+
Filter chain halted as :authenticate rendered or redirected
|
159051
|
+
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
|
159052
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
159053
|
+
[1m[35m (0.0ms)[0m BEGIN
|
159054
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
159055
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:59:32.879844"]]
|
159056
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
159057
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 26]]
|
159058
|
+
Started DELETE "/gatherable/session_id123123/prices/26.json" for 127.0.0.1 at 2016-03-07 21:59:32 -0600
|
159059
|
+
Processing by Gatherable::PricesController#destroy as JSON
|
159060
|
+
Parameters: {"session_id"=>"session_id123123", "price_id"=>"26"}
|
159061
|
+
Filter chain halted as :authenticate rendered or redirected
|
159062
|
+
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
|
159063
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
159064
|
+
[1m[35m (0.1ms)[0m BEGIN
|
159065
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
159066
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:59:32.891431"]]
|
159067
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
159068
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 27]]
|
159069
|
+
Started DELETE "/gatherable/session_id123123/prices/27.json" for 127.0.0.1 at 2016-03-07 21:59:32 -0600
|
159070
|
+
Processing by Gatherable::PricesController#destroy as JSON
|
159071
|
+
Parameters: {"session_id"=>"session_id123123", "price_id"=>"27"}
|
159072
|
+
Filter chain halted as :authenticate rendered or redirected
|
159073
|
+
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
|
159074
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
159075
|
+
[1m[35m (0.0ms)[0m BEGIN
|
159076
|
+
Started GET "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:59:32 -0600
|
159077
|
+
Processing by Gatherable::PricesController#index as JSON
|
159078
|
+
Completed 302 Found in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
159079
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
159080
|
+
[1m[35m (0.1ms)[0m BEGIN
|
159081
|
+
Started GET "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:59:32 -0600
|
159082
|
+
Processing by Gatherable::PricesController#index as JSON
|
159083
|
+
Completed 302 Found in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
159084
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
159085
|
+
[1m[35m (0.0ms)[0m BEGIN
|
159086
|
+
Started GET "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:59:32 -0600
|
159087
|
+
Processing by Gatherable::PricesController#index as JSON
|
159088
|
+
[1m[36mGatherable::Price Load (0.2ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1[0m [["session_id", "session_id123"]]
|
159089
|
+
Completed 302 Found in 1ms (Views: 0.5ms | ActiveRecord: 0.2ms)
|
159090
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
159091
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
159092
|
+
Started GET "/gatherable/prices/1.json" for 127.0.0.1 at 2016-03-07 21:59:32 -0600
|
159093
|
+
Processing by Gatherable::PricesController#show as JSON
|
159094
|
+
Parameters: {"price_id"=>"1"}
|
159095
|
+
Completed 302 Found in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
159096
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
159097
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
159098
|
+
Started GET "/gatherable/prices/1.json" for 127.0.0.1 at 2016-03-07 21:59:32 -0600
|
159099
|
+
Processing by Gatherable::PricesController#show as JSON
|
159100
|
+
Parameters: {"price_id"=>"1"}
|
159101
|
+
Completed 302 Found in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
159102
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
159103
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
159104
|
+
Started GET "/gatherable/prices/0.json" for 127.0.0.1 at 2016-03-07 21:59:32 -0600
|
159105
|
+
Processing by Gatherable::PricesController#show as JSON
|
159106
|
+
Parameters: {"price_id"=>"0"}
|
159107
|
+
Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
159108
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
159109
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
159110
|
+
Started GET "/gatherable/prices/0.json" for 127.0.0.1 at 2016-03-07 21:59:32 -0600
|
159111
|
+
Processing by Gatherable::PricesController#show as JSON
|
159112
|
+
Parameters: {"price_id"=>"0"}
|
159113
|
+
Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
159114
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
159115
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
159116
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:59:32 -0600
|
159117
|
+
Processing by Gatherable::PricesController#create as JSON
|
159118
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
159119
|
+
Completed 201 Created in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
159120
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
159121
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
159122
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:59:32 -0600
|
159123
|
+
Processing by Gatherable::PricesController#create as JSON
|
159124
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
159125
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
159126
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:59:32.963792"]]
|
159127
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
159128
|
+
Completed 201 Created in 2ms (Views: 0.2ms | ActiveRecord: 0.4ms)
|
159129
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
159130
|
+
[1m[35m (0.1ms)[0m BEGIN
|
159131
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:59:32 -0600
|
159132
|
+
Processing by Gatherable::PricesController#create as JSON
|
159133
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
159134
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
159135
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:59:32.978751"]]
|
159136
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
159137
|
+
Completed 201 Created in 2ms (Views: 0.2ms | ActiveRecord: 0.4ms)
|
159138
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
159139
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
159140
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:59:32 -0600
|
159141
|
+
Processing by Gatherable::PricesController#create as JSON
|
159142
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
159143
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
159144
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:59:32.991086"]]
|
159145
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
159146
|
+
Completed 201 Created in 3ms (Views: 0.3ms | ActiveRecord: 0.4ms)
|
159147
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
159148
|
+
[1m[35m (0.1ms)[0m BEGIN
|
159149
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:59:32 -0600
|
159150
|
+
Processing by Gatherable::PricesController#create as JSON
|
159151
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
159152
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
159153
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:59:33.000987"]]
|
159154
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
159155
|
+
Completed 201 Created in 2ms (Views: 0.2ms | ActiveRecord: 0.4ms)
|
159156
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
159157
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
159158
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:59:33 -0600
|
159159
|
+
Processing by Gatherable::PricesController#create as JSON
|
159160
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
159161
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
159162
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:59:33.011976"]]
|
159163
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
159164
|
+
Completed 201 Created in 2ms (Views: 0.2ms | ActiveRecord: 0.4ms)
|
159165
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
159166
|
+
[1m[35m (0.1ms)[0m BEGIN
|
159167
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:59:33 -0600
|
159168
|
+
Processing by Gatherable::PricesController#create as JSON
|
159169
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
159170
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1 LIMIT 1[0m [["session_id", "session_id123"]]
|
159171
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
159172
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "gatherable"."prices" ("session_id", "price", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["session_id", "session_id123"], ["price", "3.0"], ["created_at", "2016-03-08 03:59:33.024525"]]
|
159173
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
159174
|
+
Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.5ms)
|
159175
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
159176
|
+
[1m[35m (0.1ms)[0m BEGIN
|
159177
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
159178
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "76.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:59:33.030182"]]
|
159179
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
159180
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:59:33 -0600
|
159181
|
+
Processing by Gatherable::PricesController#create as JSON
|
159182
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
159183
|
+
[1m[35mGatherable::Price Load (0.2ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1 LIMIT 1 [["session_id", "session_id123"]]
|
159184
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
159185
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "gatherable"."prices" SET "price" = $1 WHERE "gatherable"."prices"."price_id" = $2 [["price", "3.0"], ["price_id", 34]]
|
159186
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
159187
|
+
Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.5ms)
|
159188
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 34]]
|
159189
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
159190
|
+
[1m[35m (0.1ms)[0m BEGIN
|
159191
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
159192
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "76.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:59:33.044465"]]
|
159193
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
159194
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "gatherable"."prices"
|
159195
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:59:33 -0600
|
159196
|
+
Processing by Gatherable::PricesController#create as JSON
|
159197
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
159198
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1 LIMIT 1[0m [["session_id", "session_id123"]]
|
159199
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
159200
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "gatherable"."prices" SET "price" = $1 WHERE "gatherable"."prices"."price_id" = $2[0m [["price", "3.0"], ["price_id", 35]]
|
159201
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
159202
|
+
Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.4ms)
|
159203
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "gatherable"."prices"[0m
|
159204
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
159205
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
159206
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "gatherable"."prices"
|
159207
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:59:33 -0600
|
159208
|
+
Processing by Gatherable::PricesController#create as JSON
|
159209
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
159210
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1 LIMIT 1[0m [["session_id", "session_id123"]]
|
159211
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
159212
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "gatherable"."prices" ("session_id", "price", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["session_id", "session_id123"], ["price", "3.0"], ["created_at", "2016-03-08 03:59:33.062108"]]
|
159213
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
159214
|
+
Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.5ms)
|
159215
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "gatherable"."prices"[0m
|
159216
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
159217
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
159218
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:59:33 -0600
|
159219
|
+
Processing by Gatherable::PricesController#create as JSON
|
159220
|
+
Parameters: {"yolo"=>"swag"}
|
159221
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
159222
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
159223
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
159224
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:59:33 -0600
|
159225
|
+
Processing by Gatherable::PricesController#create as JSON
|
159226
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
159227
|
+
Completed 201 Created in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
159228
|
+
[1m[35m (0.4ms)[0m ROLLBACK
|
159229
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
159230
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:59:33 -0600
|
159231
|
+
Processing by Gatherable::PricesController#create as JSON
|
159232
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
159233
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
159234
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:59:33.093953"]]
|
159235
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
159236
|
+
Completed 201 Created in 3ms (Views: 0.3ms | ActiveRecord: 0.3ms)
|
159237
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
159238
|
+
[1m[35m (0.0ms)[0m BEGIN
|
159239
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:59:33 -0600
|
159240
|
+
Processing by Gatherable::PricesController#create as JSON
|
159241
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
159242
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
159243
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:59:33.103878"]]
|
159244
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
159245
|
+
Completed 201 Created in 2ms (Views: 0.2ms | ActiveRecord: 0.4ms)
|
159246
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
159247
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
159248
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:59:33 -0600
|
159249
|
+
Processing by Gatherable::PricesController#create as JSON
|
159250
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
159251
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
159252
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:59:33.113686"]]
|
159253
|
+
[1m[35m (0.3ms)[0m RELEASE SAVEPOINT active_record_1
|
159254
|
+
Completed 201 Created in 3ms (Views: 0.4ms | ActiveRecord: 0.5ms)
|
159255
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
159256
|
+
[1m[35m (0.1ms)[0m BEGIN
|
159257
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:59:33 -0600
|
159258
|
+
Processing by Gatherable::PricesController#create as JSON
|
159259
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
159260
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
159261
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:59:33.125886"]]
|
159262
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
159263
|
+
Completed 201 Created in 2ms (Views: 0.2ms | ActiveRecord: 0.3ms)
|
159264
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
159265
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
159266
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:59:33 -0600
|
159267
|
+
Processing by Gatherable::PricesController#create as JSON
|
159268
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
159269
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
159270
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:59:33.136400"]]
|
159271
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
159272
|
+
Completed 201 Created in 2ms (Views: 0.2ms | ActiveRecord: 0.3ms)
|
159273
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
159274
|
+
[1m[35m (0.1ms)[0m BEGIN
|
159275
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:59:33 -0600
|
159276
|
+
Processing by Gatherable::PricesController#create as JSON
|
159277
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
159278
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1 LIMIT 1[0m [["session_id", "session_id123"]]
|
159279
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
159280
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "gatherable"."prices" ("session_id", "price", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["session_id", "session_id123"], ["price", "3.0"], ["created_at", "2016-03-08 03:59:33.146623"]]
|
159281
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
159282
|
+
Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.4ms)
|
159283
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
159284
|
+
[1m[35m (0.1ms)[0m BEGIN
|
159285
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
159286
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "76.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:59:33.151598"]]
|
159287
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
159288
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:59:33 -0600
|
159289
|
+
Processing by Gatherable::PricesController#create as JSON
|
159290
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
159291
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1 LIMIT 1 [["session_id", "session_id123"]]
|
159292
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
159293
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "gatherable"."prices" SET "price" = $1 WHERE "gatherable"."prices"."price_id" = $2 [["price", "3.0"], ["price_id", 43]]
|
159294
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
159295
|
+
Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.4ms)
|
159296
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 43]]
|
159297
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
159298
|
+
[1m[35m (0.0ms)[0m BEGIN
|
159299
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
159300
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "76.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:59:33.163506"]]
|
159301
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
159302
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "gatherable"."prices"
|
159303
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:59:33 -0600
|
159304
|
+
Processing by Gatherable::PricesController#create as JSON
|
159305
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
159306
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1 LIMIT 1[0m [["session_id", "session_id123"]]
|
159307
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
159308
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "gatherable"."prices" SET "price" = $1 WHERE "gatherable"."prices"."price_id" = $2[0m [["price", "3.0"], ["price_id", 44]]
|
159309
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
159310
|
+
Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.4ms)
|
159311
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "gatherable"."prices"[0m
|
159312
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
159313
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
159314
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "gatherable"."prices"
|
159315
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:59:33 -0600
|
159316
|
+
Processing by Gatherable::PricesController#create as JSON
|
159317
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}}
|
159318
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."session_id" = $1 LIMIT 1[0m [["session_id", "session_id123"]]
|
159319
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
159320
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "gatherable"."prices" ("session_id", "price", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["session_id", "session_id123"], ["price", "3.0"], ["created_at", "2016-03-08 03:59:33.181968"]]
|
159321
|
+
[1m[35m (0.3ms)[0m RELEASE SAVEPOINT active_record_1
|
159322
|
+
Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.7ms)
|
159323
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "gatherable"."prices"[0m
|
159324
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
159325
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
159326
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
159327
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "price_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["price_id", 1], ["created_at", "2016-03-08 03:59:33.189437"]]
|
159328
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
159329
|
+
Started PUT "/gatherable/prices/1.json" for 127.0.0.1 at 2016-03-07 21:59:33 -0600
|
159330
|
+
Processing by Gatherable::PricesController#update as JSON
|
159331
|
+
Parameters: {"price"=>{"price"=>"4.0"}, "price_id"=>"1"}
|
159332
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 1]]
|
159333
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
159334
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "gatherable"."prices" SET "price" = $1, "session_id" = $2 WHERE "gatherable"."prices"."price_id" = $3[0m [["price", "4.0"], ["session_id", "session_id123"], ["price_id", 1]]
|
159335
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
159336
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 1]]
|
159337
|
+
Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.4ms)
|
159338
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 1]]
|
159339
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
159340
|
+
[1m[35m (0.1ms)[0m BEGIN
|
159341
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
159342
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "gatherable"."prices" ("price", "price_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["price_id", 1], ["created_at", "2016-03-08 03:59:33.201982"]]
|
159343
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
159344
|
+
Started PUT "/gatherable/prices/1.json" for 127.0.0.1 at 2016-03-07 21:59:33 -0600
|
159345
|
+
Processing by Gatherable::PricesController#update as JSON
|
159346
|
+
Parameters: {"price"=>{"price"=>"4.0"}, "price_id"=>"1"}
|
159347
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 1]]
|
159348
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
159349
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "gatherable"."prices" SET "price" = $1, "session_id" = $2 WHERE "gatherable"."prices"."price_id" = $3 [["price", "4.0"], ["session_id", "session_id123"], ["price_id", 1]]
|
159350
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
159351
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 1]]
|
159352
|
+
Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.5ms)
|
159353
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
159354
|
+
[1m[35m (0.0ms)[0m BEGIN
|
159355
|
+
Started PUT "/gatherable/prices/1.json" for 127.0.0.1 at 2016-03-07 21:59:33 -0600
|
159356
|
+
Processing by Gatherable::PricesController#update as JSON
|
159357
|
+
Parameters: {"price"=>"2016-03-07", "price_id"=>"1"}
|
159358
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
159359
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
159360
|
+
[1m[35m (0.1ms)[0m BEGIN
|
159361
|
+
Started PUT "/gatherable/prices/1.json" for 127.0.0.1 at 2016-03-07 21:59:33 -0600
|
159362
|
+
Processing by Gatherable::PricesController#update as JSON
|
159363
|
+
Parameters: {"price"=>"2016-03-07", "price_id"=>"1"}
|
159364
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
159365
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
159366
|
+
[1m[35m (0.1ms)[0m BEGIN
|
159367
|
+
Started PUT "/gatherable/prices/0.json" for 127.0.0.1 at 2016-03-07 21:59:33 -0600
|
159368
|
+
Processing by Gatherable::PricesController#update as JSON
|
159369
|
+
Parameters: {"price_id"=>"0"}
|
159370
|
+
[1m[36mGatherable::Price Load (0.2ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 0]]
|
159371
|
+
Completed 404 Not Found in 1ms (Views: 0.2ms | ActiveRecord: 0.2ms)
|
159372
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
159373
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
159374
|
+
Started PUT "/gatherable/prices/0.json" for 127.0.0.1 at 2016-03-07 21:59:33 -0600
|
159375
|
+
Processing by Gatherable::PricesController#update as JSON
|
159376
|
+
Parameters: {"price_id"=>"0"}
|
159377
|
+
[1m[35mGatherable::Price Load (0.2ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 0]]
|
159378
|
+
Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.2ms)
|
159379
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
159380
|
+
[1m[35m (0.1ms)[0m BEGIN
|
159381
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
159382
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:59:33.246736"]]
|
159383
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
159384
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 46]]
|
159385
|
+
Started DELETE "/gatherable/prices/46.json" for 127.0.0.1 at 2016-03-07 21:59:33 -0600
|
159386
|
+
Processing by Gatherable::PricesController#destroy as JSON
|
159387
|
+
Parameters: {"price_id"=>"46"}
|
159388
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 46]]
|
159389
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 [["price_id", 46]]
|
159390
|
+
Completed 204 No Content in 1ms (ActiveRecord: 0.2ms)
|
159391
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1[0m [["price_id", 46]]
|
159392
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
159393
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
159394
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
159395
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:59:33.256995"]]
|
159396
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
159397
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 47]]
|
159398
|
+
Started DELETE "/gatherable/prices/47.json" for 127.0.0.1 at 2016-03-07 21:59:33 -0600
|
159399
|
+
Processing by Gatherable::PricesController#destroy as JSON
|
159400
|
+
Parameters: {"price_id"=>"47"}
|
159401
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 47]]
|
159402
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1[0m [["price_id", 47]]
|
159403
|
+
Completed 204 No Content in 1ms (ActiveRecord: 0.3ms)
|
159404
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
159405
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
159406
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
159407
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "gatherable"."prices" ("price", "session_id", "created_at") VALUES ($1, $2, $3) RETURNING "price_id"[0m [["price", "3.0"], ["session_id", "session_id123"], ["created_at", "2016-03-08 03:59:33.267378"]]
|
159408
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
159409
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 48]]
|
159410
|
+
Started DELETE "/gatherable/prices/48.json" for 127.0.0.1 at 2016-03-07 21:59:33 -0600
|
159411
|
+
Processing by Gatherable::PricesController#destroy as JSON
|
159412
|
+
Parameters: {"price_id"=>"48"}
|
159413
|
+
[1m[35mGatherable::Price Load (0.1ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 48]]
|
159414
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1[0m [["price_id", 48]]
|
159415
|
+
Completed 204 No Content in 1ms (ActiveRecord: 0.2ms)
|
159416
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
159417
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
159418
|
+
Started DELETE "/gatherable/prices/0.json" for 127.0.0.1 at 2016-03-07 21:59:33 -0600
|
159419
|
+
Processing by Gatherable::PricesController#destroy as JSON
|
159420
|
+
Parameters: {"price_id"=>"0"}
|
159421
|
+
[1m[35mGatherable::Price Load (0.2ms)[0m SELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1 [["price_id", 0]]
|
159422
|
+
Completed 404 Not Found in 1ms (Views: 0.2ms | ActiveRecord: 0.2ms)
|
159423
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
159424
|
+
[1m[35m (0.1ms)[0m BEGIN
|
159425
|
+
Started DELETE "/gatherable/prices/0.json" for 127.0.0.1 at 2016-03-07 21:59:33 -0600
|
159426
|
+
Processing by Gatherable::PricesController#destroy as JSON
|
159427
|
+
Parameters: {"price_id"=>"0"}
|
159428
|
+
[1m[36mGatherable::Price Load (0.1ms)[0m [1mSELECT "gatherable"."prices".* FROM "gatherable"."prices" WHERE "gatherable"."prices"."price_id" = $1 LIMIT 1[0m [["price_id", 0]]
|
159429
|
+
Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms)
|
159430
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
159431
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
159432
|
+
Started GET "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:59:33 -0600
|
159433
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
159434
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
159435
|
+
Started GET "/gatherable/prices/1.json" for 127.0.0.1 at 2016-03-07 21:59:33 -0600
|
159436
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
159437
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
159438
|
+
Started POST "/gatherable/prices.json" for 127.0.0.1 at 2016-03-07 21:59:33 -0600
|
159439
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
159440
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
159441
|
+
Started PUT "/gatherable/prices/1.json" for 127.0.0.1 at 2016-03-07 21:59:33 -0600
|
159442
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
159443
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
159444
|
+
Started DELETE "/gatherable/prices/1.json" for 127.0.0.1 at 2016-03-07 21:59:33 -0600
|
159445
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
159446
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
159447
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
159448
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
159449
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
159450
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
159451
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
159452
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
159453
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
159454
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
159455
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
159456
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
159457
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
159458
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
159459
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
159460
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
159461
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
159462
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
159463
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
159464
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
159465
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
159466
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
159467
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
159468
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
159469
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
159470
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
159471
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
159472
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
159473
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
159474
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
159475
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
159476
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
159477
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
159478
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
159479
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
159480
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
159481
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
159482
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
159483
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
159484
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
159485
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
159486
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
159487
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
159488
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
159489
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
159490
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
159491
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
159492
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
159493
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
159494
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
159495
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
159496
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
159497
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
159498
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
159499
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
159500
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
159501
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
159502
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
159503
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
159504
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
159505
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
159506
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
159507
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
159508
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
159509
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
159510
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
159511
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
159512
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
159513
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
159514
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
159515
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
159516
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
159517
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
159518
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
159519
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
159520
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
159521
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
159522
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
159523
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
159524
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "gatherable"."prices" ("session_id", "created_at") VALUES ($1, $2) RETURNING "price_id"[0m [["session_id", "1"], ["created_at", "2016-03-08 03:59:33.425040"]]
|
159525
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
159526
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
159527
|
+
[1m[35m (0.0ms)[0m BEGIN
|
159528
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
159529
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "gatherable"."prices" ("session_id", "price", "created_at") VALUES ($1, $2, $3) RETURNING "price_id" [["session_id", "1"], ["price", "30.0"], ["created_at", "2016-03-08 03:59:33.427145"]]
|
159530
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
159531
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
159532
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
159533
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|