gatherable 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/Rakefile +6 -0
- data/app/assets/javascripts/gatherable/application.js +13 -0
- data/app/controllers/gatherable/application_controller.rb +43 -0
- data/app/models/data_point.rb +28 -0
- data/app/writers/controller_writer.rb +34 -0
- data/app/writers/migration_writer.rb +90 -0
- data/app/writers/model_writer.rb +36 -0
- data/config/routes.rb +2 -0
- data/lib/gatherable.rb +41 -0
- data/lib/gatherable/configuration.rb +19 -0
- data/lib/gatherable/engine.rb +5 -0
- data/lib/gatherable/version.rb +3 -0
- data/lib/generators/gatherable/USAGE +32 -0
- data/lib/generators/gatherable/gatherable_generator.rb +33 -0
- data/lib/generators/gatherable/templates/application_controller.rb +43 -0
- data/lib/generators/gatherable/templates/gatherable.rb +9 -0
- data/lib/tasks/db_tasks.rake +14 -0
- data/lib/tasks/gatherable_tasks.rake +6 -0
- data/lib/version.rb +3 -0
- data/spec/controllers/gatherable/application_controller_spec.rb +110 -0
- data/spec/dummy/Rakefile +6 -0
- data/spec/dummy/app/assets/javascripts/application.js +13 -0
- data/spec/dummy/app/assets/stylesheets/application.css +15 -0
- data/spec/dummy/app/controllers/application_controller.rb +5 -0
- data/spec/dummy/app/views/layouts/application.html.erb +14 -0
- data/spec/dummy/bin/bundle +3 -0
- data/spec/dummy/bin/rails +4 -0
- data/spec/dummy/bin/rake +4 -0
- data/spec/dummy/bin/setup +29 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/config/application.rb +26 -0
- data/spec/dummy/config/boot.rb +5 -0
- data/spec/dummy/config/database.yml +11 -0
- data/spec/dummy/config/database.yml.travis +4 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +41 -0
- data/spec/dummy/config/environments/production.rb +79 -0
- data/spec/dummy/config/environments/test.rb +42 -0
- data/spec/dummy/config/initializers/assets.rb +11 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/cookies_serializer.rb +3 -0
- data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/dummy/config/initializers/inflections.rb +16 -0
- data/spec/dummy/config/initializers/mime_types.rb +4 -0
- data/spec/dummy/config/initializers/session_store.rb +3 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy/config/locales/en.yml +23 -0
- data/spec/dummy/config/routes.rb +3 -0
- data/spec/dummy/config/secrets.yml +5 -0
- data/spec/dummy/log/test.log +1550 -0
- data/spec/dummy/public/404.html +67 -0
- data/spec/dummy/public/422.html +67 -0
- data/spec/dummy/public/500.html +66 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/lib/gatherable_spec.rb +88 -0
- data/spec/lib/generators/gatherable_generator_spec.rb +107 -0
- data/spec/models/data_point_spec.rb +44 -0
- data/spec/rails_helper.rb +57 -0
- data/spec/spec_helper.rb +92 -0
- metadata +243 -0
@@ -0,0 +1,42 @@
|
|
1
|
+
Rails.application.configure do
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb.
|
3
|
+
|
4
|
+
# The test environment is used exclusively to run your application's
|
5
|
+
# test suite. You never need to work with it otherwise. Remember that
|
6
|
+
# your test database is "scratch space" for the test suite and is wiped
|
7
|
+
# and recreated between test runs. Don't rely on the data there!
|
8
|
+
config.cache_classes = true
|
9
|
+
|
10
|
+
# Do not eager load code on boot. This avoids loading your whole application
|
11
|
+
# just for the purpose of running a single test. If you are using a tool that
|
12
|
+
# preloads Rails for running tests, you may have to set it to true.
|
13
|
+
config.eager_load = false
|
14
|
+
|
15
|
+
# Configure static file server for tests with Cache-Control for performance.
|
16
|
+
config.serve_static_files = true
|
17
|
+
config.static_cache_control = 'public, max-age=3600'
|
18
|
+
|
19
|
+
# Show full error reports and disable caching.
|
20
|
+
config.consider_all_requests_local = true
|
21
|
+
config.action_controller.perform_caching = false
|
22
|
+
|
23
|
+
# Raise exceptions instead of rendering exception templates.
|
24
|
+
config.action_dispatch.show_exceptions = false
|
25
|
+
|
26
|
+
# Disable request forgery protection in test environment.
|
27
|
+
config.action_controller.allow_forgery_protection = false
|
28
|
+
|
29
|
+
# Tell Action Mailer not to deliver emails to the real world.
|
30
|
+
# The :test delivery method accumulates sent emails in the
|
31
|
+
# ActionMailer::Base.deliveries array.
|
32
|
+
config.action_mailer.delivery_method = :test
|
33
|
+
|
34
|
+
# Randomize the order test cases are executed.
|
35
|
+
config.active_support.test_order = :random
|
36
|
+
|
37
|
+
# Print deprecation notices to the stderr.
|
38
|
+
config.active_support.deprecation = :stderr
|
39
|
+
|
40
|
+
# Raises error for missing translations
|
41
|
+
# config.action_view.raise_on_missing_translations = true
|
42
|
+
end
|
@@ -0,0 +1,11 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Version of your assets, change this if you want to expire all your assets.
|
4
|
+
Rails.application.config.assets.version = '1.0'
|
5
|
+
|
6
|
+
# Add additional assets to the asset load path
|
7
|
+
# Rails.application.config.assets.paths << Emoji.images_path
|
8
|
+
|
9
|
+
# Precompile additional assets.
|
10
|
+
# application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
|
11
|
+
# Rails.application.config.assets.precompile += %w( search.js )
|
@@ -0,0 +1,7 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
|
4
|
+
# Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
|
5
|
+
|
6
|
+
# You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
|
7
|
+
# Rails.backtrace_cleaner.remove_silencers!
|
@@ -0,0 +1,16 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Add new inflection rules using the following format. Inflections
|
4
|
+
# are locale specific, and you may define rules for as many different
|
5
|
+
# locales as you wish. All of these examples are active by default:
|
6
|
+
# ActiveSupport::Inflector.inflections(:en) do |inflect|
|
7
|
+
# inflect.plural /^(ox)$/i, '\1en'
|
8
|
+
# inflect.singular /^(ox)en/i, '\1'
|
9
|
+
# inflect.irregular 'person', 'people'
|
10
|
+
# inflect.uncountable %w( fish sheep )
|
11
|
+
# end
|
12
|
+
|
13
|
+
# These inflection rules are supported but not enabled by default:
|
14
|
+
# ActiveSupport::Inflector.inflections(:en) do |inflect|
|
15
|
+
# inflect.acronym 'RESTful'
|
16
|
+
# end
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# This file contains settings for ActionController::ParamsWrapper which
|
4
|
+
# is enabled by default.
|
5
|
+
|
6
|
+
# Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
|
7
|
+
ActiveSupport.on_load(:action_controller) do
|
8
|
+
wrap_parameters format: [:json] if respond_to?(:wrap_parameters)
|
9
|
+
end
|
10
|
+
|
11
|
+
# To enable root element in JSON for ActiveRecord objects.
|
12
|
+
# ActiveSupport.on_load(:active_record) do
|
13
|
+
# self.include_root_in_json = true
|
14
|
+
# end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# Files in the config/locales directory are used for internationalization
|
2
|
+
# and are automatically loaded by Rails. If you want to use locales other
|
3
|
+
# than English, add the necessary files in this directory.
|
4
|
+
#
|
5
|
+
# To use the locales, use `I18n.t`:
|
6
|
+
#
|
7
|
+
# I18n.t 'hello'
|
8
|
+
#
|
9
|
+
# In views, this is aliased to just `t`:
|
10
|
+
#
|
11
|
+
# <%= t('hello') %>
|
12
|
+
#
|
13
|
+
# To use a different locale, set it with `I18n.locale`:
|
14
|
+
#
|
15
|
+
# I18n.locale = :es
|
16
|
+
#
|
17
|
+
# This would use the information in config/locales/es.yml.
|
18
|
+
#
|
19
|
+
# To learn more, please read the Rails Internationalization guide
|
20
|
+
# available at http://guides.rubyonrails.org/i18n.html.
|
21
|
+
|
22
|
+
en:
|
23
|
+
hello: "Hello world"
|
@@ -0,0 +1,5 @@
|
|
1
|
+
development:
|
2
|
+
secret_key_base: 94f8075599015e0472b88eb6b88bb6b66163ec68a7d112b3e198a18005eaba3974867eacb29f4f40e67df066979f4aca2e8b3b5084eba133b8d45924cb5acd77
|
3
|
+
|
4
|
+
test:
|
5
|
+
secret_key_base: f71a506025aa2b0e88cfcc467b2201a9abd111f315b84481e6855b93a8adf31745e5764b4eb86280a9793bfbbbdc49d0eaeb7d6580221bf99ec887cc12931870
|
@@ -0,0 +1,1550 @@
|
|
1
|
+
[1m[36m (112.3ms)[0m [1mDROP DATABASE IF EXISTS "gatherable_test"[0m
|
2
|
+
[1m[35m (324.1ms)[0m CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
|
3
|
+
[1m[36m (111.2ms)[0m [1mDROP DATABASE IF EXISTS "gatherable_test"[0m
|
4
|
+
[1m[35m (233.0ms)[0m CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
|
5
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
6
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
7
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
8
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
9
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
10
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
11
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
12
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
13
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
14
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
15
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
16
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 16:38:35 -0600
|
17
|
+
Processing by Gatherable::PricesController#create as JSON
|
18
|
+
Parameters: {"yolo"=>"swag", "session_id"=>"session_id123"}
|
19
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
20
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
21
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
22
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
23
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
24
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
25
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
26
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
27
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
28
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
29
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
30
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
31
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
32
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
33
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
34
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
35
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
36
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
37
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
38
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
39
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
40
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
41
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
42
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
43
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
44
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
45
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
46
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
47
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
48
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
49
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
50
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
51
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
52
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
53
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
54
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
55
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
56
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
57
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
58
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
59
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
60
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
61
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
62
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
63
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
64
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
65
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
66
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
67
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
68
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
69
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
70
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
71
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
72
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
73
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
74
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
75
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
76
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
77
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
78
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
79
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
80
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
81
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
82
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
83
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
84
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
85
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
86
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
87
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
88
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
89
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
90
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
91
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
92
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
93
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
94
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
95
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
96
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
97
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
98
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
99
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
100
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
101
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
102
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
103
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
104
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
105
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
106
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
107
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
108
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
109
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
110
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
111
|
+
[1m[36m (112.1ms)[0m [1mDROP DATABASE IF EXISTS "gatherable_test"[0m
|
112
|
+
[1m[35m (232.4ms)[0m CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
|
113
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
114
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
115
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
116
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
117
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
118
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
119
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
120
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
121
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
122
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
123
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
124
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 16:39:00 -0600
|
125
|
+
Processing by Gatherable::PricesController#create as JSON
|
126
|
+
Parameters: {"yolo"=>"swag", "session_id"=>"session_id123"}
|
127
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
128
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
129
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
130
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
131
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
132
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
133
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
134
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
135
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
136
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
137
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
138
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
139
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
140
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
141
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
142
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
143
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
144
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
145
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
146
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
147
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
148
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
149
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
150
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
151
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
152
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
153
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
154
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
155
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
156
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
157
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
158
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
159
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
160
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
161
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
162
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
163
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
164
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
165
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
166
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
167
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
168
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
169
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
170
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
171
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
172
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
173
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
174
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
175
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
176
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
177
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
178
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
179
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
180
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
181
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
182
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
183
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
184
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
185
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
186
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
187
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
188
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
189
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
190
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
191
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
192
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
193
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
194
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
195
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
196
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
197
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
198
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
199
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
200
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
201
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
202
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
203
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
204
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
205
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
206
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
207
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
208
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
209
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
210
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
211
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
212
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
213
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
214
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
215
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
216
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
217
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
218
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
219
|
+
[1m[36m (112.3ms)[0m [1mDROP DATABASE IF EXISTS "gatherable_test"[0m
|
220
|
+
[1m[35m (241.8ms)[0m CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
|
221
|
+
[1m[36m (112.1ms)[0m [1mDROP DATABASE IF EXISTS "gatherable_test"[0m
|
222
|
+
[1m[35m (244.0ms)[0m CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
|
223
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
224
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
225
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
226
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
227
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
228
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
229
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
230
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
231
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
232
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
233
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
234
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:26:38 -0600
|
235
|
+
Processing by Gatherable::PricesController#create as JSON
|
236
|
+
Parameters: {"yolo"=>"swag", "session_id"=>"session_id123"}
|
237
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
238
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
239
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
240
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
241
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
242
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
243
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
244
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
245
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
246
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
247
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
248
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
249
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
250
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
251
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
252
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
253
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
254
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
255
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
256
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
257
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
258
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
259
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
260
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
261
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
262
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
263
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
264
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
265
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
266
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
267
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
268
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
269
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
270
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
271
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
272
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
273
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
274
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
275
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
276
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
277
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
278
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
279
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
280
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
281
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
282
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
283
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
284
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
285
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
286
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
287
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
288
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
289
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
290
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
291
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
292
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
293
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
294
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
295
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
296
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
297
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
298
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
299
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
300
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
301
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
302
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
303
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
304
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
305
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
306
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
307
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
308
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
309
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
310
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
311
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
312
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
313
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
314
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
315
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
316
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
317
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
318
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
319
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
320
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
321
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
322
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
323
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
324
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
325
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
326
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
327
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
328
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
329
|
+
[1m[36m (111.4ms)[0m [1mDROP DATABASE IF EXISTS "gatherable_test"[0m
|
330
|
+
[1m[35m (230.0ms)[0m CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
|
331
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
332
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
333
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
334
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
335
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
336
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
337
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
338
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
339
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
340
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
341
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
342
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:27:51 -0600
|
343
|
+
Processing by Gatherable::PricesController#create as JSON
|
344
|
+
Parameters: {"yolo"=>"swag", "session_id"=>"session_id123"}
|
345
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
346
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
347
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
348
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
349
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
350
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
351
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
352
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
353
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
354
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
355
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
356
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
357
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
358
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
359
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
360
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
361
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
362
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
363
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
364
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
365
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
366
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
367
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
368
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
369
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
370
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
371
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
372
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
373
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
374
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
375
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
376
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
377
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
378
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
379
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
380
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
381
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
382
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
383
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
384
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
385
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
386
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
387
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
388
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
389
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
390
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
391
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
392
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
393
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
394
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
395
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
396
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
397
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
398
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
399
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
400
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
401
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
402
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
403
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
404
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
405
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
406
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
407
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
408
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
409
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
410
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
411
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
412
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
413
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
414
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
415
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
416
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
417
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
418
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
419
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
420
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
421
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
422
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
423
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
424
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
425
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
426
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
427
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
428
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
429
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
430
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
431
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
432
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
433
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
434
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
435
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
436
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
437
|
+
[1m[36m (112.4ms)[0m [1mDROP DATABASE IF EXISTS "gatherable_test"[0m
|
438
|
+
[1m[35m (231.9ms)[0m CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
|
439
|
+
[1m[36m (112.4ms)[0m [1mDROP DATABASE IF EXISTS "gatherable_test"[0m
|
440
|
+
[1m[35m (234.1ms)[0m CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
|
441
|
+
[1m[36m (14.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL) [0m
|
442
|
+
[1m[35m (11.3ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
443
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
444
|
+
Migrating to CreateGatherableSchema (20160105173829)
|
445
|
+
[1m[35m (0.1ms)[0m BEGIN
|
446
|
+
[1m[36m (0.2ms)[0m [1mCREATE SCHEMA gatherable[0m
|
447
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160105173829"]]
|
448
|
+
[1m[36m (5.9ms)[0m [1mCOMMIT[0m
|
449
|
+
Migrating to CreateGatherablePrice (20160105173830)
|
450
|
+
[1m[35m (0.1ms)[0m BEGIN
|
451
|
+
[1m[36m (13.6ms)[0m [1mCREATE TABLE "gatherable"."prices" ("price_id" serial primary key, "price" decimal NOT NULL, "session_id" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
452
|
+
[1m[35m (5.2ms)[0m CREATE INDEX "index_gatherable.prices_on_session_id" ON "gatherable"."prices" ("session_id")
|
453
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20160105173830"]]
|
454
|
+
[1m[35m (0.3ms)[0m COMMIT
|
455
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
456
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:38:29 -0600
|
457
|
+
Processing by Gatherable::PricesController#create as JSON
|
458
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
459
|
+
Completed 201 Created in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
460
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:38:29 -0600
|
461
|
+
Processing by Gatherable::PricesController#create as JSON
|
462
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
463
|
+
Completed 201 Created in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
464
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
465
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
466
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:38:29 -0600
|
467
|
+
Processing by Gatherable::PricesController#create as JSON
|
468
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
469
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
470
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
471
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
472
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:38:29 -0600
|
473
|
+
Processing by Gatherable::PricesController#create as JSON
|
474
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
475
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
476
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
477
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
478
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:38:29 -0600
|
479
|
+
Processing by Gatherable::PricesController#create as JSON
|
480
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
481
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
482
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
483
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
484
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:38:29 -0600
|
485
|
+
Processing by Gatherable::PricesController#create as JSON
|
486
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
487
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
488
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
489
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
490
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:38:29 -0600
|
491
|
+
Processing by Gatherable::PricesController#create as JSON
|
492
|
+
Parameters: {"yolo"=>"swag", "session_id"=>"session_id123"}
|
493
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
494
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
495
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
496
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:38:29 -0600
|
497
|
+
Processing by Gatherable::PricesController#create as JSON
|
498
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
499
|
+
Unpermitted parameter: yolo
|
500
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
501
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:38:29 -0600
|
502
|
+
Processing by Gatherable::PricesController#create as JSON
|
503
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
504
|
+
Completed 201 Created in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
505
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
506
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
507
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:38:29 -0600
|
508
|
+
Processing by Gatherable::PricesController#create as JSON
|
509
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
510
|
+
Unpermitted parameter: yolo
|
511
|
+
Completed 201 Created in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
512
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
513
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
514
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:38:29 -0600
|
515
|
+
Processing by Gatherable::PricesController#create as JSON
|
516
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
517
|
+
Unpermitted parameter: yolo
|
518
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
519
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
520
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
521
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:38:29 -0600
|
522
|
+
Processing by Gatherable::PricesController#create as JSON
|
523
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
524
|
+
Unpermitted parameter: yolo
|
525
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
526
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
527
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
528
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:38:29 -0600
|
529
|
+
Processing by Gatherable::PricesController#create as JSON
|
530
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
531
|
+
Unpermitted parameter: yolo
|
532
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
533
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
534
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
535
|
+
Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-01-05 17:38:29 -0600
|
536
|
+
Processing by Gatherable::PricesController#show as JSON
|
537
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
|
538
|
+
Completed 302 Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
539
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
540
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
541
|
+
Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-01-05 17:38:29 -0600
|
542
|
+
Processing by Gatherable::PricesController#show as JSON
|
543
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
|
544
|
+
Completed 302 Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
545
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
546
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
547
|
+
Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-01-05 17:38:29 -0600
|
548
|
+
Processing by Gatherable::PricesController#show as JSON
|
549
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
|
550
|
+
Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
551
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
552
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
553
|
+
Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-01-05 17:38:29 -0600
|
554
|
+
Processing by Gatherable::PricesController#show as JSON
|
555
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
|
556
|
+
Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
557
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
558
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
559
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
560
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
561
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
562
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
563
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
564
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
565
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
566
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
567
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
568
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
569
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
570
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
571
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
572
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
573
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
574
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
575
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
576
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
577
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
578
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
579
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
580
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
581
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
582
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
583
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
584
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
585
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
586
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
587
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
588
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
589
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
590
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
591
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
592
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
593
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
594
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
595
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
596
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
597
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
598
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
599
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
600
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
601
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
602
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
603
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
604
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
605
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
606
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
607
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
608
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
609
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
610
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
611
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
612
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
613
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
614
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
615
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
616
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
617
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
618
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
619
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
620
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
621
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
622
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
623
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
624
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
625
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
626
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
627
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
628
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
629
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
630
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
631
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
632
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
633
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:39:32 -0600
|
634
|
+
Processing by Gatherable::PricesController#create as JSON
|
635
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
636
|
+
Completed 201 Created in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
637
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:39:32 -0600
|
638
|
+
Processing by Gatherable::PricesController#create as JSON
|
639
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
640
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
641
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
642
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
643
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:39:32 -0600
|
644
|
+
Processing by Gatherable::PricesController#create as JSON
|
645
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
646
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
647
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
648
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
649
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:39:32 -0600
|
650
|
+
Processing by Gatherable::PricesController#create as JSON
|
651
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
652
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
653
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
654
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
655
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:39:32 -0600
|
656
|
+
Processing by Gatherable::PricesController#create as JSON
|
657
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
658
|
+
Completed 201 Created in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
659
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
660
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
661
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:39:32 -0600
|
662
|
+
Processing by Gatherable::PricesController#create as JSON
|
663
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
664
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
665
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
666
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
667
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:39:32 -0600
|
668
|
+
Processing by Gatherable::PricesController#create as JSON
|
669
|
+
Parameters: {"yolo"=>"swag", "session_id"=>"session_id123"}
|
670
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
671
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
672
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
673
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:39:32 -0600
|
674
|
+
Processing by Gatherable::PricesController#create as JSON
|
675
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
676
|
+
Unpermitted parameter: yolo
|
677
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
678
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:39:32 -0600
|
679
|
+
Processing by Gatherable::PricesController#create as JSON
|
680
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
681
|
+
Completed 201 Created in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
682
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
683
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
684
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:39:32 -0600
|
685
|
+
Processing by Gatherable::PricesController#create as JSON
|
686
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
687
|
+
Unpermitted parameter: yolo
|
688
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
689
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
690
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
691
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:39:32 -0600
|
692
|
+
Processing by Gatherable::PricesController#create as JSON
|
693
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
694
|
+
Unpermitted parameter: yolo
|
695
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
696
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
697
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
698
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:39:32 -0600
|
699
|
+
Processing by Gatherable::PricesController#create as JSON
|
700
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
701
|
+
Unpermitted parameter: yolo
|
702
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
703
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
704
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
705
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:39:32 -0600
|
706
|
+
Processing by Gatherable::PricesController#create as JSON
|
707
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
708
|
+
Unpermitted parameter: yolo
|
709
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
710
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
711
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
712
|
+
Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-01-05 17:39:32 -0600
|
713
|
+
Processing by Gatherable::PricesController#show as JSON
|
714
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
|
715
|
+
Completed 302 Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
716
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
717
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
718
|
+
Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-01-05 17:39:32 -0600
|
719
|
+
Processing by Gatherable::PricesController#show as JSON
|
720
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
|
721
|
+
Completed 302 Found in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
722
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
723
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
724
|
+
Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-01-05 17:39:32 -0600
|
725
|
+
Processing by Gatherable::PricesController#show as JSON
|
726
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
|
727
|
+
Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
728
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
729
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
730
|
+
Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-01-05 17:39:32 -0600
|
731
|
+
Processing by Gatherable::PricesController#show as JSON
|
732
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
|
733
|
+
Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
734
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
735
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
736
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
737
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
738
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
739
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
740
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
741
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
742
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
743
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
744
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
745
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
746
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
747
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
748
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
749
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
750
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
751
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
752
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
753
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
754
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
755
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
756
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
757
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
758
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
759
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
760
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
761
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
762
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
763
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
764
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
765
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
766
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
767
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
768
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
769
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
770
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
771
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
772
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
773
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
774
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
775
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
776
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
777
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
778
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
779
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
780
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
781
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
782
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
783
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
784
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
785
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
786
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
787
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
788
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
789
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
790
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
791
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
792
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
793
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
794
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
795
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
796
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
797
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
798
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
799
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
800
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
801
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
802
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
803
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
804
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
805
|
+
[1m[36m (0.0ms)[0m [1mBEGIN[0m
|
806
|
+
[1m[35m (0.0ms)[0m ROLLBACK
|
807
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
808
|
+
[1m[36m (112.6ms)[0m [1mDROP DATABASE IF EXISTS "gatherable_test"[0m
|
809
|
+
[1m[35m (230.9ms)[0m CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
|
810
|
+
[1m[35m (13.4ms)[0m CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
|
811
|
+
[1m[36m (11.2ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
812
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.4ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
813
|
+
Migrating to CreateGatherableSchema (20160105173949)
|
814
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
815
|
+
[1m[35m (0.2ms)[0m CREATE SCHEMA gatherable
|
816
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20160105173949"]]
|
817
|
+
[1m[35m (0.2ms)[0m COMMIT
|
818
|
+
Migrating to CreateGatherablePrice (20160105173950)
|
819
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
820
|
+
[1m[35m (2.2ms)[0m 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)
|
821
|
+
[1m[36m (0.6ms)[0m [1mCREATE INDEX "index_gatherable.prices_on_session_id" ON "gatherable"."prices" ("session_id")[0m
|
822
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160105173950"]]
|
823
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m
|
824
|
+
[1m[35m (0.1ms)[0m BEGIN
|
825
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:39:49 -0600
|
826
|
+
Processing by Gatherable::PricesController#create as JSON
|
827
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
828
|
+
Completed 201 Created in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
829
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:39:49 -0600
|
830
|
+
Processing by Gatherable::PricesController#create as JSON
|
831
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
832
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
833
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
834
|
+
[1m[35m (0.1ms)[0m BEGIN
|
835
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:39:49 -0600
|
836
|
+
Processing by Gatherable::PricesController#create as JSON
|
837
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
838
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
839
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
840
|
+
[1m[35m (0.1ms)[0m BEGIN
|
841
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:39:49 -0600
|
842
|
+
Processing by Gatherable::PricesController#create as JSON
|
843
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
844
|
+
Completed 201 Created in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
845
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
846
|
+
[1m[35m (0.0ms)[0m BEGIN
|
847
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:39:49 -0600
|
848
|
+
Processing by Gatherable::PricesController#create as JSON
|
849
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
850
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
851
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
852
|
+
[1m[35m (0.0ms)[0m BEGIN
|
853
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:39:49 -0600
|
854
|
+
Processing by Gatherable::PricesController#create as JSON
|
855
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
856
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
857
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
858
|
+
[1m[35m (0.0ms)[0m BEGIN
|
859
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:39:49 -0600
|
860
|
+
Processing by Gatherable::PricesController#create as JSON
|
861
|
+
Parameters: {"yolo"=>"swag", "session_id"=>"session_id123"}
|
862
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
863
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
864
|
+
[1m[35m (0.1ms)[0m BEGIN
|
865
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:39:49 -0600
|
866
|
+
Processing by Gatherable::PricesController#create as JSON
|
867
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
868
|
+
Unpermitted parameter: yolo
|
869
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
870
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:39:49 -0600
|
871
|
+
Processing by Gatherable::PricesController#create as JSON
|
872
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
873
|
+
Completed 201 Created in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
874
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
875
|
+
[1m[35m (0.0ms)[0m BEGIN
|
876
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:39:49 -0600
|
877
|
+
Processing by Gatherable::PricesController#create as JSON
|
878
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
879
|
+
Unpermitted parameter: yolo
|
880
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
881
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
882
|
+
[1m[35m (0.1ms)[0m BEGIN
|
883
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:39:49 -0600
|
884
|
+
Processing by Gatherable::PricesController#create as JSON
|
885
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
886
|
+
Unpermitted parameter: yolo
|
887
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
888
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
889
|
+
[1m[35m (0.1ms)[0m BEGIN
|
890
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:39:49 -0600
|
891
|
+
Processing by Gatherable::PricesController#create as JSON
|
892
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
893
|
+
Unpermitted parameter: yolo
|
894
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
895
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
896
|
+
[1m[35m (0.1ms)[0m BEGIN
|
897
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:39:49 -0600
|
898
|
+
Processing by Gatherable::PricesController#create as JSON
|
899
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
900
|
+
Unpermitted parameter: yolo
|
901
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
902
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
903
|
+
[1m[35m (0.1ms)[0m BEGIN
|
904
|
+
Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-01-05 17:39:49 -0600
|
905
|
+
Processing by Gatherable::PricesController#show as JSON
|
906
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
|
907
|
+
Completed 302 Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
908
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
909
|
+
[1m[35m (0.1ms)[0m BEGIN
|
910
|
+
Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-01-05 17:39:49 -0600
|
911
|
+
Processing by Gatherable::PricesController#show as JSON
|
912
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
|
913
|
+
Completed 302 Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
914
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
915
|
+
[1m[35m (0.1ms)[0m BEGIN
|
916
|
+
Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-01-05 17:39:49 -0600
|
917
|
+
Processing by Gatherable::PricesController#show as JSON
|
918
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
|
919
|
+
Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
920
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
921
|
+
[1m[35m (0.0ms)[0m BEGIN
|
922
|
+
Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-01-05 17:39:49 -0600
|
923
|
+
Processing by Gatherable::PricesController#show as JSON
|
924
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
|
925
|
+
Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
926
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
927
|
+
[1m[35m (0.1ms)[0m BEGIN
|
928
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
929
|
+
[1m[35m (0.1ms)[0m BEGIN
|
930
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
931
|
+
[1m[35m (0.1ms)[0m BEGIN
|
932
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
933
|
+
[1m[35m (0.1ms)[0m BEGIN
|
934
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
935
|
+
[1m[35m (0.1ms)[0m BEGIN
|
936
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
937
|
+
[1m[35m (0.1ms)[0m BEGIN
|
938
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
939
|
+
[1m[35m (0.0ms)[0m BEGIN
|
940
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
941
|
+
[1m[35m (0.1ms)[0m BEGIN
|
942
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
943
|
+
[1m[35m (0.1ms)[0m BEGIN
|
944
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
945
|
+
[1m[35m (0.1ms)[0m BEGIN
|
946
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
947
|
+
[1m[35m (0.1ms)[0m BEGIN
|
948
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
949
|
+
[1m[35m (0.0ms)[0m BEGIN
|
950
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
951
|
+
[1m[35m (0.0ms)[0m BEGIN
|
952
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
953
|
+
[1m[35m (0.0ms)[0m BEGIN
|
954
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
955
|
+
[1m[35m (0.1ms)[0m BEGIN
|
956
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
957
|
+
[1m[35m (0.0ms)[0m BEGIN
|
958
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
959
|
+
[1m[35m (0.0ms)[0m BEGIN
|
960
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
961
|
+
[1m[35m (0.1ms)[0m BEGIN
|
962
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
963
|
+
[1m[35m (0.1ms)[0m BEGIN
|
964
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
965
|
+
[1m[35m (0.1ms)[0m BEGIN
|
966
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
967
|
+
[1m[35m (0.1ms)[0m BEGIN
|
968
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
969
|
+
[1m[35m (0.0ms)[0m BEGIN
|
970
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
971
|
+
[1m[35m (0.0ms)[0m BEGIN
|
972
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
973
|
+
[1m[35m (0.1ms)[0m BEGIN
|
974
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
975
|
+
[1m[35m (0.1ms)[0m BEGIN
|
976
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
977
|
+
[1m[35m (0.1ms)[0m BEGIN
|
978
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
979
|
+
[1m[35m (0.1ms)[0m BEGIN
|
980
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
981
|
+
[1m[35m (0.1ms)[0m BEGIN
|
982
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
983
|
+
[1m[35m (0.0ms)[0m BEGIN
|
984
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
985
|
+
[1m[35m (0.0ms)[0m BEGIN
|
986
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
987
|
+
[1m[35m (0.1ms)[0m BEGIN
|
988
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
989
|
+
[1m[35m (0.1ms)[0m BEGIN
|
990
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
991
|
+
[1m[35m (0.1ms)[0m BEGIN
|
992
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
993
|
+
[1m[35m (0.1ms)[0m BEGIN
|
994
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
995
|
+
[1m[35m (0.1ms)[0m BEGIN
|
996
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
997
|
+
[1m[35m (0.1ms)[0m BEGIN
|
998
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
999
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1000
|
+
[1m[36m (111.8ms)[0m [1mDROP DATABASE IF EXISTS "gatherable_test"[0m
|
1001
|
+
[1m[35m (230.6ms)[0m CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
|
1002
|
+
[1m[35m (13.6ms)[0m CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
|
1003
|
+
[1m[36m (11.2ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1004
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.4ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1005
|
+
Migrating to CreateGatherableSchema (20160105174404)
|
1006
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1007
|
+
[1m[35m (0.3ms)[0m CREATE SCHEMA gatherable
|
1008
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20160105174404"]]
|
1009
|
+
[1m[35m (0.2ms)[0m COMMIT
|
1010
|
+
Migrating to CreateGatherablePrice (20160105174405)
|
1011
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1012
|
+
[1m[35m (2.2ms)[0m 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)
|
1013
|
+
[1m[36m (0.5ms)[0m [1mCREATE INDEX "index_gatherable.prices_on_session_id" ON "gatherable"."prices" ("session_id")[0m
|
1014
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160105174405"]]
|
1015
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m
|
1016
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1017
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:44:04 -0600
|
1018
|
+
Processing by Gatherable::PricesController#create as JSON
|
1019
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
1020
|
+
Completed 201 Created in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
1021
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:44:04 -0600
|
1022
|
+
Processing by Gatherable::PricesController#create as JSON
|
1023
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
1024
|
+
Completed 201 Created in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1025
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1026
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1027
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:44:04 -0600
|
1028
|
+
Processing by Gatherable::PricesController#create as JSON
|
1029
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
1030
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
1031
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1032
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1033
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:44:04 -0600
|
1034
|
+
Processing by Gatherable::PricesController#create as JSON
|
1035
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
1036
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
1037
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1038
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1039
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:44:04 -0600
|
1040
|
+
Processing by Gatherable::PricesController#create as JSON
|
1041
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
1042
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
1043
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1044
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1045
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:44:04 -0600
|
1046
|
+
Processing by Gatherable::PricesController#create as JSON
|
1047
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
1048
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
1049
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1050
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1051
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:44:04 -0600
|
1052
|
+
Processing by Gatherable::PricesController#create as JSON
|
1053
|
+
Parameters: {"yolo"=>"swag", "session_id"=>"session_id123"}
|
1054
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1055
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1056
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1057
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:44:04 -0600
|
1058
|
+
Processing by Gatherable::PricesController#create as JSON
|
1059
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
1060
|
+
Unpermitted parameter: yolo
|
1061
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
1062
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:44:04 -0600
|
1063
|
+
Processing by Gatherable::PricesController#create as JSON
|
1064
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
1065
|
+
Completed 201 Created in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1066
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1067
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1068
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:44:04 -0600
|
1069
|
+
Processing by Gatherable::PricesController#create as JSON
|
1070
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
1071
|
+
Unpermitted parameter: yolo
|
1072
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
1073
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1074
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1075
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:44:04 -0600
|
1076
|
+
Processing by Gatherable::PricesController#create as JSON
|
1077
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
1078
|
+
Unpermitted parameter: yolo
|
1079
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
1080
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1081
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1082
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:44:04 -0600
|
1083
|
+
Processing by Gatherable::PricesController#create as JSON
|
1084
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
1085
|
+
Unpermitted parameter: yolo
|
1086
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
1087
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1088
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1089
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:44:04 -0600
|
1090
|
+
Processing by Gatherable::PricesController#create as JSON
|
1091
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
1092
|
+
Unpermitted parameter: yolo
|
1093
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
1094
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1095
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1096
|
+
Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-01-05 17:44:04 -0600
|
1097
|
+
Processing by Gatherable::PricesController#show as JSON
|
1098
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
|
1099
|
+
Completed 302 Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
1100
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1101
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1102
|
+
Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-01-05 17:44:04 -0600
|
1103
|
+
Processing by Gatherable::PricesController#show as JSON
|
1104
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
|
1105
|
+
Completed 302 Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
1106
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1107
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1108
|
+
Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-01-05 17:44:04 -0600
|
1109
|
+
Processing by Gatherable::PricesController#show as JSON
|
1110
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
|
1111
|
+
Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1112
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1113
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1114
|
+
Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-01-05 17:44:04 -0600
|
1115
|
+
Processing by Gatherable::PricesController#show as JSON
|
1116
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
|
1117
|
+
Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1118
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1119
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1120
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1121
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1122
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1123
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1124
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1125
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1126
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1127
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1128
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
1129
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1130
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1131
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1132
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
1133
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1134
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1135
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1136
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1137
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1138
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1139
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1140
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1141
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1142
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1143
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1144
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1145
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1146
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
1147
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1148
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1149
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1150
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1151
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1152
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1153
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1154
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1155
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1156
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1157
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1158
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1159
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1160
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1161
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1162
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1163
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1164
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1165
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1166
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1167
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1168
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1169
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1170
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1171
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1172
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1173
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1174
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1175
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1176
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1177
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1178
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1179
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1180
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1181
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1182
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1183
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1184
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1185
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1186
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1187
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1188
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1189
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1190
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1191
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1192
|
+
[1m[36m (112.9ms)[0m [1mDROP DATABASE IF EXISTS "gatherable_test"[0m
|
1193
|
+
[1m[35m (227.3ms)[0m CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
|
1194
|
+
[1m[35m (13.6ms)[0m CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
|
1195
|
+
[1m[36m (11.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1196
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1197
|
+
Migrating to CreateGatherableSchema (20160105174556)
|
1198
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1199
|
+
[1m[35m (0.2ms)[0m CREATE SCHEMA gatherable
|
1200
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20160105174556"]]
|
1201
|
+
[1m[35m (0.2ms)[0m COMMIT
|
1202
|
+
Migrating to CreateGatherablePrice (20160105174557)
|
1203
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1204
|
+
[1m[35m (2.5ms)[0m 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)
|
1205
|
+
[1m[36m (0.5ms)[0m [1mCREATE INDEX "index_gatherable.prices_on_session_id" ON "gatherable"."prices" ("session_id")[0m
|
1206
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160105174557"]]
|
1207
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m
|
1208
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1209
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:45:56 -0600
|
1210
|
+
Processing by Gatherable::PricesController#create as JSON
|
1211
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
1212
|
+
Completed 201 Created in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
1213
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:45:56 -0600
|
1214
|
+
Processing by Gatherable::PricesController#create as JSON
|
1215
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
1216
|
+
Completed 201 Created in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1217
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
1218
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1219
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:45:56 -0600
|
1220
|
+
Processing by Gatherable::PricesController#create as JSON
|
1221
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
1222
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
1223
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1224
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1225
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:45:56 -0600
|
1226
|
+
Processing by Gatherable::PricesController#create as JSON
|
1227
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
1228
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
1229
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1230
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1231
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:45:56 -0600
|
1232
|
+
Processing by Gatherable::PricesController#create as JSON
|
1233
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
1234
|
+
Completed 201 Created in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1235
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1236
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1237
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:45:56 -0600
|
1238
|
+
Processing by Gatherable::PricesController#create as JSON
|
1239
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
1240
|
+
Completed 201 Created in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1241
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1242
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1243
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:45:56 -0600
|
1244
|
+
Processing by Gatherable::PricesController#create as JSON
|
1245
|
+
Parameters: {"yolo"=>"swag", "session_id"=>"session_id123"}
|
1246
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1247
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1248
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1249
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:45:56 -0600
|
1250
|
+
Processing by Gatherable::PricesController#create as JSON
|
1251
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
1252
|
+
Unpermitted parameter: yolo
|
1253
|
+
Completed 201 Created in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
1254
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:45:56 -0600
|
1255
|
+
Processing by Gatherable::PricesController#create as JSON
|
1256
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
1257
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
1258
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1259
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1260
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:45:56 -0600
|
1261
|
+
Processing by Gatherable::PricesController#create as JSON
|
1262
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
1263
|
+
Unpermitted parameter: yolo
|
1264
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
1265
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1266
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1267
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:45:56 -0600
|
1268
|
+
Processing by Gatherable::PricesController#create as JSON
|
1269
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
1270
|
+
Unpermitted parameter: yolo
|
1271
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
1272
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1273
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1274
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:45:56 -0600
|
1275
|
+
Processing by Gatherable::PricesController#create as JSON
|
1276
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
1277
|
+
Unpermitted parameter: yolo
|
1278
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
1279
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1280
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1281
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:45:56 -0600
|
1282
|
+
Processing by Gatherable::PricesController#create as JSON
|
1283
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
1284
|
+
Unpermitted parameter: yolo
|
1285
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
1286
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1287
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1288
|
+
Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-01-05 17:45:56 -0600
|
1289
|
+
Processing by Gatherable::PricesController#show as JSON
|
1290
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
|
1291
|
+
Completed 302 Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
1292
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1293
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1294
|
+
Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-01-05 17:45:56 -0600
|
1295
|
+
Processing by Gatherable::PricesController#show as JSON
|
1296
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
|
1297
|
+
Completed 302 Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
1298
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1299
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1300
|
+
Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-01-05 17:45:56 -0600
|
1301
|
+
Processing by Gatherable::PricesController#show as JSON
|
1302
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
|
1303
|
+
Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1304
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1305
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1306
|
+
Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-01-05 17:45:56 -0600
|
1307
|
+
Processing by Gatherable::PricesController#show as JSON
|
1308
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
|
1309
|
+
Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1310
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1311
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1312
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
1313
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1314
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1315
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1316
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
1317
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1318
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1319
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1320
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1321
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1322
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1323
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1324
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1325
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1326
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1327
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1328
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1329
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1330
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
1331
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1332
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1333
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1334
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
1335
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1336
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1337
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1338
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1339
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1340
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1341
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1342
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1343
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1344
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1345
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1346
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1347
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1348
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1349
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1350
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1351
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1352
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1353
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1354
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1355
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1356
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1357
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1358
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1359
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1360
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1361
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1362
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1363
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1364
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1365
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1366
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1367
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1368
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1369
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1370
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1371
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1372
|
+
[1m[36m (112.2ms)[0m [1mDROP DATABASE IF EXISTS "gatherable_test"[0m
|
1373
|
+
[1m[35m (234.2ms)[0m CREATE DATABASE "gatherable_test" ENCODING = 'unicode'
|
1374
|
+
[1m[35m (14.6ms)[0m CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
|
1375
|
+
[1m[36m (11.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1376
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1377
|
+
Migrating to CreateGatherableSchema (20160105174603)
|
1378
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1379
|
+
[1m[35m (0.2ms)[0m CREATE SCHEMA gatherable
|
1380
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20160105174603"]]
|
1381
|
+
[1m[35m (0.2ms)[0m COMMIT
|
1382
|
+
Migrating to CreateGatherablePrice (20160105174604)
|
1383
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1384
|
+
[1m[35m (2.5ms)[0m 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)
|
1385
|
+
[1m[36m (0.5ms)[0m [1mCREATE INDEX "index_gatherable.prices_on_session_id" ON "gatherable"."prices" ("session_id")[0m
|
1386
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20160105174604"]]
|
1387
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m
|
1388
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1389
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:46:03 -0600
|
1390
|
+
Processing by Gatherable::PricesController#create as JSON
|
1391
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
1392
|
+
Completed 201 Created in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
1393
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:46:03 -0600
|
1394
|
+
Processing by Gatherable::PricesController#create as JSON
|
1395
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
1396
|
+
Completed 201 Created in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1397
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1398
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1399
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:46:03 -0600
|
1400
|
+
Processing by Gatherable::PricesController#create as JSON
|
1401
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
1402
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
1403
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1404
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1405
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:46:03 -0600
|
1406
|
+
Processing by Gatherable::PricesController#create as JSON
|
1407
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
1408
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
1409
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1410
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1411
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:46:03 -0600
|
1412
|
+
Processing by Gatherable::PricesController#create as JSON
|
1413
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
1414
|
+
Completed 201 Created in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
1415
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1416
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1417
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:46:03 -0600
|
1418
|
+
Processing by Gatherable::PricesController#create as JSON
|
1419
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
1420
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
1421
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1422
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1423
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:46:03 -0600
|
1424
|
+
Processing by Gatherable::PricesController#create as JSON
|
1425
|
+
Parameters: {"yolo"=>"swag", "session_id"=>"session_id123"}
|
1426
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1427
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1428
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1429
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:46:03 -0600
|
1430
|
+
Processing by Gatherable::PricesController#create as JSON
|
1431
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
1432
|
+
Unpermitted parameter: yolo
|
1433
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
1434
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:46:03 -0600
|
1435
|
+
Processing by Gatherable::PricesController#create as JSON
|
1436
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123"}, "session_id"=>"session_id123"}
|
1437
|
+
Completed 201 Created in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1438
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1439
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1440
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:46:03 -0600
|
1441
|
+
Processing by Gatherable::PricesController#create as JSON
|
1442
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
1443
|
+
Unpermitted parameter: yolo
|
1444
|
+
Completed 201 Created in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
1445
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
1446
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1447
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:46:03 -0600
|
1448
|
+
Processing by Gatherable::PricesController#create as JSON
|
1449
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
1450
|
+
Unpermitted parameter: yolo
|
1451
|
+
Completed 201 Created in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
1452
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1453
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1454
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:46:03 -0600
|
1455
|
+
Processing by Gatherable::PricesController#create as JSON
|
1456
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
1457
|
+
Unpermitted parameter: yolo
|
1458
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
1459
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1460
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1461
|
+
Started POST "/gatherable/session_id123/prices.json" for 127.0.0.1 at 2016-01-05 17:46:03 -0600
|
1462
|
+
Processing by Gatherable::PricesController#create as JSON
|
1463
|
+
Parameters: {"price"=>{"price"=>"3.0", "session_id"=>"session_id123", "yolo"=>"swag"}, "yolo"=>"swag", "session_id"=>"session_id123"}
|
1464
|
+
Unpermitted parameter: yolo
|
1465
|
+
Completed 201 Created in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
1466
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1467
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1468
|
+
Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-01-05 17:46:03 -0600
|
1469
|
+
Processing by Gatherable::PricesController#show as JSON
|
1470
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
|
1471
|
+
Completed 302 Found in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
1472
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1473
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1474
|
+
Started GET "/gatherable/session_id123/prices/1.json" for 127.0.0.1 at 2016-01-05 17:46:03 -0600
|
1475
|
+
Processing by Gatherable::PricesController#show as JSON
|
1476
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"1"}
|
1477
|
+
Completed 302 Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
1478
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1479
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1480
|
+
Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-01-05 17:46:03 -0600
|
1481
|
+
Processing by Gatherable::PricesController#show as JSON
|
1482
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
|
1483
|
+
Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1484
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1485
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1486
|
+
Started GET "/gatherable/session_id123/prices/0.json" for 127.0.0.1 at 2016-01-05 17:46:03 -0600
|
1487
|
+
Processing by Gatherable::PricesController#show as JSON
|
1488
|
+
Parameters: {"session_id"=>"session_id123", "price_id"=>"0"}
|
1489
|
+
Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1490
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1491
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1492
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
1493
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1494
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
1495
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1496
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1497
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1498
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1499
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1500
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1501
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1502
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1503
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1504
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1505
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1506
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1507
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1508
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1509
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1510
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1511
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1512
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1513
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1514
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
1515
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1516
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
1517
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1518
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK[0m
|
1519
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1520
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1521
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1522
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1523
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1524
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1525
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1526
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1527
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1528
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1529
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1530
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1531
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1532
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1533
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1534
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1535
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1536
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1537
|
+
[1m[35m (0.0ms)[0m BEGIN
|
1538
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1539
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1540
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1541
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1542
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1543
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1544
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1545
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1546
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1547
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1548
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1549
|
+
[1m[35m (0.1ms)[0m BEGIN
|
1550
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|