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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 09b8a7e4dbf788cde1816d9c319af7817648d106
4
- data.tar.gz: c52691404ee19dd12f5eb7be2752495e2f27a210
3
+ metadata.gz: 14f2a9f45860657124c2ddeba60dd3fa94f6f6c3
4
+ data.tar.gz: 054066f7aa1beae4bb86fba194530a9783b68705
5
5
  SHA512:
6
- metadata.gz: 1e9b02a9b1aa75cb979d40efb00ede2c2e59e3067d8fc8859f7c5f04950409016cdee746abeb9e65e6d405876f2e8b4574d97f22153859b6ae1505f07664598f
7
- data.tar.gz: 0e3f799004046b602253c04377ab576a40532bd4e5d84dd57a9962c3265a5d27fbd7e45de5aaf15d36d163f22777c199b0c0abd6c8ac16d0e8a40a02643b6304
6
+ metadata.gz: 1112d63d027c59b2a46fcd4e281d9c9861cd706246bea14c32fe926ac4047fe9167cea955cb94777ece526eebdfa58655b2038f889184f39983eb401275f21c4
7
+ data.tar.gz: aaf878f500d1835d6d9ceeffe577b94d4e7e76d9fc8333a1d93e5220d2b662ee2e02b89c584a8f3cb70935354c609a15663ebab03fb1167274d96998db13008e
@@ -1,8 +1,8 @@
1
- class DataPoint
2
- attr_reader :name, :data_type
3
- def initialize(name, data_type)
1
+ class DataTable
2
+ attr_reader :name, :columns
3
+ def initialize(name, columns)
4
4
  @name = name
5
- @data_type = data_type
5
+ @columns = columns
6
6
  end
7
7
 
8
8
  def class_name
@@ -1,12 +1,12 @@
1
1
  class ControllerWriter
2
- attr_reader :data_point
3
- def initialize(data_point)
4
- @data_point = data_point
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 #{data_point.name}. Skipping"
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 = "#{data_point.name.to_s.pluralize}_controller.rb"
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 #{data_point.controller_name} < Gatherable::ApplicationController
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 :data_point
2
+ attr_reader :data_table
3
3
 
4
- def initialize(data_point)
5
- @data_point = data_point
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 ||= data_point.classify.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 => '#{data_point.name}_id' do |t|
66
- t.#{data_type} :#{data_point.name}, :null => false
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 #{data_point.name}"
89
+ "migrations #{matching_migrations} already exist. Skipping migration for #{data_table.name}"
85
90
  end
86
91
 
87
92
  def matching_migrations
@@ -1,12 +1,12 @@
1
1
  class ModelWriter
2
- attr_reader :data_point
3
- def initialize(data_point)
4
- @data_point = data_point
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 #{data_point.name}. Skipping"
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 = "#{data_point.name}.rb"
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 #{data_point.class_name} < ActiveRecord::Base
30
- self.table_name = '#{data_point.name.to_s.pluralize}'
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.data_points.map(&:classify)
23
+ config.data_tables.map(&:classify)
24
24
  end
25
25
 
26
26
  def create_controllers
27
- config.data_points.map(&:controllerify)
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.data_points.map{ |dp| dp.name.to_s.pluralize }.each do |data_point|
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 data_point.to_sym, :only => [:show, :create], :param => "#{data_point.singularize}_id"
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 => :data_points
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
- data_points << DataPoint.new(name, data_type)
8
+ data_tables << DataTable.new(name, {name => data_type})
9
9
  end
10
10
 
11
- def data_points
12
- @data_points ||= []
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
@@ -1,3 +1,3 @@
1
1
  module Gatherable
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
@@ -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.data_points.each do |data_point|
17
- MigrationWriter.new(data_point).write
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.data_points.each do |data_point|
23
- ModelWriter.new(data_point).write
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.data_points.each do |data_point|
30
- ControllerWriter.new(data_point).write
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({"price_id"=>nil, "price"=>"3.0", "session_id" => nil, "created_at"=>nil, "updated_at"=>nil})
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
@@ -1548,3 +1548,2212 @@ Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1548
1548
   (0.1ms) ROLLBACK
1549
1549
   (0.1ms) BEGIN
1550
1550
   (0.1ms) ROLLBACK
