gatherable 0.0.1 → 0.0.2
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/models/{data_point.rb → data_table.rb} +4 -4
- data/app/writers/controller_writer.rb +6 -6
- data/app/writers/migration_writer.rb +13 -8
- data/app/writers/model_writer.rb +7 -7
- data/lib/gatherable.rb +4 -4
- data/lib/gatherable/configuration.rb +8 -4
- data/lib/gatherable/version.rb +1 -1
- data/lib/generators/gatherable/gatherable_generator.rb +6 -6
- data/lib/generators/gatherable/templates/gatherable.rb +6 -0
- data/spec/controllers/gatherable/application_controller_spec.rb +2 -1
- data/spec/dummy/log/development.log +0 -0
- data/spec/dummy/log/test.log +2209 -0
- data/spec/lib/gatherable_spec.rb +13 -7
- data/spec/lib/generators/gatherable_generator_spec.rb +1 -1
- data/spec/models/{data_point_spec.rb → data_table_spec.rb} +2 -18
- data/spec/rails_helper.rb +2 -1
- metadata +9 -8
- data/lib/version.rb +0 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 14f2a9f45860657124c2ddeba60dd3fa94f6f6c3
|
4
|
+
data.tar.gz: 054066f7aa1beae4bb86fba194530a9783b68705
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1112d63d027c59b2a46fcd4e281d9c9861cd706246bea14c32fe926ac4047fe9167cea955cb94777ece526eebdfa58655b2038f889184f39983eb401275f21c4
|
7
|
+
data.tar.gz: aaf878f500d1835d6d9ceeffe577b94d4e7e76d9fc8333a1d93e5220d2b662ee2e02b89c584a8f3cb70935354c609a15663ebab03fb1167274d96998db13008e
|
@@ -1,12 +1,12 @@
|
|
1
1
|
class ControllerWriter
|
2
|
-
attr_reader :
|
3
|
-
def initialize(
|
4
|
-
@
|
2
|
+
attr_reader :data_table
|
3
|
+
def initialize(data_table)
|
4
|
+
@data_table = data_table
|
5
5
|
end
|
6
6
|
|
7
7
|
def write
|
8
8
|
if File.exists?(filename)
|
9
|
-
puts "Controller already defined for #{
|
9
|
+
puts "Controller already defined for #{data_table.name}. Skipping"
|
10
10
|
return
|
11
11
|
end
|
12
12
|
FileUtils.mkdir_p('app/controllers/gatherable')
|
@@ -19,14 +19,14 @@ class ControllerWriter
|
|
19
19
|
private
|
20
20
|
|
21
21
|
def filename
|
22
|
-
controller_file = "#{
|
22
|
+
controller_file = "#{data_table.name.to_s.pluralize}_controller.rb"
|
23
23
|
File.join(Rails.root, 'app', 'controllers', 'gatherable', controller_file)
|
24
24
|
end
|
25
25
|
|
26
26
|
def controller_contents
|
27
27
|
<<-controller
|
28
28
|
module Gatherable
|
29
|
-
class #{
|
29
|
+
class #{data_table.controller_name} < Gatherable::ApplicationController
|
30
30
|
end
|
31
31
|
end
|
32
32
|
controller
|
@@ -1,8 +1,8 @@
|
|
1
1
|
class MigrationWriter
|
2
|
-
attr_reader :
|
2
|
+
attr_reader :data_table
|
3
3
|
|
4
|
-
def initialize(
|
5
|
-
@
|
4
|
+
def initialize(data_table)
|
5
|
+
@data_table = data_table
|
6
6
|
end
|
7
7
|
|
8
8
|
def self.write_schema_migration
|
@@ -54,16 +54,15 @@ end
|
|
54
54
|
end
|
55
55
|
|
56
56
|
def table_name
|
57
|
-
@table_name ||=
|
57
|
+
@table_name ||= data_table.classify.table_name
|
58
58
|
end
|
59
59
|
|
60
60
|
def file_template
|
61
|
-
data_type = data_point.data_type.to_s
|
62
61
|
<<-template
|
63
62
|
class CreateGatherable#{table_name.classify} < ActiveRecord::Migration
|
64
63
|
def up
|
65
|
-
create_table '#{Gatherable.config.schema_name}.#{table_name}', :primary_key => '#{
|
66
|
-
|
64
|
+
create_table '#{Gatherable.config.schema_name}.#{table_name}', :primary_key => '#{data_table.name}_id' do |t|
|
65
|
+
#{migration_columns}
|
67
66
|
t.string :#{Gatherable.config.global_identifier}, :index => true
|
68
67
|
t.timestamps :null => false
|
69
68
|
end
|
@@ -76,12 +75,18 @@ end
|
|
76
75
|
template
|
77
76
|
end
|
78
77
|
|
78
|
+
def migration_columns
|
79
|
+
data_table.columns.inject("") do |columns, (name, type)|
|
80
|
+
columns << "t.#{type} :#{name}\n"
|
81
|
+
end
|
82
|
+
end
|
83
|
+
|
79
84
|
def file_suffix
|
80
85
|
@file_suffix ||= "create_gatherable_#{table_name.singularize}.rb"
|
81
86
|
end
|
82
87
|
|
83
88
|
def already_found_message
|
84
|
-
"migrations #{matching_migrations} already exist. Skipping migration for #{
|
89
|
+
"migrations #{matching_migrations} already exist. Skipping migration for #{data_table.name}"
|
85
90
|
end
|
86
91
|
|
87
92
|
def matching_migrations
|
data/app/writers/model_writer.rb
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
class ModelWriter
|
2
|
-
attr_reader :
|
3
|
-
def initialize(
|
4
|
-
@
|
2
|
+
attr_reader :data_table
|
3
|
+
def initialize(data_table)
|
4
|
+
@data_table = data_table
|
5
5
|
end
|
6
6
|
|
7
7
|
def write
|
8
8
|
if File.exists?(filename)
|
9
|
-
puts "model already defined for #{
|
9
|
+
puts "model already defined for #{data_table.name}. Skipping"
|
10
10
|
return
|
11
11
|
end
|
12
12
|
FileUtils.mkdir_p('app/models/gatherable')
|
@@ -19,15 +19,15 @@ class ModelWriter
|
|
19
19
|
private
|
20
20
|
|
21
21
|
def filename
|
22
|
-
model_file = "#{
|
22
|
+
model_file = "#{data_table.name}.rb"
|
23
23
|
File.join(Rails.root, 'app', 'models', 'gatherable', model_file)
|
24
24
|
end
|
25
25
|
|
26
26
|
def model_contents
|
27
27
|
<<-model
|
28
28
|
module Gatherable
|
29
|
-
class #{
|
30
|
-
self.table_name = '#{
|
29
|
+
class #{data_table.class_name} < ActiveRecord::Base
|
30
|
+
self.table_name = '#{data_table.name.to_s.pluralize}'
|
31
31
|
self.table_name_prefix = 'gatherable.'
|
32
32
|
end
|
33
33
|
end
|
data/lib/gatherable.rb
CHANGED
@@ -20,19 +20,19 @@ module Gatherable
|
|
20
20
|
private
|
21
21
|
|
22
22
|
def create_models
|
23
|
-
config.
|
23
|
+
config.data_tables.map(&:classify)
|
24
24
|
end
|
25
25
|
|
26
26
|
def create_controllers
|
27
|
-
config.
|
27
|
+
config.data_tables.map(&:controllerify)
|
28
28
|
end
|
29
29
|
|
30
30
|
def create_routes
|
31
31
|
global_identifier = config.global_identifier
|
32
32
|
Gatherable::Engine.routes.draw do #would this wipe away whatever's in config/routes.rb?
|
33
|
-
Gatherable.config.
|
33
|
+
Gatherable.config.data_tables.map{ |dp| dp.name.to_s.pluralize }.each do |data_table|
|
34
34
|
scope :path => "/:#{global_identifier}" do
|
35
|
-
resources
|
35
|
+
resources data_table.to_sym, :only => [:show, :create], :param => "#{data_table.singularize}_id"
|
36
36
|
end
|
37
37
|
end
|
38
38
|
end
|
@@ -1,15 +1,19 @@
|
|
1
1
|
module Gatherable
|
2
2
|
class Configuration
|
3
|
-
delegate :empty?, :to => :
|
3
|
+
delegate :empty?, :to => :data_tables
|
4
4
|
attr_accessor :global_identifier
|
5
5
|
attr_writer :schema_name
|
6
6
|
|
7
7
|
def data_point(name, data_type)
|
8
|
-
|
8
|
+
data_tables << DataTable.new(name, {name => data_type})
|
9
9
|
end
|
10
10
|
|
11
|
-
def
|
12
|
-
|
11
|
+
def data_table(name, columns)
|
12
|
+
data_tables << DataTable.new(name, columns)
|
13
|
+
end
|
14
|
+
|
15
|
+
def data_tables
|
16
|
+
@data_tables ||= []
|
13
17
|
end
|
14
18
|
|
15
19
|
def schema_name
|
data/lib/gatherable/version.rb
CHANGED
@@ -13,21 +13,21 @@ class GatherableGenerator < Rails::Generators::NamedBase
|
|
13
13
|
|
14
14
|
def generate_migrations
|
15
15
|
MigrationWriter.write_schema_migration
|
16
|
-
Gatherable.config.
|
17
|
-
MigrationWriter.new(
|
16
|
+
Gatherable.config.data_tables.each do |data_table|
|
17
|
+
MigrationWriter.new(data_table).write
|
18
18
|
end
|
19
19
|
end
|
20
20
|
|
21
21
|
def generate_models
|
22
|
-
Gatherable.config.
|
23
|
-
ModelWriter.new(
|
22
|
+
Gatherable.config.data_tables.each do |data_table|
|
23
|
+
ModelWriter.new(data_table).write
|
24
24
|
end
|
25
25
|
end
|
26
26
|
|
27
27
|
def generate_controllers
|
28
28
|
copy_file 'application_controller.rb', 'app/controllers/gatherable/application_controller.rb'
|
29
|
-
Gatherable.config.
|
30
|
-
ControllerWriter.new(
|
29
|
+
Gatherable.config.data_tables.each do |data_table|
|
30
|
+
ControllerWriter.new(data_table).write
|
31
31
|
end
|
32
32
|
end
|
33
33
|
end
|
@@ -4,6 +4,12 @@ Gatherable.configure do |c|
|
|
4
4
|
# c.data_point :data_point_name, :data_point_type
|
5
5
|
c.data_point :price, :decimal
|
6
6
|
|
7
|
+
#c.data_table :table_name, { column_name: :column_type, column_name2: :column_type }
|
8
|
+
c.data_table :requested_loan_amount, { requested_loan_amount: :decimal, total_cost: :decimal, monthly_repayment_amount: :decimal }
|
9
|
+
|
10
|
+
# for both data tables and data points, you'll automatically get a primary key 'table_name_id',
|
11
|
+
# an indexed global identifier, and timestamps
|
12
|
+
|
7
13
|
#If want your db schema to be something besides 'gatherable', uncomment the line below
|
8
14
|
#c.schema_name = 'foo_bar'
|
9
15
|
end
|
@@ -86,7 +86,8 @@ describe 'Gatherable::PricesController' do
|
|
86
86
|
end
|
87
87
|
|
88
88
|
it 'returns the record' do
|
89
|
-
expect(json_response).to eql
|
89
|
+
expect(json_response).to eql \
|
90
|
+
({"price_id"=>nil, "price"=>"3.0", "session_id" => nil, "created_at"=>nil, "updated_at"=>nil, "total_cost" => nil, "monthly_repayment_amount" => nil})
|
90
91
|
end
|
91
92
|
|
92
93
|
specify 'the response code is 302' do
|
File without changes
|
data/spec/dummy/log/test.log
CHANGED
@@ -1548,3 +1548,2212 @@ Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
|
1548
1548
|
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1549
1549
|
[1m[35m (0.1ms)[0m BEGIN
|
1550
1550
|
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1551
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1552
|
+
[1m[36m (111.2ms)[0m [1mDROP DATABASE IF EXISTS "gatherable_test"[0m
|
1553
|
+
[1m[35m (321.9ms)[0m CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
|
1554
|
+
[1m[36m (112.1ms)[0m [1mDROP DATABASE IF EXISTS "gatherable_test"[0m
|
1555
|
+
[1m[35m (230.7ms)[0m CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
|
1556
|
+
[1m[36m (112.2ms)[0m [1mDROP DATABASE IF EXISTS "gatherable_test"[0m
|
1557
|
+
[1m[35m (234.7ms)[0m CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
|
1558
|
+
[1m[36m (14.5ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL) [0m
|
1559
|
+
[1m[35m (10.3ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
1560
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1561
|
+
Migrating to CreateGatherableSchema (20160105203851)
|
1562
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1563
|
+
[1m[36m (0.2ms)[0m [1mCREATE SCHEMA gatherable[0m
|
1564
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160105203851"]]
|
1565
|
+
[1m[36m (5.9ms)[0m [1mCOMMIT[0m
|
1566
|
+
Migrating to CreateGatherablePrice (20160105203852)
|
1567
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1568
|
+
[1m[36m (13.9ms)[0m [1mCREATE TABLE "gatherable"."prices" ("price_id" serial primary key, "price" decimal NOT NULL, "session_id" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
1569
|
+
[1m[35m (0.6ms)[0m CREATE INDEX "index_gatherable.prices_on_session_id" ON "gatherable"."prices" ("session_id")
|
1570
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20160105203852"]]
|
1571
|
+
[1m[35m (0.3ms)[0m COMMIT
|
1572
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
1573
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:38:51 -0600
|
1574
|
+
Processing by Gatherable::PricesController#create as JSON
|
1575
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
1576
|
+
Completed 201 Created in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
1577
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:38:51 -0600
|
1578
|
+
Processing by Gatherable::PricesController#create as JSON
|
1579
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
1580
|
+
Completed 201 Created in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1581
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1582
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1583
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:38:51 -0600
|
1584
|
+
Processing by Gatherable::PricesController#create as JSON
|
1585
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
1586
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
1587
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1588
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1589
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:38:51 -0600
|
1590
|
+
Processing by Gatherable::PricesController#create as JSON
|
1591
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
1592
|
+
Completed 201 Created in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
1593
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1594
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1595
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:38:51 -0600
|
1596
|
+
Processing by Gatherable::PricesController#create as JSON
|
1597
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
1598
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
1599
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1600
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1601
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:38:51 -0600
|
1602
|
+
Processing by Gatherable::PricesController#create as JSON
|
1603
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
1604
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
1605
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1606
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1607
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:38:51 -0600
|
1608
|
+
Processing by Gatherable::PricesController#create as JSON
|
1609
|
+
Parameters: {"yolo"=>"swag", "session_id"=>"session_id123"}
|
1610
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1611
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1612
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1613
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:38:51 -0600
|
1614
|
+
Processing by Gatherable::PricesController#create as JSON
|
1615
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
1616
|
+
Unpermitted parameter: yolo
|
1617
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
1618
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:38:51 -0600
|
1619
|
+
Processing by Gatherable::PricesController#create as JSON
|
1620
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
1621
|
+
Completed 201 Created in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1622
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1623
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1624
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:38:51 -0600
|
1625
|
+
Processing by Gatherable::PricesController#create as JSON
|
1626
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
1627
|
+
Unpermitted parameter: yolo
|
1628
|
+
Completed 201 Created in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1629
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1630
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1631
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:38:51 -0600
|
1632
|
+
Processing by Gatherable::PricesController#create as JSON
|
1633
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
1634
|
+
Unpermitted parameter: yolo
|
1635
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
1636
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1637
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1638
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:38:51 -0600
|
1639
|
+
Processing by Gatherable::PricesController#create as JSON
|
1640
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
1641
|
+
Unpermitted parameter: yolo
|
1642
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
1643
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1644
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1645
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:38:51 -0600
|
1646
|
+
Processing by Gatherable::PricesController#create as JSON
|
1647
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
1648
|
+
Unpermitted parameter: yolo
|
1649
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
1650
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1651
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1652
|
+
Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-01-05 20:38:51 -0600
|
1653
|
+
Processing by Gatherable::PricesController#show as JSON
|
1654
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
|
1655
|
+
Completed 302 Found in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
1656
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1657
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1658
|
+
Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-01-05 20:38:51 -0600
|
1659
|
+
Processing by Gatherable::PricesController#show as JSON
|
1660
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
|
1661
|
+
Completed 302 Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
1662
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1663
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1664
|
+
Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-01-05 20:38:51 -0600
|
1665
|
+
Processing by Gatherable::PricesController#show as JSON
|
1666
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
|
1667
|
+
Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1668
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1669
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1670
|
+
Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-01-05 20:38:51 -0600
|
1671
|
+
Processing by Gatherable::PricesController#show as JSON
|
1672
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
|
1673
|
+
Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1674
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1675
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1676
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1677
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1678
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1679
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1680
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1681
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1682
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1683
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1684
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1685
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1686
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1687
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1688
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
1689
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1690
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1691
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1692
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1693
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1694
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1695
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1696
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1697
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1698
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1699
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1700
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1701
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1702
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
1703
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1704
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1705
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1706
|
+
[1m[35m (0.3ms)[0m ROLLBACK
|
1707
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1708
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1709
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1710
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1711
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1712
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1713
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1714
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1715
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1716
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1717
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1718
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1719
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1720
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1721
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1722
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1723
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1724
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1725
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1726
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1727
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1728
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1729
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1730
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1731
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1732
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1733
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1734
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1735
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1736
|
+
[1m[36m (111.9ms)[0m [1mDROP DATABASE IF EXISTS "gatherable_test"[0m
|
1737
|
+
[1m[35m (231.1ms)[0m CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
|
1738
|
+
[1m[36m (112.2ms)[0m [1mDROP DATABASE IF EXISTS "gatherable_test"[0m
|
1739
|
+
[1m[35m (231.4ms)[0m CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
|
1740
|
+
[1m[36m (111.0ms)[0m [1mDROP DATABASE IF EXISTS "gatherable_test"[0m
|
1741
|
+
[1m[35m (230.8ms)[0m CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
|
1742
|
+
[1m[36m (14.4ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL) [0m
|
1743
|
+
[1m[35m (11.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
1744
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1745
|
+
Migrating to CreateGatherableSchema (20160105204111)
|
1746
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1747
|
+
[1m[36m (0.2ms)[0m [1mCREATE SCHEMA gatherable[0m
|
1748
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160105204111"]]
|
1749
|
+
[1m[36m (0.2ms)[0m [1mCOMMIT[0m
|
1750
|
+
Migrating to CreateGatherablePrice (20160105204112)
|
1751
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1752
|
+
[1m[36m (3.5ms)[0m [1mCREATE TABLE "gatherable"."prices" ("price_id" serial primary key, "price" decimal, "session_id" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
1753
|
+
[1m[35m (0.5ms)[0m CREATE INDEX "index_gatherable.prices_on_session_id" ON "gatherable"."prices" ("session_id")
|
1754
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20160105204112"]]
|
1755
|
+
[1m[35m (0.4ms)[0m COMMIT
|
1756
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1757
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:41:12 -0600
|
1758
|
+
Processing by Gatherable::PricesController#create as JSON
|
1759
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
1760
|
+
Completed 201 Created in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
1761
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:41:12 -0600
|
1762
|
+
Processing by Gatherable::PricesController#create as JSON
|
1763
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
1764
|
+
Completed 201 Created in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1765
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
1766
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1767
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:41:12 -0600
|
1768
|
+
Processing by Gatherable::PricesController#create as JSON
|
1769
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
1770
|
+
Completed 201 Created in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
1771
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1772
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1773
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:41:12 -0600
|
1774
|
+
Processing by Gatherable::PricesController#create as JSON
|
1775
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
1776
|
+
Completed 201 Created in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
1777
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1778
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1779
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:41:12 -0600
|
1780
|
+
Processing by Gatherable::PricesController#create as JSON
|
1781
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
1782
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
1783
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1784
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1785
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:41:12 -0600
|
1786
|
+
Processing by Gatherable::PricesController#create as JSON
|
1787
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
1788
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
1789
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1790
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1791
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:41:12 -0600
|
1792
|
+
Processing by Gatherable::PricesController#create as JSON
|
1793
|
+
Parameters: {"yolo"=>"swag", "session_id"=>"session_id123"}
|
1794
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1795
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1796
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1797
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:41:12 -0600
|
1798
|
+
Processing by Gatherable::PricesController#create as JSON
|
1799
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
1800
|
+
Unpermitted parameter: yolo
|
1801
|
+
Completed 201 Created in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
1802
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:41:12 -0600
|
1803
|
+
Processing by Gatherable::PricesController#create as JSON
|
1804
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
1805
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
1806
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1807
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1808
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:41:12 -0600
|
1809
|
+
Processing by Gatherable::PricesController#create as JSON
|
1810
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
1811
|
+
Unpermitted parameter: yolo
|
1812
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
1813
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1814
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1815
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:41:12 -0600
|
1816
|
+
Processing by Gatherable::PricesController#create as JSON
|
1817
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
1818
|
+
Unpermitted parameter: yolo
|
1819
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
1820
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1821
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1822
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:41:12 -0600
|
1823
|
+
Processing by Gatherable::PricesController#create as JSON
|
1824
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
1825
|
+
Unpermitted parameter: yolo
|
1826
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
1827
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1828
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1829
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:41:12 -0600
|
1830
|
+
Processing by Gatherable::PricesController#create as JSON
|
1831
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
1832
|
+
Unpermitted parameter: yolo
|
1833
|
+
Completed 201 Created in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1834
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1835
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1836
|
+
Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-01-05 20:41:12 -0600
|
1837
|
+
Processing by Gatherable::PricesController#show as JSON
|
1838
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
|
1839
|
+
Completed 302 Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
1840
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1841
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1842
|
+
Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-01-05 20:41:12 -0600
|
1843
|
+
Processing by Gatherable::PricesController#show as JSON
|
1844
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
|
1845
|
+
Completed 302 Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
1846
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1847
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1848
|
+
Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-01-05 20:41:12 -0600
|
1849
|
+
Processing by Gatherable::PricesController#show as JSON
|
1850
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
|
1851
|
+
Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1852
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1853
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1854
|
+
Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-01-05 20:41:12 -0600
|
1855
|
+
Processing by Gatherable::PricesController#show as JSON
|
1856
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
|
1857
|
+
Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1858
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1859
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1860
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
1861
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1862
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
1863
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1864
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
1865
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1866
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1867
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1868
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1869
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1870
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
1871
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1872
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
1873
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1874
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1875
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1876
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1877
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1878
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1879
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1880
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1881
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1882
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1883
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1884
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1885
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1886
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
1887
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1888
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1889
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1890
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1891
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1892
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1893
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1894
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1895
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1896
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1897
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1898
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1899
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1900
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1901
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1902
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1903
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1904
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1905
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1906
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1907
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1908
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1909
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
1910
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1911
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1912
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1913
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1914
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1915
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1916
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1917
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1918
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
1919
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1920
|
+
[1m[36m (111.5ms)[0m [1mDROP DATABASE IF EXISTS "gatherable_test"[0m
|
1921
|
+
[1m[35m (260.8ms)[0m CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
|
1922
|
+
[1m[35m (13.2ms)[0m CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
|
1923
|
+
[1m[36m (9.9ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1924
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.6ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1925
|
+
Migrating to CreateGatherableSchema (20160105204336)
|
1926
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1927
|
+
[1m[35m (0.2ms)[0m CREATE SCHEMA gatherable
|
1928
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20160105204336"]]
|
1929
|
+
[1m[35m (0.2ms)[0m COMMIT
|
1930
|
+
Migrating to CreateGatherablePrice (20160105204337)
|
1931
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1932
|
+
[1m[35m (2.3ms)[0m CREATE TABLE "gatherable"."prices" ("price_id" serial primary key, "price" decimal, "session_id" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
|
1933
|
+
[1m[36m (0.5ms)[0m [1mCREATE INDEX "index_gatherable.prices_on_session_id" ON "gatherable"."prices" ("session_id")[0m
|
1934
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160105204337"]]
|
1935
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m
|
1936
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1937
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:43:36 -0600
|
1938
|
+
Processing by Gatherable::PricesController#create as JSON
|
1939
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
1940
|
+
Completed 201 Created in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
1941
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:43:36 -0600
|
1942
|
+
Processing by Gatherable::PricesController#create as JSON
|
1943
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
1944
|
+
Completed 201 Created in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1945
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1946
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1947
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:43:36 -0600
|
1948
|
+
Processing by Gatherable::PricesController#create as JSON
|
1949
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
1950
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
1951
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1952
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1953
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:43:36 -0600
|
1954
|
+
Processing by Gatherable::PricesController#create as JSON
|
1955
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
1956
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
1957
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1958
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1959
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:43:36 -0600
|
1960
|
+
Processing by Gatherable::PricesController#create as JSON
|
1961
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
1962
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
1963
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1964
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1965
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:43:36 -0600
|
1966
|
+
Processing by Gatherable::PricesController#create as JSON
|
1967
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
1968
|
+
Completed 201 Created in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
1969
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
1970
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1971
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:43:36 -0600
|
1972
|
+
Processing by Gatherable::PricesController#create as JSON
|
1973
|
+
Parameters: {"yolo"=>"swag", "session_id"=>"session_id123"}
|
1974
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1975
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1976
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1977
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:43:36 -0600
|
1978
|
+
Processing by Gatherable::PricesController#create as JSON
|
1979
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
1980
|
+
Unpermitted parameter: yolo
|
1981
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
1982
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:43:36 -0600
|
1983
|
+
Processing by Gatherable::PricesController#create as JSON
|
1984
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
1985
|
+
Completed 201 Created in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1986
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1987
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1988
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:43:36 -0600
|
1989
|
+
Processing by Gatherable::PricesController#create as JSON
|
1990
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
1991
|
+
Unpermitted parameter: yolo
|
1992
|
+
Completed 201 Created in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
1993
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1994
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1995
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:43:36 -0600
|
1996
|
+
Processing by Gatherable::PricesController#create as JSON
|
1997
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
1998
|
+
Unpermitted parameter: yolo
|
1999
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2000
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2001
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2002
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:43:36 -0600
|
2003
|
+
Processing by Gatherable::PricesController#create as JSON
|
2004
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
2005
|
+
Unpermitted parameter: yolo
|
2006
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2007
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2008
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2009
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:43:36 -0600
|
2010
|
+
Processing by Gatherable::PricesController#create as JSON
|
2011
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
2012
|
+
Unpermitted parameter: yolo
|
2013
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2014
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2015
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2016
|
+
Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-01-05 20:43:36 -0600
|
2017
|
+
Processing by Gatherable::PricesController#show as JSON
|
2018
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
|
2019
|
+
Completed 302 Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2020
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2021
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2022
|
+
Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-01-05 20:43:36 -0600
|
2023
|
+
Processing by Gatherable::PricesController#show as JSON
|
2024
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
|
2025
|
+
Completed 302 Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2026
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2027
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2028
|
+
Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-01-05 20:43:36 -0600
|
2029
|
+
Processing by Gatherable::PricesController#show as JSON
|
2030
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
|
2031
|
+
Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2032
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2033
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2034
|
+
Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-01-05 20:43:36 -0600
|
2035
|
+
Processing by Gatherable::PricesController#show as JSON
|
2036
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
|
2037
|
+
Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2038
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2039
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2040
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2041
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2042
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2043
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2044
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2045
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2046
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2047
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2048
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2049
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2050
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2051
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2052
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2053
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2054
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
2055
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2056
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2057
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2058
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2059
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2060
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2061
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2062
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2063
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2064
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
2065
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2066
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
2067
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2068
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
2069
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2070
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2071
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2072
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2073
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2074
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2075
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2076
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2077
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2078
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2079
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2080
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2081
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2082
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2083
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2084
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2085
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2086
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2087
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2088
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2089
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2090
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2091
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2092
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2093
|
+
[1m[35m (0.2ms)[0m BEGIN
|
2094
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2095
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2096
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2097
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2098
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2099
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2100
|
+
[1m[36m (113.0ms)[0m [1mDROP DATABASE IF EXISTS "gatherable_test"[0m
|
2101
|
+
[1m[35m (231.1ms)[0m CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
|
2102
|
+
[1m[35m (15.1ms)[0m CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
|
2103
|
+
[1m[36m (7.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
2104
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.3ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
2105
|
+
Migrating to CreateGatherableSchema (20160105204424)
|
2106
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
2107
|
+
[1m[35m (0.3ms)[0m CREATE SCHEMA gatherable
|
2108
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20160105204424"]]
|
2109
|
+
[1m[35m (0.2ms)[0m COMMIT
|
2110
|
+
Migrating to CreateGatherablePrice (20160105204425)
|
2111
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
2112
|
+
[1m[35m (2.4ms)[0m CREATE TABLE "gatherable"."prices" ("price_id" serial primary key, "price" decimal, "session_id" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
|
2113
|
+
[1m[36m (0.5ms)[0m [1mCREATE INDEX "index_gatherable.prices_on_session_id" ON "gatherable"."prices" ("session_id")[0m
|
2114
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160105204425"]]
|
2115
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m
|
2116
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2117
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:44:24 -0600
|
2118
|
+
Processing by Gatherable::PricesController#create as JSON
|
2119
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
2120
|
+
Completed 201 Created in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
2121
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:44:24 -0600
|
2122
|
+
Processing by Gatherable::PricesController#create as JSON
|
2123
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
2124
|
+
Completed 201 Created in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2125
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
2126
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2127
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:44:24 -0600
|
2128
|
+
Processing by Gatherable::PricesController#create as JSON
|
2129
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
2130
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2131
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2132
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2133
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:44:24 -0600
|
2134
|
+
Processing by Gatherable::PricesController#create as JSON
|
2135
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
2136
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2137
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2138
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2139
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:44:24 -0600
|
2140
|
+
Processing by Gatherable::PricesController#create as JSON
|
2141
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
2142
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2143
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2144
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2145
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:44:24 -0600
|
2146
|
+
Processing by Gatherable::PricesController#create as JSON
|
2147
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
2148
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2149
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2150
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2151
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:44:24 -0600
|
2152
|
+
Processing by Gatherable::PricesController#create as JSON
|
2153
|
+
Parameters: {"yolo"=>"swag", "session_id"=>"session_id123"}
|
2154
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2155
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2156
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2157
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:44:24 -0600
|
2158
|
+
Processing by Gatherable::PricesController#create as JSON
|
2159
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
2160
|
+
Unpermitted parameter: yolo
|
2161
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2162
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:44:24 -0600
|
2163
|
+
Processing by Gatherable::PricesController#create as JSON
|
2164
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
2165
|
+
Completed 201 Created in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2166
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2167
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2168
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:44:24 -0600
|
2169
|
+
Processing by Gatherable::PricesController#create as JSON
|
2170
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
2171
|
+
Unpermitted parameter: yolo
|
2172
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2173
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2174
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2175
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:44:24 -0600
|
2176
|
+
Processing by Gatherable::PricesController#create as JSON
|
2177
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
2178
|
+
Unpermitted parameter: yolo
|
2179
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2180
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2181
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2182
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:44:24 -0600
|
2183
|
+
Processing by Gatherable::PricesController#create as JSON
|
2184
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
2185
|
+
Unpermitted parameter: yolo
|
2186
|
+
Completed 201 Created in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2187
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2188
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2189
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:44:24 -0600
|
2190
|
+
Processing by Gatherable::PricesController#create as JSON
|
2191
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
2192
|
+
Unpermitted parameter: yolo
|
2193
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2194
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2195
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2196
|
+
Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-01-05 20:44:24 -0600
|
2197
|
+
Processing by Gatherable::PricesController#show as JSON
|
2198
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
|
2199
|
+
Completed 302 Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2200
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2201
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2202
|
+
Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-01-05 20:44:24 -0600
|
2203
|
+
Processing by Gatherable::PricesController#show as JSON
|
2204
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
|
2205
|
+
Completed 302 Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2206
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2207
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2208
|
+
Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-01-05 20:44:24 -0600
|
2209
|
+
Processing by Gatherable::PricesController#show as JSON
|
2210
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
|
2211
|
+
Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2212
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2213
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2214
|
+
Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-01-05 20:44:24 -0600
|
2215
|
+
Processing by Gatherable::PricesController#show as JSON
|
2216
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
|
2217
|
+
Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2218
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2219
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2220
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2221
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2222
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2223
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2224
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2225
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2226
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2227
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2228
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2229
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2230
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2231
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2232
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
2233
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2234
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2235
|
+
[1m[35m (0.2ms)[0m BEGIN
|
2236
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2237
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2238
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2239
|
+
[1m[35m (0.2ms)[0m BEGIN
|
2240
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2241
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2242
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2243
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2244
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
2245
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2246
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
2247
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2248
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2249
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2250
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2251
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2252
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2253
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2254
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2255
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2256
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2257
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2258
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2259
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2260
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2261
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2262
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2263
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2264
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2265
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2266
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2267
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2268
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2269
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2270
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2271
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2272
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2273
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2274
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
2275
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2276
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2277
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2278
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
2279
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2280
|
+
[1m[36m (112.0ms)[0m [1mDROP DATABASE IF EXISTS "gatherable_test"[0m
|
2281
|
+
[1m[35m (229.5ms)[0m CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
|
2282
|
+
[1m[35m (13.9ms)[0m CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
|
2283
|
+
[1m[36m (10.5ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
2284
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.4ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
2285
|
+
Migrating to CreateGatherableSchema (20160105204446)
|
2286
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
2287
|
+
[1m[35m (0.3ms)[0m CREATE SCHEMA gatherable
|
2288
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20160105204446"]]
|
2289
|
+
[1m[35m (0.3ms)[0m COMMIT
|
2290
|
+
Migrating to CreateGatherablePrice (20160105204447)
|
2291
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
2292
|
+
[1m[35m (2.4ms)[0m CREATE TABLE "gatherable"."prices" ("price_id" serial primary key, "price" decimal, "session_id" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
|
2293
|
+
[1m[36m (0.5ms)[0m [1mCREATE INDEX "index_gatherable.prices_on_session_id" ON "gatherable"."prices" ("session_id")[0m
|
2294
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160105204447"]]
|
2295
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m
|
2296
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2297
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:44:46 -0600
|
2298
|
+
Processing by Gatherable::PricesController#create as JSON
|
2299
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
2300
|
+
Completed 201 Created in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
2301
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:44:46 -0600
|
2302
|
+
Processing by Gatherable::PricesController#create as JSON
|
2303
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
2304
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2305
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
2306
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2307
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:44:46 -0600
|
2308
|
+
Processing by Gatherable::PricesController#create as JSON
|
2309
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
2310
|
+
Completed 201 Created in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2311
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2312
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2313
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:44:46 -0600
|
2314
|
+
Processing by Gatherable::PricesController#create as JSON
|
2315
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
2316
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2317
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2318
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2319
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:44:46 -0600
|
2320
|
+
Processing by Gatherable::PricesController#create as JSON
|
2321
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
2322
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2323
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2324
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2325
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:44:46 -0600
|
2326
|
+
Processing by Gatherable::PricesController#create as JSON
|
2327
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
2328
|
+
Completed 201 Created in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
2329
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2330
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2331
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:44:46 -0600
|
2332
|
+
Processing by Gatherable::PricesController#create as JSON
|
2333
|
+
Parameters: {"yolo"=>"swag", "session_id"=>"session_id123"}
|
2334
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2335
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2336
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2337
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:44:46 -0600
|
2338
|
+
Processing by Gatherable::PricesController#create as JSON
|
2339
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
2340
|
+
Unpermitted parameter: yolo
|
2341
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2342
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:44:46 -0600
|
2343
|
+
Processing by Gatherable::PricesController#create as JSON
|
2344
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
2345
|
+
Completed 201 Created in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2346
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2347
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2348
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:44:46 -0600
|
2349
|
+
Processing by Gatherable::PricesController#create as JSON
|
2350
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
2351
|
+
Unpermitted parameter: yolo
|
2352
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2353
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2354
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2355
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:44:46 -0600
|
2356
|
+
Processing by Gatherable::PricesController#create as JSON
|
2357
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
2358
|
+
Unpermitted parameter: yolo
|
2359
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2360
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2361
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2362
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:44:46 -0600
|
2363
|
+
Processing by Gatherable::PricesController#create as JSON
|
2364
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
2365
|
+
Unpermitted parameter: yolo
|
2366
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2367
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2368
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2369
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:44:46 -0600
|
2370
|
+
Processing by Gatherable::PricesController#create as JSON
|
2371
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
2372
|
+
Unpermitted parameter: yolo
|
2373
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2374
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2375
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2376
|
+
Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-01-05 20:44:46 -0600
|
2377
|
+
Processing by Gatherable::PricesController#show as JSON
|
2378
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
|
2379
|
+
Completed 302 Found in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2380
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2381
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2382
|
+
Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-01-05 20:44:46 -0600
|
2383
|
+
Processing by Gatherable::PricesController#show as JSON
|
2384
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
|
2385
|
+
Completed 302 Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2386
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2387
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2388
|
+
Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-01-05 20:44:46 -0600
|
2389
|
+
Processing by Gatherable::PricesController#show as JSON
|
2390
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
|
2391
|
+
Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2392
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2393
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2394
|
+
Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-01-05 20:44:46 -0600
|
2395
|
+
Processing by Gatherable::PricesController#show as JSON
|
2396
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
|
2397
|
+
Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2398
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2399
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2400
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
2401
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2402
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2403
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2404
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2405
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2406
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2407
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2408
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2409
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2410
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
2411
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2412
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
2413
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2414
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2415
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2416
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
2417
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2418
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
2419
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2420
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
2421
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2422
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
2423
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2424
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
2425
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2426
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
2427
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2428
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2429
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2430
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2431
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2432
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2433
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2434
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2435
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2436
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2437
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2438
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2439
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2440
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2441
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2442
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2443
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2444
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2445
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2446
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2447
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2448
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2449
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2450
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2451
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2452
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
2453
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2454
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
2455
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2456
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
2457
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2458
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
2459
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2460
|
+
[1m[36m (113.1ms)[0m [1mDROP DATABASE IF EXISTS "gatherable_test"[0m
|
2461
|
+
[1m[35m (232.4ms)[0m CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
|
2462
|
+
[1m[35m (14.8ms)[0m CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
|
2463
|
+
[1m[36m (6.9ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
2464
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
2465
|
+
Migrating to CreateGatherableSchema (20160105204635)
|
2466
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
2467
|
+
[1m[35m (0.2ms)[0m CREATE SCHEMA gatherable
|
2468
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20160105204635"]]
|
2469
|
+
[1m[35m (0.3ms)[0m COMMIT
|
2470
|
+
Migrating to CreateGatherablePrice (20160105204636)
|
2471
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
2472
|
+
[1m[35m (2.7ms)[0m CREATE TABLE "gatherable"."prices" ("price_id" serial primary key, "price" decimal, "session_id" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
|
2473
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_gatherable.prices_on_session_id" ON "gatherable"."prices" ("session_id")[0m
|
2474
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160105204636"]]
|
2475
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m
|
2476
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2477
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:46:36 -0600
|
2478
|
+
Processing by Gatherable::PricesController#create as JSON
|
2479
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
2480
|
+
Completed 201 Created in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
2481
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:46:36 -0600
|
2482
|
+
Processing by Gatherable::PricesController#create as JSON
|
2483
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
2484
|
+
Completed 201 Created in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2485
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
2486
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2487
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:46:36 -0600
|
2488
|
+
Processing by Gatherable::PricesController#create as JSON
|
2489
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
2490
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2491
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2492
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2493
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:46:36 -0600
|
2494
|
+
Processing by Gatherable::PricesController#create as JSON
|
2495
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
2496
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2497
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2498
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2499
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:46:36 -0600
|
2500
|
+
Processing by Gatherable::PricesController#create as JSON
|
2501
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
2502
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2503
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2504
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2505
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:46:36 -0600
|
2506
|
+
Processing by Gatherable::PricesController#create as JSON
|
2507
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
2508
|
+
Completed 201 Created in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2509
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2510
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2511
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:46:36 -0600
|
2512
|
+
Processing by Gatherable::PricesController#create as JSON
|
2513
|
+
Parameters: {"yolo"=>"swag", "session_id"=>"session_id123"}
|
2514
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2515
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2516
|
+
[1m[35m (0.2ms)[0m BEGIN
|
2517
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:46:36 -0600
|
2518
|
+
Processing by Gatherable::PricesController#create as JSON
|
2519
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
2520
|
+
Unpermitted parameter: yolo
|
2521
|
+
Completed 201 Created in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
2522
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:46:36 -0600
|
2523
|
+
Processing by Gatherable::PricesController#create as JSON
|
2524
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
2525
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2526
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2527
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2528
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:46:36 -0600
|
2529
|
+
Processing by Gatherable::PricesController#create as JSON
|
2530
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
2531
|
+
Unpermitted parameter: yolo
|
2532
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2533
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2534
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2535
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:46:36 -0600
|
2536
|
+
Processing by Gatherable::PricesController#create as JSON
|
2537
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
2538
|
+
Unpermitted parameter: yolo
|
2539
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2540
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2541
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2542
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:46:36 -0600
|
2543
|
+
Processing by Gatherable::PricesController#create as JSON
|
2544
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
2545
|
+
Unpermitted parameter: yolo
|
2546
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2547
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2548
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2549
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:46:36 -0600
|
2550
|
+
Processing by Gatherable::PricesController#create as JSON
|
2551
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
2552
|
+
Unpermitted parameter: yolo
|
2553
|
+
Completed 201 Created in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
2554
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2555
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2556
|
+
Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-01-05 20:46:36 -0600
|
2557
|
+
Processing by Gatherable::PricesController#show as JSON
|
2558
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
|
2559
|
+
Completed 302 Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2560
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2561
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2562
|
+
Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-01-05 20:46:36 -0600
|
2563
|
+
Processing by Gatherable::PricesController#show as JSON
|
2564
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
|
2565
|
+
Completed 302 Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2566
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2567
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2568
|
+
Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-01-05 20:46:36 -0600
|
2569
|
+
Processing by Gatherable::PricesController#show as JSON
|
2570
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
|
2571
|
+
Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2572
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2573
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2574
|
+
Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-01-05 20:46:36 -0600
|
2575
|
+
Processing by Gatherable::PricesController#show as JSON
|
2576
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
|
2577
|
+
Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2578
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2579
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2580
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2581
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2582
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2583
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2584
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2585
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2586
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2587
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2588
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2589
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2590
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2591
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2592
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
2593
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2594
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
2595
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2596
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
2597
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2598
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
2599
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2600
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
2601
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2602
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
2603
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2604
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2605
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2606
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
2607
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2608
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
2609
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2610
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
2611
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2612
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2613
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2614
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2615
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2616
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2617
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2618
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2619
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2620
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2621
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2622
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2623
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2624
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2625
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2626
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2627
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2628
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2629
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2630
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2631
|
+
[1m[35m (0.2ms)[0m BEGIN
|
2632
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2633
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2634
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
2635
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2636
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
2637
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2638
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2639
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2640
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2641
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2642
|
+
[1m[36m (112.8ms)[0m [1mDROP DATABASE IF EXISTS "gatherable_test"[0m
|
2643
|
+
[1m[35m (231.2ms)[0m CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
|
2644
|
+
[1m[35m (15.0ms)[0m CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
|
2645
|
+
[1m[36m (10.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
2646
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.3ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
2647
|
+
Migrating to CreateGatherableSchema (20160105205022)
|
2648
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
2649
|
+
[1m[35m (0.2ms)[0m CREATE SCHEMA gatherable
|
2650
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20160105205022"]]
|
2651
|
+
[1m[35m (0.2ms)[0m COMMIT
|
2652
|
+
Migrating to CreateGatherablePrice (20160105205023)
|
2653
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
2654
|
+
[1m[35m (2.3ms)[0m CREATE TABLE "gatherable"."prices" ("price_id" serial primary key, "price" decimal, "session_id" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
|
2655
|
+
[1m[36m (0.6ms)[0m [1mCREATE INDEX "index_gatherable.prices_on_session_id" ON "gatherable"."prices" ("session_id")[0m
|
2656
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160105205023"]]
|
2657
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m
|
2658
|
+
Migrating to CreateGatherableRequestedLoanAmount (20160105205024)
|
2659
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2660
|
+
[1m[36m (2.0ms)[0m [1mCREATE TABLE "gatherable"."requested_loan_amounts" ("requested_loan_amount_id" serial primary key, "requested_loan_amount" decimal, "total_cost" decimal, "monthly_repayment_amount" decimal, "session_id" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
2661
|
+
[1m[35m (1.0ms)[0m CREATE INDEX "index_gatherable.requested_loan_amounts_on_session_id" ON "gatherable"."requested_loan_amounts" ("session_id")
|
2662
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20160105205024"]]
|
2663
|
+
[1m[35m (0.7ms)[0m COMMIT
|
2664
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
2665
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:50:22 -0600
|
2666
|
+
Processing by Gatherable::PricesController#create as JSON
|
2667
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
2668
|
+
Completed 201 Created in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
2669
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:50:22 -0600
|
2670
|
+
Processing by Gatherable::PricesController#create as JSON
|
2671
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
2672
|
+
Completed 201 Created in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2673
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
2674
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
2675
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:50:22 -0600
|
2676
|
+
Processing by Gatherable::PricesController#create as JSON
|
2677
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
2678
|
+
Completed 201 Created in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2679
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
2680
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
2681
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:50:22 -0600
|
2682
|
+
Processing by Gatherable::PricesController#create as JSON
|
2683
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
2684
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2685
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
2686
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
2687
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:50:22 -0600
|
2688
|
+
Processing by Gatherable::PricesController#create as JSON
|
2689
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
2690
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2691
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
2692
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
2693
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:50:22 -0600
|
2694
|
+
Processing by Gatherable::PricesController#create as JSON
|
2695
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
2696
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2697
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
2698
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
2699
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:50:22 -0600
|
2700
|
+
Processing by Gatherable::PricesController#create as JSON
|
2701
|
+
Parameters: {"yolo"=>"swag", "session_id"=>"session_id123"}
|
2702
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2703
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
2704
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
2705
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:50:22 -0600
|
2706
|
+
Processing by Gatherable::PricesController#create as JSON
|
2707
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
2708
|
+
Unpermitted parameter: yolo
|
2709
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2710
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:50:22 -0600
|
2711
|
+
Processing by Gatherable::PricesController#create as JSON
|
2712
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
2713
|
+
Completed 201 Created in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2714
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
2715
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
2716
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:50:22 -0600
|
2717
|
+
Processing by Gatherable::PricesController#create as JSON
|
2718
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
2719
|
+
Unpermitted parameter: yolo
|
2720
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2721
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
2722
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
2723
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:50:22 -0600
|
2724
|
+
Processing by Gatherable::PricesController#create as JSON
|
2725
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
2726
|
+
Unpermitted parameter: yolo
|
2727
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2728
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
2729
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
2730
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:50:22 -0600
|
2731
|
+
Processing by Gatherable::PricesController#create as JSON
|
2732
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
2733
|
+
Unpermitted parameter: yolo
|
2734
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2735
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
2736
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
2737
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:50:22 -0600
|
2738
|
+
Processing by Gatherable::PricesController#create as JSON
|
2739
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
2740
|
+
Unpermitted parameter: yolo
|
2741
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2742
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
2743
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
2744
|
+
Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-01-05 20:50:22 -0600
|
2745
|
+
Processing by Gatherable::PricesController#show as JSON
|
2746
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
|
2747
|
+
Completed 302 Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2748
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
2749
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
2750
|
+
Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-01-05 20:50:22 -0600
|
2751
|
+
Processing by Gatherable::PricesController#show as JSON
|
2752
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
|
2753
|
+
Completed 302 Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2754
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
2755
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
2756
|
+
Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-01-05 20:50:22 -0600
|
2757
|
+
Processing by Gatherable::PricesController#show as JSON
|
2758
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
|
2759
|
+
Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2760
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
2761
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
2762
|
+
Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-01-05 20:50:22 -0600
|
2763
|
+
Processing by Gatherable::PricesController#show as JSON
|
2764
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
|
2765
|
+
Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2766
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
2767
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
2768
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
2769
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
2770
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
2771
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
2772
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
2773
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
2774
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
2775
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
2776
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
2777
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
2778
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
2779
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
2780
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
2781
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
2782
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
2783
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
2784
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
2785
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
2786
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
2787
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
2788
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
2789
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
2790
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
2791
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
2792
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
2793
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
2794
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
2795
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
2796
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
2797
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
2798
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
2799
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
2800
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
2801
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
2802
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
2803
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
2804
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
2805
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
2806
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
2807
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
2808
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
2809
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
2810
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
2811
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
2812
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
2813
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
2814
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
2815
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
2816
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
2817
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
2818
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
2819
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
2820
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
2821
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
2822
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
2823
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
2824
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
2825
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
2826
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
2827
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
2828
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
2829
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
2830
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
2831
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
2832
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
2833
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2834
|
+
[1m[36m (112.9ms)[0m [1mDROP DATABASE IF EXISTS "gatherable_test"[0m
|
2835
|
+
[1m[35m (231.6ms)[0m CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
|
2836
|
+
[1m[35m (14.6ms)[0m CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
|
2837
|
+
[1m[36m (7.2ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
2838
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
2839
|
+
Migrating to CreateGatherableSchema (20160105205137)
|
2840
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
2841
|
+
[1m[35m (0.4ms)[0m CREATE SCHEMA gatherable
|
2842
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20160105205137"]]
|
2843
|
+
[1m[35m (0.3ms)[0m COMMIT
|
2844
|
+
Migrating to CreateGatherablePrice (20160105205138)
|
2845
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
2846
|
+
[1m[35m (2.6ms)[0m CREATE TABLE "gatherable"."prices" ("price_id" serial primary key, "price" decimal, "total_cost" decimal, "monthly_repayment_amount" decimal, "session_id" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
|
2847
|
+
[1m[36m (0.5ms)[0m [1mCREATE INDEX "index_gatherable.prices_on_session_id" ON "gatherable"."prices" ("session_id")[0m
|
2848
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160105205138"]]
|
2849
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m
|
2850
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2851
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:51:37 -0600
|
2852
|
+
Processing by Gatherable::PricesController#create as JSON
|
2853
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
2854
|
+
Completed 201 Created in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
2855
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:51:37 -0600
|
2856
|
+
Processing by Gatherable::PricesController#create as JSON
|
2857
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
2858
|
+
Completed 201 Created in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2859
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
2860
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2861
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:51:37 -0600
|
2862
|
+
Processing by Gatherable::PricesController#create as JSON
|
2863
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
2864
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2865
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2866
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2867
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:51:38 -0600
|
2868
|
+
Processing by Gatherable::PricesController#create as JSON
|
2869
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
2870
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2871
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2872
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2873
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:51:38 -0600
|
2874
|
+
Processing by Gatherable::PricesController#create as JSON
|
2875
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
2876
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2877
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2878
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2879
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:51:38 -0600
|
2880
|
+
Processing by Gatherable::PricesController#create as JSON
|
2881
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
2882
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2883
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2884
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2885
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:51:38 -0600
|
2886
|
+
Processing by Gatherable::PricesController#create as JSON
|
2887
|
+
Parameters: {"yolo"=>"swag", "session_id"=>"session_id123"}
|
2888
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2889
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2890
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2891
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:51:38 -0600
|
2892
|
+
Processing by Gatherable::PricesController#create as JSON
|
2893
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
2894
|
+
Unpermitted parameter: yolo
|
2895
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2896
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:51:38 -0600
|
2897
|
+
Processing by Gatherable::PricesController#create as JSON
|
2898
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
2899
|
+
Completed 201 Created in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2900
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2901
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2902
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:51:38 -0600
|
2903
|
+
Processing by Gatherable::PricesController#create as JSON
|
2904
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
2905
|
+
Unpermitted parameter: yolo
|
2906
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2907
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2908
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2909
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:51:38 -0600
|
2910
|
+
Processing by Gatherable::PricesController#create as JSON
|
2911
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
2912
|
+
Unpermitted parameter: yolo
|
2913
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2914
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2915
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2916
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:51:38 -0600
|
2917
|
+
Processing by Gatherable::PricesController#create as JSON
|
2918
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
2919
|
+
Unpermitted parameter: yolo
|
2920
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2921
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2922
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2923
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:51:38 -0600
|
2924
|
+
Processing by Gatherable::PricesController#create as JSON
|
2925
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
2926
|
+
Unpermitted parameter: yolo
|
2927
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2928
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2929
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2930
|
+
Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-01-05 20:51:38 -0600
|
2931
|
+
Processing by Gatherable::PricesController#show as JSON
|
2932
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
|
2933
|
+
Completed 302 Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2934
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2935
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2936
|
+
Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-01-05 20:51:38 -0600
|
2937
|
+
Processing by Gatherable::PricesController#show as JSON
|
2938
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
|
2939
|
+
Completed 302 Found in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2940
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2941
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2942
|
+
Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-01-05 20:51:38 -0600
|
2943
|
+
Processing by Gatherable::PricesController#show as JSON
|
2944
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
|
2945
|
+
Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2946
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2947
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2948
|
+
Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-01-05 20:51:38 -0600
|
2949
|
+
Processing by Gatherable::PricesController#show as JSON
|
2950
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
|
2951
|
+
Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2952
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2953
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2954
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2955
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2956
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2957
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2958
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2959
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2960
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2961
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2962
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2963
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2964
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2965
|
+
[1m[35m (0.2ms)[0m BEGIN
|
2966
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2967
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2968
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2969
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2970
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
2971
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2972
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2973
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2974
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
2975
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2976
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2977
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2978
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
2979
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2980
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2981
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2982
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
2983
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2984
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2985
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2986
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2987
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2988
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2989
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2990
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2991
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2992
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2993
|
+
[1m[35m (0.1ms)[0m BEGIN
|
2994
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2995
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2996
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2997
|
+
[1m[35m (0.0ms)[0m BEGIN
|
2998
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2999
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3000
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3001
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3002
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3003
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3004
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3005
|
+
[1m[35m (0.0ms)[0m BEGIN
|
3006
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3007
|
+
[1m[35m (0.0ms)[0m BEGIN
|
3008
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
3009
|
+
[1m[35m (0.0ms)[0m BEGIN
|
3010
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
3011
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3012
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3013
|
+
[1m[35m (0.0ms)[0m BEGIN
|
3014
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3015
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
3016
|
+
[1m[36m (112.3ms)[0m [1mDROP DATABASE IF EXISTS "gatherable_test"[0m
|
3017
|
+
[1m[35m (232.8ms)[0m CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
|
3018
|
+
[1m[36m (112.4ms)[0m [1mDROP DATABASE IF EXISTS "gatherable_test"[0m
|
3019
|
+
[1m[35m (229.4ms)[0m CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
|
3020
|
+
[1m[36m (14.1ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL) [0m
|
3021
|
+
[1m[35m (11.6ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
3022
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
3023
|
+
Migrating to CreateGatherableSchema (20160105205852)
|
3024
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3025
|
+
[1m[36m (0.3ms)[0m [1mCREATE SCHEMA gatherable[0m
|
3026
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160105205852"]]
|
3027
|
+
[1m[36m (0.2ms)[0m [1mCOMMIT[0m
|
3028
|
+
Migrating to CreateGatherablePrice (20160105205853)
|
3029
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3030
|
+
[1m[36m (2.3ms)[0m [1mCREATE TABLE "gatherable"."prices" ("price_id" serial primary key, "price" decimal, "total_cost" decimal, "monthly_repayment_amount" decimal, "session_id" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
3031
|
+
[1m[35m (0.5ms)[0m CREATE INDEX "index_gatherable.prices_on_session_id" ON "gatherable"."prices" ("session_id")
|
3032
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20160105205853"]]
|
3033
|
+
[1m[35m (0.3ms)[0m COMMIT
|
3034
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3035
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:58:52 -0600
|
3036
|
+
Processing by Gatherable::PricesController#create as JSON
|
3037
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
3038
|
+
Completed 201 Created in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
3039
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:58:52 -0600
|
3040
|
+
Processing by Gatherable::PricesController#create as JSON
|
3041
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
3042
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
3043
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3044
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3045
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:58:52 -0600
|
3046
|
+
Processing by Gatherable::PricesController#create as JSON
|
3047
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
3048
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
3049
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3050
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
3051
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:58:52 -0600
|
3052
|
+
Processing by Gatherable::PricesController#create as JSON
|
3053
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
3054
|
+
Completed 201 Created in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
3055
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3056
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3057
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:58:52 -0600
|
3058
|
+
Processing by Gatherable::PricesController#create as JSON
|
3059
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
3060
|
+
Completed 201 Created in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
3061
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3062
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3063
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:58:52 -0600
|
3064
|
+
Processing by Gatherable::PricesController#create as JSON
|
3065
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
3066
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
3067
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3068
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3069
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:58:52 -0600
|
3070
|
+
Processing by Gatherable::PricesController#create as JSON
|
3071
|
+
Parameters: {"yolo"=>"swag", "session_id"=>"session_id123"}
|
3072
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
3073
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3074
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
3075
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:58:52 -0600
|
3076
|
+
Processing by Gatherable::PricesController#create as JSON
|
3077
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
3078
|
+
Unpermitted parameter: yolo
|
3079
|
+
Completed 201 Created in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
3080
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:58:52 -0600
|
3081
|
+
Processing by Gatherable::PricesController#create as JSON
|
3082
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
3083
|
+
Completed 201 Created in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
3084
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3085
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
3086
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:58:52 -0600
|
3087
|
+
Processing by Gatherable::PricesController#create as JSON
|
3088
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
3089
|
+
Unpermitted parameter: yolo
|
3090
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
3091
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3092
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
3093
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:58:52 -0600
|
3094
|
+
Processing by Gatherable::PricesController#create as JSON
|
3095
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
3096
|
+
Unpermitted parameter: yolo
|
3097
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
3098
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3099
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
3100
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:58:52 -0600
|
3101
|
+
Processing by Gatherable::PricesController#create as JSON
|
3102
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
3103
|
+
Unpermitted parameter: yolo
|
3104
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
3105
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3106
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
3107
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 20:58:52 -0600
|
3108
|
+
Processing by Gatherable::PricesController#create as JSON
|
3109
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
3110
|
+
Unpermitted parameter: yolo
|
3111
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
3112
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3113
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3114
|
+
Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-01-05 20:58:52 -0600
|
3115
|
+
Processing by Gatherable::PricesController#show as JSON
|
3116
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
|
3117
|
+
Completed 302 Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
3118
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3119
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
3120
|
+
Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-01-05 20:58:52 -0600
|
3121
|
+
Processing by Gatherable::PricesController#show as JSON
|
3122
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
|
3123
|
+
Completed 302 Found in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
3124
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3125
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
3126
|
+
Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-01-05 20:58:52 -0600
|
3127
|
+
Processing by Gatherable::PricesController#show as JSON
|
3128
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
|
3129
|
+
Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
3130
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3131
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3132
|
+
Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-01-05 20:58:52 -0600
|
3133
|
+
Processing by Gatherable::PricesController#show as JSON
|
3134
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
|
3135
|
+
Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
3136
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3137
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
3138
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
3139
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
3140
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
3141
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3142
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3143
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
3144
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
3145
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
3146
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3147
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3148
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3149
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3150
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3151
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
3152
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
3153
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
3154
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
3155
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
3156
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
3157
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
3158
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
3159
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
3160
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
3161
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
3162
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
3163
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
3164
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
3165
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3166
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3167
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
3168
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3169
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
3170
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3171
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
3172
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3173
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
3174
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3175
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3176
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3177
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3178
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3179
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3180
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3181
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
3182
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3183
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3184
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3185
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3186
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3187
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
3188
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3189
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3190
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3191
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
3192
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
3193
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
3194
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
3195
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3196
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3197
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
3198
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3199
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
3200
|
+
[1m[36m (112.9ms)[0m [1mDROP DATABASE IF EXISTS "gatherable_test"[0m
|
3201
|
+
[1m[35m (233.4ms)[0m CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
|
3202
|
+
[1m[35m (14.4ms)[0m CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
|
3203
|
+
[1m[36m (11.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
3204
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.3ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
3205
|
+
Migrating to CreateGatherableSchema (20160105210045)
|
3206
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3207
|
+
[1m[35m (0.3ms)[0m CREATE SCHEMA gatherable
|
3208
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20160105210045"]]
|
3209
|
+
[1m[35m (0.2ms)[0m COMMIT
|
3210
|
+
Migrating to CreateGatherablePrice (20160105210046)
|
3211
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3212
|
+
[1m[35m (2.3ms)[0m CREATE TABLE "gatherable"."prices" ("price_id" serial primary key, "price" decimal, "total_cost" decimal, "monthly_repayment_amount" decimal, "session_id" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
|
3213
|
+
[1m[36m (0.5ms)[0m [1mCREATE INDEX "index_gatherable.prices_on_session_id" ON "gatherable"."prices" ("session_id")[0m
|
3214
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160105210046"]]
|
3215
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m
|
3216
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3217
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 21:00:45 -0600
|
3218
|
+
Processing by Gatherable::PricesController#create as JSON
|
3219
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
3220
|
+
Completed 201 Created in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
3221
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 21:00:45 -0600
|
3222
|
+
Processing by Gatherable::PricesController#create as JSON
|
3223
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
3224
|
+
Completed 201 Created in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
3225
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3226
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3227
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 21:00:45 -0600
|
3228
|
+
Processing by Gatherable::PricesController#create as JSON
|
3229
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
3230
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
3231
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3232
|
+
[1m[35m (0.0ms)[0m BEGIN
|
3233
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 21:00:45 -0600
|
3234
|
+
Processing by Gatherable::PricesController#create as JSON
|
3235
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
3236
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
3237
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3238
|
+
[1m[35m (0.0ms)[0m BEGIN
|
3239
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 21:00:45 -0600
|
3240
|
+
Processing by Gatherable::PricesController#create as JSON
|
3241
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
3242
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
3243
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3244
|
+
[1m[35m (0.0ms)[0m BEGIN
|
3245
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 21:00:45 -0600
|
3246
|
+
Processing by Gatherable::PricesController#create as JSON
|
3247
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
3248
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
3249
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3250
|
+
[1m[35m (0.0ms)[0m BEGIN
|
3251
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 21:00:45 -0600
|
3252
|
+
Processing by Gatherable::PricesController#create as JSON
|
3253
|
+
Parameters: {"yolo"=>"swag", "session_id"=>"session_id123"}
|
3254
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
3255
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3256
|
+
[1m[35m (0.0ms)[0m BEGIN
|
3257
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 21:00:45 -0600
|
3258
|
+
Processing by Gatherable::PricesController#create as JSON
|
3259
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
3260
|
+
Unpermitted parameter: yolo
|
3261
|
+
Completed 201 Created in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
3262
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 21:00:45 -0600
|
3263
|
+
Processing by Gatherable::PricesController#create as JSON
|
3264
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
3265
|
+
Completed 201 Created in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
3266
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3267
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3268
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 21:00:45 -0600
|
3269
|
+
Processing by Gatherable::PricesController#create as JSON
|
3270
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
3271
|
+
Unpermitted parameter: yolo
|
3272
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
3273
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3274
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3275
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 21:00:45 -0600
|
3276
|
+
Processing by Gatherable::PricesController#create as JSON
|
3277
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
3278
|
+
Unpermitted parameter: yolo
|
3279
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
3280
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3281
|
+
[1m[35m (0.0ms)[0m BEGIN
|
3282
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 21:00:45 -0600
|
3283
|
+
Processing by Gatherable::PricesController#create as JSON
|
3284
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
3285
|
+
Unpermitted parameter: yolo
|
3286
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
3287
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3288
|
+
[1m[35m (0.0ms)[0m BEGIN
|
3289
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 21:00:45 -0600
|
3290
|
+
Processing by Gatherable::PricesController#create as JSON
|
3291
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
3292
|
+
Unpermitted parameter: yolo
|
3293
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
3294
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3295
|
+
[1m[35m (0.0ms)[0m BEGIN
|
3296
|
+
Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-01-05 21:00:45 -0600
|
3297
|
+
Processing by Gatherable::PricesController#show as JSON
|
3298
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
|
3299
|
+
Completed 302 Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
3300
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3301
|
+
[1m[35m (0.0ms)[0m BEGIN
|
3302
|
+
Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-01-05 21:00:45 -0600
|
3303
|
+
Processing by Gatherable::PricesController#show as JSON
|
3304
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
|
3305
|
+
Completed 302 Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
3306
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3307
|
+
[1m[35m (0.0ms)[0m BEGIN
|
3308
|
+
Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-01-05 21:00:45 -0600
|
3309
|
+
Processing by Gatherable::PricesController#show as JSON
|
3310
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
|
3311
|
+
Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
3312
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3313
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3314
|
+
Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-01-05 21:00:45 -0600
|
3315
|
+
Processing by Gatherable::PricesController#show as JSON
|
3316
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
|
3317
|
+
Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
3318
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3319
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3320
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3321
|
+
[1m[35m (0.0ms)[0m BEGIN
|
3322
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
3323
|
+
[1m[35m (0.0ms)[0m BEGIN
|
3324
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
3325
|
+
[1m[35m (0.0ms)[0m BEGIN
|
3326
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
3327
|
+
[1m[35m (0.0ms)[0m BEGIN
|
3328
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3329
|
+
[1m[35m (0.0ms)[0m BEGIN
|
3330
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
3331
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3332
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3333
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3334
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3335
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3336
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3337
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3338
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3339
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3340
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3341
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3342
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3343
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3344
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3345
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3346
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3347
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3348
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3349
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3350
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3351
|
+
[1m[35m (0.0ms)[0m BEGIN
|
3352
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3353
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3354
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3355
|
+
[1m[35m (0.0ms)[0m BEGIN
|
3356
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3357
|
+
[1m[35m (0.0ms)[0m BEGIN
|
3358
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3359
|
+
[1m[35m (0.0ms)[0m BEGIN
|
3360
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3361
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3362
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3363
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3364
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3365
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3366
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3367
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3368
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3369
|
+
[1m[35m (0.0ms)[0m BEGIN
|
3370
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3371
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3372
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3373
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3374
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3375
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3376
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3377
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3378
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3379
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3380
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3381
|
+
[1m[36m (112.2ms)[0m [1mDROP DATABASE IF EXISTS "gatherable_test"[0m
|
3382
|
+
[1m[35m (231.5ms)[0m CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
|
3383
|
+
[1m[36m (14.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL) [0m
|
3384
|
+
[1m[35m (11.0ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
3385
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
3386
|
+
Migrating to CreateGatherableSchema (20160105210215)
|
3387
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3388
|
+
[1m[36m (0.3ms)[0m [1mCREATE SCHEMA gatherable[0m
|
3389
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160105210215"]]
|
3390
|
+
[1m[36m (0.2ms)[0m [1mCOMMIT[0m
|
3391
|
+
Migrating to CreateGatherablePrice (20160105210216)
|
3392
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3393
|
+
[1m[36m (2.4ms)[0m [1mCREATE TABLE "gatherable"."prices" ("price_id" serial primary key, "price" decimal, "total_cost" decimal, "monthly_repayment_amount" decimal, "session_id" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
3394
|
+
[1m[35m (0.4ms)[0m CREATE INDEX "index_gatherable.prices_on_session_id" ON "gatherable"."prices" ("session_id")
|
3395
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20160105210216"]]
|
3396
|
+
[1m[35m (0.3ms)[0m COMMIT
|
3397
|
+
[1m[36m (0.4ms)[0m [1mBEGIN[0m
|
3398
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 21:02:15 -0600
|
3399
|
+
Processing by Gatherable::PricesController#create as JSON
|
3400
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
3401
|
+
Completed 201 Created in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
3402
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 21:02:15 -0600
|
3403
|
+
Processing by Gatherable::PricesController#create as JSON
|
3404
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
3405
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
3406
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3407
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
3408
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 21:02:15 -0600
|
3409
|
+
Processing by Gatherable::PricesController#create as JSON
|
3410
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
3411
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
3412
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3413
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
3414
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 21:02:15 -0600
|
3415
|
+
Processing by Gatherable::PricesController#create as JSON
|
3416
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
3417
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
3418
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3419
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3420
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 21:02:15 -0600
|
3421
|
+
Processing by Gatherable::PricesController#create as JSON
|
3422
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
3423
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
3424
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3425
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
3426
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 21:02:15 -0600
|
3427
|
+
Processing by Gatherable::PricesController#create as JSON
|
3428
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
3429
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
3430
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3431
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3432
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 21:02:15 -0600
|
3433
|
+
Processing by Gatherable::PricesController#create as JSON
|
3434
|
+
Parameters: {"yolo"=>"swag", "session_id"=>"session_id123"}
|
3435
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
3436
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3437
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
3438
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 21:02:15 -0600
|
3439
|
+
Processing by Gatherable::PricesController#create as JSON
|
3440
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
3441
|
+
Unpermitted parameter: yolo
|
3442
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
3443
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 21:02:15 -0600
|
3444
|
+
Processing by Gatherable::PricesController#create as JSON
|
3445
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
3446
|
+
Completed 201 Created in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
3447
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3448
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3449
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 21:02:15 -0600
|
3450
|
+
Processing by Gatherable::PricesController#create as JSON
|
3451
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
3452
|
+
Unpermitted parameter: yolo
|
3453
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
3454
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3455
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3456
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 21:02:15 -0600
|
3457
|
+
Processing by Gatherable::PricesController#create as JSON
|
3458
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
3459
|
+
Unpermitted parameter: yolo
|
3460
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
3461
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3462
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3463
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 21:02:15 -0600
|
3464
|
+
Processing by Gatherable::PricesController#create as JSON
|
3465
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
3466
|
+
Unpermitted parameter: yolo
|
3467
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
3468
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3469
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3470
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 21:02:15 -0600
|
3471
|
+
Processing by Gatherable::PricesController#create as JSON
|
3472
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
3473
|
+
Unpermitted parameter: yolo
|
3474
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
3475
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3476
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
3477
|
+
Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-01-05 21:02:15 -0600
|
3478
|
+
Processing by Gatherable::PricesController#show as JSON
|
3479
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
|
3480
|
+
Completed 302 Found in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
3481
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3482
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3483
|
+
Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-01-05 21:02:15 -0600
|
3484
|
+
Processing by Gatherable::PricesController#show as JSON
|
3485
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
|
3486
|
+
Completed 302 Found in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
3487
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3488
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3489
|
+
Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-01-05 21:02:15 -0600
|
3490
|
+
Processing by Gatherable::PricesController#show as JSON
|
3491
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
|
3492
|
+
Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
3493
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3494
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
3495
|
+
Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-01-05 21:02:15 -0600
|
3496
|
+
Processing by Gatherable::PricesController#show as JSON
|
3497
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
|
3498
|
+
Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
3499
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3500
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
3501
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
3502
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
3503
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
3504
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3505
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3506
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3507
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3508
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3509
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3510
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3511
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3512
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3513
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3514
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3515
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3516
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3517
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3518
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3519
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3520
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3521
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3522
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3523
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3524
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3525
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3526
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3527
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3528
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3529
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3530
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3531
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3532
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
3533
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3534
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
3535
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3536
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3537
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3538
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3539
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3540
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3541
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3542
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3543
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3544
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3545
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3546
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
3547
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3548
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
3549
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3550
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
3551
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3552
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3553
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3554
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3555
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3556
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3557
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3558
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3559
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3560
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3561
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3562
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
3563
|
+
[1m[36m (5045.4ms)[0m [1mDROP DATABASE IF EXISTS "gatherable_test"[0m
|
3564
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
3565
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
3566
|
+
Migrating to CreateGatherableSchema (20160105210303)
|
3567
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3568
|
+
[1m[36m (0.2ms)[0m [1mCREATE SCHEMA gatherable[0m
|
3569
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3570
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
3571
|
+
[1m[36m (5046.8ms)[0m [1mDROP DATABASE IF EXISTS "gatherable_test"[0m
|
3572
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.3ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
3573
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
3574
|
+
Migrating to CreateGatherableSchema (20160105210356)
|
3575
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3576
|
+
[1m[36m (0.3ms)[0m [1mCREATE SCHEMA gatherable[0m
|
3577
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
3578
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
3579
|
+
[1m[36m (112.2ms)[0m [1mDROP DATABASE IF EXISTS "gatherable_test"[0m
|
3580
|
+
[1m[35m (230.2ms)[0m CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
|
3581
|
+
[1m[35m (14.2ms)[0m CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
|
3582
|
+
[1m[36m (11.2ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
3583
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.3ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
3584
|
+
Migrating to CreateGatherableSchema (20160105210404)
|
3585
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3586
|
+
[1m[35m (0.2ms)[0m CREATE SCHEMA gatherable
|
3587
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20160105210404"]]
|
3588
|
+
[1m[35m (0.3ms)[0m COMMIT
|
3589
|
+
Migrating to CreateGatherablePrice (20160105210405)
|
3590
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3591
|
+
[1m[35m (2.3ms)[0m CREATE TABLE "gatherable"."prices" ("price_id" serial primary key, "price" decimal, "total_cost" decimal, "monthly_repayment_amount" decimal, "session_id" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
|
3592
|
+
[1m[36m (0.5ms)[0m [1mCREATE INDEX "index_gatherable.prices_on_session_id" ON "gatherable"."prices" ("session_id")[0m
|
3593
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160105210405"]]
|
3594
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m
|
3595
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3596
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 21:04:04 -0600
|
3597
|
+
Processing by Gatherable::PricesController#create as JSON
|
3598
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
3599
|
+
Completed 201 Created in 2ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
3600
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 21:04:04 -0600
|
3601
|
+
Processing by Gatherable::PricesController#create as JSON
|
3602
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
3603
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
3604
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3605
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3606
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 21:04:04 -0600
|
3607
|
+
Processing by Gatherable::PricesController#create as JSON
|
3608
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
3609
|
+
Completed 201 Created in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
3610
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3611
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3612
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 21:04:04 -0600
|
3613
|
+
Processing by Gatherable::PricesController#create as JSON
|
3614
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
3615
|
+
Completed 201 Created in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
3616
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3617
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3618
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 21:04:04 -0600
|
3619
|
+
Processing by Gatherable::PricesController#create as JSON
|
3620
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
3621
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
3622
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3623
|
+
[1m[35m (0.0ms)[0m BEGIN
|
3624
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 21:04:04 -0600
|
3625
|
+
Processing by Gatherable::PricesController#create as JSON
|
3626
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
3627
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
3628
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3629
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3630
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 21:04:04 -0600
|
3631
|
+
Processing by Gatherable::PricesController#create as JSON
|
3632
|
+
Parameters: {"yolo"=>"swag", "session_id"=>"session_id123"}
|
3633
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
3634
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3635
|
+
[1m[35m (0.0ms)[0m BEGIN
|
3636
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 21:04:04 -0600
|
3637
|
+
Processing by Gatherable::PricesController#create as JSON
|
3638
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
3639
|
+
Unpermitted parameter: yolo
|
3640
|
+
Completed 201 Created in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
3641
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 21:04:04 -0600
|
3642
|
+
Processing by Gatherable::PricesController#create as JSON
|
3643
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
3644
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
3645
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3646
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3647
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 21:04:04 -0600
|
3648
|
+
Processing by Gatherable::PricesController#create as JSON
|
3649
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
3650
|
+
Unpermitted parameter: yolo
|
3651
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
3652
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3653
|
+
[1m[35m (0.0ms)[0m BEGIN
|
3654
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 21:04:04 -0600
|
3655
|
+
Processing by Gatherable::PricesController#create as JSON
|
3656
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
3657
|
+
Unpermitted parameter: yolo
|
3658
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
3659
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3660
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3661
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 21:04:04 -0600
|
3662
|
+
Processing by Gatherable::PricesController#create as JSON
|
3663
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
3664
|
+
Unpermitted parameter: yolo
|
3665
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
3666
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3667
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3668
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 21:04:04 -0600
|
3669
|
+
Processing by Gatherable::PricesController#create as JSON
|
3670
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
3671
|
+
Unpermitted parameter: yolo
|
3672
|
+
Completed 201 Created in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
3673
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3674
|
+
[1m[35m (0.0ms)[0m BEGIN
|
3675
|
+
Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-01-05 21:04:04 -0600
|
3676
|
+
Processing by Gatherable::PricesController#show as JSON
|
3677
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
|
3678
|
+
Completed 302 Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
3679
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3680
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3681
|
+
Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-01-05 21:04:04 -0600
|
3682
|
+
Processing by Gatherable::PricesController#show as JSON
|
3683
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
|
3684
|
+
Completed 302 Found in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
3685
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3686
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3687
|
+
Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-01-05 21:04:04 -0600
|
3688
|
+
Processing by Gatherable::PricesController#show as JSON
|
3689
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
|
3690
|
+
Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
3691
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3692
|
+
[1m[35m (0.0ms)[0m BEGIN
|
3693
|
+
Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-01-05 21:04:04 -0600
|
3694
|
+
Processing by Gatherable::PricesController#show as JSON
|
3695
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
|
3696
|
+
Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
3697
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3698
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3699
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3700
|
+
[1m[35m (0.0ms)[0m BEGIN
|
3701
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3702
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3703
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3704
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3705
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3706
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3707
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3708
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3709
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3710
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3711
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3712
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3713
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3714
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3715
|
+
[1m[36m (0.3ms)[0m [1mROLLBACK[0m
|
3716
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3717
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3718
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3719
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3720
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3721
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3722
|
+
[1m[35m (0.2ms)[0m BEGIN
|
3723
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3724
|
+
[1m[35m (0.0ms)[0m BEGIN
|
3725
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3726
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3727
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3728
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3729
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3730
|
+
[1m[35m (0.0ms)[0m BEGIN
|
3731
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3732
|
+
[1m[35m (0.0ms)[0m BEGIN
|
3733
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3734
|
+
[1m[35m (0.0ms)[0m BEGIN
|
3735
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3736
|
+
[1m[35m (0.0ms)[0m BEGIN
|
3737
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3738
|
+
[1m[35m (0.0ms)[0m BEGIN
|
3739
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3740
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3741
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3742
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3743
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3744
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3745
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3746
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3747
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3748
|
+
[1m[35m (0.0ms)[0m BEGIN
|
3749
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3750
|
+
[1m[35m (0.0ms)[0m BEGIN
|
3751
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3752
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3753
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3754
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3755
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3756
|
+
[1m[35m (0.0ms)[0m BEGIN
|
3757
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3758
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3759
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|