1551
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
1552
+  (111.2ms) DROP DATABASE IF EXISTS "gatherable_test"
1553
+  (321.9ms) CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
1554
+  (112.1ms) DROP DATABASE IF EXISTS "gatherable_test"
1555
+  (230.7ms) CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
1556
+  (112.2ms) DROP DATABASE IF EXISTS "gatherable_test"
1557
+  (234.7ms) CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
1558
+  (14.5ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
1559
+  (10.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1560
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1561
+ Migrating to CreateGatherableSchema (20160105203851)
1562
+  (0.1ms) BEGIN
1563
+  (0.2ms) CREATE SCHEMA gatherable
1564
+ SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160105203851"]]
1565
+  (5.9ms) COMMIT
1566
+ Migrating to CreateGatherablePrice (20160105203852)
1567
+  (0.1ms) BEGIN
1568
+  (13.9ms) CREATE 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) 
1569
+  (0.6ms) CREATE INDEX "index_gatherable.prices_on_session_id" ON "gatherable"."prices" ("session_id")
1570
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160105203852"]]
1571
+  (0.3ms) COMMIT
1572
+  (0.2ms) BEGIN
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
+  (0.1ms) ROLLBACK
1582
+  (0.0ms) BEGIN
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
+  (0.1ms) ROLLBACK
1588
+  (0.1ms) BEGIN
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
+  (0.1ms) ROLLBACK
1594
+  (0.1ms) BEGIN
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
+  (0.1ms) ROLLBACK
1600
+  (0.1ms) BEGIN
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
+  (0.1ms) ROLLBACK
1606
+  (0.1ms) BEGIN
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
+  (0.1ms) ROLLBACK
1612
+  (0.1ms) BEGIN
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
+  (0.1ms) ROLLBACK
1623
+  (0.1ms) BEGIN
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
+  (0.1ms) ROLLBACK
1630
+  (0.0ms) BEGIN
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
+  (0.1ms) ROLLBACK
1637
+  (0.0ms) BEGIN
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
+  (0.1ms) ROLLBACK
1644
+  (0.1ms) BEGIN
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
+  (0.1ms) ROLLBACK
1651
+  (0.0ms) BEGIN
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
+  (0.1ms) ROLLBACK
1657
+  (0.0ms) BEGIN
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
+  (0.1ms) ROLLBACK
1663
+  (0.0ms) BEGIN
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
+  (0.1ms) ROLLBACK
1669
+  (0.1ms) BEGIN
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
+  (0.1ms) ROLLBACK
1675
+  (0.1ms) BEGIN
1676
+  (0.1ms) ROLLBACK
1677
+  (0.1ms) BEGIN
1678
+  (0.1ms) ROLLBACK
1679
+  (0.0ms) BEGIN
1680
+  (0.1ms) ROLLBACK
1681
+  (0.1ms) BEGIN
1682
+  (0.1ms) ROLLBACK
1683
+  (0.1ms) BEGIN
1684
+  (0.1ms) ROLLBACK
1685
+  (0.1ms) BEGIN
1686
+  (0.1ms) ROLLBACK
1687
+  (0.0ms) BEGIN
1688
+  (0.0ms) ROLLBACK
1689
+  (0.0ms) BEGIN
1690
+  (0.1ms) ROLLBACK
1691
+  (0.1ms) BEGIN
1692
+  (0.1ms) ROLLBACK
1693
+  (0.1ms) BEGIN
1694
+  (0.1ms) ROLLBACK
1695
+  (0.0ms) BEGIN
1696
+  (0.1ms) ROLLBACK
1697
+  (0.1ms) BEGIN
1698
+  (0.1ms) ROLLBACK
1699
+  (0.1ms) BEGIN
1700
+  (0.1ms) ROLLBACK
1701
+  (0.0ms) BEGIN
1702
+  (0.0ms) ROLLBACK
1703
+  (0.1ms) BEGIN
1704
+  (0.1ms) ROLLBACK
1705
+  (0.1ms) BEGIN
1706
+  (0.3ms) ROLLBACK
1707
+  (0.1ms) BEGIN
1708
+  (0.1ms) ROLLBACK
1709
+  (0.1ms) BEGIN
1710
+  (0.1ms) ROLLBACK
1711
+  (0.0ms) BEGIN
1712
+  (0.1ms) ROLLBACK
1713
+  (0.0ms) BEGIN
1714
+  (0.1ms) ROLLBACK
1715
+  (0.1ms) BEGIN
1716
+  (0.1ms) ROLLBACK
1717
+  (0.1ms) BEGIN
1718
+  (0.1ms) ROLLBACK
1719
+  (0.1ms) BEGIN
1720
+  (0.1ms) ROLLBACK
1721
+  (0.0ms) BEGIN
1722
+  (0.1ms) ROLLBACK
1723
+  (0.0ms) BEGIN
1724
+  (0.1ms) ROLLBACK
1725
+  (0.0ms) BEGIN
1726
+  (0.1ms) ROLLBACK
1727
+  (0.1ms) BEGIN
1728
+  (0.1ms) ROLLBACK
1729
+  (0.0ms) BEGIN
1730
+  (0.1ms) ROLLBACK
1731
+  (0.1ms) BEGIN
1732
+  (0.1ms) ROLLBACK
1733
+  (0.1ms) BEGIN
1734
+  (0.1ms) ROLLBACK
1735
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1736
+  (111.9ms) DROP DATABASE IF EXISTS "gatherable_test"
1737
+  (231.1ms) CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
1738
+  (112.2ms) DROP DATABASE IF EXISTS "gatherable_test"
1739
+  (231.4ms) CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
1740
+  (111.0ms) DROP DATABASE IF EXISTS "gatherable_test"
1741
+  (230.8ms) CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
1742
+  (14.4ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
1743
+  (11.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1744
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1745
+ Migrating to CreateGatherableSchema (20160105204111)
1746
+  (0.1ms) BEGIN
1747
+  (0.2ms) CREATE SCHEMA gatherable
1748
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160105204111"]]
1749
+  (0.2ms) COMMIT
1750
+ Migrating to CreateGatherablePrice (20160105204112)
1751
+  (0.1ms) BEGIN
1752
+  (3.5ms) CREATE TABLE "gatherable"."prices" ("price_id" serial primary key, "price" decimal, "session_id" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
1753
+  (0.5ms) CREATE INDEX "index_gatherable.prices_on_session_id" ON "gatherable"."prices" ("session_id")
1754
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160105204112"]]
1755
+  (0.4ms) COMMIT
1756
+  (0.1ms) BEGIN
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
+  (0.2ms) ROLLBACK
1766
+  (0.1ms) BEGIN
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
+  (0.1ms) ROLLBACK
1772
+  (0.0ms) BEGIN
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
+  (0.1ms) ROLLBACK
1778
+  (0.0ms) BEGIN
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
+  (0.1ms) ROLLBACK
1784
+  (0.0ms) BEGIN
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
+  (0.1ms) ROLLBACK
1790
+  (0.1ms) BEGIN
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
+  (0.1ms) ROLLBACK
1796
+  (0.1ms) BEGIN
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
+  (0.1ms) ROLLBACK
1807
+  (0.1ms) BEGIN
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
+  (0.1ms) ROLLBACK
1814
+  (0.1ms) BEGIN
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
+  (0.1ms) ROLLBACK
1821
+  (0.0ms) BEGIN
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
+  (0.1ms) ROLLBACK
1828
+  (0.0ms) BEGIN
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
+  (0.1ms) ROLLBACK
1835
+  (0.0ms) BEGIN
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
+  (0.1ms) ROLLBACK
1841
+  (0.0ms) BEGIN
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
+  (0.1ms) ROLLBACK
1847
+  (0.1ms) BEGIN
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
+  (0.1ms) ROLLBACK
1853
+  (0.0ms) BEGIN
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
+  (0.1ms) ROLLBACK
1859
+  (0.0ms) BEGIN
1860
+  (0.0ms) ROLLBACK
1861
+  (0.1ms) BEGIN
1862
+  (0.0ms) ROLLBACK
1863
+  (0.0ms) BEGIN
1864
+  (0.0ms) ROLLBACK
1865
+  (0.0ms) BEGIN
1866
+  (0.1ms) ROLLBACK
1867
+  (0.1ms) BEGIN
1868
+  (0.1ms) ROLLBACK
1869
+  (0.0ms) BEGIN
1870
+  (0.0ms) ROLLBACK
1871
+  (0.1ms) BEGIN
1872
+  (0.0ms) ROLLBACK
1873
+  (0.0ms) BEGIN
1874
+  (0.1ms) ROLLBACK
1875
+  (0.0ms) BEGIN
1876
+  (0.1ms) ROLLBACK
1877
+  (0.1ms) BEGIN
1878
+  (0.1ms) ROLLBACK
1879
+  (0.1ms) BEGIN
1880
+  (0.1ms) ROLLBACK
1881
+  (0.1ms) BEGIN
1882
+  (0.1ms) ROLLBACK
1883
+  (0.1ms) BEGIN
1884
+  (0.1ms) ROLLBACK
1885
+  (0.0ms) BEGIN
1886
+  (0.0ms) ROLLBACK
1887
+  (0.0ms) BEGIN
1888
+  (0.1ms) ROLLBACK
1889
+  (0.1ms) BEGIN
1890
+  (0.1ms) ROLLBACK
1891
+  (0.0ms) BEGIN
1892
+  (0.1ms) ROLLBACK
1893
+  (0.1ms) BEGIN
1894
+  (0.1ms) ROLLBACK
1895
+  (0.0ms) BEGIN
1896
+  (0.1ms) ROLLBACK
1897
+  (0.0ms) BEGIN
1898
+  (0.1ms) ROLLBACK
1899
+  (0.1ms) BEGIN
1900
+  (0.1ms) ROLLBACK
1901
+  (0.1ms) BEGIN
1902
+  (0.1ms) ROLLBACK
1903
+  (0.0ms) BEGIN
1904
+  (0.1ms) ROLLBACK
1905
+  (0.1ms) BEGIN
1906
+  (0.1ms) ROLLBACK
1907
+  (0.1ms) BEGIN
1908
+  (0.1ms) ROLLBACK
1909
+  (0.0ms) BEGIN
1910
+  (0.1ms) ROLLBACK
1911
+  (0.1ms) BEGIN
1912
+  (0.1ms) ROLLBACK
1913
+  (0.1ms) BEGIN
1914
+  (0.1ms) ROLLBACK
1915
+  (0.1ms) BEGIN
1916
+  (0.1ms) ROLLBACK
1917
+  (0.1ms) BEGIN
1918
+  (0.1ms) ROLLBACK
1919
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
1920
+  (111.5ms) DROP DATABASE IF EXISTS "gatherable_test"
1921
+  (260.8ms) CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
1922
+  (13.2ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
1923
+  (9.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1924
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
1925
+ Migrating to CreateGatherableSchema (20160105204336)
1926
+  (0.1ms) BEGIN
1927
+  (0.2ms) CREATE SCHEMA gatherable
1928
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160105204336"]]
1929
+  (0.2ms) COMMIT
1930
+ Migrating to CreateGatherablePrice (20160105204337)
1931
+  (0.1ms) BEGIN
1932
+  (2.3ms) CREATE TABLE "gatherable"."prices" ("price_id" serial primary key, "price" decimal, "session_id" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
1933
+  (0.5ms) CREATE INDEX "index_gatherable.prices_on_session_id" ON "gatherable"."prices" ("session_id")
1934
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160105204337"]]
1935
+  (0.3ms) COMMIT
1936
+  (0.1ms) 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
+  (0.1ms) ROLLBACK
1946
+  (0.0ms) 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
+  (0.1ms) ROLLBACK
1952
+  (0.0ms) 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
+  (0.1ms) ROLLBACK
1958
+  (0.1ms) 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
+  (0.1ms) ROLLBACK
1964
+  (0.1ms) 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
+  (0.2ms) ROLLBACK
1970
+  (0.1ms) 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
+  (0.1ms) ROLLBACK
1976
+  (0.1ms) 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
+  (0.1ms) ROLLBACK
1987
+  (0.0ms) 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
+  (0.1ms) ROLLBACK
1994
+  (0.0ms) 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
+  (0.1ms) ROLLBACK
2001
+  (0.0ms) 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
+  (0.1ms) ROLLBACK
2008
+  (0.0ms) 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
+  (0.1ms) ROLLBACK
2015
+  (0.1ms) 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
+  (0.1ms) ROLLBACK
2021
+  (0.1ms) 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
+  (0.1ms) ROLLBACK
2027
+  (0.1ms) 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
+  (0.1ms) ROLLBACK
2033
+  (0.1ms) 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
+  (0.1ms) ROLLBACK
2039
+  (0.1ms) BEGIN
2040
+  (0.1ms) ROLLBACK
2041
+  (0.1ms) BEGIN
2042
+  (0.1ms) ROLLBACK
2043
+  (0.1ms) BEGIN
2044
+  (0.1ms) ROLLBACK
2045
+  (0.1ms) BEGIN
2046
+  (0.1ms) ROLLBACK
2047
+  (0.0ms) BEGIN
2048
+  (0.1ms) ROLLBACK
2049
+  (0.0ms) BEGIN
2050
+  (0.1ms) ROLLBACK
2051
+  (0.0ms) BEGIN
2052
+  (0.1ms) ROLLBACK
2053
+  (0.1ms) BEGIN
2054
+  (0.2ms) ROLLBACK
2055
+  (0.1ms) BEGIN
2056
+  (0.1ms) ROLLBACK
2057
+  (0.1ms) BEGIN
2058
+  (0.1ms) ROLLBACK
2059
+  (0.1ms) BEGIN
2060
+  (0.1ms) ROLLBACK
2061
+  (0.1ms) BEGIN
2062
+  (0.1ms) ROLLBACK
2063
+  (0.1ms) BEGIN
2064
+  (0.0ms) ROLLBACK
2065
+  (0.0ms) BEGIN
2066
+  (0.0ms) ROLLBACK
2067
+  (0.0ms) BEGIN
2068
+  (0.0ms) ROLLBACK
2069
+  (0.0ms) BEGIN
2070
+  (0.1ms) ROLLBACK
2071
+  (0.1ms) BEGIN
2072
+  (0.1ms) ROLLBACK
2073
+  (0.0ms) BEGIN
2074
+  (0.1ms) ROLLBACK
2075
+  (0.1ms) BEGIN
2076
+  (0.1ms) ROLLBACK
2077
+  (0.1ms) BEGIN
2078
+  (0.1ms) ROLLBACK
2079
+  (0.1ms) BEGIN
2080
+  (0.1ms) ROLLBACK
2081
+  (0.1ms) BEGIN
2082
+  (0.1ms) ROLLBACK
2083
+  (0.0ms) BEGIN
2084
+  (0.1ms) ROLLBACK
2085
+  (0.0ms) BEGIN
2086
+  (0.1ms) ROLLBACK
2087
+  (0.1ms) BEGIN
2088
+  (0.1ms) ROLLBACK
2089
+  (0.0ms) BEGIN
2090
+  (0.1ms) ROLLBACK
2091
+  (0.1ms) BEGIN
2092
+  (0.1ms) ROLLBACK
2093
+  (0.2ms) BEGIN
2094
+  (0.1ms) ROLLBACK
2095
+  (0.1ms) BEGIN
2096
+  (0.1ms) ROLLBACK
2097
+  (0.1ms) BEGIN
2098
+  (0.1ms) ROLLBACK
2099
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
2100
+  (113.0ms) DROP DATABASE IF EXISTS "gatherable_test"
2101
+  (231.1ms) CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
2102
+  (15.1ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
2103
+  (7.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2104
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
2105
+ Migrating to CreateGatherableSchema (20160105204424)
2106
+  (0.1ms) BEGIN
2107
+  (0.3ms) CREATE SCHEMA gatherable
2108
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160105204424"]]
2109
+  (0.2ms) COMMIT
2110
+ Migrating to CreateGatherablePrice (20160105204425)
2111
+  (0.1ms) BEGIN
2112
+  (2.4ms) CREATE TABLE "gatherable"."prices" ("price_id" serial primary key, "price" decimal, "session_id" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
2113
+  (0.5ms) CREATE INDEX "index_gatherable.prices_on_session_id" ON "gatherable"."prices" ("session_id")
2114
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160105204425"]]
2115
+  (0.3ms) COMMIT
2116
+  (0.1ms) 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
+  (0.2ms) ROLLBACK
2126
+  (0.0ms) 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
+  (0.1ms) ROLLBACK
2132
+  (0.0ms) 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
+  (0.1ms) ROLLBACK
2138
+  (0.0ms) 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
+  (0.1ms) ROLLBACK
2144
+  (0.1ms) 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
+  (0.1ms) ROLLBACK
2150
+  (0.1ms) 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
+  (0.1ms) ROLLBACK
2156
+  (0.1ms) 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
+  (0.1ms) ROLLBACK
2167
+  (0.0ms) 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
+  (0.1ms) ROLLBACK
2174
+  (0.0ms) 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
+  (0.1ms) ROLLBACK
2181
+  (0.0ms) 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
+  (0.1ms) ROLLBACK
2188
+  (0.0ms) 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
+  (0.1ms) ROLLBACK
2195
+  (0.1ms) 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
+  (0.1ms) ROLLBACK
2201
+  (0.1ms) 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
+  (0.1ms) ROLLBACK
2207
+  (0.1ms) 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
+  (0.1ms) ROLLBACK
2213
+  (0.1ms) 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
+  (0.1ms) ROLLBACK
2219
+  (0.1ms) BEGIN
2220
+  (0.1ms) ROLLBACK
2221
+  (0.1ms) BEGIN
2222
+  (0.1ms) ROLLBACK
2223
+  (0.0ms) BEGIN
2224
+  (0.1ms) ROLLBACK
2225
+  (0.0ms) BEGIN
2226
+  (0.1ms) ROLLBACK
2227
+  (0.1ms) BEGIN
2228
+  (0.1ms) ROLLBACK
2229
+  (0.0ms) BEGIN
2230
+  (0.1ms) ROLLBACK
2231
+  (0.1ms) BEGIN
2232
+  (0.0ms) ROLLBACK
2233
+  (0.0ms) BEGIN
2234
+  (0.1ms) ROLLBACK
2235
+  (0.2ms) BEGIN
2236
+  (0.1ms) ROLLBACK
2237
+  (0.1ms) BEGIN
2238
+  (0.1ms) ROLLBACK
2239
+  (0.2ms) BEGIN
2240
+  (0.1ms) ROLLBACK
2241
+  (0.1ms) BEGIN
2242
+  (0.1ms) ROLLBACK
2243
+  (0.0ms) BEGIN
2244
+  (0.0ms) ROLLBACK
2245
+  (0.1ms) BEGIN
2246
+  (0.0ms) ROLLBACK
2247
+  (0.1ms) BEGIN
2248
+  (0.1ms) ROLLBACK
2249
+  (0.0ms) BEGIN
2250
+  (0.1ms) ROLLBACK
2251
+  (0.0ms) BEGIN
2252
+  (0.1ms) ROLLBACK
2253
+  (0.0ms) BEGIN
2254
+  (0.1ms) ROLLBACK
2255
+  (0.0ms) BEGIN
2256
+  (0.1ms) ROLLBACK
2257
+  (0.0ms) BEGIN
2258
+  (0.1ms) ROLLBACK
2259
+  (0.1ms) BEGIN
2260
+  (0.1ms) ROLLBACK
2261
+  (0.1ms) BEGIN
2262
+  (0.1ms) ROLLBACK
2263
+  (0.0ms) BEGIN
2264
+  (0.1ms) ROLLBACK
2265
+  (0.1ms) BEGIN
2266
+  (0.1ms) ROLLBACK
2267
+  (0.0ms) BEGIN
2268
+  (0.1ms) ROLLBACK
2269
+  (0.1ms) BEGIN
2270
+  (0.1ms) ROLLBACK
2271
+  (0.1ms) BEGIN
2272
+  (0.1ms) ROLLBACK
2273
+  (0.1ms) BEGIN
2274
+  (0.2ms) ROLLBACK
2275
+  (0.1ms) BEGIN
2276
+  (0.1ms) ROLLBACK
2277
+  (0.0ms) BEGIN
2278
+  (0.0ms) ROLLBACK
2279
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
2280
+  (112.0ms) DROP DATABASE IF EXISTS "gatherable_test"
2281
+  (229.5ms) CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
2282
+  (13.9ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
2283
+  (10.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2284
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
2285
+ Migrating to CreateGatherableSchema (20160105204446)
2286
+  (0.1ms) BEGIN
2287
+  (0.3ms) CREATE SCHEMA gatherable
2288
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160105204446"]]
2289
+  (0.3ms) COMMIT
2290
+ Migrating to CreateGatherablePrice (20160105204447)
2291
+  (0.1ms) BEGIN
2292
+  (2.4ms) CREATE TABLE "gatherable"."prices" ("price_id" serial primary key, "price" decimal, "session_id" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
2293
+  (0.5ms) CREATE INDEX "index_gatherable.prices_on_session_id" ON "gatherable"."prices" ("session_id")
2294
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160105204447"]]
2295
+  (0.3ms) COMMIT
2296
+  (0.1ms) 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
+  (0.2ms) ROLLBACK
2306
+  (0.1ms) 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
+  (0.1ms) ROLLBACK
2312
+  (0.1ms) 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
+  (0.1ms) ROLLBACK
2318
+  (0.1ms) 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
+  (0.1ms) ROLLBACK
2324
+  (0.1ms) 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
+  (0.1ms) ROLLBACK
2330
+  (0.1ms) 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
+  (0.1ms) ROLLBACK
2336
+  (0.0ms) 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
+  (0.1ms) ROLLBACK
2347
+  (0.0ms) 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
+  (0.1ms) ROLLBACK
2354
+  (0.1ms) 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
+  (0.1ms) ROLLBACK
2361
+  (0.1ms) 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
+  (0.1ms) ROLLBACK
2368
+  (0.0ms) 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
+  (0.1ms) ROLLBACK
2375
+  (0.1ms) 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
+  (0.1ms) ROLLBACK
2381
+  (0.1ms) 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
+  (0.1ms) ROLLBACK
2387
+  (0.0ms) 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
+  (0.1ms) ROLLBACK
2393
+  (0.0ms) 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
+  (0.1ms) ROLLBACK
2399
+  (0.0ms) BEGIN
2400
+  (0.0ms) ROLLBACK
2401
+  (0.1ms) BEGIN
2402
+  (0.1ms) ROLLBACK
2403
+  (0.0ms) BEGIN
2404
+  (0.1ms) ROLLBACK
2405
+  (0.0ms) BEGIN
2406
+  (0.1ms) ROLLBACK
2407
+  (0.1ms) BEGIN
2408
+  (0.1ms) ROLLBACK
2409
+  (0.0ms) BEGIN
2410
+  (0.0ms) ROLLBACK
2411
+  (0.0ms) BEGIN
2412
+  (0.0ms) ROLLBACK
2413
+  (0.0ms) BEGIN
2414
+  (0.1ms) ROLLBACK
2415
+  (0.0ms) BEGIN
2416
+  (0.0ms) ROLLBACK
2417
+  (0.1ms) BEGIN
2418
+  (0.0ms) ROLLBACK
2419
+  (0.0ms) BEGIN
2420
+  (0.0ms) ROLLBACK
2421
+  (0.0ms) BEGIN
2422
+  (0.0ms) ROLLBACK
2423
+  (0.0ms) BEGIN
2424
+  (0.0ms) ROLLBACK
2425
+  (0.0ms) BEGIN
2426
+  (0.0ms) ROLLBACK
2427
+  (0.1ms) BEGIN
2428
+  (0.1ms) ROLLBACK
2429
+  (0.0ms) BEGIN
2430
+  (0.1ms) ROLLBACK
2431
+  (0.0ms) BEGIN
2432
+  (0.1ms) ROLLBACK
2433
+  (0.1ms) BEGIN
2434
+  (0.1ms) ROLLBACK
2435
+  (0.1ms) BEGIN
2436
+  (0.1ms) ROLLBACK
2437
+  (0.1ms) BEGIN
2438
+  (0.1ms) ROLLBACK
2439
+  (0.1ms) BEGIN
2440
+  (0.1ms) ROLLBACK
2441
+  (0.0ms) BEGIN
2442
+  (0.1ms) ROLLBACK
2443
+  (0.1ms) BEGIN
2444
+  (0.1ms) ROLLBACK
2445
+  (0.0ms) BEGIN
2446
+  (0.1ms) ROLLBACK
2447
+  (0.0ms) BEGIN
2448
+  (0.1ms) ROLLBACK
2449
+  (0.0ms) BEGIN
2450
+  (0.1ms) ROLLBACK
2451
+  (0.0ms) BEGIN
2452
+  (0.0ms) ROLLBACK
2453
+  (0.0ms) BEGIN
2454
+  (0.0ms) ROLLBACK
2455
+  (0.0ms) BEGIN
2456
+  (0.0ms) ROLLBACK
2457
+  (0.0ms) BEGIN
2458
+  (0.0ms) ROLLBACK
2459
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
2460
+  (113.1ms) DROP DATABASE IF EXISTS "gatherable_test"
2461
+  (232.4ms) CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
2462
+  (14.8ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
2463
+  (6.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2464
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
2465
+ Migrating to CreateGatherableSchema (20160105204635)
2466
+  (0.1ms) BEGIN
2467
+  (0.2ms) CREATE SCHEMA gatherable
2468
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160105204635"]]
2469
+  (0.3ms) COMMIT
2470
+ Migrating to CreateGatherablePrice (20160105204636)
2471
+  (0.1ms) BEGIN
2472
+  (2.7ms) 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
+  (0.8ms) CREATE INDEX "index_gatherable.prices_on_session_id" ON "gatherable"."prices" ("session_id")
2474
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160105204636"]]
2475
+  (0.3ms) COMMIT
2476
+  (0.1ms) 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
+  (0.2ms) ROLLBACK
2486
+  (0.1ms) 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
+  (0.1ms) ROLLBACK
2492
+  (0.1ms) 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
+  (0.1ms) ROLLBACK
2498
+  (0.0ms) 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
+  (0.1ms) ROLLBACK
2504
+  (0.1ms) 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
+  (0.1ms) ROLLBACK
2510
+  (0.1ms) 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
+  (0.1ms) ROLLBACK
2516
+  (0.2ms) 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
+  (0.1ms) ROLLBACK
2527
+  (0.1ms) 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
+  (0.1ms) ROLLBACK
2534
+  (0.1ms) 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
+  (0.1ms) ROLLBACK
2541
+  (0.1ms) 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
+  (0.1ms) ROLLBACK
2548
+  (0.1ms) 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
+  (0.1ms) ROLLBACK
2555
+  (0.1ms) 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
+  (0.1ms) ROLLBACK
2561
+  (0.1ms) 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
+  (0.1ms) ROLLBACK
2567
+  (0.1ms) 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
+  (0.1ms) ROLLBACK
2573
+  (0.0ms) 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
+  (0.1ms) ROLLBACK
2579
+  (0.1ms) BEGIN
2580
+  (0.1ms) ROLLBACK
2581
+  (0.1ms) BEGIN
2582
+  (0.1ms) ROLLBACK
2583
+  (0.1ms) BEGIN
2584
+  (0.1ms) ROLLBACK
2585
+  (0.1ms) BEGIN
2586
+  (0.1ms) ROLLBACK
2587
+  (0.1ms) BEGIN
2588
+  (0.1ms) ROLLBACK
2589
+  (0.0ms) BEGIN
2590
+  (0.1ms) ROLLBACK
2591
+  (0.0ms) BEGIN
2592
+  (0.0ms) ROLLBACK
2593
+  (0.1ms) BEGIN
2594
+  (0.0ms) ROLLBACK
2595
+  (0.0ms) BEGIN
2596
+  (0.0ms) ROLLBACK
2597
+  (0.0ms) BEGIN
2598
+  (0.0ms) ROLLBACK
2599
+  (0.0ms) BEGIN
2600
+  (0.0ms) ROLLBACK
2601
+  (0.0ms) BEGIN
2602
+  (0.0ms) ROLLBACK
2603
+  (0.0ms) BEGIN
2604
+  (0.1ms) ROLLBACK
2605
+  (0.0ms) BEGIN
2606
+  (0.0ms) ROLLBACK
2607
+  (0.0ms) BEGIN
2608
+  (0.0ms) ROLLBACK
2609
+  (0.0ms) BEGIN
2610
+  (0.0ms) ROLLBACK
2611
+  (0.0ms) BEGIN
2612
+  (0.1ms) ROLLBACK
2613
+  (0.0ms) BEGIN
2614
+  (0.1ms) ROLLBACK
2615
+  (0.0ms) BEGIN
2616
+  (0.1ms) ROLLBACK
2617
+  (0.1ms) BEGIN
2618
+  (0.1ms) ROLLBACK
2619
+  (0.0ms) BEGIN
2620
+  (0.1ms) ROLLBACK
2621
+  (0.1ms) BEGIN
2622
+  (0.1ms) ROLLBACK
2623
+  (0.0ms) BEGIN
2624
+  (0.1ms) ROLLBACK
2625
+  (0.1ms) BEGIN
2626
+  (0.1ms) ROLLBACK
2627
+  (0.0ms) BEGIN
2628
+  (0.1ms) ROLLBACK
2629
+  (0.1ms) BEGIN
2630
+  (0.1ms) ROLLBACK
2631
+  (0.2ms) BEGIN
2632
+  (0.1ms) ROLLBACK
2633
+  (0.0ms) BEGIN
2634
+  (0.0ms) ROLLBACK
2635
+  (0.0ms) BEGIN
2636
+  (0.0ms) ROLLBACK
2637
+  (0.0ms) BEGIN
2638
+  (0.1ms) ROLLBACK
2639
+  (0.1ms) BEGIN
2640
+  (0.1ms) ROLLBACK
2641
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
2642
+  (112.8ms) DROP DATABASE IF EXISTS "gatherable_test"
2643
+  (231.2ms) CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
2644
+  (15.0ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
2645
+  (10.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2646
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
2647
+ Migrating to CreateGatherableSchema (20160105205022)
2648
+  (0.1ms) BEGIN
2649
+  (0.2ms) CREATE SCHEMA gatherable
2650
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160105205022"]]
2651
+  (0.2ms) COMMIT
2652
+ Migrating to CreateGatherablePrice (20160105205023)
2653
+  (0.1ms) BEGIN
2654
+  (2.3ms) CREATE TABLE "gatherable"."prices" ("price_id" serial primary key, "price" decimal, "session_id" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
2655
+  (0.6ms) CREATE INDEX "index_gatherable.prices_on_session_id" ON "gatherable"."prices" ("session_id")
2656
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160105205023"]]
2657
+  (0.3ms) COMMIT
2658
+ Migrating to CreateGatherableRequestedLoanAmount (20160105205024)
2659
+  (0.1ms) BEGIN
2660
+  (2.0ms) CREATE TABLE "gatherable"."requested_loan_amounts" ("requested_loan_amount_id" serial primary key, "requested_loan_amount" decimal, "total_cost" decimal, "monthly_repayment_amount" decimal, "session_id" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
2661
+  (1.0ms) CREATE INDEX "index_gatherable.requested_loan_amounts_on_session_id" ON "gatherable"."requested_loan_amounts" ("session_id")
2662
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160105205024"]]
2663
+  (0.7ms) COMMIT
2664
+  (0.2ms) BEGIN
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
+  (0.1ms) ROLLBACK
2674
+  (0.0ms) BEGIN
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
+  (0.1ms) ROLLBACK
2680
+  (0.1ms) BEGIN
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
+  (0.2ms) ROLLBACK
2686
+  (0.1ms) BEGIN
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
+  (0.1ms) ROLLBACK
2692
+  (0.0ms) BEGIN
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
+  (0.1ms) ROLLBACK
2698
+  (0.0ms) BEGIN
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
+  (0.1ms) ROLLBACK
2704
+  (0.0ms) BEGIN
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
+  (0.1ms) ROLLBACK
2715
+  (0.1ms) BEGIN
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
+  (0.1ms) ROLLBACK
2722
+  (0.0ms) BEGIN
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
+  (0.1ms) ROLLBACK
2729
+  (0.0ms) BEGIN
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
+  (0.1ms) ROLLBACK
2736
+  (0.0ms) BEGIN
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
+  (0.1ms) ROLLBACK
2743
+  (0.0ms) BEGIN
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
+  (0.1ms) ROLLBACK
2749
+  (0.1ms) BEGIN
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
+  (0.1ms) ROLLBACK
2755
+  (0.0ms) BEGIN
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
+  (0.1ms) ROLLBACK
2761
+  (0.1ms) BEGIN
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
+  (0.1ms) ROLLBACK
2767
+  (0.0ms) BEGIN
2768
+  (0.0ms) ROLLBACK
2769
+  (0.0ms) BEGIN
2770
+  (0.0ms) ROLLBACK
2771
+  (0.1ms) BEGIN
2772
+  (0.1ms) ROLLBACK
2773
+  (0.0ms) BEGIN
2774
+  (0.0ms) ROLLBACK
2775
+  (0.1ms) BEGIN
2776
+  (0.1ms) ROLLBACK
2777
+  (0.1ms) BEGIN
2778
+  (0.1ms) ROLLBACK
2779
+  (0.1ms) BEGIN
2780
+  (0.1ms) ROLLBACK
2781
+  (0.1ms) BEGIN
2782
+  (0.1ms) ROLLBACK
2783
+  (0.0ms) BEGIN
2784
+  (0.1ms) ROLLBACK
2785
+  (0.1ms) BEGIN
2786
+  (0.1ms) ROLLBACK
2787
+  (0.0ms) BEGIN
2788
+  (0.1ms) ROLLBACK
2789
+  (0.1ms) BEGIN
2790
+  (0.1ms) ROLLBACK
2791
+  (0.1ms) BEGIN
2792
+  (0.1ms) ROLLBACK
2793
+  (0.0ms) BEGIN
2794
+  (0.0ms) ROLLBACK
2795
+  (0.0ms) BEGIN
2796
+  (0.1ms) ROLLBACK
2797
+  (0.1ms) BEGIN
2798
+  (0.1ms) ROLLBACK
2799
+  (0.1ms) BEGIN
2800
+  (0.1ms) ROLLBACK
2801
+  (0.0ms) BEGIN
2802
+  (0.1ms) ROLLBACK
2803
+  (0.1ms) BEGIN
2804
+  (0.1ms) ROLLBACK
2805
+  (0.0ms) BEGIN
2806
+  (0.1ms) ROLLBACK
2807
+  (0.0ms) BEGIN
2808
+  (0.1ms) ROLLBACK
2809
+  (0.0ms) BEGIN
2810
+  (0.1ms) ROLLBACK
2811
+  (0.1ms) BEGIN
2812
+  (0.1ms) ROLLBACK
2813
+  (0.0ms) BEGIN
2814
+  (0.1ms) ROLLBACK
2815
+  (0.0ms) BEGIN
2816
+  (0.1ms) ROLLBACK
2817
+  (0.0ms) BEGIN
2818
+  (0.1ms) ROLLBACK
2819
+  (0.1ms) BEGIN
2820
+  (0.1ms) ROLLBACK
2821
+  (0.0ms) BEGIN
2822
+  (0.1ms) ROLLBACK
2823
+  (0.1ms) BEGIN
2824
+  (0.1ms) ROLLBACK
2825
+  (0.1ms) BEGIN
2826
+  (0.1ms) ROLLBACK
2827
+  (0.1ms) BEGIN
2828
+  (0.1ms) ROLLBACK
2829
+  (0.1ms) BEGIN
2830
+  (0.1ms) ROLLBACK
2831
+  (0.1ms) BEGIN
2832
+  (0.1ms) ROLLBACK
2833
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
2834
+  (112.9ms) DROP DATABASE IF EXISTS "gatherable_test"
2835
+  (231.6ms) CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
2836
+  (14.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
2837
+  (7.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2838
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
2839
+ Migrating to CreateGatherableSchema (20160105205137)
2840
+  (0.1ms) BEGIN
2841
+  (0.4ms) CREATE SCHEMA gatherable
2842
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160105205137"]]
2843
+  (0.3ms) COMMIT
2844
+ Migrating to CreateGatherablePrice (20160105205138)
2845
+  (0.1ms) BEGIN
2846
+  (2.6ms) 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
+  (0.5ms) CREATE INDEX "index_gatherable.prices_on_session_id" ON "gatherable"."prices" ("session_id")
2848
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160105205138"]]
2849
+  (0.3ms) COMMIT
2850
+  (0.1ms) 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
+  (0.2ms) ROLLBACK
2860
+  (0.0ms) 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
+  (0.1ms) ROLLBACK
2866
+  (0.1ms) 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
+  (0.1ms) ROLLBACK
2872
+  (0.1ms) 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
+  (0.1ms) ROLLBACK
2878
+  (0.0ms) 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
+  (0.1ms) ROLLBACK
2884
+  (0.0ms) 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
+  (0.1ms) ROLLBACK
2890
+  (0.0ms) 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
+  (0.1ms) ROLLBACK
2901
+  (0.1ms) 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
+  (0.1ms) ROLLBACK
2908
+  (0.0ms) 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
+  (0.1ms) ROLLBACK
2915
+  (0.1ms) 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
+  (0.1ms) ROLLBACK
2922
+  (0.1ms) 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
+  (0.1ms) ROLLBACK
2929
+  (0.0ms) 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
+  (0.1ms) ROLLBACK
2935
+  (0.1ms) 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
+  (0.1ms) ROLLBACK
2941
+  (0.1ms) 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
+  (0.1ms) ROLLBACK
2947
+  (0.0ms) 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
+  (0.1ms) ROLLBACK
2953
+  (0.1ms) BEGIN
2954
+  (0.1ms) ROLLBACK
2955
+  (0.1ms) BEGIN
2956
+  (0.1ms) ROLLBACK
2957
+  (0.1ms) BEGIN
2958
+  (0.1ms) ROLLBACK
2959
+  (0.0ms) BEGIN
2960
+  (0.1ms) ROLLBACK
2961
+  (0.1ms) BEGIN
2962
+  (0.1ms) ROLLBACK
2963
+  (0.1ms) BEGIN
2964
+  (0.1ms) ROLLBACK
2965
+  (0.2ms) BEGIN
2966
+  (0.1ms) ROLLBACK
2967
+  (0.1ms) BEGIN
2968
+  (0.1ms) ROLLBACK
2969
+  (0.1ms) BEGIN
2970
+  (0.0ms) ROLLBACK
2971
+  (0.0ms) BEGIN
2972
+  (0.1ms) ROLLBACK
2973
+  (0.0ms) BEGIN
2974
+  (0.0ms) ROLLBACK
2975
+  (0.0ms) BEGIN
2976
+  (0.1ms) ROLLBACK
2977
+  (0.0ms) BEGIN
2978
+  (0.0ms) ROLLBACK
2979
+  (0.0ms) BEGIN
2980
+  (0.1ms) ROLLBACK
2981
+  (0.0ms) BEGIN
2982
+  (0.0ms) ROLLBACK
2983
+  (0.0ms) BEGIN
2984
+  (0.1ms) ROLLBACK
2985
+  (0.0ms) BEGIN
2986
+  (0.1ms) ROLLBACK
2987
+  (0.1ms) BEGIN
2988
+  (0.1ms) ROLLBACK
2989
+  (0.1ms) BEGIN
2990
+  (0.1ms) ROLLBACK
2991
+  (0.0ms) BEGIN
2992
+  (0.1ms) ROLLBACK
2993
+  (0.1ms) BEGIN
2994
+  (0.1ms) ROLLBACK
2995
+  (0.0ms) BEGIN
2996
+  (0.1ms) ROLLBACK
2997
+  (0.0ms) BEGIN
2998
+  (0.1ms) ROLLBACK
2999
+  (0.1ms) BEGIN
3000
+  (0.1ms) ROLLBACK
3001
+  (0.1ms) BEGIN
3002
+  (0.1ms) ROLLBACK
3003
+  (0.1ms) BEGIN
3004
+  (0.1ms) ROLLBACK
3005
+  (0.0ms) BEGIN
3006
+  (0.1ms) ROLLBACK
3007
+  (0.0ms) BEGIN
3008
+  (0.0ms) ROLLBACK
3009
+  (0.0ms) BEGIN
3010
+  (0.0ms) ROLLBACK
3011
+  (0.1ms) BEGIN
3012
+  (0.1ms) ROLLBACK
3013
+  (0.0ms) BEGIN
3014
+  (0.1ms) ROLLBACK
3015
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
3016
+  (112.3ms) DROP DATABASE IF EXISTS "gatherable_test"
3017
+  (232.8ms) CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
3018
+  (112.4ms) DROP DATABASE IF EXISTS "gatherable_test"
3019
+  (229.4ms) CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
3020
+  (14.1ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
3021
+  (11.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3022
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
3023
+ Migrating to CreateGatherableSchema (20160105205852)
3024
+  (0.1ms) BEGIN
3025
+  (0.3ms) CREATE SCHEMA gatherable
3026
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160105205852"]]
3027
+  (0.2ms) COMMIT
3028
+ Migrating to CreateGatherablePrice (20160105205853)
3029
+  (0.1ms) BEGIN
3030
+  (2.3ms) 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) 
3031
+  (0.5ms) CREATE INDEX "index_gatherable.prices_on_session_id" ON "gatherable"."prices" ("session_id")
3032
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160105205853"]]
3033
+  (0.3ms) COMMIT
3034
+  (0.1ms) BEGIN
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
+  (0.2ms) ROLLBACK
3044
+  (0.1ms) BEGIN
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
+  (0.1ms) ROLLBACK
3050
+  (0.0ms) BEGIN
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
+  (0.1ms) ROLLBACK
3056
+  (0.1ms) BEGIN
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
+  (0.2ms) ROLLBACK
3062
+  (0.1ms) BEGIN
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
+  (0.1ms) ROLLBACK
3068
+  (0.1ms) BEGIN
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
+  (0.1ms) ROLLBACK
3074
+  (0.0ms) BEGIN
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
+  (0.1ms) ROLLBACK
3085
+  (0.0ms) BEGIN
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
+  (0.1ms) ROLLBACK
3092
+  (0.0ms) BEGIN
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
+  (0.1ms) ROLLBACK
3099
+  (0.0ms) BEGIN
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
+  (0.1ms) ROLLBACK
3106
+  (0.0ms) BEGIN
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
+  (0.1ms) ROLLBACK
3113
+  (0.1ms) BEGIN
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
+  (0.1ms) ROLLBACK
3119
+  (0.0ms) BEGIN
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
+  (0.2ms) ROLLBACK
3125
+  (0.0ms) BEGIN
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
+  (0.1ms) ROLLBACK
3131
+  (0.1ms) BEGIN
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
+  (0.1ms) ROLLBACK
3137
+  (0.0ms) BEGIN
3138
+  (0.0ms) ROLLBACK
3139
+  (0.0ms) BEGIN
3140
+  (0.0ms) ROLLBACK
3141
+  (0.1ms) BEGIN
3142
+  (0.1ms) ROLLBACK
3143
+  (0.0ms) BEGIN
3144
+  (0.0ms) ROLLBACK
3145
+  (0.0ms) BEGIN
3146
+  (0.1ms) ROLLBACK
3147
+  (0.1ms) BEGIN
3148
+  (0.1ms) ROLLBACK
3149
+  (0.1ms) BEGIN
3150
+  (0.1ms) ROLLBACK
3151
+  (0.0ms) BEGIN
3152
+  (0.0ms) ROLLBACK
3153
+  (0.0ms) BEGIN
3154
+  (0.0ms) ROLLBACK
3155
+  (0.0ms) BEGIN
3156
+  (0.0ms) ROLLBACK
3157
+  (0.0ms) BEGIN
3158
+  (0.0ms) ROLLBACK
3159
+  (0.0ms) BEGIN
3160
+  (0.0ms) ROLLBACK
3161
+  (0.0ms) BEGIN
3162
+  (0.0ms) ROLLBACK
3163
+  (0.0ms) BEGIN
3164
+  (0.0ms) ROLLBACK
3165
+  (0.1ms) BEGIN
3166
+  (0.1ms) ROLLBACK
3167
+  (0.0ms) BEGIN
3168
+  (0.1ms) ROLLBACK
3169
+  (0.0ms) BEGIN
3170
+  (0.1ms) ROLLBACK
3171
+  (0.0ms) BEGIN
3172
+  (0.1ms) ROLLBACK
3173
+  (0.0ms) BEGIN
3174
+  (0.1ms) ROLLBACK
3175
+  (0.1ms) BEGIN
3176
+  (0.1ms) ROLLBACK
3177
+  (0.1ms) BEGIN
3178
+  (0.1ms) ROLLBACK
3179
+  (0.1ms) BEGIN
3180
+  (0.1ms) ROLLBACK
3181
+  (0.0ms) BEGIN
3182
+  (0.1ms) ROLLBACK
3183
+  (0.1ms) BEGIN
3184
+  (0.1ms) ROLLBACK
3185
+  (0.1ms) BEGIN
3186
+  (0.1ms) ROLLBACK
3187
+  (0.0ms) BEGIN
3188
+  (0.1ms) ROLLBACK
3189
+  (0.1ms) BEGIN
3190
+  (0.1ms) ROLLBACK
3191
+  (0.0ms) BEGIN
3192
+  (0.0ms) ROLLBACK
3193
+  (0.0ms) BEGIN
3194
+  (0.0ms) ROLLBACK
3195
+  (0.1ms) BEGIN
3196
+  (0.1ms) ROLLBACK
3197
+  (0.0ms) BEGIN
3198
+  (0.1ms) ROLLBACK
3199
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
3200
+  (112.9ms) DROP DATABASE IF EXISTS "gatherable_test"
3201
+  (233.4ms) CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
3202
+  (14.4ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
3203
+  (11.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3204
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
3205
+ Migrating to CreateGatherableSchema (20160105210045)
3206
+  (0.1ms) BEGIN
3207
+  (0.3ms) CREATE SCHEMA gatherable
3208
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160105210045"]]
3209
+  (0.2ms) COMMIT
3210
+ Migrating to CreateGatherablePrice (20160105210046)
3211
+  (0.1ms) BEGIN
3212
+  (2.3ms) 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
+  (0.5ms) CREATE INDEX "index_gatherable.prices_on_session_id" ON "gatherable"."prices" ("session_id")
3214
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160105210046"]]
3215
+  (0.3ms) COMMIT
3216
+  (0.1ms) 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
+  (0.1ms) ROLLBACK
3226
+  (0.1ms) 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
+  (0.1ms) ROLLBACK
3232
+  (0.0ms) 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
+  (0.1ms) ROLLBACK
3238
+  (0.0ms) 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
+  (0.1ms) ROLLBACK
3244
+  (0.0ms) 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
+  (0.1ms) ROLLBACK
3250
+  (0.0ms) 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
+  (0.1ms) ROLLBACK
3256
+  (0.0ms) 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
+  (0.1ms) ROLLBACK
3267
+  (0.1ms) 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
+  (0.1ms) ROLLBACK
3274
+  (0.1ms) 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
+  (0.1ms) ROLLBACK
3281
+  (0.0ms) 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
+  (0.1ms) ROLLBACK
3288
+  (0.0ms) 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
+  (0.1ms) ROLLBACK
3295
+  (0.0ms) 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
+  (0.1ms) ROLLBACK
3301
+  (0.0ms) 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
+  (0.1ms) ROLLBACK
3307
+  (0.0ms) 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
+  (0.1ms) ROLLBACK
3313
+  (0.1ms) 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
+  (0.1ms) ROLLBACK
3319
+  (0.1ms) BEGIN
3320
+  (0.1ms) ROLLBACK
3321
+  (0.0ms) BEGIN
3322
+  (0.0ms) ROLLBACK
3323
+  (0.0ms) BEGIN
3324
+  (0.0ms) ROLLBACK
3325
+  (0.0ms) BEGIN
3326
+  (0.0ms) ROLLBACK
3327
+  (0.0ms) BEGIN
3328
+  (0.1ms) ROLLBACK
3329
+  (0.0ms) BEGIN
3330
+  (0.0ms) ROLLBACK
3331
+  (0.1ms) BEGIN
3332
+  (0.1ms) ROLLBACK
3333
+  (0.1ms) BEGIN
3334
+  (0.1ms) ROLLBACK
3335
+  (0.1ms) BEGIN
3336
+  (0.1ms) ROLLBACK
3337
+  (0.1ms) BEGIN
3338
+  (0.1ms) ROLLBACK
3339
+  (0.1ms) BEGIN
3340
+  (0.1ms) ROLLBACK
3341
+  (0.1ms) BEGIN
3342
+  (0.1ms) ROLLBACK
3343
+  (0.1ms) BEGIN
3344
+  (0.1ms) ROLLBACK
3345
+  (0.1ms) BEGIN
3346
+  (0.1ms) ROLLBACK
3347
+  (0.1ms) BEGIN
3348
+  (0.1ms) ROLLBACK
3349
+  (0.1ms) BEGIN
3350
+  (0.1ms) ROLLBACK
3351
+  (0.0ms) BEGIN
3352
+  (0.1ms) ROLLBACK
3353
+  (0.1ms) BEGIN
3354
+  (0.1ms) ROLLBACK
3355
+  (0.0ms) BEGIN
3356
+  (0.1ms) ROLLBACK
3357
+  (0.0ms) BEGIN
3358
+  (0.1ms) ROLLBACK
3359
+  (0.0ms) BEGIN
3360
+  (0.1ms) ROLLBACK
3361
+  (0.1ms) BEGIN
3362
+  (0.1ms) ROLLBACK
3363
+  (0.1ms) BEGIN
3364
+  (0.1ms) ROLLBACK
3365
+  (0.1ms) BEGIN
3366
+  (0.1ms) ROLLBACK
3367
+  (0.1ms) BEGIN
3368
+  (0.1ms) ROLLBACK
3369
+  (0.0ms) BEGIN
3370
+  (0.1ms) ROLLBACK
3371
+  (0.1ms) BEGIN
3372
+  (0.1ms) ROLLBACK
3373
+  (0.1ms) BEGIN
3374
+  (0.1ms) ROLLBACK
3375
+  (0.1ms) BEGIN
3376
+  (0.1ms) ROLLBACK
3377
+  (0.1ms) BEGIN
3378
+  (0.1ms) ROLLBACK
3379
+  (0.1ms) BEGIN
3380
+  (0.1ms) ROLLBACK
3381
+  (112.2ms) DROP DATABASE IF EXISTS "gatherable_test"
3382
+  (231.5ms) CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
3383
+  (14.2ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
3384
+  (11.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3385
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
3386
+ Migrating to CreateGatherableSchema (20160105210215)
3387
+  (0.1ms) BEGIN
3388
+  (0.3ms) CREATE SCHEMA gatherable
3389
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160105210215"]]
3390
+  (0.2ms) COMMIT
3391
+ Migrating to CreateGatherablePrice (20160105210216)
3392
+  (0.1ms) BEGIN
3393
+  (2.4ms) 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) 
3394
+  (0.4ms) CREATE INDEX "index_gatherable.prices_on_session_id" ON "gatherable"."prices" ("session_id")
3395
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160105210216"]]
3396
+  (0.3ms) COMMIT
3397
+  (0.4ms) BEGIN
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
+  (0.2ms) ROLLBACK
3407
+  (0.0ms) BEGIN
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
+  (0.1ms) ROLLBACK
3413
+  (0.0ms) BEGIN
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
+  (0.1ms) ROLLBACK
3419
+  (0.1ms) BEGIN
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
+  (0.1ms) ROLLBACK
3425
+  (0.0ms) BEGIN
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
+  (0.1ms) ROLLBACK
3431
+  (0.1ms) BEGIN
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
+  (0.1ms) ROLLBACK
3437
+  (0.0ms) BEGIN
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
+  (0.1ms) ROLLBACK
3448
+  (0.1ms) BEGIN
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
+  (0.1ms) ROLLBACK
3455
+  (0.1ms) BEGIN
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
+  (0.1ms) ROLLBACK
3462
+  (0.1ms) BEGIN
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
+  (0.1ms) ROLLBACK
3469
+  (0.1ms) BEGIN
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
+  (0.1ms) ROLLBACK
3476
+  (0.0ms) BEGIN
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
+  (0.1ms) ROLLBACK
3482
+  (0.1ms) BEGIN
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
+  (0.1ms) ROLLBACK
3488
+  (0.1ms) BEGIN
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
+  (0.1ms) ROLLBACK
3494
+  (0.0ms) BEGIN
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
+  (0.1ms) ROLLBACK
3500
+  (0.0ms) BEGIN
3501
+  (0.0ms) ROLLBACK
3502
+  (0.0ms) BEGIN
3503
+  (0.0ms) ROLLBACK
3504
+  (0.1ms) BEGIN
3505
+  (0.1ms) ROLLBACK
3506
+  (0.1ms) BEGIN
3507
+  (0.1ms) ROLLBACK
3508
+  (0.1ms) BEGIN
3509
+  (0.1ms) ROLLBACK
3510
+  (0.1ms) BEGIN
3511
+  (0.1ms) ROLLBACK
3512
+  (0.1ms) BEGIN
3513
+  (0.1ms) ROLLBACK
3514
+  (0.1ms) BEGIN
3515
+  (0.1ms) ROLLBACK
3516
+  (0.1ms) BEGIN
3517
+  (0.1ms) ROLLBACK
3518
+  (0.1ms) BEGIN
3519
+  (0.1ms) ROLLBACK
3520
+  (0.1ms) BEGIN
3521
+  (0.1ms) ROLLBACK
3522
+  (0.1ms) BEGIN
3523
+  (0.1ms) ROLLBACK
3524
+  (0.1ms) BEGIN
3525
+  (0.1ms) ROLLBACK
3526
+  (0.1ms) BEGIN
3527
+  (0.1ms) ROLLBACK
3528
+  (0.1ms) BEGIN
3529
+  (0.1ms) ROLLBACK
3530
+  (0.1ms) BEGIN
3531
+  (0.1ms) ROLLBACK
3532
+  (0.0ms) BEGIN
3533
+  (0.1ms) ROLLBACK
3534
+  (0.0ms) BEGIN
3535
+  (0.1ms) ROLLBACK
3536
+  (0.1ms) BEGIN
3537
+  (0.1ms) ROLLBACK
3538
+  (0.1ms) BEGIN
3539
+  (0.1ms) ROLLBACK
3540
+  (0.1ms) BEGIN
3541
+  (0.1ms) ROLLBACK
3542
+  (0.1ms) BEGIN
3543
+  (0.1ms) ROLLBACK
3544
+  (0.1ms) BEGIN
3545
+  (0.1ms) ROLLBACK
3546
+  (0.0ms) BEGIN
3547
+  (0.1ms) ROLLBACK
3548
+  (0.0ms) BEGIN
3549
+  (0.1ms) ROLLBACK
3550
+  (0.0ms) BEGIN
3551
+  (0.1ms) ROLLBACK
3552
+  (0.1ms) BEGIN
3553
+  (0.1ms) ROLLBACK
3554
+  (0.1ms) BEGIN
3555
+  (0.1ms) ROLLBACK
3556
+  (0.1ms) BEGIN
3557
+  (0.1ms) ROLLBACK
3558
+  (0.1ms) BEGIN
3559
+  (0.1ms) ROLLBACK
3560
+  (0.1ms) BEGIN
3561
+  (0.1ms) ROLLBACK
3562
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
3563
+  (5045.4ms) DROP DATABASE IF EXISTS "gatherable_test"
3564
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
3565
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3566
+ Migrating to CreateGatherableSchema (20160105210303)
3567
+  (0.1ms) BEGIN
3568
+  (0.2ms) CREATE SCHEMA gatherable
3569
+  (0.1ms) ROLLBACK
3570
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
3571
+  (5046.8ms) DROP DATABASE IF EXISTS "gatherable_test"
3572
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
3573
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3574
+ Migrating to CreateGatherableSchema (20160105210356)
3575
+  (0.1ms) BEGIN
3576
+  (0.3ms) CREATE SCHEMA gatherable
3577
+  (0.1ms) ROLLBACK
3578
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
3579
+  (112.2ms) DROP DATABASE IF EXISTS "gatherable_test"
3580
+  (230.2ms) CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
3581
+  (14.2ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
3582
+  (11.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3583
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
3584
+ Migrating to CreateGatherableSchema (20160105210404)
3585
+  (0.1ms) BEGIN
3586
+  (0.2ms) CREATE SCHEMA gatherable
3587
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160105210404"]]
3588
+  (0.3ms) COMMIT
3589
+ Migrating to CreateGatherablePrice (20160105210405)
3590
+  (0.1ms) BEGIN
3591
+  (2.3ms) 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
+  (0.5ms) CREATE INDEX "index_gatherable.prices_on_session_id" ON "gatherable"."prices" ("session_id")
3593
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160105210405"]]
3594
+  (0.3ms) COMMIT
3595
+  (0.1ms) 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
+  (0.1ms) ROLLBACK
3605
+  (0.1ms) 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
+  (0.1ms) ROLLBACK
3611
+  (0.1ms) 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
+  (0.1ms) ROLLBACK
3617
+  (0.1ms) 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
+  (0.1ms) ROLLBACK
3623
+  (0.0ms) 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
+  (0.1ms) ROLLBACK
3629
+  (0.1ms) 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
+  (0.1ms) ROLLBACK
3635
+  (0.0ms) 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
+  (0.1ms) ROLLBACK
3646
+  (0.1ms) 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
+  (0.1ms) ROLLBACK
3653
+  (0.0ms) 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
+  (0.1ms) ROLLBACK
3660
+  (0.1ms) 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
+  (0.1ms) ROLLBACK
3667
+  (0.1ms) 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
+  (0.1ms) ROLLBACK
3674
+  (0.0ms) 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
+  (0.1ms) ROLLBACK
3680
+  (0.1ms) 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
+  (0.1ms) ROLLBACK
3686
+  (0.1ms) 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
+  (0.1ms) ROLLBACK
3692
+  (0.0ms) 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
+  (0.1ms) ROLLBACK
3698
+  (0.1ms) BEGIN
3699
+  (0.1ms) ROLLBACK
3700
+  (0.0ms) BEGIN
3701
+  (0.1ms) ROLLBACK
3702
+  (0.1ms) BEGIN
3703
+  (0.1ms) ROLLBACK
3704
+  (0.1ms) BEGIN
3705
+  (0.1ms) ROLLBACK
3706
+  (0.1ms) BEGIN
3707
+  (0.1ms) ROLLBACK
3708
+  (0.1ms) BEGIN
3709
+  (0.1ms) ROLLBACK
3710
+  (0.1ms) BEGIN
3711
+  (0.1ms) ROLLBACK
3712
+  (0.1ms) BEGIN
3713
+  (0.1ms) ROLLBACK
3714
+  (0.1ms) BEGIN
3715
+  (0.3ms) ROLLBACK
3716
+  (0.1ms) BEGIN
3717
+  (0.1ms) ROLLBACK
3718
+  (0.1ms) BEGIN
3719
+  (0.1ms) ROLLBACK
3720
+  (0.1ms) BEGIN
3721
+  (0.1ms) ROLLBACK
3722
+  (0.2ms) BEGIN
3723
+  (0.1ms) ROLLBACK
3724
+  (0.0ms) BEGIN
3725
+  (0.1ms) ROLLBACK
3726
+  (0.1ms) BEGIN
3727
+  (0.1ms) ROLLBACK
3728
+  (0.1ms) BEGIN
3729
+  (0.1ms) ROLLBACK
3730
+  (0.0ms) BEGIN
3731
+  (0.1ms) ROLLBACK
3732
+  (0.0ms) BEGIN
3733
+  (0.1ms) ROLLBACK
3734
+  (0.0ms) BEGIN
3735
+  (0.1ms) ROLLBACK
3736
+  (0.0ms) BEGIN
3737
+  (0.1ms) ROLLBACK
3738
+  (0.0ms) BEGIN
3739
+  (0.1ms) ROLLBACK
3740
+  (0.1ms) BEGIN
3741
+  (0.1ms) ROLLBACK
3742
+  (0.1ms) BEGIN
3743
+  (0.1ms) ROLLBACK
3744
+  (0.1ms) BEGIN
3745
+  (0.1ms) ROLLBACK
3746
+  (0.1ms) BEGIN
3747
+  (0.1ms) ROLLBACK
3748
+  (0.0ms) BEGIN
3749
+  (0.1ms) ROLLBACK
3750
+  (0.0ms) BEGIN
3751
+  (0.1ms) ROLLBACK
3752
+  (0.1ms) BEGIN
3753
+  (0.1ms) ROLLBACK
3754
+  (0.1ms) BEGIN
3755
+  (0.1ms) ROLLBACK
3756
+  (0.0ms) BEGIN
3757
+  (0.1ms) ROLLBACK
3758
+  (0.1ms) BEGIN
3759
+  (0.1ms) ROLLBACK