know_more 0.9.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/README.md +130 -0
- data/Rakefile +26 -0
- data/app/assets/config/know_more_manifest.js +2 -0
- data/app/assets/javascripts/know_more/application.js +13 -0
- data/app/assets/stylesheets/know_more/application.css +15 -0
- data/app/controllers/know_more/application_controller.rb +5 -0
- data/app/controllers/know_more/controller_helpers.rb +14 -0
- data/app/controllers/know_more/questionnaire_controller.rb +55 -0
- data/app/helpers/know_more/application_helper.rb +4 -0
- data/app/jobs/know_more/application_job.rb +4 -0
- data/app/mailers/know_more/application_mailer.rb +6 -0
- data/app/models/concerns/know_more/application_record.rb +5 -0
- data/app/models/concerns/know_more/questionnaire.rb +7 -0
- data/app/views/layouts/know_more/application.html.erb +14 -0
- data/config/routes.rb +7 -0
- data/lib/generators/know_more/init_generator.rb +13 -0
- data/lib/generators/know_more/install_generator.rb +45 -0
- data/lib/generators/know_more/templates/concerns.rb.erb +23 -0
- data/lib/generators/know_more/templates/erb/page_template.erb +39 -0
- data/lib/generators/know_more/templates/haml/page_template.erb +32 -0
- data/lib/generators/know_more/templates/initializer.rb.erb +4 -0
- data/lib/generators/know_more/templates/models/migration.rb.erb +9 -0
- data/lib/generators/know_more/templates/models/model.rb.erb +3 -0
- data/lib/know_more.rb +6 -0
- data/lib/know_more/base.rb +24 -0
- data/lib/know_more/configuration.rb +9 -0
- data/lib/know_more/engine.rb +16 -0
- data/lib/know_more/version.rb +3 -0
- data/lib/tasks/know_more_tasks.rake +4 -0
- data/spec/rails_helper.rb +57 -0
- data/spec/spec_helper.rb +99 -0
- data/spec/test_app/Rakefile +6 -0
- data/spec/test_app/app/assets/config/manifest.js +5 -0
- data/spec/test_app/app/assets/javascripts/application.js +15 -0
- data/spec/test_app/app/assets/javascripts/cable.js +13 -0
- data/spec/test_app/app/assets/stylesheets/application.css +15 -0
- data/spec/test_app/app/channels/application_cable/channel.rb +4 -0
- data/spec/test_app/app/channels/application_cable/connection.rb +4 -0
- data/spec/test_app/app/controllers/application_controller.rb +8 -0
- data/spec/test_app/app/controllers/concerns/know_more/questionnaire_controller_concerns.rb +42 -0
- data/spec/test_app/app/controllers/welcome_controller.rb +5 -0
- data/spec/test_app/app/helpers/application_helper.rb +2 -0
- data/spec/test_app/app/jobs/application_job.rb +2 -0
- data/spec/test_app/app/mailers/application_mailer.rb +4 -0
- data/spec/test_app/app/models/application_record.rb +3 -0
- data/spec/test_app/app/models/questionnaire.rb +3 -0
- data/spec/test_app/app/views/know_more/questionnaire/step1.html.haml +29 -0
- data/spec/test_app/app/views/know_more/questionnaire/step2.html.haml +31 -0
- data/spec/test_app/app/views/know_more/questionnaire/step3.html.haml +30 -0
- data/spec/test_app/app/views/layouts/application.html.erb +14 -0
- data/spec/test_app/app/views/layouts/mailer.html.erb +13 -0
- data/spec/test_app/app/views/layouts/mailer.text.erb +1 -0
- data/spec/test_app/app/views/welcome/hello.html.erb +1 -0
- data/spec/test_app/bin/bundle +3 -0
- data/spec/test_app/bin/rails +4 -0
- data/spec/test_app/bin/rake +4 -0
- data/spec/test_app/bin/setup +34 -0
- data/spec/test_app/bin/update +29 -0
- data/spec/test_app/config.ru +5 -0
- data/spec/test_app/config/application.rb +23 -0
- data/spec/test_app/config/boot.rb +5 -0
- data/spec/test_app/config/cable.yml +9 -0
- data/spec/test_app/config/database.yml +25 -0
- data/spec/test_app/config/environment.rb +5 -0
- data/spec/test_app/config/environments/development.rb +54 -0
- data/spec/test_app/config/environments/production.rb +86 -0
- data/spec/test_app/config/environments/test.rb +42 -0
- data/spec/test_app/config/initializers/application_controller_renderer.rb +6 -0
- data/spec/test_app/config/initializers/assets.rb +11 -0
- data/spec/test_app/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/test_app/config/initializers/cookies_serializer.rb +5 -0
- data/spec/test_app/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/test_app/config/initializers/inflections.rb +16 -0
- data/spec/test_app/config/initializers/know_more.rb +4 -0
- data/spec/test_app/config/initializers/mime_types.rb +4 -0
- data/spec/test_app/config/initializers/new_framework_defaults.rb +24 -0
- data/spec/test_app/config/initializers/session_store.rb +3 -0
- data/spec/test_app/config/initializers/wrap_parameters.rb +14 -0
- data/spec/test_app/config/locales/en.yml +23 -0
- data/spec/test_app/config/puma.rb +47 -0
- data/spec/test_app/config/routes.rb +5 -0
- data/spec/test_app/config/secrets.yml +22 -0
- data/spec/test_app/config/spring.rb +6 -0
- data/spec/test_app/db/development.sqlite3 +0 -0
- data/spec/test_app/db/migrate/20161027141359_create_questionnaire.rb +12 -0
- data/spec/test_app/db/schema.rb +24 -0
- data/spec/test_app/lib/know_more/questionnaire_controller_concerns.rb +21 -0
- data/spec/test_app/log/development.log +3813 -0
- data/spec/test_app/public/404.html +67 -0
- data/spec/test_app/public/422.html +67 -0
- data/spec/test_app/public/500.html +66 -0
- data/spec/test_app/public/apple-touch-icon-precomposed.png +0 -0
- data/spec/test_app/public/apple-touch-icon.png +0 -0
- data/spec/test_app/public/favicon.ico +0 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/-M/-Mhn0x6IA3ei53dCjTNB4QapIeIWnhFjjvWlObqhWxY.cache +1 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/-h/-hPQhUvmVonbzE86tGolE7GRuNFFf3NsKvt1mwHwIg0.cache +0 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/0S/0SvZGDW10EU46QZko9M15Exl1RDa9Ud5osSt660CuzQ.cache +0 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/24/24PpPX2bi_nuVnh3Bx8Nqj-UO3-1dbdgtFa6v7iPaLo.cache +1 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/6P/6PoXC3inbHQs_iJ8sp-AEYUgrRllcZHE8stF6_FuI2s.cache +3 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/8M/8M6Y8ZU8aBj7dfklYKmqgzKWfv5nIDcx4jR-cMu9Hgc.cache +0 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/Ao/Ao0OdzieB2BHIS0J1OX5-CzoMHHagT-hWe_ospTLEz4.cache +1 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/Ca/Ca7J7u8QQVfncKxGfYDjkhl4ezOotD2PbJTwmY88R08.cache +0 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/D7/D7JZQRMd7o6Oa3O8XYxxcWv4NGy5XUHEBQjbTtTIw0w.cache +1 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/Df/DfqHLjOcuVNA6fgR3rrM8D7q4VveBYvUn9OaxdDb2aI.cache +2 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/E8/E869Vssa93t7BK-iyJUAbuMcVw65khT8ZkFTdkgPoNA.cache +1 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/Eu/EuUPUxyK1i0O9kRow6J2gQlEgannj8ele8bYrOH0WkE.cache +0 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/F5/F5aTSXaWVMd07oSPX3KS5DuFnGw2SlYAYvIl2rt3xKU.cache +2 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/F6/F69NGMZogprXR3htKJ6d0kVkFS9EgtSIrMd_Rv4lQo4.cache +1 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/FW/FWd91hU2C6pptRvlqp8-fMKs0Pgd_JfiT3TPiYXBGoc.cache +1 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/FW/FWlz-VvryvvUjDXSLRDM06krdCHZ6jb2HNM8n2lYvno.cache +1 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/Fh/FhoIJOA98Fe9tpfSEnFORkI01I9KVpmYAx_mXC4gQYo.cache +2 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/G4/G4f_wqyGuSDH5PqO-cG6noP4D5EK3Kylzj3yOte-Z3E.cache +3 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/Jj/Jj08SeolaHESqwfZBGZ0tcinAfB1oMbMugBODKZGtmk.cache +1 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/KU/KUHCmze6iHkktV-xkd_pe8zKkrea7B0GA0AyNzPi8VI.cache +2 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/Ky/KyLnrp_TTwObMeq3b1zzPd9lvWbGgM05pRhE6K26DSw.cache +1 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/LZ/LZodg9A2YVhhIboloe0zr_qCYE_SsB41W42B9a16AvQ.cache +0 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/M6/M66hYfGZ7alPDFVsvZX20gGKa3hoXU4ZX57eWmf-8Q0.cache +1 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/Mb/MbA44Lqly0ejzpXgTsIIH7tnssjDcn_I4grw6t_PNFs.cache +1 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/Nh/Nhqfo87al4XtybNfUPjhR8idEE6eKcbsVOuQtiPqaz8.cache +1 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/On/OnToO1iuSf982Y8PilnSN969yImwD-JWuEdGGU0r4SA.cache +1 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/Q7/Q7Dl2on4OdmHONyXUohOukBoSZQfxX7CBNaiLRxrn14.cache +0 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/QC/QCkY9HlLiOM3vpgoGX8oJvozZ0Cq6p0b6WD2lcwZT5k.cache +0 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/QD/QDMAHR127EpeGWrWbzn7QnNqnYZtH2UUV6ntkBhiUMQ.cache +1 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/Qr/QrbG3GcCwmKIApW0fC5o0iM8upyezEp0NrzhSENYwcs.cache +0 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/Qx/Qx8y8tq3IiNr7Ot7JGhxnFwDma3Bf6LfjWyVxcYpTzk.cache +1 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/S2/S2XG29YYvgWCmY1ULahjx-TNWdzenEHf2EpX5LK_--w.cache +1 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/SH/SHPuXI1rKYgLVra3KoGrRjevUg0nzNAxzNU_v_dPb6U.cache +0 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/Sa/Saez4IhtZGelgfIYfe8FAkCBAh9dUeKVGEmFBTITnmI.cache +0 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/Sx/Sx94HsfcuxHDyseiRaSVTRLw-adn2lGZ8TnytfXZhl8.cache +0 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/W1/W1FyFe4zmJy2UId1DPKUFLtCO2T6Vq5RuBrUMwa5pXQ.cache +1 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/WV/WVC-q51wcBaLCMfUdFscQNqh4o2O9YDD0irl3pEEHII.cache +1 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/XL/XL3leJ5pQba8fRAqDA-mBiHbcBIBiHf9jeJ3xWfrlz8.cache +2 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/Y2/Y2K6yjpdhJfMIKPU5YceGshr_gR1QQG8qmT6gRut14U.cache +2 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/bD/bDD6X4R7ftAQlH7K_0T5HKcaToTfjQ6kSpZZRYBWQmk.cache +3 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/dA/dAosGjt-VaAhIfQVDjUoRM6eI9QUSh1E5X3gnrHu8Ww.cache +0 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/dR/dRYE4MTApQWxIGfHaTh_uT0mmSKhlas_eGk6v3IjScA.cache +1 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/eI/eIEIza6BGcz1akXfzNqRW2GEIb_B4zrgDemllbjKLqI.cache +1 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/f3/f3IV7AH-agFherPIRg6gz-gH_q-pbMlmZYvwA-wgh28.cache +0 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/hC/hCBrZ9RI110j1EhVdHOP-z9uOZwRm9UvutWo6eY1N_g.cache +1 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/iT/iThi-stKgqJGA0IjU1RUrH30vN1eQNdVqLgVCK224mI.cache +1 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/lx/lxV4gmPmZnPnnIMP-IREWrSMXIZM15bHONEqvOQe550.cache +1 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/mS/mSro6DRbSWbZLjFnik8cEUvxGkkHnx30jmzgf90kWqw.cache +1 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/n_/n_xYqQYhwEMQknb3jFQnjlxxBE9TzMNHCdJ-bEyZFIw.cache +2 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/ne/neMAKY2HHX-jQtV34JCN-wAv1gZ4dBtdikwxulpNIU4.cache +1 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/nx/nxTv3sKVUQZADJyM3dPaVmUA78MIsMLD_K279yN_GsI.cache +2 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/oE/oELcpQtiEEZd7OlWIFZoxZmXO6i_0KQDJ9gSO8IMrAo.cache +1 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/oJ/oJN9HcCgMMjADHFGldRpNYSVpaR5KCRFVjou3lEGP_o.cache +1 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/qP/qPmv5snMrDw830S6hSICDcnIy7kVEWoFKXhGKT38lG4.cache +2 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/rD/rDC4aip_9aDeTYE-ixXTrw4TblEowO3UGk8BhYb0UXQ.cache +1 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/rG/rG5N7yI8mYTZmoFfvUWEF8AwRkSz7iwzbzjZgtyD-6Y.cache +1 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/rz/rzYbqBDzAezz5y7RBSX5kN3TmuBZYZzvh4AXBe6I1OQ.cache +2 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/uX/uXdmeUJXaGu-MF3ntZ6-oMn3I-G9Ub6r2UZzqMnqIyU.cache +2 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/uc/uc9nNzmH9YYkXWiQWt8sLWG3L6bnPakFQd3qAj7GI8Q.cache +0 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/wa/waRa6Y4GPI3rPY6lN66-DRb7GRW_AQcee1TP2qFEZzI.cache +0 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/x-/x-CSdYi9brwT6G4vAolSeuvGSaszo1oumOyPyfno7Zk.cache +0 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/x7/x7PYh8DJvPykcEqpVab2vcY9-GFz-3cqtoMlRAu94Uc.cache +2 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/xB/xBNFQ5zX18WjcjNby1R4X3UlLjHy1vAKBCFGDpHMpQE.cache +1 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/xp/xpdRk6Yq3nW29DONCODCnLPuF9MWzGSavMHHQSUshjQ.cache +1 -0
- metadata +408 -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 public file server for tests with Cache-Control for performance.
|
|
16
|
+
config.public_file_server.enabled = true
|
|
17
|
+
config.public_file_server.headers = {
|
|
18
|
+
'Cache-Control' => 'public, max-age=3600'
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
# Show full error reports and disable caching.
|
|
22
|
+
config.consider_all_requests_local = true
|
|
23
|
+
config.action_controller.perform_caching = false
|
|
24
|
+
|
|
25
|
+
# Raise exceptions instead of rendering exception templates.
|
|
26
|
+
config.action_dispatch.show_exceptions = false
|
|
27
|
+
|
|
28
|
+
# Disable request forgery protection in test environment.
|
|
29
|
+
config.action_controller.allow_forgery_protection = false
|
|
30
|
+
config.action_mailer.perform_caching = false
|
|
31
|
+
|
|
32
|
+
# Tell Action Mailer not to deliver emails to the real world.
|
|
33
|
+
# The :test delivery method accumulates sent emails in the
|
|
34
|
+
# ActionMailer::Base.deliveries array.
|
|
35
|
+
config.action_mailer.delivery_method = :test
|
|
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,24 @@
|
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
|
2
|
+
#
|
|
3
|
+
# This file contains migration options to ease your Rails 5.0 upgrade.
|
|
4
|
+
#
|
|
5
|
+
# Read the Rails 5.0 release notes for more info on each option.
|
|
6
|
+
|
|
7
|
+
# Enable per-form CSRF tokens. Previous versions had false.
|
|
8
|
+
Rails.application.config.action_controller.per_form_csrf_tokens = true
|
|
9
|
+
|
|
10
|
+
# Enable origin-checking CSRF mitigation. Previous versions had false.
|
|
11
|
+
Rails.application.config.action_controller.forgery_protection_origin_check = true
|
|
12
|
+
|
|
13
|
+
# Make Ruby 2.4 preserve the timezone of the receiver when calling `to_time`.
|
|
14
|
+
# Previous versions had false.
|
|
15
|
+
ActiveSupport.to_time_preserves_timezone = true
|
|
16
|
+
|
|
17
|
+
# Require `belongs_to` associations by default. Previous versions had false.
|
|
18
|
+
Rails.application.config.active_record.belongs_to_required_by_default = true
|
|
19
|
+
|
|
20
|
+
# Do not halt callback chains when a callback returns false. Previous versions had true.
|
|
21
|
+
ActiveSupport.halt_callback_chains_on_return_false = false
|
|
22
|
+
|
|
23
|
+
# Configure SSL options to enable HSTS with subdomains. Previous versions had false.
|
|
24
|
+
Rails.application.config.ssl_options = { hsts: { subdomains: true } }
|
|
@@ -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]
|
|
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,47 @@
|
|
|
1
|
+
# Puma can serve each request in a thread from an internal thread pool.
|
|
2
|
+
# The `threads` method setting takes two numbers a minimum and maximum.
|
|
3
|
+
# Any libraries that use thread pools should be configured to match
|
|
4
|
+
# the maximum value specified for Puma. Default is set to 5 threads for minimum
|
|
5
|
+
# and maximum, this matches the default thread size of Active Record.
|
|
6
|
+
#
|
|
7
|
+
threads_count = ENV.fetch("RAILS_MAX_THREADS") { 5 }.to_i
|
|
8
|
+
threads threads_count, threads_count
|
|
9
|
+
|
|
10
|
+
# Specifies the `port` that Puma will listen on to receive requests, default is 3000.
|
|
11
|
+
#
|
|
12
|
+
port ENV.fetch("PORT") { 3000 }
|
|
13
|
+
|
|
14
|
+
# Specifies the `environment` that Puma will run in.
|
|
15
|
+
#
|
|
16
|
+
environment ENV.fetch("RAILS_ENV") { "development" }
|
|
17
|
+
|
|
18
|
+
# Specifies the number of `workers` to boot in clustered mode.
|
|
19
|
+
# Workers are forked webserver processes. If using threads and workers together
|
|
20
|
+
# the concurrency of the application would be max `threads` * `workers`.
|
|
21
|
+
# Workers do not work on JRuby or Windows (both of which do not support
|
|
22
|
+
# processes).
|
|
23
|
+
#
|
|
24
|
+
# workers ENV.fetch("WEB_CONCURRENCY") { 2 }
|
|
25
|
+
|
|
26
|
+
# Use the `preload_app!` method when specifying a `workers` number.
|
|
27
|
+
# This directive tells Puma to first boot the application and load code
|
|
28
|
+
# before forking the application. This takes advantage of Copy On Write
|
|
29
|
+
# process behavior so workers use less memory. If you use this option
|
|
30
|
+
# you need to make sure to reconnect any threads in the `on_worker_boot`
|
|
31
|
+
# block.
|
|
32
|
+
#
|
|
33
|
+
# preload_app!
|
|
34
|
+
|
|
35
|
+
# The code in the `on_worker_boot` will be called if you are using
|
|
36
|
+
# clustered mode by specifying a number of `workers`. After each worker
|
|
37
|
+
# process is booted this block will be run, if you are using `preload_app!`
|
|
38
|
+
# option you will want to use this block to reconnect to any threads
|
|
39
|
+
# or connections that may have been created at application boot, Ruby
|
|
40
|
+
# cannot share connections between processes.
|
|
41
|
+
#
|
|
42
|
+
# on_worker_boot do
|
|
43
|
+
# ActiveRecord::Base.establish_connection if defined?(ActiveRecord)
|
|
44
|
+
# end
|
|
45
|
+
|
|
46
|
+
# Allow puma to be restarted by `rails restart` command.
|
|
47
|
+
plugin :tmp_restart
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
|
2
|
+
|
|
3
|
+
# Your secret key is used for verifying the integrity of signed cookies.
|
|
4
|
+
# If you change this key, all old signed cookies will become invalid!
|
|
5
|
+
|
|
6
|
+
# Make sure the secret is at least 30 characters and all random,
|
|
7
|
+
# no regular words or you'll be exposed to dictionary attacks.
|
|
8
|
+
# You can use `rails secret` to generate a secure secret key.
|
|
9
|
+
|
|
10
|
+
# Make sure the secrets in this file are kept private
|
|
11
|
+
# if you're sharing your code publicly.
|
|
12
|
+
|
|
13
|
+
development:
|
|
14
|
+
secret_key_base: 77992be2c121493b7eceb5698b0ef55a8ad9ec6df664ce29115a2488e8ab582a49ef9ed207ee4b7413a5ac64d6d5e125255c886c8e9c805f0b5dac86c7489382
|
|
15
|
+
|
|
16
|
+
test:
|
|
17
|
+
secret_key_base: a3c395cd640fe9170b2f2b68ba8f364aff47d9425bba84f00d4aedca30c19ce4b1a0bcb6d352c80fb86c85f929a91ee29e8cc70db278ff12f4ad47a50ef9199b
|
|
18
|
+
|
|
19
|
+
# Do not keep production secrets in the repository,
|
|
20
|
+
# instead read values from the environment.
|
|
21
|
+
production:
|
|
22
|
+
secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
|
|
Binary file
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# This file is auto-generated from the current state of the database. Instead
|
|
2
|
+
# of editing this file, please use the migrations feature of Active Record to
|
|
3
|
+
# incrementally modify your database, and then regenerate this schema definition.
|
|
4
|
+
#
|
|
5
|
+
# Note that this schema.rb definition is the authoritative source for your
|
|
6
|
+
# database schema. If you need to create the application database on another
|
|
7
|
+
# system, you should be using db:schema:load, not running all the migrations
|
|
8
|
+
# from scratch. The latter is a flawed and unsustainable approach (the more migrations
|
|
9
|
+
# you'll amass, the slower it'll run and the greater likelihood for issues).
|
|
10
|
+
#
|
|
11
|
+
# It's strongly recommended that you check this file into your version control system.
|
|
12
|
+
|
|
13
|
+
ActiveRecord::Schema.define(version: 20161027141359) do
|
|
14
|
+
|
|
15
|
+
create_table "questionnaires", force: :cascade do |t|
|
|
16
|
+
t.integer "progress", default: 0
|
|
17
|
+
t.string "attribute1"
|
|
18
|
+
t.string "attribute2"
|
|
19
|
+
t.string "attribute3"
|
|
20
|
+
t.datetime "created_at", null: false
|
|
21
|
+
t.datetime "updated_at", null: false
|
|
22
|
+
end
|
|
23
|
+
|
|
24
|
+
end
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
module KnowMore
|
|
2
|
+
# this module is used to define the functions
|
|
3
|
+
# that will actually run in the KnowMore/QuestionnaireController
|
|
4
|
+
module QuestionnaireControllerConcerns
|
|
5
|
+
self.included(base) do
|
|
6
|
+
# define the behaviour when included
|
|
7
|
+
end
|
|
8
|
+
|
|
9
|
+
# _stepN function will be called by questionnaire#stepN
|
|
10
|
+
|
|
11
|
+
def _step1
|
|
12
|
+
end
|
|
13
|
+
|
|
14
|
+
def _step2
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
def _step3
|
|
18
|
+
end
|
|
19
|
+
|
|
20
|
+
end
|
|
21
|
+
end
|
|
@@ -0,0 +1,3813 @@
|
|
|
1
|
+
Started GET "/" for ::1 at 2016-10-27 21:21:40 +0800
|
|
2
|
+
|
|
3
|
+
ActionController::RoutingError (uninitialized constant WelcomeController):
|
|
4
|
+
|
|
5
|
+
activesupport (5.0.0.1) lib/active_support/inflector/methods.rb:268:in `const_get'
|
|
6
|
+
activesupport (5.0.0.1) lib/active_support/inflector/methods.rb:268:in `block in constantize'
|
|
7
|
+
activesupport (5.0.0.1) lib/active_support/inflector/methods.rb:266:in `each'
|
|
8
|
+
activesupport (5.0.0.1) lib/active_support/inflector/methods.rb:266:in `inject'
|
|
9
|
+
activesupport (5.0.0.1) lib/active_support/inflector/methods.rb:266:in `constantize'
|
|
10
|
+
actionpack (5.0.0.1) lib/action_dispatch/http/request.rb:93:in `controller_class'
|
|
11
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:44:in `controller'
|
|
12
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:30:in `serve'
|
|
13
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
|
|
14
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `each'
|
|
15
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
|
|
16
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
|
|
17
|
+
rack (2.0.1) lib/rack/etag.rb:25:in `call'
|
|
18
|
+
rack (2.0.1) lib/rack/conditional_get.rb:25:in `call'
|
|
19
|
+
rack (2.0.1) lib/rack/head.rb:12:in `call'
|
|
20
|
+
rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
|
|
21
|
+
rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
|
|
22
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call'
|
|
23
|
+
activerecord (5.0.0.1) lib/active_record/migration.rb:552:in `call'
|
|
24
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
|
|
25
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
|
|
26
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
|
|
27
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
|
|
28
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
|
|
29
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
30
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
|
|
31
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
|
|
32
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
|
|
33
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
|
|
34
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
|
|
35
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
|
|
36
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
37
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
|
|
38
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
|
|
39
|
+
sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call'
|
|
40
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
|
|
41
|
+
rack (2.0.1) lib/rack/method_override.rb:22:in `call'
|
|
42
|
+
rack (2.0.1) lib/rack/runtime.rb:22:in `call'
|
|
43
|
+
activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
44
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
45
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
|
|
46
|
+
rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
|
|
47
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
48
|
+
rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
|
|
49
|
+
/Users/julien/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
|
|
50
|
+
/Users/julien/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
|
|
51
|
+
/Users/julien/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
|
|
52
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout
|
|
53
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
54
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms)
|
|
55
|
+
Rendered collection of /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb [2 times] (9.7ms)
|
|
56
|
+
Rendered collection of /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb [6 times] (2.1ms)
|
|
57
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (12.6ms)
|
|
58
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
|
|
59
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (14.0ms)
|
|
60
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (168.5ms)
|
|
61
|
+
Started GET "/" for ::1 at 2016-10-27 21:23:57 +0800
|
|
62
|
+
Processing by WelcomeController#hello as HTML
|
|
63
|
+
Completed 406 Not Acceptable in 89ms (ActiveRecord: 0.0ms)
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
ActionController::UnknownFormat (WelcomeController#hello is missing a template for this request format and variant.
|
|
68
|
+
|
|
69
|
+
request.formats: ["text/html"]
|
|
70
|
+
request.variant: []
|
|
71
|
+
|
|
72
|
+
NOTE! For XHR/Ajax or API requests, this action would normally respond with 204 No Content: an empty white screen. Since you're loading it in a web browser, we assume that you expected to actually render a template, not… nothing, so we're showing an error to be extra-clear. If you expect 204 No Content, carry on. That's what you'll get from an XHR or API request. Give it a shot.):
|
|
73
|
+
|
|
74
|
+
actionpack (5.0.0.1) lib/action_controller/metal/implicit_render.rb:56:in `default_render'
|
|
75
|
+
actionpack (5.0.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `block in send_action'
|
|
76
|
+
actionpack (5.0.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `tap'
|
|
77
|
+
actionpack (5.0.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action'
|
|
78
|
+
actionpack (5.0.0.1) lib/abstract_controller/base.rb:188:in `process_action'
|
|
79
|
+
actionpack (5.0.0.1) lib/action_controller/metal/rendering.rb:30:in `process_action'
|
|
80
|
+
actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
|
|
81
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:126:in `call'
|
|
82
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile'
|
|
83
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:455:in `call'
|
|
84
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__'
|
|
85
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks'
|
|
86
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
|
|
87
|
+
actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
|
|
88
|
+
actionpack (5.0.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action'
|
|
89
|
+
actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
|
|
90
|
+
activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `block in instrument'
|
|
91
|
+
activesupport (5.0.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument'
|
|
92
|
+
activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `instrument'
|
|
93
|
+
actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
|
94
|
+
actionpack (5.0.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action'
|
|
95
|
+
activerecord (5.0.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
|
96
|
+
actionpack (5.0.0.1) lib/abstract_controller/base.rb:126:in `process'
|
|
97
|
+
actionview (5.0.0.1) lib/action_view/rendering.rb:30:in `process'
|
|
98
|
+
actionpack (5.0.0.1) lib/action_controller/metal.rb:190:in `dispatch'
|
|
99
|
+
actionpack (5.0.0.1) lib/action_controller/metal.rb:262:in `dispatch'
|
|
100
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch'
|
|
101
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve'
|
|
102
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
|
|
103
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `each'
|
|
104
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
|
|
105
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
|
|
106
|
+
rack (2.0.1) lib/rack/etag.rb:25:in `call'
|
|
107
|
+
rack (2.0.1) lib/rack/conditional_get.rb:25:in `call'
|
|
108
|
+
rack (2.0.1) lib/rack/head.rb:12:in `call'
|
|
109
|
+
rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
|
|
110
|
+
rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
|
|
111
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call'
|
|
112
|
+
activerecord (5.0.0.1) lib/active_record/migration.rb:552:in `call'
|
|
113
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
|
|
114
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
|
|
115
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
|
|
116
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
|
|
117
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
|
|
118
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
119
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
|
|
120
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
|
|
121
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
|
|
122
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
|
|
123
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
|
|
124
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
|
|
125
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
126
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
|
|
127
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
|
|
128
|
+
sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call'
|
|
129
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
|
|
130
|
+
rack (2.0.1) lib/rack/method_override.rb:22:in `call'
|
|
131
|
+
rack (2.0.1) lib/rack/runtime.rb:22:in `call'
|
|
132
|
+
activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
133
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
134
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
|
|
135
|
+
rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
|
|
136
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
137
|
+
rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
|
|
138
|
+
/Users/julien/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
|
|
139
|
+
/Users/julien/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
|
|
140
|
+
/Users/julien/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
|
|
141
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout
|
|
142
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
|
|
143
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.7ms)
|
|
144
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
145
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms)
|
|
146
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
|
|
147
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
|
|
148
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (74.6ms)
|
|
149
|
+
Started GET "/" for ::1 at 2016-10-27 21:24:42 +0800
|
|
150
|
+
Processing by WelcomeController#hello as HTML
|
|
151
|
+
Rendering welcome/hello.html.erb within layouts/application
|
|
152
|
+
Rendered welcome/hello.html.erb within layouts/application (0.4ms)
|
|
153
|
+
Completed 200 OK in 513ms (Views: 510.3ms | ActiveRecord: 0.0ms)
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
Started GET "/" for ::1 at 2016-10-27 21:26:09 +0800
|
|
157
|
+
Processing by WelcomeController#hello as HTML
|
|
158
|
+
Rendering welcome/hello.html.erb within layouts/application
|
|
159
|
+
Rendered welcome/hello.html.erb within layouts/application (0.4ms)
|
|
160
|
+
Completed 200 OK in 21ms (Views: 18.7ms | ActiveRecord: 0.0ms)
|
|
161
|
+
|
|
162
|
+
|
|
163
|
+
Started GET "/" for ::1 at 2016-10-27 22:12:05 +0800
|
|
164
|
+
Processing by WelcomeController#hello as HTML
|
|
165
|
+
Rendering welcome/hello.html.erb within layouts/application
|
|
166
|
+
Rendered welcome/hello.html.erb within layouts/application (2.0ms)
|
|
167
|
+
Completed 200 OK in 358ms (Views: 355.5ms | ActiveRecord: 0.0ms)
|
|
168
|
+
|
|
169
|
+
|
|
170
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-10-27 22:12:18 +0800
|
|
171
|
+
|
|
172
|
+
LoadError (cannot load such file -- /Users/julien/Documents/know_more/spec/test_app/app/controllers/concerns/know_more/questionnaire_controller_concerns.rb):
|
|
173
|
+
|
|
174
|
+
activesupport (5.0.0.1) lib/active_support/dependencies.rb:293:in `require'
|
|
175
|
+
activesupport (5.0.0.1) lib/active_support/dependencies.rb:293:in `block in require'
|
|
176
|
+
activesupport (5.0.0.1) lib/active_support/dependencies.rb:257:in `block in load_dependency'
|
|
177
|
+
activesupport (5.0.0.1) lib/active_support/dependencies.rb:662:in `new_constants_in'
|
|
178
|
+
activesupport (5.0.0.1) lib/active_support/dependencies.rb:257:in `load_dependency'
|
|
179
|
+
activesupport (5.0.0.1) lib/active_support/dependencies.rb:293:in `require'
|
|
180
|
+
/Users/julien/Documents/know_more/app/controllers/know_more/questionnaire_controller.rb:1:in `<top (required)>'
|
|
181
|
+
activesupport (5.0.0.1) lib/active_support/dependencies.rb:477:in `load'
|
|
182
|
+
activesupport (5.0.0.1) lib/active_support/dependencies.rb:477:in `block in load_file'
|
|
183
|
+
activesupport (5.0.0.1) lib/active_support/dependencies.rb:662:in `new_constants_in'
|
|
184
|
+
activesupport (5.0.0.1) lib/active_support/dependencies.rb:476:in `load_file'
|
|
185
|
+
activesupport (5.0.0.1) lib/active_support/dependencies.rb:375:in `block in require_or_load'
|
|
186
|
+
activesupport (5.0.0.1) lib/active_support/dependencies.rb:37:in `block in load_interlock'
|
|
187
|
+
activesupport (5.0.0.1) lib/active_support/dependencies/interlock.rb:12:in `block in loading'
|
|
188
|
+
activesupport (5.0.0.1) lib/active_support/concurrency/share_lock.rb:117:in `exclusive'
|
|
189
|
+
activesupport (5.0.0.1) lib/active_support/dependencies/interlock.rb:11:in `loading'
|
|
190
|
+
activesupport (5.0.0.1) lib/active_support/dependencies.rb:37:in `load_interlock'
|
|
191
|
+
activesupport (5.0.0.1) lib/active_support/dependencies.rb:358:in `require_or_load'
|
|
192
|
+
activesupport (5.0.0.1) lib/active_support/dependencies.rb:511:in `load_missing_constant'
|
|
193
|
+
activesupport (5.0.0.1) lib/active_support/dependencies.rb:203:in `const_missing'
|
|
194
|
+
activesupport (5.0.0.1) lib/active_support/inflector/methods.rb:270:in `const_get'
|
|
195
|
+
activesupport (5.0.0.1) lib/active_support/inflector/methods.rb:270:in `block in constantize'
|
|
196
|
+
activesupport (5.0.0.1) lib/active_support/inflector/methods.rb:266:in `each'
|
|
197
|
+
activesupport (5.0.0.1) lib/active_support/inflector/methods.rb:266:in `inject'
|
|
198
|
+
activesupport (5.0.0.1) lib/active_support/inflector/methods.rb:266:in `constantize'
|
|
199
|
+
activesupport (5.0.0.1) lib/active_support/dependencies.rb:583:in `get'
|
|
200
|
+
activesupport (5.0.0.1) lib/active_support/dependencies.rb:614:in `constantize'
|
|
201
|
+
actionpack (5.0.0.1) lib/action_dispatch/http/request.rb:93:in `controller_class'
|
|
202
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:44:in `controller'
|
|
203
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:30:in `serve'
|
|
204
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
|
|
205
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `each'
|
|
206
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
|
|
207
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
|
|
208
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
209
|
+
railties (5.0.0.1) lib/rails/railtie.rb:193:in `public_send'
|
|
210
|
+
railties (5.0.0.1) lib/rails/railtie.rb:193:in `method_missing'
|
|
211
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/mapper.rb:17:in `block in <class:Constraints>'
|
|
212
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/mapper.rb:46:in `serve'
|
|
213
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
|
|
214
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `each'
|
|
215
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
|
|
216
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
|
|
217
|
+
rack (2.0.1) lib/rack/etag.rb:25:in `call'
|
|
218
|
+
rack (2.0.1) lib/rack/conditional_get.rb:25:in `call'
|
|
219
|
+
rack (2.0.1) lib/rack/head.rb:12:in `call'
|
|
220
|
+
rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
|
|
221
|
+
rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
|
|
222
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call'
|
|
223
|
+
activerecord (5.0.0.1) lib/active_record/migration.rb:552:in `call'
|
|
224
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
|
|
225
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
|
|
226
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
|
|
227
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
|
|
228
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
|
|
229
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
230
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
|
|
231
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
|
|
232
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
|
|
233
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
|
|
234
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
|
|
235
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
|
|
236
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
237
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
|
|
238
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
|
|
239
|
+
sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call'
|
|
240
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
|
|
241
|
+
rack (2.0.1) lib/rack/method_override.rb:22:in `call'
|
|
242
|
+
rack (2.0.1) lib/rack/runtime.rb:22:in `call'
|
|
243
|
+
activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
244
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
245
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
|
|
246
|
+
rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
|
|
247
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
248
|
+
rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
|
|
249
|
+
/Users/julien/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
|
|
250
|
+
/Users/julien/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
|
|
251
|
+
/Users/julien/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
|
|
252
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout
|
|
253
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
|
|
254
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.7ms)
|
|
255
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
256
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms)
|
|
257
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
|
|
258
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
|
|
259
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (79.9ms)
|
|
260
|
+
[1m[35m (1.4ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)[0m
|
|
261
|
+
[1m[35m (1.0ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
|
262
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
263
|
+
Migrating to CreateQuestionnaire (20161027141359)
|
|
264
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
265
|
+
[1m[35m (0.8ms)[0m [1m[35mCREATE TABLE "questionnaires" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "progress" integer DEFAULT 0, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
|
266
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20161027141359"]]
|
|
267
|
+
[1m[35m (0.9ms)[0m [1m[36mcommit transaction[0m
|
|
268
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", :environment], ["LIMIT", 1]]
|
|
269
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
270
|
+
[1m[35mSQL (0.4ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "development"], ["created_at", 2016-10-27 14:16:14 UTC], ["updated_at", 2016-10-27 14:16:14 UTC]]
|
|
271
|
+
[1m[35m (0.8ms)[0m [1m[36mcommit transaction[0m
|
|
272
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
273
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-10-27 22:16:25 +0800
|
|
274
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
275
|
+
|
|
276
|
+
ActionController::RoutingError (undefined local variable or method `base' for KnowMore::QuestionnaireControllerConcerns:Module):
|
|
277
|
+
|
|
278
|
+
app/controllers/concerns/know_more/questionnaire_controller_concerns.rb:5:in `<module:QuestionnaireControllerConcerns>'
|
|
279
|
+
app/controllers/concerns/know_more/questionnaire_controller_concerns.rb:4:in `<module:KnowMore>'
|
|
280
|
+
app/controllers/concerns/know_more/questionnaire_controller_concerns.rb:1:in `<top (required)>'
|
|
281
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout
|
|
282
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
283
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms)
|
|
284
|
+
Rendered collection of /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb [2 times] (10.3ms)
|
|
285
|
+
Rendered collection of /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb [6 times] (1.8ms)
|
|
286
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (10.7ms)
|
|
287
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
|
|
288
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
|
|
289
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (135.9ms)
|
|
290
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-10-27 22:17:29 +0800
|
|
291
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
292
|
+
Rendering know_more/questionnaire/step1.html.haml within layouts/application
|
|
293
|
+
Rendered know_more/questionnaire/step1.html.haml within layouts/application (1.6ms)
|
|
294
|
+
Completed 200 OK in 22ms (Views: 21.8ms | ActiveRecord: 0.0ms)
|
|
295
|
+
|
|
296
|
+
|
|
297
|
+
Started POST "/know_more/questionnaire/step2" for ::1 at 2016-10-27 22:17:43 +0800
|
|
298
|
+
Processing by KnowMore::QuestionnaireController#step2_update as HTML
|
|
299
|
+
Parameters: {"authenticity_token"=>"Ucx46FfpfmkD5CrfzChWNmW6/hx1bxjLjgjhh5o+zD7HNsRJP7oNGIAuG1+GRm7hHusA/XhmVhvl2y0LdH/bjQ=="}
|
|
300
|
+
Completed 500 Internal Server Error in 16ms (ActiveRecord: 0.0ms)
|
|
301
|
+
|
|
302
|
+
|
|
303
|
+
|
|
304
|
+
NoMethodError (undefined method `questionnaire_step3' for #<KnowMore::QuestionnaireController:0x007f9510abec60>
|
|
305
|
+
Did you mean? questionnaire_step3_url
|
|
306
|
+
questionnaire_step3_path
|
|
307
|
+
questionnaire_step1_url
|
|
308
|
+
questionnaire_step2_url):
|
|
309
|
+
|
|
310
|
+
/Users/julien/Documents/know_more/app/controllers/know_more/questionnaire_controller.rb:25:in `block (2 levels) in <class:QuestionnaireController>'
|
|
311
|
+
actionpack (5.0.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action'
|
|
312
|
+
actionpack (5.0.0.1) lib/abstract_controller/base.rb:188:in `process_action'
|
|
313
|
+
actionpack (5.0.0.1) lib/action_controller/metal/rendering.rb:30:in `process_action'
|
|
314
|
+
actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
|
|
315
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:126:in `call'
|
|
316
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile'
|
|
317
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:455:in `call'
|
|
318
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__'
|
|
319
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks'
|
|
320
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
|
|
321
|
+
actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
|
|
322
|
+
actionpack (5.0.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action'
|
|
323
|
+
actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
|
|
324
|
+
activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `block in instrument'
|
|
325
|
+
activesupport (5.0.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument'
|
|
326
|
+
activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `instrument'
|
|
327
|
+
actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
|
328
|
+
actionpack (5.0.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action'
|
|
329
|
+
activerecord (5.0.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
|
330
|
+
actionpack (5.0.0.1) lib/abstract_controller/base.rb:126:in `process'
|
|
331
|
+
actionview (5.0.0.1) lib/action_view/rendering.rb:30:in `process'
|
|
332
|
+
actionpack (5.0.0.1) lib/action_controller/metal.rb:190:in `dispatch'
|
|
333
|
+
actionpack (5.0.0.1) lib/action_controller/metal.rb:262:in `dispatch'
|
|
334
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch'
|
|
335
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve'
|
|
336
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
|
|
337
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `each'
|
|
338
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
|
|
339
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
|
|
340
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
341
|
+
railties (5.0.0.1) lib/rails/railtie.rb:193:in `public_send'
|
|
342
|
+
railties (5.0.0.1) lib/rails/railtie.rb:193:in `method_missing'
|
|
343
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/mapper.rb:17:in `block in <class:Constraints>'
|
|
344
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/mapper.rb:46:in `serve'
|
|
345
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
|
|
346
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `each'
|
|
347
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
|
|
348
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
|
|
349
|
+
rack (2.0.1) lib/rack/etag.rb:25:in `call'
|
|
350
|
+
rack (2.0.1) lib/rack/conditional_get.rb:38:in `call'
|
|
351
|
+
rack (2.0.1) lib/rack/head.rb:12:in `call'
|
|
352
|
+
rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
|
|
353
|
+
rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
|
|
354
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call'
|
|
355
|
+
activerecord (5.0.0.1) lib/active_record/migration.rb:552:in `call'
|
|
356
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
|
|
357
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
|
|
358
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
|
|
359
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
|
|
360
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
|
|
361
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
362
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
|
|
363
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
|
|
364
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
|
|
365
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
|
|
366
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
|
|
367
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
|
|
368
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
369
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
|
|
370
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
|
|
371
|
+
sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call'
|
|
372
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
|
|
373
|
+
rack (2.0.1) lib/rack/method_override.rb:22:in `call'
|
|
374
|
+
rack (2.0.1) lib/rack/runtime.rb:22:in `call'
|
|
375
|
+
activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
376
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
377
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
|
|
378
|
+
rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
|
|
379
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
380
|
+
rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
|
|
381
|
+
/Users/julien/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
|
|
382
|
+
/Users/julien/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
|
|
383
|
+
/Users/julien/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
|
|
384
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout
|
|
385
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
|
|
386
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (6.0ms)
|
|
387
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
388
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms)
|
|
389
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
|
|
390
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms)
|
|
391
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (80.1ms)
|
|
392
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-10-27 22:18:06 +0800
|
|
393
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
394
|
+
Rendering know_more/questionnaire/step1.html.haml within layouts/application
|
|
395
|
+
Rendered know_more/questionnaire/step1.html.haml within layouts/application (1.3ms)
|
|
396
|
+
Completed 200 OK in 17ms (Views: 16.6ms | ActiveRecord: 0.0ms)
|
|
397
|
+
|
|
398
|
+
|
|
399
|
+
Started POST "/know_more/questionnaire/step2" for ::1 at 2016-10-27 22:18:10 +0800
|
|
400
|
+
Processing by KnowMore::QuestionnaireController#step2_update as HTML
|
|
401
|
+
Parameters: {"authenticity_token"=>"LNtfaIyzQhZL2yrTnQ1M2Rr+hsG6B7PcYlhO9BI5AkG6IePJ5OAxZ8gRG1PXY3QOYa94ILcO/QwJi4J4/HgV8g=="}
|
|
402
|
+
Completed 500 Internal Server Error in 15ms (ActiveRecord: 0.0ms)
|
|
403
|
+
|
|
404
|
+
|
|
405
|
+
|
|
406
|
+
NoMethodError (undefined method `questionnaire_step3' for #<KnowMore::QuestionnaireController:0x007f950c1742f8>
|
|
407
|
+
Did you mean? questionnaire_step3_url
|
|
408
|
+
questionnaire_step3_path
|
|
409
|
+
questionnaire_step1_url
|
|
410
|
+
questionnaire_step2_url):
|
|
411
|
+
|
|
412
|
+
/Users/julien/Documents/know_more/app/controllers/know_more/questionnaire_controller.rb:25:in `block (2 levels) in <class:QuestionnaireController>'
|
|
413
|
+
actionpack (5.0.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action'
|
|
414
|
+
actionpack (5.0.0.1) lib/abstract_controller/base.rb:188:in `process_action'
|
|
415
|
+
actionpack (5.0.0.1) lib/action_controller/metal/rendering.rb:30:in `process_action'
|
|
416
|
+
actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
|
|
417
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:126:in `call'
|
|
418
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile'
|
|
419
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:455:in `call'
|
|
420
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__'
|
|
421
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks'
|
|
422
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
|
|
423
|
+
actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
|
|
424
|
+
actionpack (5.0.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action'
|
|
425
|
+
actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
|
|
426
|
+
activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `block in instrument'
|
|
427
|
+
activesupport (5.0.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument'
|
|
428
|
+
activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `instrument'
|
|
429
|
+
actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
|
430
|
+
actionpack (5.0.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action'
|
|
431
|
+
activerecord (5.0.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
|
432
|
+
actionpack (5.0.0.1) lib/abstract_controller/base.rb:126:in `process'
|
|
433
|
+
actionview (5.0.0.1) lib/action_view/rendering.rb:30:in `process'
|
|
434
|
+
actionpack (5.0.0.1) lib/action_controller/metal.rb:190:in `dispatch'
|
|
435
|
+
actionpack (5.0.0.1) lib/action_controller/metal.rb:262:in `dispatch'
|
|
436
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch'
|
|
437
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve'
|
|
438
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
|
|
439
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `each'
|
|
440
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
|
|
441
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
|
|
442
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
443
|
+
railties (5.0.0.1) lib/rails/railtie.rb:193:in `public_send'
|
|
444
|
+
railties (5.0.0.1) lib/rails/railtie.rb:193:in `method_missing'
|
|
445
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/mapper.rb:17:in `block in <class:Constraints>'
|
|
446
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/mapper.rb:46:in `serve'
|
|
447
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
|
|
448
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `each'
|
|
449
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
|
|
450
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
|
|
451
|
+
rack (2.0.1) lib/rack/etag.rb:25:in `call'
|
|
452
|
+
rack (2.0.1) lib/rack/conditional_get.rb:38:in `call'
|
|
453
|
+
rack (2.0.1) lib/rack/head.rb:12:in `call'
|
|
454
|
+
rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
|
|
455
|
+
rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
|
|
456
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call'
|
|
457
|
+
activerecord (5.0.0.1) lib/active_record/migration.rb:552:in `call'
|
|
458
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
|
|
459
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
|
|
460
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
|
|
461
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
|
|
462
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
|
|
463
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
464
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
|
|
465
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
|
|
466
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
|
|
467
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
|
|
468
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
|
|
469
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
|
|
470
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
471
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
|
|
472
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
|
|
473
|
+
sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call'
|
|
474
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
|
|
475
|
+
rack (2.0.1) lib/rack/method_override.rb:22:in `call'
|
|
476
|
+
rack (2.0.1) lib/rack/runtime.rb:22:in `call'
|
|
477
|
+
activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
478
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
479
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
|
|
480
|
+
rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
|
|
481
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
482
|
+
rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
|
|
483
|
+
/Users/julien/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
|
|
484
|
+
/Users/julien/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
|
|
485
|
+
/Users/julien/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
|
|
486
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout
|
|
487
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
|
|
488
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.6ms)
|
|
489
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
490
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.6ms)
|
|
491
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
|
|
492
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms)
|
|
493
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (74.0ms)
|
|
494
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-10-27 22:20:30 +0800
|
|
495
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
496
|
+
Rendering know_more/questionnaire/step1.html.haml within layouts/application
|
|
497
|
+
Rendered know_more/questionnaire/step1.html.haml within layouts/application (1.4ms)
|
|
498
|
+
Completed 200 OK in 20ms (Views: 19.2ms | ActiveRecord: 0.0ms)
|
|
499
|
+
|
|
500
|
+
|
|
501
|
+
Started POST "/know_more/questionnaire/step2" for ::1 at 2016-10-27 22:20:38 +0800
|
|
502
|
+
Processing by KnowMore::QuestionnaireController#step2_update as HTML
|
|
503
|
+
Parameters: {"authenticity_token"=>"oN6Hs3m9p7y/1F+SBF7ywUgd4UqgASi6PrYMd3jB58U2JDsSEe7UzTwebhJOMMoWM0wfq60IZmpVZcD7loDwdg=="}
|
|
504
|
+
Completed 500 Internal Server Error in 203848ms (ActiveRecord: 0.0ms)
|
|
505
|
+
|
|
506
|
+
|
|
507
|
+
|
|
508
|
+
NoMethodError (undefined method `questionnaire_step3' for #<KnowMore::QuestionnaireController:0x007f950b34fe70>
|
|
509
|
+
Did you mean? questionnaire_step3_url
|
|
510
|
+
questionnaire_step3_path
|
|
511
|
+
questionnaire_step1_url
|
|
512
|
+
questionnaire_step2_url):
|
|
513
|
+
|
|
514
|
+
/Users/julien/Documents/know_more/app/controllers/know_more/questionnaire_controller.rb:26:in `block (2 levels) in <class:QuestionnaireController>'
|
|
515
|
+
actionpack (5.0.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action'
|
|
516
|
+
actionpack (5.0.0.1) lib/abstract_controller/base.rb:188:in `process_action'
|
|
517
|
+
actionpack (5.0.0.1) lib/action_controller/metal/rendering.rb:30:in `process_action'
|
|
518
|
+
actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
|
|
519
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:126:in `call'
|
|
520
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile'
|
|
521
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:455:in `call'
|
|
522
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__'
|
|
523
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks'
|
|
524
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
|
|
525
|
+
actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
|
|
526
|
+
actionpack (5.0.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action'
|
|
527
|
+
actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
|
|
528
|
+
activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `block in instrument'
|
|
529
|
+
activesupport (5.0.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument'
|
|
530
|
+
activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `instrument'
|
|
531
|
+
actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
|
532
|
+
actionpack (5.0.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action'
|
|
533
|
+
activerecord (5.0.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
|
534
|
+
actionpack (5.0.0.1) lib/abstract_controller/base.rb:126:in `process'
|
|
535
|
+
actionview (5.0.0.1) lib/action_view/rendering.rb:30:in `process'
|
|
536
|
+
actionpack (5.0.0.1) lib/action_controller/metal.rb:190:in `dispatch'
|
|
537
|
+
actionpack (5.0.0.1) lib/action_controller/metal.rb:262:in `dispatch'
|
|
538
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch'
|
|
539
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve'
|
|
540
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
|
|
541
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `each'
|
|
542
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
|
|
543
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
|
|
544
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
545
|
+
railties (5.0.0.1) lib/rails/railtie.rb:193:in `public_send'
|
|
546
|
+
railties (5.0.0.1) lib/rails/railtie.rb:193:in `method_missing'
|
|
547
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/mapper.rb:17:in `block in <class:Constraints>'
|
|
548
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/mapper.rb:46:in `serve'
|
|
549
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
|
|
550
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `each'
|
|
551
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
|
|
552
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
|
|
553
|
+
rack (2.0.1) lib/rack/etag.rb:25:in `call'
|
|
554
|
+
rack (2.0.1) lib/rack/conditional_get.rb:38:in `call'
|
|
555
|
+
rack (2.0.1) lib/rack/head.rb:12:in `call'
|
|
556
|
+
rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
|
|
557
|
+
rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
|
|
558
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call'
|
|
559
|
+
activerecord (5.0.0.1) lib/active_record/migration.rb:552:in `call'
|
|
560
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
|
|
561
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
|
|
562
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
|
|
563
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
|
|
564
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
|
|
565
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
566
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
|
|
567
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
|
|
568
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
|
|
569
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
|
|
570
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
|
|
571
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
|
|
572
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
573
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
|
|
574
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
|
|
575
|
+
sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call'
|
|
576
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
|
|
577
|
+
rack (2.0.1) lib/rack/method_override.rb:22:in `call'
|
|
578
|
+
rack (2.0.1) lib/rack/runtime.rb:22:in `call'
|
|
579
|
+
activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
580
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
581
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
|
|
582
|
+
rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
|
|
583
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
584
|
+
rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
|
|
585
|
+
/Users/julien/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
|
|
586
|
+
/Users/julien/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
|
|
587
|
+
/Users/julien/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
|
|
588
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout
|
|
589
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
|
|
590
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (5.6ms)
|
|
591
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
592
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms)
|
|
593
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
|
|
594
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.9ms)
|
|
595
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (79.6ms)
|
|
596
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-10-27 22:29:56 +0800
|
|
597
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
598
|
+
Rendering know_more/questionnaire/step1.html.haml within layouts/application
|
|
599
|
+
Rendered know_more/questionnaire/step1.html.haml within layouts/application (2.5ms)
|
|
600
|
+
Completed 200 OK in 22ms (Views: 21.5ms | ActiveRecord: 0.0ms)
|
|
601
|
+
|
|
602
|
+
|
|
603
|
+
Started POST "/know_more/questionnaire/step1" for ::1 at 2016-10-27 22:30:01 +0800
|
|
604
|
+
Processing by KnowMore::QuestionnaireController#step1_update as HTML
|
|
605
|
+
Parameters: {"authenticity_token"=>"+49tHx49wWhDeVgX1cSTxkEkjKVE2F4/L8E66POUcABtddG+dm6yGcCzaZefqqsROnVyREnREO9EEvZkHdVnsw=="}
|
|
606
|
+
Completed 500 Internal Server Error in 6046ms (ActiveRecord: 0.0ms)
|
|
607
|
+
|
|
608
|
+
|
|
609
|
+
|
|
610
|
+
NoMethodError (undefined method `know_more.questionnaire_step2' for #<KnowMore::QuestionnaireController:0x007f9510ba7730>):
|
|
611
|
+
|
|
612
|
+
/Users/julien/Documents/know_more/app/controllers/know_more/questionnaire_controller.rb:26:in `block (2 levels) in <class:QuestionnaireController>'
|
|
613
|
+
actionpack (5.0.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action'
|
|
614
|
+
actionpack (5.0.0.1) lib/abstract_controller/base.rb:188:in `process_action'
|
|
615
|
+
actionpack (5.0.0.1) lib/action_controller/metal/rendering.rb:30:in `process_action'
|
|
616
|
+
actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
|
|
617
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:126:in `call'
|
|
618
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile'
|
|
619
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:455:in `call'
|
|
620
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__'
|
|
621
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks'
|
|
622
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
|
|
623
|
+
actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
|
|
624
|
+
actionpack (5.0.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action'
|
|
625
|
+
actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
|
|
626
|
+
activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `block in instrument'
|
|
627
|
+
activesupport (5.0.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument'
|
|
628
|
+
activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `instrument'
|
|
629
|
+
actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
|
630
|
+
actionpack (5.0.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action'
|
|
631
|
+
activerecord (5.0.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
|
632
|
+
actionpack (5.0.0.1) lib/abstract_controller/base.rb:126:in `process'
|
|
633
|
+
actionview (5.0.0.1) lib/action_view/rendering.rb:30:in `process'
|
|
634
|
+
actionpack (5.0.0.1) lib/action_controller/metal.rb:190:in `dispatch'
|
|
635
|
+
actionpack (5.0.0.1) lib/action_controller/metal.rb:262:in `dispatch'
|
|
636
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch'
|
|
637
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve'
|
|
638
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
|
|
639
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `each'
|
|
640
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
|
|
641
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
|
|
642
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
643
|
+
railties (5.0.0.1) lib/rails/railtie.rb:193:in `public_send'
|
|
644
|
+
railties (5.0.0.1) lib/rails/railtie.rb:193:in `method_missing'
|
|
645
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/mapper.rb:17:in `block in <class:Constraints>'
|
|
646
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/mapper.rb:46:in `serve'
|
|
647
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
|
|
648
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `each'
|
|
649
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
|
|
650
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
|
|
651
|
+
rack (2.0.1) lib/rack/etag.rb:25:in `call'
|
|
652
|
+
rack (2.0.1) lib/rack/conditional_get.rb:38:in `call'
|
|
653
|
+
rack (2.0.1) lib/rack/head.rb:12:in `call'
|
|
654
|
+
rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
|
|
655
|
+
rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
|
|
656
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call'
|
|
657
|
+
activerecord (5.0.0.1) lib/active_record/migration.rb:552:in `call'
|
|
658
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
|
|
659
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
|
|
660
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
|
|
661
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
|
|
662
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
|
|
663
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
664
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
|
|
665
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
|
|
666
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
|
|
667
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
|
|
668
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
|
|
669
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
|
|
670
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
671
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
|
|
672
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
|
|
673
|
+
sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call'
|
|
674
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
|
|
675
|
+
rack (2.0.1) lib/rack/method_override.rb:22:in `call'
|
|
676
|
+
rack (2.0.1) lib/rack/runtime.rb:22:in `call'
|
|
677
|
+
activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
678
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
679
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
|
|
680
|
+
rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
|
|
681
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
682
|
+
rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
|
|
683
|
+
/Users/julien/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
|
|
684
|
+
/Users/julien/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
|
|
685
|
+
/Users/julien/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
|
|
686
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout
|
|
687
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
|
|
688
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (5.1ms)
|
|
689
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
690
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms)
|
|
691
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
|
|
692
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
|
|
693
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (76.3ms)
|
|
694
|
+
Started POST "/know_more/questionnaire/step1" for ::1 at 2016-10-27 22:32:52 +0800
|
|
695
|
+
Processing by KnowMore::QuestionnaireController#step1_update as HTML
|
|
696
|
+
Parameters: {"authenticity_token"=>"+49tHx49wWhDeVgX1cSTxkEkjKVE2F4/L8E66POUcABtddG+dm6yGcCzaZefqqsROnVyREnREO9EEvZkHdVnsw=="}
|
|
697
|
+
Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms)
|
|
698
|
+
|
|
699
|
+
|
|
700
|
+
|
|
701
|
+
NoMethodError (undefined method `pry' for #<Binding:0x007f950d2d9bd8>
|
|
702
|
+
Did you mean? pretty_print
|
|
703
|
+
pretty_inspect
|
|
704
|
+
pretty_print_cycle
|
|
705
|
+
try):
|
|
706
|
+
|
|
707
|
+
/Users/julien/Documents/know_more/app/controllers/know_more/questionnaire_controller.rb:19:in `block (2 levels) in <class:QuestionnaireController>'
|
|
708
|
+
actionpack (5.0.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action'
|
|
709
|
+
actionpack (5.0.0.1) lib/abstract_controller/base.rb:188:in `process_action'
|
|
710
|
+
actionpack (5.0.0.1) lib/action_controller/metal/rendering.rb:30:in `process_action'
|
|
711
|
+
actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
|
|
712
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:126:in `call'
|
|
713
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile'
|
|
714
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:455:in `call'
|
|
715
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__'
|
|
716
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks'
|
|
717
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
|
|
718
|
+
actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
|
|
719
|
+
actionpack (5.0.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action'
|
|
720
|
+
actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
|
|
721
|
+
activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `block in instrument'
|
|
722
|
+
activesupport (5.0.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument'
|
|
723
|
+
activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `instrument'
|
|
724
|
+
actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
|
725
|
+
actionpack (5.0.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action'
|
|
726
|
+
activerecord (5.0.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
|
727
|
+
actionpack (5.0.0.1) lib/abstract_controller/base.rb:126:in `process'
|
|
728
|
+
actionview (5.0.0.1) lib/action_view/rendering.rb:30:in `process'
|
|
729
|
+
actionpack (5.0.0.1) lib/action_controller/metal.rb:190:in `dispatch'
|
|
730
|
+
actionpack (5.0.0.1) lib/action_controller/metal.rb:262:in `dispatch'
|
|
731
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch'
|
|
732
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve'
|
|
733
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
|
|
734
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `each'
|
|
735
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
|
|
736
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
|
|
737
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
738
|
+
railties (5.0.0.1) lib/rails/railtie.rb:193:in `public_send'
|
|
739
|
+
railties (5.0.0.1) lib/rails/railtie.rb:193:in `method_missing'
|
|
740
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/mapper.rb:17:in `block in <class:Constraints>'
|
|
741
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/mapper.rb:46:in `serve'
|
|
742
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
|
|
743
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `each'
|
|
744
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
|
|
745
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
|
|
746
|
+
rack (2.0.1) lib/rack/etag.rb:25:in `call'
|
|
747
|
+
rack (2.0.1) lib/rack/conditional_get.rb:38:in `call'
|
|
748
|
+
rack (2.0.1) lib/rack/head.rb:12:in `call'
|
|
749
|
+
rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
|
|
750
|
+
rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
|
|
751
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call'
|
|
752
|
+
activerecord (5.0.0.1) lib/active_record/migration.rb:552:in `call'
|
|
753
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
|
|
754
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
|
|
755
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
|
|
756
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
|
|
757
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
|
|
758
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
759
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
|
|
760
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
|
|
761
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
|
|
762
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
|
|
763
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
|
|
764
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
|
|
765
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
766
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
|
|
767
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
|
|
768
|
+
sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call'
|
|
769
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
|
|
770
|
+
rack (2.0.1) lib/rack/method_override.rb:22:in `call'
|
|
771
|
+
rack (2.0.1) lib/rack/runtime.rb:22:in `call'
|
|
772
|
+
activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
773
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
774
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
|
|
775
|
+
rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
|
|
776
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
777
|
+
rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
|
|
778
|
+
/Users/julien/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
|
|
779
|
+
/Users/julien/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
|
|
780
|
+
/Users/julien/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
|
|
781
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout
|
|
782
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
|
|
783
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.3ms)
|
|
784
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
785
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms)
|
|
786
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
|
|
787
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
|
|
788
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (71.4ms)
|
|
789
|
+
Started POST "/know_more/questionnaire/step1" for ::1 at 2016-10-27 22:33:03 +0800
|
|
790
|
+
Processing by KnowMore::QuestionnaireController#step1_update as HTML
|
|
791
|
+
Parameters: {"authenticity_token"=>"+49tHx49wWhDeVgX1cSTxkEkjKVE2F4/L8E66POUcABtddG+dm6yGcCzaZefqqsROnVyREnREO9EEvZkHdVnsw=="}
|
|
792
|
+
Completed 500 Internal Server Error in 39673ms (ActiveRecord: 0.0ms)
|
|
793
|
+
|
|
794
|
+
|
|
795
|
+
|
|
796
|
+
NoMethodError (undefined method `know_more.questionnaire_step2' for #<KnowMore::QuestionnaireController:0x007f950c3da038>):
|
|
797
|
+
|
|
798
|
+
/Users/julien/Documents/know_more/app/controllers/know_more/questionnaire_controller.rb:26:in `block (2 levels) in <class:QuestionnaireController>'
|
|
799
|
+
Started POST "/know_more/questionnaire/step1" for ::1 at 2016-10-27 22:33:42 +0800
|
|
800
|
+
actionpack (5.0.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action'
|
|
801
|
+
actionpack (5.0.0.1) lib/abstract_controller/base.rb:188:in `process_action'
|
|
802
|
+
actionpack (5.0.0.1) lib/action_controller/metal/rendering.rb:30:in `process_action'
|
|
803
|
+
actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
|
|
804
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:126:in `call'
|
|
805
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile'
|
|
806
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:455:in `call'
|
|
807
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__'
|
|
808
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks'
|
|
809
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
|
|
810
|
+
actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
|
|
811
|
+
actionpack (5.0.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action'
|
|
812
|
+
actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
|
|
813
|
+
activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `block in instrument'
|
|
814
|
+
activesupport (5.0.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument'
|
|
815
|
+
activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `instrument'
|
|
816
|
+
actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
|
817
|
+
actionpack (5.0.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action'
|
|
818
|
+
activerecord (5.0.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
|
819
|
+
actionpack (5.0.0.1) lib/abstract_controller/base.rb:126:in `process'
|
|
820
|
+
actionview (5.0.0.1) lib/action_view/rendering.rb:30:in `process'
|
|
821
|
+
actionpack (5.0.0.1) lib/action_controller/metal.rb:190:in `dispatch'
|
|
822
|
+
actionpack (5.0.0.1) lib/action_controller/metal.rb:262:in `dispatch'
|
|
823
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch'
|
|
824
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve'
|
|
825
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
|
|
826
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `each'
|
|
827
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
|
|
828
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
|
|
829
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
830
|
+
railties (5.0.0.1) lib/rails/railtie.rb:193:in `public_send'
|
|
831
|
+
railties (5.0.0.1) lib/rails/railtie.rb:193:in `method_missing'
|
|
832
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/mapper.rb:17:in `block in <class:Constraints>'
|
|
833
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/mapper.rb:46:in `serve'
|
|
834
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
|
|
835
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `each'
|
|
836
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
|
|
837
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
|
|
838
|
+
rack (2.0.1) lib/rack/etag.rb:25:in `call'
|
|
839
|
+
rack (2.0.1) lib/rack/conditional_get.rb:38:in `call'
|
|
840
|
+
rack (2.0.1) lib/rack/head.rb:12:in `call'
|
|
841
|
+
rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
|
|
842
|
+
rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
|
|
843
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call'
|
|
844
|
+
activerecord (5.0.0.1) lib/active_record/migration.rb:552:in `call'
|
|
845
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
|
|
846
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
|
|
847
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
|
|
848
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
|
|
849
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
|
|
850
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
851
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
|
|
852
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
|
|
853
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
|
|
854
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
|
|
855
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
|
|
856
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
|
|
857
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
858
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
|
|
859
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
|
|
860
|
+
sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call'
|
|
861
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
|
|
862
|
+
rack (2.0.1) lib/rack/method_override.rb:22:in `call'
|
|
863
|
+
rack (2.0.1) lib/rack/runtime.rb:22:in `call'
|
|
864
|
+
activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
865
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
866
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
|
|
867
|
+
rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
|
|
868
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
869
|
+
rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
|
|
870
|
+
/Users/julien/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
|
|
871
|
+
/Users/julien/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
|
|
872
|
+
/Users/julien/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
|
|
873
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout
|
|
874
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
|
|
875
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.5ms)
|
|
876
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
877
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms)
|
|
878
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
|
|
879
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms)
|
|
880
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (75.7ms)
|
|
881
|
+
Processing by KnowMore::QuestionnaireController#step1_update as HTML
|
|
882
|
+
Parameters: {"authenticity_token"=>"+49tHx49wWhDeVgX1cSTxkEkjKVE2F4/L8E66POUcABtddG+dm6yGcCzaZefqqsROnVyREnREO9EEvZkHdVnsw=="}
|
|
883
|
+
Completed 500 Internal Server Error in 2439ms (ActiveRecord: 0.0ms)
|
|
884
|
+
|
|
885
|
+
|
|
886
|
+
|
|
887
|
+
NoMethodError (undefined method `know_more.questionnaire_step2_url' for #<KnowMore::QuestionnaireController:0x007f950c21e898>):
|
|
888
|
+
|
|
889
|
+
/Users/julien/Documents/know_more/app/controllers/know_more/questionnaire_controller.rb:26:in `block (2 levels) in <class:QuestionnaireController>'
|
|
890
|
+
actionpack (5.0.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action'
|
|
891
|
+
actionpack (5.0.0.1) lib/abstract_controller/base.rb:188:in `process_action'
|
|
892
|
+
actionpack (5.0.0.1) lib/action_controller/metal/rendering.rb:30:in `process_action'
|
|
893
|
+
actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
|
|
894
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:126:in `call'
|
|
895
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile'
|
|
896
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:455:in `call'
|
|
897
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__'
|
|
898
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks'
|
|
899
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
|
|
900
|
+
actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
|
|
901
|
+
actionpack (5.0.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action'
|
|
902
|
+
actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
|
|
903
|
+
activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `block in instrument'
|
|
904
|
+
activesupport (5.0.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument'
|
|
905
|
+
activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `instrument'
|
|
906
|
+
actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
|
907
|
+
actionpack (5.0.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action'
|
|
908
|
+
activerecord (5.0.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
|
909
|
+
actionpack (5.0.0.1) lib/abstract_controller/base.rb:126:in `process'
|
|
910
|
+
actionview (5.0.0.1) lib/action_view/rendering.rb:30:in `process'
|
|
911
|
+
actionpack (5.0.0.1) lib/action_controller/metal.rb:190:in `dispatch'
|
|
912
|
+
actionpack (5.0.0.1) lib/action_controller/metal.rb:262:in `dispatch'
|
|
913
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch'
|
|
914
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve'
|
|
915
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
|
|
916
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `each'
|
|
917
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
|
|
918
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
|
|
919
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
920
|
+
railties (5.0.0.1) lib/rails/railtie.rb:193:in `public_send'
|
|
921
|
+
railties (5.0.0.1) lib/rails/railtie.rb:193:in `method_missing'
|
|
922
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/mapper.rb:17:in `block in <class:Constraints>'
|
|
923
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/mapper.rb:46:in `serve'
|
|
924
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
|
|
925
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `each'
|
|
926
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
|
|
927
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
|
|
928
|
+
rack (2.0.1) lib/rack/etag.rb:25:in `call'
|
|
929
|
+
rack (2.0.1) lib/rack/conditional_get.rb:38:in `call'
|
|
930
|
+
rack (2.0.1) lib/rack/head.rb:12:in `call'
|
|
931
|
+
rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
|
|
932
|
+
rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
|
|
933
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call'
|
|
934
|
+
activerecord (5.0.0.1) lib/active_record/migration.rb:552:in `call'
|
|
935
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
|
|
936
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
|
|
937
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
|
|
938
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
|
|
939
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
|
|
940
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
941
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
|
|
942
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
|
|
943
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
|
|
944
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
|
|
945
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
|
|
946
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
|
|
947
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
948
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
|
|
949
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
|
|
950
|
+
sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call'
|
|
951
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
|
|
952
|
+
rack (2.0.1) lib/rack/method_override.rb:22:in `call'
|
|
953
|
+
rack (2.0.1) lib/rack/runtime.rb:22:in `call'
|
|
954
|
+
activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
955
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
956
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
|
|
957
|
+
rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
|
|
958
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
959
|
+
rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
|
|
960
|
+
/Users/julien/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
|
|
961
|
+
/Users/julien/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
|
|
962
|
+
/Users/julien/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
|
|
963
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout
|
|
964
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
|
|
965
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.4ms)
|
|
966
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
967
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms)
|
|
968
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
|
|
969
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
|
|
970
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (77.0ms)
|
|
971
|
+
Started POST "/know_more/questionnaire/step1" for ::1 at 2016-10-27 22:34:06 +0800
|
|
972
|
+
Processing by KnowMore::QuestionnaireController#step1_update as HTML
|
|
973
|
+
Parameters: {"authenticity_token"=>"+49tHx49wWhDeVgX1cSTxkEkjKVE2F4/L8E66POUcABtddG+dm6yGcCzaZefqqsROnVyREnREO9EEvZkHdVnsw=="}
|
|
974
|
+
Redirected to http://localhost:3000/know_more/questionnaire/step2
|
|
975
|
+
Completed 302 Found in 29651ms (ActiveRecord: 0.0ms)
|
|
976
|
+
|
|
977
|
+
|
|
978
|
+
Started GET "/know_more/questionnaire/step2" for ::1 at 2016-10-27 22:34:36 +0800
|
|
979
|
+
Processing by KnowMore::QuestionnaireController#step2 as HTML
|
|
980
|
+
Rendering know_more/questionnaire/step2.html.haml within layouts/application
|
|
981
|
+
Rendered know_more/questionnaire/step2.html.haml within layouts/application (2.5ms)
|
|
982
|
+
Completed 200 OK in 24ms (Views: 23.5ms | ActiveRecord: 0.0ms)
|
|
983
|
+
|
|
984
|
+
|
|
985
|
+
Started POST "/know_more/questionnaire/step2" for ::1 at 2016-10-27 22:34:47 +0800
|
|
986
|
+
Processing by KnowMore::QuestionnaireController#step2_update as HTML
|
|
987
|
+
Parameters: {"authenticity_token"=>"U1yMmTIU88DftmdRdOSIWy8LIrjUy8kn2OerEqbI/yzFpjA4WkeAsVx8VtE+irCMVFrcWdnCh/ezNGeeSInonw=="}
|
|
988
|
+
Redirected to http://localhost:3000/know_more/questionnaire/step3
|
|
989
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
|
990
|
+
|
|
991
|
+
|
|
992
|
+
Started GET "/know_more/questionnaire/step3" for ::1 at 2016-10-27 22:34:47 +0800
|
|
993
|
+
Processing by KnowMore::QuestionnaireController#step3 as HTML
|
|
994
|
+
Rendering know_more/questionnaire/step3.html.haml within layouts/application
|
|
995
|
+
Rendered know_more/questionnaire/step3.html.haml within layouts/application (5.3ms)
|
|
996
|
+
Completed 200 OK in 35ms (Views: 34.8ms | ActiveRecord: 0.0ms)
|
|
997
|
+
|
|
998
|
+
|
|
999
|
+
Started POST "/know_more/questionnaire/step3" for ::1 at 2016-10-27 22:34:51 +0800
|
|
1000
|
+
Processing by KnowMore::QuestionnaireController#step3_update as HTML
|
|
1001
|
+
Parameters: {"authenticity_token"=>"1Q0D+4QJBZdzEUcsGQGKcEe0TLrdnqsBYqDujCruTM9D979a7Fp25vDbdqxTb7KnPOWyW9CX5dEJcyIAxK9bfA=="}
|
|
1002
|
+
No template found for KnowMore::QuestionnaireController#step3_update, rendering head :no_content
|
|
1003
|
+
Completed 204 No Content in 133ms (ActiveRecord: 0.0ms)
|
|
1004
|
+
|
|
1005
|
+
|
|
1006
|
+
Started POST "/know_more/questionnaire/step2" for ::1 at 2016-10-27 22:34:54 +0800
|
|
1007
|
+
Processing by KnowMore::QuestionnaireController#step2_update as HTML
|
|
1008
|
+
Parameters: {"authenticity_token"=>"1Q0D+4QJBZdzEUcsGQGKcEe0TLrdnqsBYqDujCruTM9D979a7Fp25vDbdqxTb7KnPOWyW9CX5dEJcyIAxK9bfA=="}
|
|
1009
|
+
Redirected to http://localhost:3000/know_more/questionnaire/step3
|
|
1010
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
|
1011
|
+
|
|
1012
|
+
|
|
1013
|
+
Started GET "/know_more/questionnaire/step3" for ::1 at 2016-10-27 22:34:54 +0800
|
|
1014
|
+
Processing by KnowMore::QuestionnaireController#step3 as HTML
|
|
1015
|
+
Rendering know_more/questionnaire/step3.html.haml within layouts/application
|
|
1016
|
+
Rendered know_more/questionnaire/step3.html.haml within layouts/application (2.5ms)
|
|
1017
|
+
Completed 200 OK in 25ms (Views: 25.2ms | ActiveRecord: 0.0ms)
|
|
1018
|
+
|
|
1019
|
+
|
|
1020
|
+
Started POST "/know_more/questionnaire/step2" for ::1 at 2016-10-27 22:34:57 +0800
|
|
1021
|
+
Processing by KnowMore::QuestionnaireController#step2_update as HTML
|
|
1022
|
+
Parameters: {"authenticity_token"=>"zNZEl+c8R/Doasvy5WQp4Qj5XcNvdMzZtu+j6JmWIb1aLPg2j280gWug+nKvChE2c6ijImJ9ggndPG9kd9c2Dg=="}
|
|
1023
|
+
Redirected to http://localhost:3000/know_more/questionnaire/step3
|
|
1024
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
|
|
1025
|
+
|
|
1026
|
+
|
|
1027
|
+
Started GET "/know_more/questionnaire/step3" for ::1 at 2016-10-27 22:34:57 +0800
|
|
1028
|
+
Processing by KnowMore::QuestionnaireController#step3 as HTML
|
|
1029
|
+
Rendering know_more/questionnaire/step3.html.haml within layouts/application
|
|
1030
|
+
Rendered know_more/questionnaire/step3.html.haml within layouts/application (3.0ms)
|
|
1031
|
+
Completed 200 OK in 28ms (Views: 27.4ms | ActiveRecord: 0.0ms)
|
|
1032
|
+
|
|
1033
|
+
|
|
1034
|
+
Started GET "/know_more/questionnaire/step2" for ::1 at 2016-10-27 22:35:07 +0800
|
|
1035
|
+
Processing by KnowMore::QuestionnaireController#step2 as HTML
|
|
1036
|
+
Rendering know_more/questionnaire/step2.html.haml within layouts/application
|
|
1037
|
+
Rendered know_more/questionnaire/step2.html.haml within layouts/application (2.4ms)
|
|
1038
|
+
Completed 200 OK in 21ms (Views: 20.6ms | ActiveRecord: 0.0ms)
|
|
1039
|
+
|
|
1040
|
+
|
|
1041
|
+
Started POST "/know_more/questionnaire/step1" for ::1 at 2016-10-27 22:35:10 +0800
|
|
1042
|
+
Processing by KnowMore::QuestionnaireController#step1_update as HTML
|
|
1043
|
+
Parameters: {"authenticity_token"=>"C+HiRpETL+DxZd3zCqX80V7Bbn9Ec9coB98zb/3uiwadG17n+UBckXKv7HNAy8QGJZCQnkl6mfhsDP/jE6+ctQ=="}
|
|
1044
|
+
Redirected to http://localhost:3000/know_more/questionnaire/step2
|
|
1045
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
|
1046
|
+
|
|
1047
|
+
|
|
1048
|
+
Started GET "/know_more/questionnaire/step2" for ::1 at 2016-10-27 22:35:10 +0800
|
|
1049
|
+
Processing by KnowMore::QuestionnaireController#step2 as HTML
|
|
1050
|
+
Rendering know_more/questionnaire/step2.html.haml within layouts/application
|
|
1051
|
+
Rendered know_more/questionnaire/step2.html.haml within layouts/application (3.2ms)
|
|
1052
|
+
Completed 200 OK in 28ms (Views: 27.8ms | ActiveRecord: 0.0ms)
|
|
1053
|
+
|
|
1054
|
+
|
|
1055
|
+
Started GET "/know_more/questionnaire/step2" for ::1 at 2016-10-27 22:35:43 +0800
|
|
1056
|
+
Processing by KnowMore::QuestionnaireController#step2 as HTML
|
|
1057
|
+
Rendering know_more/questionnaire/step2.html.haml within layouts/application
|
|
1058
|
+
Rendered know_more/questionnaire/step2.html.haml within layouts/application (4.0ms)
|
|
1059
|
+
Completed 200 OK in 42ms (Views: 42.1ms | ActiveRecord: 0.0ms)
|
|
1060
|
+
|
|
1061
|
+
|
|
1062
|
+
Started POST "/know_more/questionnaire/step1" for ::1 at 2016-10-27 22:35:47 +0800
|
|
1063
|
+
Processing by KnowMore::QuestionnaireController#step1_update as HTML
|
|
1064
|
+
Parameters: {"authenticity_token"=>"tk57WLqPOInLI1aSSZdANJA4r43CJPBEQjB/VxWNc4sgtMf50txL+EjpZxID+Xjj62lRbM8tvpQp47Pb+8xkOA=="}
|
|
1065
|
+
Redirected to http://localhost:3000/know_more/questionnaire/step2
|
|
1066
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
|
|
1067
|
+
|
|
1068
|
+
|
|
1069
|
+
Started GET "/know_more/questionnaire/step2" for ::1 at 2016-10-27 22:35:48 +0800
|
|
1070
|
+
Processing by KnowMore::QuestionnaireController#step2 as HTML
|
|
1071
|
+
Rendering know_more/questionnaire/step2.html.haml within layouts/application
|
|
1072
|
+
Rendered know_more/questionnaire/step2.html.haml within layouts/application (2.8ms)
|
|
1073
|
+
Completed 200 OK in 29ms (Views: 28.8ms | ActiveRecord: 0.0ms)
|
|
1074
|
+
|
|
1075
|
+
|
|
1076
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-10-27 22:35:52 +0800
|
|
1077
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
1078
|
+
Rendering know_more/questionnaire/step1.html.haml within layouts/application
|
|
1079
|
+
Rendered know_more/questionnaire/step1.html.haml within layouts/application (2.4ms)
|
|
1080
|
+
Completed 200 OK in 19ms (Views: 19.2ms | ActiveRecord: 0.0ms)
|
|
1081
|
+
|
|
1082
|
+
|
|
1083
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-10-27 22:35:55 +0800
|
|
1084
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
1085
|
+
Rendering know_more/questionnaire/step1.html.haml within layouts/application
|
|
1086
|
+
Rendered know_more/questionnaire/step1.html.haml within layouts/application (2.6ms)
|
|
1087
|
+
Completed 200 OK in 19ms (Views: 19.1ms | ActiveRecord: 0.0ms)
|
|
1088
|
+
|
|
1089
|
+
|
|
1090
|
+
Started POST "/know_more/questionnaire/step1" for ::1 at 2016-10-27 22:41:51 +0800
|
|
1091
|
+
Processing by KnowMore::QuestionnaireController#step1_update as HTML
|
|
1092
|
+
Parameters: {"authenticity_token"=>"OsgWSCCyRu5PYR2SEHMC5l5vK+rJKqr3gf19naYngiOsMqrpSOE1n8yrLBJaHToxJT7VC8Qj5CfqLrERSGaVkA=="}
|
|
1093
|
+
Redirected to http://localhost:3000/know_more/questionnaire/step2
|
|
1094
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
|
|
1095
|
+
|
|
1096
|
+
|
|
1097
|
+
Started GET "/know_more/questionnaire/step2" for ::1 at 2016-10-27 22:41:51 +0800
|
|
1098
|
+
Processing by KnowMore::QuestionnaireController#step2 as HTML
|
|
1099
|
+
Rendering know_more/questionnaire/step2.html.haml within layouts/application
|
|
1100
|
+
Rendered know_more/questionnaire/step2.html.haml within layouts/application (3.4ms)
|
|
1101
|
+
Completed 200 OK in 32ms (Views: 31.8ms | ActiveRecord: 0.0ms)
|
|
1102
|
+
|
|
1103
|
+
|
|
1104
|
+
Started GET "/know_more/questionnaire/step2" for ::1 at 2016-10-27 22:42:02 +0800
|
|
1105
|
+
Processing by KnowMore::QuestionnaireController#step2 as HTML
|
|
1106
|
+
Rendering know_more/questionnaire/step2.html.haml within layouts/application
|
|
1107
|
+
Rendered know_more/questionnaire/step2.html.haml within layouts/application (3.5ms)
|
|
1108
|
+
Completed 200 OK in 22ms (Views: 21.9ms | ActiveRecord: 0.0ms)
|
|
1109
|
+
|
|
1110
|
+
|
|
1111
|
+
Started GET "/know_more/questionnaire/step2" for ::1 at 2016-10-27 22:42:22 +0800
|
|
1112
|
+
Processing by KnowMore::QuestionnaireController#step2 as HTML
|
|
1113
|
+
Rendering know_more/questionnaire/step2.html.haml within layouts/application
|
|
1114
|
+
Rendered know_more/questionnaire/step2.html.haml within layouts/application (3.2ms)
|
|
1115
|
+
Completed 200 OK in 22ms (Views: 21.6ms | ActiveRecord: 0.0ms)
|
|
1116
|
+
|
|
1117
|
+
|
|
1118
|
+
Started GET "/know_more/questionnaire/step2" for ::1 at 2016-10-27 22:42:23 +0800
|
|
1119
|
+
Processing by KnowMore::QuestionnaireController#step2 as HTML
|
|
1120
|
+
Rendering know_more/questionnaire/step2.html.haml within layouts/application
|
|
1121
|
+
Rendered know_more/questionnaire/step2.html.haml within layouts/application (10.8ms)
|
|
1122
|
+
Completed 200 OK in 48ms (Views: 47.8ms | ActiveRecord: 0.0ms)
|
|
1123
|
+
|
|
1124
|
+
|
|
1125
|
+
Started GET "/know_more/questionnaire/step2" for ::1 at 2016-10-27 22:42:24 +0800
|
|
1126
|
+
Processing by KnowMore::QuestionnaireController#step2 as HTML
|
|
1127
|
+
Rendering know_more/questionnaire/step2.html.haml within layouts/application
|
|
1128
|
+
Rendered know_more/questionnaire/step2.html.haml within layouts/application (2.9ms)
|
|
1129
|
+
Completed 200 OK in 25ms (Views: 25.0ms | ActiveRecord: 0.0ms)
|
|
1130
|
+
|
|
1131
|
+
|
|
1132
|
+
Started GET "/know_more/questionnaire/step2" for ::1 at 2016-10-27 22:42:40 +0800
|
|
1133
|
+
Processing by KnowMore::QuestionnaireController#step2 as HTML
|
|
1134
|
+
Rendering know_more/questionnaire/step2.html.haml within layouts/application
|
|
1135
|
+
Rendered know_more/questionnaire/step2.html.haml within layouts/application (3.5ms)
|
|
1136
|
+
Completed 200 OK in 27ms (Views: 26.9ms | ActiveRecord: 0.0ms)
|
|
1137
|
+
|
|
1138
|
+
|
|
1139
|
+
Started GET "/know_more/questionnaire/step2" for ::1 at 2016-10-27 22:43:08 +0800
|
|
1140
|
+
Processing by KnowMore::QuestionnaireController#step2 as HTML
|
|
1141
|
+
Rendering know_more/questionnaire/step2.html.haml within layouts/application
|
|
1142
|
+
Rendered know_more/questionnaire/step2.html.haml within layouts/application (2.5ms)
|
|
1143
|
+
Completed 200 OK in 20ms (Views: 19.4ms | ActiveRecord: 0.0ms)
|
|
1144
|
+
|
|
1145
|
+
|
|
1146
|
+
Started POST "/know_more/questionnaire/step2" for ::1 at 2016-10-27 22:43:12 +0800
|
|
1147
|
+
Processing by KnowMore::QuestionnaireController#step2_update as HTML
|
|
1148
|
+
Parameters: {"authenticity_token"=>"toYuWH9YCpoHfAHyzVKRuLDCgl2DgKXcQAw5ZxnflbogfJL5Fwt564S2MHKHPKlvy5N8vI6J6wwr3/Xr956CCQ=="}
|
|
1149
|
+
Redirected to http://localhost:3000/know_more/questionnaire/step3
|
|
1150
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
|
1151
|
+
|
|
1152
|
+
|
|
1153
|
+
Started GET "/know_more/questionnaire/step3" for ::1 at 2016-10-27 22:43:12 +0800
|
|
1154
|
+
Processing by KnowMore::QuestionnaireController#step3 as HTML
|
|
1155
|
+
Rendering know_more/questionnaire/step3.html.haml within layouts/application
|
|
1156
|
+
Rendered know_more/questionnaire/step3.html.haml within layouts/application (11.0ms)
|
|
1157
|
+
Completed 200 OK in 39ms (Views: 38.5ms | ActiveRecord: 0.0ms)
|
|
1158
|
+
|
|
1159
|
+
|
|
1160
|
+
Started GET "/know_more/questionnaire/step2" for ::1 at 2016-10-27 22:43:14 +0800
|
|
1161
|
+
Processing by KnowMore::QuestionnaireController#step2 as HTML
|
|
1162
|
+
Rendering know_more/questionnaire/step2.html.haml within layouts/application
|
|
1163
|
+
Rendered know_more/questionnaire/step2.html.haml within layouts/application (3.2ms)
|
|
1164
|
+
Completed 200 OK in 24ms (Views: 23.3ms | ActiveRecord: 0.0ms)
|
|
1165
|
+
|
|
1166
|
+
|
|
1167
|
+
Started POST "/know_more/questionnaire/step2" for ::1 at 2016-10-27 22:43:48 +0800
|
|
1168
|
+
Processing by KnowMore::QuestionnaireController#step2_update as HTML
|
|
1169
|
+
Parameters: {"authenticity_token"=>"BFmaeeBdMtZlUW3qo1rrpHrkluCSWsqRD5DEJ1Bzx+CSoybYiA5Bp+abXGrpNNNzAbVoAZ9ThEFkQwirvjLQUw=="}
|
|
1170
|
+
Redirected to http://localhost:3000/know_more/questionnaire/step3
|
|
1171
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
|
1172
|
+
|
|
1173
|
+
|
|
1174
|
+
Started GET "/know_more/questionnaire/step3" for ::1 at 2016-10-27 22:43:48 +0800
|
|
1175
|
+
Processing by KnowMore::QuestionnaireController#step3 as HTML
|
|
1176
|
+
Rendering know_more/questionnaire/step3.html.haml within layouts/application
|
|
1177
|
+
Rendered know_more/questionnaire/step3.html.haml within layouts/application (3.4ms)
|
|
1178
|
+
Completed 200 OK in 21ms (Views: 20.6ms | ActiveRecord: 0.0ms)
|
|
1179
|
+
|
|
1180
|
+
|
|
1181
|
+
Started GET "/know_more/questionnaire/step2" for ::1 at 2016-10-27 22:43:50 +0800
|
|
1182
|
+
Processing by KnowMore::QuestionnaireController#step2 as HTML
|
|
1183
|
+
Rendering know_more/questionnaire/step2.html.haml within layouts/application
|
|
1184
|
+
Rendered know_more/questionnaire/step2.html.haml within layouts/application (3.2ms)
|
|
1185
|
+
Completed 200 OK in 22ms (Views: 22.0ms | ActiveRecord: 0.0ms)
|
|
1186
|
+
|
|
1187
|
+
|
|
1188
|
+
Started POST "/know_more/questionnaire/step2" for ::1 at 2016-10-27 22:44:02 +0800
|
|
1189
|
+
Processing by KnowMore::QuestionnaireController#step2_update as HTML
|
|
1190
|
+
Parameters: {"authenticity_token"=>"x3vLfi1wPQYebLf93e91v8NCiPVpz4dhRkJhQGGtq4JRgXffRSNOd52mhn2XgU1ouBN2FGTGybEtka3Mj+y8MQ=="}
|
|
1191
|
+
Redirected to http://localhost:3000/know_more/questionnaire/step3
|
|
1192
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
|
1193
|
+
|
|
1194
|
+
|
|
1195
|
+
Started GET "/know_more/questionnaire/step3" for ::1 at 2016-10-27 22:44:02 +0800
|
|
1196
|
+
Processing by KnowMore::QuestionnaireController#step3 as HTML
|
|
1197
|
+
Rendering know_more/questionnaire/step3.html.haml within layouts/application
|
|
1198
|
+
Rendered know_more/questionnaire/step3.html.haml within layouts/application (3.2ms)
|
|
1199
|
+
Completed 200 OK in 21ms (Views: 20.8ms | ActiveRecord: 0.0ms)
|
|
1200
|
+
|
|
1201
|
+
|
|
1202
|
+
Started GET "/know_more/questionnaire/step2" for ::1 at 2016-10-27 22:44:05 +0800
|
|
1203
|
+
Processing by KnowMore::QuestionnaireController#step2 as HTML
|
|
1204
|
+
Rendering know_more/questionnaire/step2.html.haml within layouts/application
|
|
1205
|
+
Rendered know_more/questionnaire/step2.html.haml within layouts/application (3.4ms)
|
|
1206
|
+
Completed 200 OK in 20ms (Views: 20.1ms | ActiveRecord: 0.0ms)
|
|
1207
|
+
|
|
1208
|
+
|
|
1209
|
+
Started POST "/know_more/questionnaire/step2" for ::1 at 2016-10-27 22:45:12 +0800
|
|
1210
|
+
Processing by KnowMore::QuestionnaireController#step2_update as HTML
|
|
1211
|
+
Parameters: {"authenticity_token"=>"vIUvhqKo4YMYGyNdOlgf1HvaHZHe5k2gFbuDoY0FD4Mqf5MnyvuS8pvREt1wNicDAIvjcNPvA3B+aE8tY0QYMA=="}
|
|
1212
|
+
Redirected to http://localhost:3000/know_more/questionnaire/step3
|
|
1213
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
|
|
1214
|
+
|
|
1215
|
+
|
|
1216
|
+
Started GET "/know_more/questionnaire/step3" for ::1 at 2016-10-27 22:45:12 +0800
|
|
1217
|
+
Processing by KnowMore::QuestionnaireController#step3 as HTML
|
|
1218
|
+
Rendering know_more/questionnaire/step3.html.haml within layouts/application
|
|
1219
|
+
Rendered know_more/questionnaire/step3.html.haml within layouts/application (6.7ms)
|
|
1220
|
+
Completed 200 OK in 36ms (Views: 35.3ms | ActiveRecord: 0.0ms)
|
|
1221
|
+
|
|
1222
|
+
|
|
1223
|
+
Started GET "/know_more/questionnaire/step2" for ::1 at 2016-10-27 22:47:39 +0800
|
|
1224
|
+
Processing by KnowMore::QuestionnaireController#step2 as HTML
|
|
1225
|
+
Rendering know_more/questionnaire/step2.html.haml within layouts/application
|
|
1226
|
+
Rendered know_more/questionnaire/step2.html.haml within layouts/application (2.8ms)
|
|
1227
|
+
Completed 200 OK in 22ms (Views: 21.9ms | ActiveRecord: 0.0ms)
|
|
1228
|
+
|
|
1229
|
+
|
|
1230
|
+
Started GET "/know_more/questionnaire/step2" for ::1 at 2016-10-27 22:51:13 +0800
|
|
1231
|
+
Processing by KnowMore::QuestionnaireController#step2 as HTML
|
|
1232
|
+
Rendering know_more/questionnaire/step2.html.haml within layouts/application
|
|
1233
|
+
Rendered know_more/questionnaire/step2.html.haml within layouts/application (2.8ms)
|
|
1234
|
+
Completed 200 OK in 35ms (Views: 27.5ms | ActiveRecord: 0.7ms)
|
|
1235
|
+
|
|
1236
|
+
|
|
1237
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-10-27 22:51:16 +0800
|
|
1238
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
1239
|
+
Rendering know_more/questionnaire/step1.html.haml within layouts/application
|
|
1240
|
+
Rendered know_more/questionnaire/step1.html.haml within layouts/application (3.8ms)
|
|
1241
|
+
Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.0ms)
|
|
1242
|
+
|
|
1243
|
+
|
|
1244
|
+
|
|
1245
|
+
ActionView::Template::Error (wrong number of arguments (given 0, expected 1+)):
|
|
1246
|
+
3:
|
|
1247
|
+
4: = hidden_field_tag :direction, 'next'
|
|
1248
|
+
5:
|
|
1249
|
+
6: = form_for
|
|
1250
|
+
7: = link_to :previous, questionnaire_step1_path, id: 'knowmore-previous', method: :post
|
|
1251
|
+
8:
|
|
1252
|
+
9:
|
|
1253
|
+
|
|
1254
|
+
app/views/know_more/questionnaire/step1.html.haml:6:in `_app_views_know_more_questionnaire_step__html_haml___3260961102538929351_70139086675060'
|
|
1255
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout
|
|
1256
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
|
|
1257
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (5.3ms)
|
|
1258
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
1259
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms)
|
|
1260
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
|
|
1261
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
|
|
1262
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (75.8ms)
|
|
1263
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-10-27 22:51:37 +0800
|
|
1264
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
1265
|
+
Rendering know_more/questionnaire/step1.html.haml within layouts/application
|
|
1266
|
+
Rendered know_more/questionnaire/step1.html.haml within layouts/application (29.4ms)
|
|
1267
|
+
Completed 500 Internal Server Error in 35ms (ActiveRecord: 0.0ms)
|
|
1268
|
+
|
|
1269
|
+
|
|
1270
|
+
|
|
1271
|
+
ActionView::Template::Error (undefined method `questionnaires_path' for #<#<Class:0x007f950ecb2a28>:0x007f9510859740>
|
|
1272
|
+
Did you mean? questionnaire_step2_path
|
|
1273
|
+
questionnaire_step1_path
|
|
1274
|
+
questionnaire_step3_path):
|
|
1275
|
+
2: Step 1
|
|
1276
|
+
3:
|
|
1277
|
+
4:
|
|
1278
|
+
5: = form_for @questionnaire do |f|
|
|
1279
|
+
6:
|
|
1280
|
+
7: = hidden_field_tag :direction, 'next'
|
|
1281
|
+
8: = link_to :previous, questionnaire_step1_path, id: 'knowmore-previous', method: :post
|
|
1282
|
+
|
|
1283
|
+
app/views/know_more/questionnaire/step1.html.haml:5:in `_app_views_know_more_questionnaire_step__html_haml___3260961102538929351_70139102019760'
|
|
1284
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout
|
|
1285
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
|
|
1286
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (5.5ms)
|
|
1287
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
1288
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms)
|
|
1289
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
|
|
1290
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
|
|
1291
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (72.4ms)
|
|
1292
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-10-27 22:51:58 +0800
|
|
1293
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
1294
|
+
Rendering know_more/questionnaire/step1.html.haml within layouts/application
|
|
1295
|
+
Rendered know_more/questionnaire/step1.html.haml within layouts/application (12.1ms)
|
|
1296
|
+
Completed 200 OK in 38ms (Views: 37.3ms | ActiveRecord: 0.0ms)
|
|
1297
|
+
|
|
1298
|
+
|
|
1299
|
+
Started POST "/know_more/questionnaire/step1" for ::1 at 2016-10-27 22:52:10 +0800
|
|
1300
|
+
Processing by KnowMore::QuestionnaireController#step1_update as HTML
|
|
1301
|
+
Parameters: {"authenticity_token"=>"tVqy5hYeReeplgbKakg/HPJAzqDsDIWOmHXKII4U3ikjoA5Hfk02lipcN0ogJgfLiREwQeEFy17zpgasYFXJmg=="}
|
|
1302
|
+
Redirected to http://localhost:3000/know_more/questionnaire/step2
|
|
1303
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
|
1304
|
+
|
|
1305
|
+
|
|
1306
|
+
Started GET "/know_more/questionnaire/step2" for ::1 at 2016-10-27 22:52:10 +0800
|
|
1307
|
+
Processing by KnowMore::QuestionnaireController#step2 as HTML
|
|
1308
|
+
Rendering know_more/questionnaire/step2.html.haml within layouts/application
|
|
1309
|
+
Rendered know_more/questionnaire/step2.html.haml within layouts/application (2.6ms)
|
|
1310
|
+
Completed 200 OK in 21ms (Views: 20.3ms | ActiveRecord: 0.0ms)
|
|
1311
|
+
|
|
1312
|
+
|
|
1313
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-10-27 22:52:26 +0800
|
|
1314
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
1315
|
+
Rendering know_more/questionnaire/step1.html.haml within layouts/application
|
|
1316
|
+
Rendered know_more/questionnaire/step1.html.haml within layouts/application (4.4ms)
|
|
1317
|
+
Completed 200 OK in 28ms (Views: 27.1ms | ActiveRecord: 0.0ms)
|
|
1318
|
+
|
|
1319
|
+
|
|
1320
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-10-27 22:53:14 +0800
|
|
1321
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
1322
|
+
Rendering know_more/questionnaire/step1.html.haml within layouts/application
|
|
1323
|
+
Rendered know_more/questionnaire/step1.html.haml within layouts/application (4.7ms)
|
|
1324
|
+
Completed 200 OK in 24ms (Views: 23.4ms | ActiveRecord: 0.0ms)
|
|
1325
|
+
|
|
1326
|
+
|
|
1327
|
+
Started POST "/know_more/questionnaire/step1" for ::1 at 2016-10-27 22:53:19 +0800
|
|
1328
|
+
Processing by KnowMore::QuestionnaireController#step1_update as HTML
|
|
1329
|
+
Parameters: {"authenticity_token"=>"5hu/Xnj/azlRPcBxCE/uayLTkq8jCl1QN8U5tmTqLg1w4QP/EKwYSNL38fFCIda8WYJsTi4DE4BcFvU6iqs5vg=="}
|
|
1330
|
+
Redirected to http://localhost:3000/know_more/questionnaire/step2
|
|
1331
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
|
1332
|
+
|
|
1333
|
+
|
|
1334
|
+
Started GET "/know_more/questionnaire/step2" for ::1 at 2016-10-27 22:53:19 +0800
|
|
1335
|
+
Processing by KnowMore::QuestionnaireController#step2 as HTML
|
|
1336
|
+
Rendering know_more/questionnaire/step2.html.haml within layouts/application
|
|
1337
|
+
Rendered know_more/questionnaire/step2.html.haml within layouts/application (3.0ms)
|
|
1338
|
+
Completed 200 OK in 25ms (Views: 24.1ms | ActiveRecord: 0.0ms)
|
|
1339
|
+
|
|
1340
|
+
|
|
1341
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-10-27 22:53:24 +0800
|
|
1342
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
1343
|
+
Rendering know_more/questionnaire/step1.html.haml within layouts/application
|
|
1344
|
+
Rendered know_more/questionnaire/step1.html.haml within layouts/application (3.6ms)
|
|
1345
|
+
Completed 200 OK in 23ms (Views: 22.8ms | ActiveRecord: 0.0ms)
|
|
1346
|
+
|
|
1347
|
+
|
|
1348
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-10-27 22:54:06 +0800
|
|
1349
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
1350
|
+
Rendering know_more/questionnaire/step1.html.haml within layouts/application
|
|
1351
|
+
Rendered know_more/questionnaire/step1.html.haml within layouts/application (3.8ms)
|
|
1352
|
+
Completed 200 OK in 22ms (Views: 21.6ms | ActiveRecord: 0.0ms)
|
|
1353
|
+
|
|
1354
|
+
|
|
1355
|
+
Started POST "/know_more/questionnaire/step1" for ::1 at 2016-10-27 22:54:10 +0800
|
|
1356
|
+
Processing by KnowMore::QuestionnaireController#step1_update as HTML
|
|
1357
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"aWvfQedvCpFtiSPMSbqapJn8aBTJGGE0H1RmHsT8Nt//kWPgjzx54O5DEkwD1KJz4q2W9cQRL+R0h6qSKr0hbA==", "direction"=>"next", "commit"=>"Save changes"}
|
|
1358
|
+
Redirected to http://localhost:3000/know_more/questionnaire/step2
|
|
1359
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
|
1360
|
+
|
|
1361
|
+
|
|
1362
|
+
Started GET "/know_more/questionnaire/step2" for ::1 at 2016-10-27 22:54:10 +0800
|
|
1363
|
+
Processing by KnowMore::QuestionnaireController#step2 as HTML
|
|
1364
|
+
Rendering know_more/questionnaire/step2.html.haml within layouts/application
|
|
1365
|
+
Rendered know_more/questionnaire/step2.html.haml within layouts/application (2.5ms)
|
|
1366
|
+
Completed 200 OK in 23ms (Views: 23.0ms | ActiveRecord: 0.0ms)
|
|
1367
|
+
|
|
1368
|
+
|
|
1369
|
+
Started GET "/know_more/questionnaire/step2" for ::1 at 2016-10-27 22:58:32 +0800
|
|
1370
|
+
Processing by KnowMore::QuestionnaireController#step2 as HTML
|
|
1371
|
+
Rendering know_more/questionnaire/step2.html.haml within layouts/application
|
|
1372
|
+
Rendered know_more/questionnaire/step2.html.haml within layouts/application (3.8ms)
|
|
1373
|
+
Completed 200 OK in 26ms (Views: 25.4ms | ActiveRecord: 0.0ms)
|
|
1374
|
+
|
|
1375
|
+
|
|
1376
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-10-27 22:58:34 +0800
|
|
1377
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
1378
|
+
Rendering know_more/questionnaire/step1.html.haml within layouts/application
|
|
1379
|
+
Rendered know_more/questionnaire/step1.html.haml within layouts/application (5.6ms)
|
|
1380
|
+
Completed 200 OK in 38ms (Views: 37.1ms | ActiveRecord: 0.0ms)
|
|
1381
|
+
|
|
1382
|
+
|
|
1383
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-10-27 22:58:37 +0800
|
|
1384
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
1385
|
+
Rendering know_more/questionnaire/step1.html.haml within layouts/application
|
|
1386
|
+
Rendered know_more/questionnaire/step1.html.haml within layouts/application (5.5ms)
|
|
1387
|
+
Completed 200 OK in 26ms (Views: 25.5ms | ActiveRecord: 0.0ms)
|
|
1388
|
+
|
|
1389
|
+
|
|
1390
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-10-27 22:58:51 +0800
|
|
1391
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
1392
|
+
Rendering know_more/questionnaire/step1.html.haml within layouts/application
|
|
1393
|
+
Rendered know_more/questionnaire/step1.html.haml within layouts/application (7.9ms)
|
|
1394
|
+
Completed 200 OK in 48ms (Views: 47.6ms | ActiveRecord: 0.0ms)
|
|
1395
|
+
|
|
1396
|
+
|
|
1397
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-10-27 22:59:08 +0800
|
|
1398
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
1399
|
+
Rendering know_more/questionnaire/step1.html.haml within layouts/application
|
|
1400
|
+
Rendered know_more/questionnaire/step1.html.haml within layouts/application (5.5ms)
|
|
1401
|
+
Completed 200 OK in 26ms (Views: 25.4ms | ActiveRecord: 0.0ms)
|
|
1402
|
+
|
|
1403
|
+
|
|
1404
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-10-27 22:59:17 +0800
|
|
1405
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
1406
|
+
Rendering know_more/questionnaire/step1.html.haml within layouts/application
|
|
1407
|
+
Rendered know_more/questionnaire/step1.html.haml within layouts/application (5.7ms)
|
|
1408
|
+
Completed 200 OK in 26ms (Views: 25.5ms | ActiveRecord: 0.0ms)
|
|
1409
|
+
|
|
1410
|
+
|
|
1411
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-10-27 22:59:18 +0800
|
|
1412
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
1413
|
+
Rendering know_more/questionnaire/step1.html.haml within layouts/application
|
|
1414
|
+
Rendered know_more/questionnaire/step1.html.haml within layouts/application (5.5ms)
|
|
1415
|
+
Completed 200 OK in 26ms (Views: 25.3ms | ActiveRecord: 0.0ms)
|
|
1416
|
+
|
|
1417
|
+
|
|
1418
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-10-27 22:59:30 +0800
|
|
1419
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
1420
|
+
Rendering know_more/questionnaire/step1.html.haml within layouts/application
|
|
1421
|
+
Rendered know_more/questionnaire/step1.html.haml within layouts/application (4.0ms)
|
|
1422
|
+
Completed 200 OK in 25ms (Views: 24.0ms | ActiveRecord: 0.0ms)
|
|
1423
|
+
|
|
1424
|
+
|
|
1425
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-10-27 23:00:34 +0800
|
|
1426
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
1427
|
+
Rendering know_more/questionnaire/step1.html.haml within layouts/application
|
|
1428
|
+
Rendered know_more/questionnaire/step1.html.haml within layouts/application (4.5ms)
|
|
1429
|
+
Completed 200 OK in 24ms (Views: 23.6ms | ActiveRecord: 0.0ms)
|
|
1430
|
+
|
|
1431
|
+
|
|
1432
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-10-27 23:01:08 +0800
|
|
1433
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
1434
|
+
Rendering know_more/questionnaire/step1.html.haml within layouts/application
|
|
1435
|
+
Rendered know_more/questionnaire/step1.html.haml within layouts/application (4.3ms)
|
|
1436
|
+
Completed 200 OK in 24ms (Views: 23.4ms | ActiveRecord: 0.0ms)
|
|
1437
|
+
|
|
1438
|
+
|
|
1439
|
+
Started POST "/know_more/questionnaire/step1" for ::1 at 2016-10-27 23:01:21 +0800
|
|
1440
|
+
Processing by KnowMore::QuestionnaireController#step1_update as HTML
|
|
1441
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"3Hdq60kYxuwNEDRs+TLwXwP4A8b/XdPNiAIKsm9HddlKjdZKIUu1nY7aBeyzXMiIeKn9J/JUnR3j0cY+gQZiag==", "direction"=>"next"}
|
|
1442
|
+
Redirected to http://localhost:3000/know_more/questionnaire/step2
|
|
1443
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
|
1444
|
+
|
|
1445
|
+
|
|
1446
|
+
Started GET "/know_more/questionnaire/step2" for ::1 at 2016-10-27 23:01:21 +0800
|
|
1447
|
+
Processing by KnowMore::QuestionnaireController#step2 as HTML
|
|
1448
|
+
Rendering know_more/questionnaire/step2.html.haml within layouts/application
|
|
1449
|
+
Rendered know_more/questionnaire/step2.html.haml within layouts/application (5.4ms)
|
|
1450
|
+
Completed 200 OK in 34ms (Views: 33.3ms | ActiveRecord: 0.0ms)
|
|
1451
|
+
|
|
1452
|
+
|
|
1453
|
+
Started POST "/know_more/questionnaire/step2" for ::1 at 2016-10-27 23:01:33 +0800
|
|
1454
|
+
Processing by KnowMore::QuestionnaireController#step2_update as HTML
|
|
1455
|
+
Parameters: {"authenticity_token"=>"XTTUgiMkg1P303NGtURExUvGGpVTlx25f2BUrBFzOMzLzmgjS3fwInQZQsb/KnwSMJfkdF6eU2kUs5gg/zIvfw=="}
|
|
1456
|
+
Redirected to http://localhost:3000/know_more/questionnaire/step3
|
|
1457
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
|
1458
|
+
|
|
1459
|
+
|
|
1460
|
+
Started GET "/know_more/questionnaire/step3" for ::1 at 2016-10-27 23:01:33 +0800
|
|
1461
|
+
Processing by KnowMore::QuestionnaireController#step3 as HTML
|
|
1462
|
+
Rendering know_more/questionnaire/step3.html.haml within layouts/application
|
|
1463
|
+
Rendered know_more/questionnaire/step3.html.haml within layouts/application (2.6ms)
|
|
1464
|
+
Completed 200 OK in 25ms (Views: 24.6ms | ActiveRecord: 0.0ms)
|
|
1465
|
+
|
|
1466
|
+
|
|
1467
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-10-27 23:02:18 +0800
|
|
1468
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
1469
|
+
Rendering know_more/questionnaire/step1.html.haml within layouts/application
|
|
1470
|
+
Rendered know_more/questionnaire/step1.html.haml within layouts/application (4.3ms)
|
|
1471
|
+
Completed 200 OK in 26ms (Views: 25.4ms | ActiveRecord: 0.0ms)
|
|
1472
|
+
|
|
1473
|
+
|
|
1474
|
+
Started POST "/know_more/questionnaire/step1" for ::1 at 2016-10-27 23:02:24 +0800
|
|
1475
|
+
Processing by KnowMore::QuestionnaireController#step1_update as HTML
|
|
1476
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"Y7nZ7gaYv0+BHXmZTbwJmTbw3M8g2EtNt79xqhZ+wy71Q2VPbsvMPgLXSBkH0jFOTaEiLi3RBZ3cbL0m+D/UnQ==", "direction"=>"next"}
|
|
1477
|
+
Redirected to http://localhost:3000/know_more/questionnaire/step2
|
|
1478
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
|
1479
|
+
|
|
1480
|
+
|
|
1481
|
+
Started GET "/know_more/questionnaire/step2" for ::1 at 2016-10-27 23:02:24 +0800
|
|
1482
|
+
Processing by KnowMore::QuestionnaireController#step2 as HTML
|
|
1483
|
+
Rendering know_more/questionnaire/step2.html.haml within layouts/application
|
|
1484
|
+
Rendered know_more/questionnaire/step2.html.haml within layouts/application (5.7ms)
|
|
1485
|
+
Completed 200 OK in 31ms (Views: 29.7ms | ActiveRecord: 0.0ms)
|
|
1486
|
+
|
|
1487
|
+
|
|
1488
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-10-27 23:02:26 +0800
|
|
1489
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
1490
|
+
Rendering know_more/questionnaire/step1.html.haml within layouts/application
|
|
1491
|
+
Rendered know_more/questionnaire/step1.html.haml within layouts/application (5.3ms)
|
|
1492
|
+
Completed 200 OK in 26ms (Views: 25.7ms | ActiveRecord: 0.0ms)
|
|
1493
|
+
|
|
1494
|
+
|
|
1495
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-10-27 23:09:30 +0800
|
|
1496
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
1497
|
+
Rendering know_more/questionnaire/step1.html.haml within layouts/application
|
|
1498
|
+
Rendered know_more/questionnaire/step1.html.haml within layouts/application (3.9ms)
|
|
1499
|
+
Completed 200 OK in 29ms (Views: 28.2ms | ActiveRecord: 0.0ms)
|
|
1500
|
+
|
|
1501
|
+
|
|
1502
|
+
Started POST "/know_more/questionnaire/step1" for ::1 at 2016-10-27 23:09:35 +0800
|
|
1503
|
+
Processing by KnowMore::QuestionnaireController#step1_update as HTML
|
|
1504
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"I4GEIe8nWO+xtVNcb3uV86uMgqA77OJq5BaFlX6yYoC1eziAh3QrnjJ/YtwlFa0k0N18QTblrLqPxUkZkPN1Mw==", "direction"=>"next"}
|
|
1505
|
+
Redirected to http://localhost:3000/know_more/questionnaire/step2
|
|
1506
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
|
1507
|
+
|
|
1508
|
+
|
|
1509
|
+
Started GET "/know_more/questionnaire/step2" for ::1 at 2016-10-27 23:09:35 +0800
|
|
1510
|
+
Processing by KnowMore::QuestionnaireController#step2 as HTML
|
|
1511
|
+
Rendering know_more/questionnaire/step2.html.haml within layouts/application
|
|
1512
|
+
Rendered know_more/questionnaire/step2.html.haml within layouts/application (3.9ms)
|
|
1513
|
+
Completed 200 OK in 24ms (Views: 23.5ms | ActiveRecord: 0.0ms)
|
|
1514
|
+
|
|
1515
|
+
|
|
1516
|
+
Started POST "/know_more/questionnaire/step2" for ::1 at 2016-10-27 23:09:41 +0800
|
|
1517
|
+
Processing by KnowMore::QuestionnaireController#step2_update as HTML
|
|
1518
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"MmpaPBDuU5sUKbsb85h4gW1DqqeFsgA+I+J46i7aY8WkkOadeL0g6pfjipu59kBWFhJURoi7Tu5IMbRmwJt0dg==", "direction"=>"next"}
|
|
1519
|
+
Redirected to http://localhost:3000/know_more/questionnaire/step3
|
|
1520
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
|
1521
|
+
|
|
1522
|
+
|
|
1523
|
+
Started GET "/know_more/questionnaire/step3" for ::1 at 2016-10-27 23:09:41 +0800
|
|
1524
|
+
Processing by KnowMore::QuestionnaireController#step3 as HTML
|
|
1525
|
+
Rendering know_more/questionnaire/step3.html.haml within layouts/application
|
|
1526
|
+
Rendered know_more/questionnaire/step3.html.haml within layouts/application (4.1ms)
|
|
1527
|
+
Completed 200 OK in 23ms (Views: 22.3ms | ActiveRecord: 0.0ms)
|
|
1528
|
+
|
|
1529
|
+
|
|
1530
|
+
Started POST "/know_more/questionnaire/step3" for ::1 at 2016-10-27 23:10:06 +0800
|
|
1531
|
+
Processing by KnowMore::QuestionnaireController#step3_update as HTML
|
|
1532
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"FTtq435JZhutG+MeJWoQsg1Y1/Zn9csZinwnjg/bbmuDwdZCFhoVai7R0p5vBChldgkpF2r8hcnhr+sC4Zp52A==", "direction"=>"next"}
|
|
1533
|
+
No template found for KnowMore::QuestionnaireController#step3_update, rendering head :no_content
|
|
1534
|
+
Completed 204 No Content in 108ms (ActiveRecord: 0.0ms)
|
|
1535
|
+
|
|
1536
|
+
|
|
1537
|
+
Started GET "/know_more/questionnaire/step3" for ::1 at 2016-10-27 23:10:50 +0800
|
|
1538
|
+
Processing by KnowMore::QuestionnaireController#step3 as HTML
|
|
1539
|
+
Rendering know_more/questionnaire/step3.html.haml within layouts/application
|
|
1540
|
+
Rendered know_more/questionnaire/step3.html.haml within layouts/application (4.0ms)
|
|
1541
|
+
Completed 200 OK in 24ms (Views: 23.5ms | ActiveRecord: 0.0ms)
|
|
1542
|
+
|
|
1543
|
+
|
|
1544
|
+
Started POST "/know_more/questionnaire/step3" for ::1 at 2016-10-27 23:10:58 +0800
|
|
1545
|
+
Processing by KnowMore::QuestionnaireController#step3_update as HTML
|
|
1546
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"7pcspP92BTxwHQ+Y7R0vwj60x7n4ejuaRwvD6qvfeWh4bZAFlyV2TfPXPhincxcVReU5WPVzdUos2A9mRZ5u2w==", "direction"=>"previous"}
|
|
1547
|
+
Redirected to http://localhost:3000/know_more/questionnaire/step2
|
|
1548
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
|
|
1549
|
+
|
|
1550
|
+
|
|
1551
|
+
Started GET "/know_more/questionnaire/step2" for ::1 at 2016-10-27 23:10:58 +0800
|
|
1552
|
+
Processing by KnowMore::QuestionnaireController#step2 as HTML
|
|
1553
|
+
Rendering know_more/questionnaire/step2.html.haml within layouts/application
|
|
1554
|
+
Rendered know_more/questionnaire/step2.html.haml within layouts/application (4.3ms)
|
|
1555
|
+
Completed 200 OK in 34ms (Views: 33.6ms | ActiveRecord: 0.0ms)
|
|
1556
|
+
|
|
1557
|
+
|
|
1558
|
+
Started POST "/know_more/questionnaire/step2" for ::1 at 2016-10-27 23:11:00 +0800
|
|
1559
|
+
Processing by KnowMore::QuestionnaireController#step2_update as HTML
|
|
1560
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"0v2hXO5mlKI618IoG0ZgEoPFBYV14UgmVBD376QbXvFEBx39hjXn07kd86hRKFjF+JT7ZHjoBvY/wztjSlpJQg==", "direction"=>"next"}
|
|
1561
|
+
Redirected to http://localhost:3000/know_more/questionnaire/step3
|
|
1562
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
|
1563
|
+
|
|
1564
|
+
|
|
1565
|
+
Started GET "/know_more/questionnaire/step3" for ::1 at 2016-10-27 23:11:00 +0800
|
|
1566
|
+
Processing by KnowMore::QuestionnaireController#step3 as HTML
|
|
1567
|
+
Rendering know_more/questionnaire/step3.html.haml within layouts/application
|
|
1568
|
+
Rendered know_more/questionnaire/step3.html.haml within layouts/application (3.8ms)
|
|
1569
|
+
Completed 200 OK in 23ms (Views: 23.0ms | ActiveRecord: 0.0ms)
|
|
1570
|
+
|
|
1571
|
+
|
|
1572
|
+
Started POST "/know_more/questionnaire/step3" for ::1 at 2016-10-27 23:11:02 +0800
|
|
1573
|
+
Processing by KnowMore::QuestionnaireController#step3_update as HTML
|
|
1574
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"W2QeEBz18noIX6E4UDWgAbHaMal9GWViBWlRcxCQFGzNnqKxdKaBC4uVkLgaW5jWyovPSHAQK7Juup3//tED3w==", "direction"=>"previous"}
|
|
1575
|
+
Redirected to http://localhost:3000/know_more/questionnaire/step2
|
|
1576
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
|
1577
|
+
|
|
1578
|
+
|
|
1579
|
+
Started GET "/know_more/questionnaire/step2" for ::1 at 2016-10-27 23:11:02 +0800
|
|
1580
|
+
Processing by KnowMore::QuestionnaireController#step2 as HTML
|
|
1581
|
+
Rendering know_more/questionnaire/step2.html.haml within layouts/application
|
|
1582
|
+
Rendered know_more/questionnaire/step2.html.haml within layouts/application (3.6ms)
|
|
1583
|
+
Completed 200 OK in 25ms (Views: 25.0ms | ActiveRecord: 0.0ms)
|
|
1584
|
+
|
|
1585
|
+
|
|
1586
|
+
Started GET "/know_more/questionnaire/step2" for ::1 at 2016-10-27 23:11:46 +0800
|
|
1587
|
+
Processing by KnowMore::QuestionnaireController#step2 as HTML
|
|
1588
|
+
Rendering know_more/questionnaire/step2.html.haml within layouts/application
|
|
1589
|
+
Rendered know_more/questionnaire/step2.html.haml within layouts/application (3.9ms)
|
|
1590
|
+
Completed 200 OK in 24ms (Views: 23.4ms | ActiveRecord: 0.0ms)
|
|
1591
|
+
|
|
1592
|
+
|
|
1593
|
+
Started POST "/know_more/questionnaire/step2" for ::1 at 2016-10-27 23:11:48 +0800
|
|
1594
|
+
Processing by KnowMore::QuestionnaireController#step2_update as HTML
|
|
1595
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"Vz75SbR0INEagqsGhd3e6f/aVE2paeAUMWUUGrmNtKnBxEXo3CdToJlImobPs+Y+hIuqrKRgrsRattiWV8yjGg==", "direction"=>"previous"}
|
|
1596
|
+
Redirected to http://localhost:3000/know_more/questionnaire/step1
|
|
1597
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
|
|
1598
|
+
|
|
1599
|
+
|
|
1600
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-10-27 23:11:48 +0800
|
|
1601
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
1602
|
+
Rendering know_more/questionnaire/step1.html.haml within layouts/application
|
|
1603
|
+
Rendered know_more/questionnaire/step1.html.haml within layouts/application (3.6ms)
|
|
1604
|
+
Completed 200 OK in 27ms (Views: 27.0ms | ActiveRecord: 0.0ms)
|
|
1605
|
+
|
|
1606
|
+
|
|
1607
|
+
Started POST "/know_more/questionnaire/step1" for ::1 at 2016-10-27 23:11:50 +0800
|
|
1608
|
+
Processing by KnowMore::QuestionnaireController#step1_update as HTML
|
|
1609
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"dpZCBbQyla2HpXIkqpHowOuPwx1aTVFfxIvbWf1hIi7gbP6k3GHm3ARvQ6Tg/9AXkN49/FdEH4+vWBfVEyA1nQ==", "direction"=>"next"}
|
|
1610
|
+
Redirected to http://localhost:3000/know_more/questionnaire/step2
|
|
1611
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
|
1612
|
+
|
|
1613
|
+
|
|
1614
|
+
Started GET "/know_more/questionnaire/step2" for ::1 at 2016-10-27 23:11:50 +0800
|
|
1615
|
+
Processing by KnowMore::QuestionnaireController#step2 as HTML
|
|
1616
|
+
Rendering know_more/questionnaire/step2.html.haml within layouts/application
|
|
1617
|
+
Rendered know_more/questionnaire/step2.html.haml within layouts/application (4.5ms)
|
|
1618
|
+
Completed 200 OK in 22ms (Views: 21.8ms | ActiveRecord: 0.0ms)
|
|
1619
|
+
|
|
1620
|
+
|
|
1621
|
+
Started POST "/know_more/questionnaire/step2" for ::1 at 2016-10-27 23:11:51 +0800
|
|
1622
|
+
Processing by KnowMore::QuestionnaireController#step2_update as HTML
|
|
1623
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"h1awV/1h/II5mZXYNxsd96ObaOJ+v7eagloyqvgM3MwRrAz2lTKP87pTpFh9dSUg2MqWA3O2+Urpif4mFk3Lfw==", "direction"=>"next"}
|
|
1624
|
+
Redirected to http://localhost:3000/know_more/questionnaire/step3
|
|
1625
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
|
1626
|
+
|
|
1627
|
+
|
|
1628
|
+
Started GET "/know_more/questionnaire/step3" for ::1 at 2016-10-27 23:11:51 +0800
|
|
1629
|
+
Processing by KnowMore::QuestionnaireController#step3 as HTML
|
|
1630
|
+
Rendering know_more/questionnaire/step3.html.haml within layouts/application
|
|
1631
|
+
Rendered know_more/questionnaire/step3.html.haml within layouts/application (4.2ms)
|
|
1632
|
+
Completed 200 OK in 29ms (Views: 28.3ms | ActiveRecord: 0.0ms)
|
|
1633
|
+
|
|
1634
|
+
|
|
1635
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
1636
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
1637
|
+
Migrating to CreateQuestionnaire (20161027141359)
|
|
1638
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
1639
|
+
[1m[35m (0.6ms)[0m [1m[35mDROP TABLE "questionnaires"[0m
|
|
1640
|
+
[1m[35mSQL (0.2ms)[0m [1m[31mDELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = ?[0m [["version", "20161027141359"]]
|
|
1641
|
+
[1m[35m (1.0ms)[0m [1m[36mcommit transaction[0m
|
|
1642
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
1643
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
1644
|
+
Migrating to CreateQuestionnaire (20161027141359)
|
|
1645
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
1646
|
+
[1m[35m (0.6ms)[0m [1m[35mCREATE TABLE "questionnaires" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "progress" integer DEFAULT 0, "attribute1" varchar, "attribute2" varchar, "attribute3" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
|
1647
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20161027141359"]]
|
|
1648
|
+
[1m[35m (2.6ms)[0m [1m[36mcommit transaction[0m
|
|
1649
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", :environment], ["LIMIT", 1]]
|
|
1650
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
1651
|
+
[1m[35m (0.1ms)[0m [1m[36mcommit transaction[0m
|
|
1652
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
1653
|
+
Started GET "/know_more/questionnaire/step2" for ::1 at 2016-10-29 11:31:36 +0800
|
|
1654
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
1655
|
+
Processing by KnowMore::QuestionnaireController#step2 as HTML
|
|
1656
|
+
Rendering know_more/questionnaire/step2.html.haml within layouts/application
|
|
1657
|
+
Rendered know_more/questionnaire/step2.html.haml within layouts/application (5.8ms)
|
|
1658
|
+
Completed 200 OK in 27ms (Views: 26.6ms | ActiveRecord: 0.0ms)
|
|
1659
|
+
|
|
1660
|
+
|
|
1661
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-10-29 11:31:39 +0800
|
|
1662
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
1663
|
+
Rendering know_more/questionnaire/step1.html.haml within layouts/application
|
|
1664
|
+
Rendered know_more/questionnaire/step1.html.haml within layouts/application (6.1ms)
|
|
1665
|
+
Completed 200 OK in 32ms (Views: 32.1ms | ActiveRecord: 0.0ms)
|
|
1666
|
+
|
|
1667
|
+
|
|
1668
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-10-29 11:33:19 +0800
|
|
1669
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
1670
|
+
Rendering know_more/questionnaire/step1.html.haml within layouts/application
|
|
1671
|
+
Rendered know_more/questionnaire/step1.html.haml within layouts/application (5.1ms)
|
|
1672
|
+
Completed 200 OK in 24ms (Views: 24.1ms | ActiveRecord: 0.0ms)
|
|
1673
|
+
|
|
1674
|
+
|
|
1675
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-10-29 11:33:31 +0800
|
|
1676
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
1677
|
+
Rendering know_more/questionnaire/step1.html.haml within layouts/application
|
|
1678
|
+
Rendered know_more/questionnaire/step1.html.haml within layouts/application (4.9ms)
|
|
1679
|
+
Completed 200 OK in 41ms (Views: 41.0ms | ActiveRecord: 0.0ms)
|
|
1680
|
+
|
|
1681
|
+
|
|
1682
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-10-29 11:33:42 +0800
|
|
1683
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
1684
|
+
Rendering know_more/questionnaire/step1.html.haml within layouts/application
|
|
1685
|
+
Rendered know_more/questionnaire/step1.html.haml within layouts/application (5.3ms)
|
|
1686
|
+
Completed 200 OK in 33ms (Views: 32.8ms | ActiveRecord: 0.0ms)
|
|
1687
|
+
|
|
1688
|
+
|
|
1689
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-10-29 11:34:33 +0800
|
|
1690
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
1691
|
+
Rendering know_more/questionnaire/step1.html.haml within layouts/application
|
|
1692
|
+
Rendered know_more/questionnaire/step1.html.haml within layouts/application (5.4ms)
|
|
1693
|
+
Completed 200 OK in 27ms (Views: 26.4ms | ActiveRecord: 0.0ms)
|
|
1694
|
+
|
|
1695
|
+
|
|
1696
|
+
Started POST "/know_more/questionnaire/step1" for ::1 at 2016-10-29 11:34:46 +0800
|
|
1697
|
+
Processing by KnowMore::QuestionnaireController#step1_update as HTML
|
|
1698
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"+GKS7OlGFOWP16GLCid1CPxyd7n9rTZHVk8TvWqWHutumC5NgRVnlAwdkAtASU3fhyOJWPCkeJc9nN8xhNcJWA==", "direction"=>"next", "questionnaire"=>{"attribute1"=>"step1"}}
|
|
1699
|
+
Redirected to http://localhost:3000/know_more/questionnaire/step2
|
|
1700
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
|
1701
|
+
|
|
1702
|
+
|
|
1703
|
+
Started GET "/know_more/questionnaire/step2" for ::1 at 2016-10-29 11:34:46 +0800
|
|
1704
|
+
Processing by KnowMore::QuestionnaireController#step2 as HTML
|
|
1705
|
+
Rendering know_more/questionnaire/step2.html.haml within layouts/application
|
|
1706
|
+
Rendered know_more/questionnaire/step2.html.haml within layouts/application (7.8ms)
|
|
1707
|
+
Completed 200 OK in 43ms (Views: 42.9ms | ActiveRecord: 0.0ms)
|
|
1708
|
+
|
|
1709
|
+
|
|
1710
|
+
Started GET "/know_more/questionnaire/step2" for ::1 at 2016-10-29 11:35:04 +0800
|
|
1711
|
+
Processing by KnowMore::QuestionnaireController#step2 as HTML
|
|
1712
|
+
Rendering know_more/questionnaire/step2.html.haml within layouts/application
|
|
1713
|
+
Rendered know_more/questionnaire/step2.html.haml within layouts/application (5.5ms)
|
|
1714
|
+
Completed 200 OK in 30ms (Views: 29.4ms | ActiveRecord: 0.0ms)
|
|
1715
|
+
|
|
1716
|
+
|
|
1717
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-10-29 12:53:37 +0800
|
|
1718
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
1719
|
+
Rendering know_more/questionnaire/step1.html.haml within layouts/application
|
|
1720
|
+
Rendered know_more/questionnaire/step1.html.haml within layouts/application (4.3ms)
|
|
1721
|
+
Completed 200 OK in 25ms (Views: 24.5ms | ActiveRecord: 0.0ms)
|
|
1722
|
+
|
|
1723
|
+
|
|
1724
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-10-29 12:53:41 +0800
|
|
1725
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
1726
|
+
Rendering know_more/questionnaire/step1.html.haml within layouts/application
|
|
1727
|
+
Rendered know_more/questionnaire/step1.html.haml within layouts/application (3.9ms)
|
|
1728
|
+
Completed 200 OK in 24ms (Views: 23.2ms | ActiveRecord: 0.0ms)
|
|
1729
|
+
|
|
1730
|
+
|
|
1731
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-10-29 12:54:56 +0800
|
|
1732
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
1733
|
+
Rendering know_more/questionnaire/step1.html.haml within layouts/application
|
|
1734
|
+
Rendered know_more/questionnaire/step1.html.haml within layouts/application (4.6ms)
|
|
1735
|
+
Completed 200 OK in 41ms (Views: 29.3ms | ActiveRecord: 0.7ms)
|
|
1736
|
+
|
|
1737
|
+
|
|
1738
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-10-29 12:55:47 +0800
|
|
1739
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
1740
|
+
Rendering know_more/questionnaire/step1.html.haml within layouts/application
|
|
1741
|
+
Rendered know_more/questionnaire/step1.html.haml within layouts/application (16.9ms)
|
|
1742
|
+
Completed 200 OK in 43ms (Views: 42.8ms | ActiveRecord: 0.0ms)
|
|
1743
|
+
|
|
1744
|
+
|
|
1745
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-10-29 12:57:47 +0800
|
|
1746
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
1747
|
+
Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms)
|
|
1748
|
+
|
|
1749
|
+
|
|
1750
|
+
|
|
1751
|
+
NoMethodError (undefined method `find_by_id' for KnowMore::Questionnaire:Module):
|
|
1752
|
+
|
|
1753
|
+
app/controllers/concerns/know_more/questionnaire_controller_concerns.rb:34:in `set_questionnaire'
|
|
1754
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout
|
|
1755
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
|
|
1756
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (6.2ms)
|
|
1757
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
1758
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms)
|
|
1759
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
|
|
1760
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms)
|
|
1761
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (76.3ms)
|
|
1762
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-10-29 12:58:05 +0800
|
|
1763
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
1764
|
+
[1m[36mQuestionnaire Load (0.3ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" WHERE "questionnaires"."id" IS NULL LIMIT ?[0m [["LIMIT", 1]]
|
|
1765
|
+
Rendering know_more/questionnaire/step1.html.haml within layouts/application
|
|
1766
|
+
Rendered know_more/questionnaire/step1.html.haml within layouts/application (5.1ms)
|
|
1767
|
+
Completed 200 OK in 44ms (Views: 27.8ms | ActiveRecord: 1.1ms)
|
|
1768
|
+
|
|
1769
|
+
|
|
1770
|
+
Started POST "/know_more/questionnaire/step1" for ::1 at 2016-10-29 12:58:18 +0800
|
|
1771
|
+
Processing by KnowMore::QuestionnaireController#step1_update as HTML
|
|
1772
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"fuvDLDGn7Zs52ZwSwSPDRBNZgCT6lAMP/HlGZClx9nfoEX+NWfSe6roTrZKLTfuTaAh+xfedTd+XqoroxzDhxA==", "direction"=>"next", "questionnaire"=>{"attribute1"=>"123"}}
|
|
1773
|
+
[1m[36mQuestionnaire Load (0.2ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" WHERE "questionnaires"."id" IS NULL LIMIT ?[0m [["LIMIT", 1]]
|
|
1774
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
1775
|
+
[1m[35mSQL (0.7ms)[0m [1m[32mINSERT INTO "questionnaires" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", 2016-10-29 04:58:18 UTC], ["updated_at", 2016-10-29 04:58:18 UTC]]
|
|
1776
|
+
[1m[35m (1.4ms)[0m [1m[36mcommit transaction[0m
|
|
1777
|
+
Redirected to http://localhost:3000/know_more/questionnaire/step2
|
|
1778
|
+
Completed 302 Found in 7ms (ActiveRecord: 2.4ms)
|
|
1779
|
+
|
|
1780
|
+
|
|
1781
|
+
Started GET "/know_more/questionnaire/step2" for ::1 at 2016-10-29 12:58:18 +0800
|
|
1782
|
+
Processing by KnowMore::QuestionnaireController#step2 as HTML
|
|
1783
|
+
[1m[36mQuestionnaire Load (0.5ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" WHERE "questionnaires"."id" IS NULL LIMIT ?[0m [["LIMIT", 1]]
|
|
1784
|
+
Rendering know_more/questionnaire/step2.html.haml within layouts/application
|
|
1785
|
+
Rendered know_more/questionnaire/step2.html.haml within layouts/application (6.4ms)
|
|
1786
|
+
Completed 200 OK in 39ms (Views: 37.0ms | ActiveRecord: 0.5ms)
|
|
1787
|
+
|
|
1788
|
+
|
|
1789
|
+
[1m[36mQuestionnaire Load (0.2ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
1790
|
+
Started POST "/know_more/questionnaire/step2" for ::1 at 2016-10-29 12:58:35 +0800
|
|
1791
|
+
Processing by KnowMore::QuestionnaireController#step2_update as HTML
|
|
1792
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"HDAo8bVYyepaqpd5bPooYoVUSXF0O0NlFRVyRqK5rpSKypRQ3Qu6m9lgpvkmlBC1/gW3kHkyDbV+xr7KTPi5Jw==", "direction"=>"previous", "questionnaire"=>{"attribute2"=>""}}
|
|
1793
|
+
[1m[36mQuestionnaire Load (0.2ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" WHERE "questionnaires"."id" IS NULL LIMIT ?[0m [["LIMIT", 1]]
|
|
1794
|
+
Redirected to http://localhost:3000/know_more/questionnaire/step1
|
|
1795
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
|
|
1796
|
+
|
|
1797
|
+
|
|
1798
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-10-29 12:58:35 +0800
|
|
1799
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
1800
|
+
[1m[36mQuestionnaire Load (0.2ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" WHERE "questionnaires"."id" IS NULL LIMIT ?[0m [["LIMIT", 1]]
|
|
1801
|
+
Rendering know_more/questionnaire/step1.html.haml within layouts/application
|
|
1802
|
+
Rendered know_more/questionnaire/step1.html.haml within layouts/application (8.5ms)
|
|
1803
|
+
Completed 200 OK in 60ms (Views: 57.9ms | ActiveRecord: 0.2ms)
|
|
1804
|
+
|
|
1805
|
+
|
|
1806
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-10-29 12:58:56 +0800
|
|
1807
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
1808
|
+
[1m[36mQuestionnaire Load (0.2ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" WHERE "questionnaires"."id" IS NULL LIMIT ?[0m [["LIMIT", 1]]
|
|
1809
|
+
Rendering know_more/questionnaire/step1.html.haml within layouts/application
|
|
1810
|
+
Rendered know_more/questionnaire/step1.html.haml within layouts/application (6.4ms)
|
|
1811
|
+
Completed 200 OK in 11060ms (Views: 30.1ms | ActiveRecord: 1.3ms)
|
|
1812
|
+
|
|
1813
|
+
|
|
1814
|
+
Started POST "/know_more/questionnaire/step1" for ::1 at 2016-10-29 12:59:11 +0800
|
|
1815
|
+
Processing by KnowMore::QuestionnaireController#step1_update as HTML
|
|
1816
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"6GCqcN+uHMXJ7TkN/n7TxubrDOfBoa+NXdEJrucLKtd+mhbRt/1vtEonCI20EOsRnbryBsyo4V02AsUiCUo9ZA==", "direction"=>"next", "questionnaire"=>{"attribute1"=>"abc"}}
|
|
1817
|
+
[1m[36mQuestionnaire Load (0.4ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" WHERE "questionnaires"."id" IS NULL LIMIT ?[0m [["LIMIT", 1]]
|
|
1818
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
1819
|
+
[1m[35mSQL (0.5ms)[0m [1m[32mINSERT INTO "questionnaires" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", 2016-10-29 04:59:58 UTC], ["updated_at", 2016-10-29 04:59:58 UTC]]
|
|
1820
|
+
[1m[35m (0.8ms)[0m [1m[36mcommit transaction[0m
|
|
1821
|
+
Redirected to http://localhost:3000/know_more/questionnaire/step2
|
|
1822
|
+
Completed 302 Found in 47128ms (ActiveRecord: 1.8ms)
|
|
1823
|
+
|
|
1824
|
+
|
|
1825
|
+
Started GET "/know_more/questionnaire/step2" for ::1 at 2016-10-29 12:59:58 +0800
|
|
1826
|
+
Processing by KnowMore::QuestionnaireController#step2 as HTML
|
|
1827
|
+
[1m[36mQuestionnaire Load (0.2ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" WHERE "questionnaires"."id" IS NULL LIMIT ?[0m [["LIMIT", 1]]
|
|
1828
|
+
Rendering know_more/questionnaire/step2.html.haml within layouts/application
|
|
1829
|
+
Rendered know_more/questionnaire/step2.html.haml within layouts/application (5.5ms)
|
|
1830
|
+
Completed 200 OK in 1605ms (Views: 29.3ms | ActiveRecord: 0.2ms)
|
|
1831
|
+
|
|
1832
|
+
|
|
1833
|
+
Started GET "/know_more/questionnaire/step2" for ::1 at 2016-10-29 13:05:14 +0800
|
|
1834
|
+
Processing by KnowMore::QuestionnaireController#step2 as HTML
|
|
1835
|
+
[1m[36mQuestionnaire Load (0.2ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" WHERE "questionnaires"."id" IS NULL LIMIT ?[0m [["LIMIT", 1]]
|
|
1836
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
1837
|
+
[1m[35mSQL (0.4ms)[0m [1m[32mINSERT INTO "questionnaires" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", 2016-10-29 05:05:14 UTC], ["updated_at", 2016-10-29 05:05:14 UTC]]
|
|
1838
|
+
[1m[35m (2.5ms)[0m [1m[36mcommit transaction[0m
|
|
1839
|
+
Rendering know_more/questionnaire/step2.html.haml within layouts/application
|
|
1840
|
+
Rendered know_more/questionnaire/step2.html.haml within layouts/application (5.7ms)
|
|
1841
|
+
Completed 200 OK in 42ms (Views: 26.5ms | ActiveRecord: 4.1ms)
|
|
1842
|
+
|
|
1843
|
+
|
|
1844
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-10-29 13:05:18 +0800
|
|
1845
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
1846
|
+
[1m[36mQuestionnaire Load (0.2ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" WHERE "questionnaires"."id" IS NULL LIMIT ?[0m [["LIMIT", 1]]
|
|
1847
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
1848
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "questionnaires" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", 2016-10-29 05:05:18 UTC], ["updated_at", 2016-10-29 05:05:18 UTC]]
|
|
1849
|
+
[1m[35m (0.7ms)[0m [1m[36mcommit transaction[0m
|
|
1850
|
+
Rendering know_more/questionnaire/step1.html.haml within layouts/application
|
|
1851
|
+
Rendered know_more/questionnaire/step1.html.haml within layouts/application (4.8ms)
|
|
1852
|
+
Completed 200 OK in 27ms (Views: 22.8ms | ActiveRecord: 1.3ms)
|
|
1853
|
+
|
|
1854
|
+
|
|
1855
|
+
Started PATCH "/know_more/questionnaire/step1" for ::1 at 2016-10-29 13:05:22 +0800
|
|
1856
|
+
|
|
1857
|
+
ActionController::RoutingError (No route matches [PATCH] "/know_more/questionnaire/step1"):
|
|
1858
|
+
|
|
1859
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call'
|
|
1860
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
|
|
1861
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
|
|
1862
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
|
|
1863
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
|
|
1864
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
1865
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
|
|
1866
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
|
|
1867
|
+
sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call'
|
|
1868
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
|
|
1869
|
+
rack (2.0.1) lib/rack/method_override.rb:22:in `call'
|
|
1870
|
+
rack (2.0.1) lib/rack/runtime.rb:22:in `call'
|
|
1871
|
+
activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
1872
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
1873
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
|
|
1874
|
+
rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
|
|
1875
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
1876
|
+
rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
|
|
1877
|
+
/Users/julien/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
|
|
1878
|
+
/Users/julien/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
|
|
1879
|
+
/Users/julien/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
|
|
1880
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout
|
|
1881
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
1882
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms)
|
|
1883
|
+
Rendered collection of /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb [2 times] (2.4ms)
|
|
1884
|
+
Rendered collection of /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb [6 times] (2.0ms)
|
|
1885
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms)
|
|
1886
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
|
|
1887
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.7ms)
|
|
1888
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (137.7ms)
|
|
1889
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-10-29 13:05:26 +0800
|
|
1890
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
1891
|
+
[1m[36mQuestionnaire Load (0.4ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" WHERE "questionnaires"."id" IS NULL LIMIT ?[0m [["LIMIT", 1]]
|
|
1892
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
1893
|
+
[1m[35mSQL (0.4ms)[0m [1m[32mINSERT INTO "questionnaires" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", 2016-10-29 05:05:26 UTC], ["updated_at", 2016-10-29 05:05:26 UTC]]
|
|
1894
|
+
[1m[35m (3.0ms)[0m [1m[36mcommit transaction[0m
|
|
1895
|
+
Rendering know_more/questionnaire/step1.html.haml within layouts/application
|
|
1896
|
+
Rendered know_more/questionnaire/step1.html.haml within layouts/application (4.6ms)
|
|
1897
|
+
Completed 200 OK in 34ms (Views: 26.8ms | ActiveRecord: 3.8ms)
|
|
1898
|
+
|
|
1899
|
+
|
|
1900
|
+
Started PATCH "/know_more/questionnaire/step1" for ::1 at 2016-10-29 13:05:31 +0800
|
|
1901
|
+
|
|
1902
|
+
ActionController::RoutingError (No route matches [PATCH] "/know_more/questionnaire/step1"):
|
|
1903
|
+
|
|
1904
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call'
|
|
1905
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
|
|
1906
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
|
|
1907
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
|
|
1908
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
|
|
1909
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
1910
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
|
|
1911
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
|
|
1912
|
+
sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call'
|
|
1913
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
|
|
1914
|
+
rack (2.0.1) lib/rack/method_override.rb:22:in `call'
|
|
1915
|
+
rack (2.0.1) lib/rack/runtime.rb:22:in `call'
|
|
1916
|
+
activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
1917
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
1918
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
|
|
1919
|
+
rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
|
|
1920
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
1921
|
+
rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
|
|
1922
|
+
/Users/julien/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
|
|
1923
|
+
/Users/julien/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
|
|
1924
|
+
/Users/julien/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
|
|
1925
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout
|
|
1926
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
1927
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms)
|
|
1928
|
+
Rendered collection of /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb [2 times] (2.4ms)
|
|
1929
|
+
Rendered collection of /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb [6 times] (2.8ms)
|
|
1930
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.1ms)
|
|
1931
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
|
|
1932
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.9ms)
|
|
1933
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (133.3ms)
|
|
1934
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-10-29 13:11:04 +0800
|
|
1935
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
1936
|
+
[1m[36mQuestionnaire Load (0.1ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" WHERE "questionnaires"."id" IS NULL LIMIT ?[0m [["LIMIT", 1]]
|
|
1937
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
1938
|
+
[1m[35mSQL (0.4ms)[0m [1m[32mINSERT INTO "questionnaires" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", 2016-10-29 05:11:04 UTC], ["updated_at", 2016-10-29 05:11:04 UTC]]
|
|
1939
|
+
[1m[35m (2.2ms)[0m [1m[36mcommit transaction[0m
|
|
1940
|
+
Rendering know_more/questionnaire/step1.html.haml within layouts/application
|
|
1941
|
+
Rendered know_more/questionnaire/step1.html.haml within layouts/application (5.8ms)
|
|
1942
|
+
Completed 200 OK in 41ms (Views: 25.7ms | ActiveRecord: 3.7ms)
|
|
1943
|
+
|
|
1944
|
+
|
|
1945
|
+
Started PATCH "/know_more/questionnaire/step1" for ::1 at 2016-10-29 13:11:11 +0800
|
|
1946
|
+
|
|
1947
|
+
ActionController::RoutingError (No route matches [PATCH] "/know_more/questionnaire/step1"):
|
|
1948
|
+
|
|
1949
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call'
|
|
1950
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
|
|
1951
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
|
|
1952
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
|
|
1953
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
|
|
1954
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
1955
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
|
|
1956
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
|
|
1957
|
+
sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call'
|
|
1958
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
|
|
1959
|
+
rack (2.0.1) lib/rack/method_override.rb:22:in `call'
|
|
1960
|
+
rack (2.0.1) lib/rack/runtime.rb:22:in `call'
|
|
1961
|
+
activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
1962
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
1963
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
|
|
1964
|
+
rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
|
|
1965
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
1966
|
+
rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
|
|
1967
|
+
/Users/julien/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
|
|
1968
|
+
/Users/julien/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
|
|
1969
|
+
/Users/julien/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
|
|
1970
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout
|
|
1971
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
1972
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms)
|
|
1973
|
+
Rendered collection of /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb [2 times] (1.4ms)
|
|
1974
|
+
Rendered collection of /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb [6 times] (1.8ms)
|
|
1975
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.8ms)
|
|
1976
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
|
|
1977
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.9ms)
|
|
1978
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (131.2ms)
|
|
1979
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-10-29 13:11:46 +0800
|
|
1980
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
1981
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
1982
|
+
[1m[36mQuestionnaire Load (0.2ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" WHERE "questionnaires"."id" IS NULL LIMIT ?[0m [["LIMIT", 1]]
|
|
1983
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
1984
|
+
[1m[35mSQL (0.5ms)[0m [1m[32mINSERT INTO "questionnaires" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", 2016-10-29 05:11:46 UTC], ["updated_at", 2016-10-29 05:11:46 UTC]]
|
|
1985
|
+
[1m[35m (3.9ms)[0m [1m[36mcommit transaction[0m
|
|
1986
|
+
Rendering know_more/questionnaire/step1.html.haml within layouts/application
|
|
1987
|
+
Rendered know_more/questionnaire/step1.html.haml within layouts/application (27.9ms)
|
|
1988
|
+
Completed 200 OK in 367ms (Views: 345.7ms | ActiveRecord: 5.3ms)
|
|
1989
|
+
|
|
1990
|
+
|
|
1991
|
+
Started PATCH "/know_more/questionnaire/step1" for ::1 at 2016-10-29 13:11:52 +0800
|
|
1992
|
+
|
|
1993
|
+
ActionController::RoutingError (No route matches [PATCH] "/know_more/questionnaire/step1"):
|
|
1994
|
+
|
|
1995
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call'
|
|
1996
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
|
|
1997
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
|
|
1998
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
|
|
1999
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
|
|
2000
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
2001
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
|
|
2002
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
|
|
2003
|
+
sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call'
|
|
2004
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
|
|
2005
|
+
rack (2.0.1) lib/rack/method_override.rb:22:in `call'
|
|
2006
|
+
rack (2.0.1) lib/rack/runtime.rb:22:in `call'
|
|
2007
|
+
activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
2008
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
2009
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
|
|
2010
|
+
rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
|
|
2011
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
2012
|
+
rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
|
|
2013
|
+
/Users/julien/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
|
|
2014
|
+
/Users/julien/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
|
|
2015
|
+
/Users/julien/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
|
|
2016
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout
|
|
2017
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
2018
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms)
|
|
2019
|
+
Rendered collection of /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb [2 times] (1.7ms)
|
|
2020
|
+
Rendered collection of /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb [6 times] (1.9ms)
|
|
2021
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms)
|
|
2022
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
|
|
2023
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms)
|
|
2024
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (131.7ms)
|
|
2025
|
+
Started PATCH "/know_more/questionnaire/step1" for ::1 at 2016-10-29 13:12:51 +0800
|
|
2026
|
+
Processing by KnowMore::QuestionnaireController#step1_update as HTML
|
|
2027
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"+4n2tnkcKxd0UgnoViS7grt3D7ZC2DR6eTxr3NHXZ9htc0oXEU9YZveYOGgcSoNVwCbxV0/ReqoS76dQP5Zwaw==", "direction"=>"next", "questionnaire"=>{"attribute1"=>"123"}}
|
|
2028
|
+
[1m[36mQuestionnaire Load (0.1ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" WHERE "questionnaires"."id" IS NULL LIMIT ?[0m [["LIMIT", 1]]
|
|
2029
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2030
|
+
[1m[35mSQL (0.6ms)[0m [1m[32mINSERT INTO "questionnaires" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", 2016-10-29 05:12:51 UTC], ["updated_at", 2016-10-29 05:12:51 UTC]]
|
|
2031
|
+
[1m[35m (2.5ms)[0m [1m[36mcommit transaction[0m
|
|
2032
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2033
|
+
[1m[35m (0.1ms)[0m [1m[36mcommit transaction[0m
|
|
2034
|
+
Redirected to http://localhost:3000/know_more/questionnaire/step2
|
|
2035
|
+
Completed 303 See Other in 18ms (ActiveRecord: 4.2ms)
|
|
2036
|
+
|
|
2037
|
+
|
|
2038
|
+
Started GET "/know_more/questionnaire/step2" for ::1 at 2016-10-29 13:12:51 +0800
|
|
2039
|
+
Processing by KnowMore::QuestionnaireController#step2 as HTML
|
|
2040
|
+
[1m[36mQuestionnaire Load (0.3ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" WHERE "questionnaires"."id" IS NULL LIMIT ?[0m [["LIMIT", 1]]
|
|
2041
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2042
|
+
[1m[35mSQL (0.5ms)[0m [1m[32mINSERT INTO "questionnaires" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", 2016-10-29 05:12:51 UTC], ["updated_at", 2016-10-29 05:12:51 UTC]]
|
|
2043
|
+
[1m[35m (1.0ms)[0m [1m[36mcommit transaction[0m
|
|
2044
|
+
Rendering know_more/questionnaire/step2.html.haml within layouts/application
|
|
2045
|
+
Rendered know_more/questionnaire/step2.html.haml within layouts/application (14.7ms)
|
|
2046
|
+
Completed 200 OK in 64ms (Views: 58.8ms | ActiveRecord: 1.9ms)
|
|
2047
|
+
|
|
2048
|
+
|
|
2049
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-10-29 13:12:54 +0800
|
|
2050
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
2051
|
+
[1m[36mQuestionnaire Load (0.2ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" WHERE "questionnaires"."id" IS NULL LIMIT ?[0m [["LIMIT", 1]]
|
|
2052
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2053
|
+
[1m[35mSQL (0.4ms)[0m [1m[32mINSERT INTO "questionnaires" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", 2016-10-29 05:12:54 UTC], ["updated_at", 2016-10-29 05:12:54 UTC]]
|
|
2054
|
+
[1m[35m (2.7ms)[0m [1m[36mcommit transaction[0m
|
|
2055
|
+
Rendering know_more/questionnaire/step1.html.haml within layouts/application
|
|
2056
|
+
Rendered know_more/questionnaire/step1.html.haml within layouts/application (4.5ms)
|
|
2057
|
+
Completed 200 OK in 29ms (Views: 22.2ms | ActiveRecord: 3.4ms)
|
|
2058
|
+
|
|
2059
|
+
|
|
2060
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-10-29 13:12:59 +0800
|
|
2061
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
2062
|
+
[1m[36mQuestionnaire Load (0.2ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" WHERE "questionnaires"."id" IS NULL LIMIT ?[0m [["LIMIT", 1]]
|
|
2063
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2064
|
+
[1m[35mSQL (0.7ms)[0m [1m[32mINSERT INTO "questionnaires" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", 2016-10-29 05:12:59 UTC], ["updated_at", 2016-10-29 05:12:59 UTC]]
|
|
2065
|
+
[1m[35m (2.4ms)[0m [1m[36mcommit transaction[0m
|
|
2066
|
+
Rendering know_more/questionnaire/step1.html.haml within layouts/application
|
|
2067
|
+
Rendered know_more/questionnaire/step1.html.haml within layouts/application (5.7ms)
|
|
2068
|
+
Completed 200 OK in 32ms (Views: 24.2ms | ActiveRecord: 3.4ms)
|
|
2069
|
+
|
|
2070
|
+
|
|
2071
|
+
Started PATCH "/know_more/questionnaire/step1" for ::1 at 2016-10-29 13:13:04 +0800
|
|
2072
|
+
Processing by KnowMore::QuestionnaireController#step1_update as HTML
|
|
2073
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"+fyK0NwvxSi6N3e8j/Ddmr6yRBORXndjePUB1zfI6FZvBjZxtHy2WTn9RjzFnuVNxeO68pxXObMTJs1b2Yn/5Q==", "direction"=>"next", "questionnaire"=>{"attribute1"=>"123"}}
|
|
2074
|
+
[1m[36mQuestionnaire Load (0.2ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" WHERE "questionnaires"."id" IS NULL LIMIT ?[0m [["LIMIT", 1]]
|
|
2075
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2076
|
+
[1m[35mSQL (0.7ms)[0m [1m[32mINSERT INTO "questionnaires" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", 2016-10-29 05:13:04 UTC], ["updated_at", 2016-10-29 05:13:04 UTC]]
|
|
2077
|
+
[1m[35m (2.0ms)[0m [1m[36mcommit transaction[0m
|
|
2078
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2079
|
+
[1m[35m (0.1ms)[0m [1m[36mcommit transaction[0m
|
|
2080
|
+
Redirected to http://localhost:3000/know_more/questionnaire/step2
|
|
2081
|
+
Completed 303 See Other in 9ms (ActiveRecord: 3.2ms)
|
|
2082
|
+
|
|
2083
|
+
|
|
2084
|
+
Started GET "/know_more/questionnaire/step2" for ::1 at 2016-10-29 13:13:04 +0800
|
|
2085
|
+
Processing by KnowMore::QuestionnaireController#step2 as HTML
|
|
2086
|
+
[1m[36mQuestionnaire Load (0.6ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" WHERE "questionnaires"."id" IS NULL LIMIT ?[0m [["LIMIT", 1]]
|
|
2087
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2088
|
+
[1m[35mSQL (0.4ms)[0m [1m[32mINSERT INTO "questionnaires" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", 2016-10-29 05:13:04 UTC], ["updated_at", 2016-10-29 05:13:04 UTC]]
|
|
2089
|
+
[1m[35m (0.7ms)[0m [1m[36mcommit transaction[0m
|
|
2090
|
+
Rendering know_more/questionnaire/step2.html.haml within layouts/application
|
|
2091
|
+
Rendered know_more/questionnaire/step2.html.haml within layouts/application (5.5ms)
|
|
2092
|
+
Completed 200 OK in 38ms (Views: 32.0ms | ActiveRecord: 1.7ms)
|
|
2093
|
+
|
|
2094
|
+
|
|
2095
|
+
[1m[36mQuestionnaire Load (0.2ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
2096
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-10-29 13:22:43 +0800
|
|
2097
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
2098
|
+
[1m[36mQuestionnaire Load (0.2ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" WHERE "questionnaires"."id" IS NULL LIMIT ?[0m [["LIMIT", 1]]
|
|
2099
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2100
|
+
[1m[35mSQL (0.4ms)[0m [1m[32mINSERT INTO "questionnaires" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", 2016-10-29 05:22:43 UTC], ["updated_at", 2016-10-29 05:22:43 UTC]]
|
|
2101
|
+
[1m[35m (2.6ms)[0m [1m[36mcommit transaction[0m
|
|
2102
|
+
Rendering know_more/questionnaire/step1.html.haml within layouts/application
|
|
2103
|
+
Rendered know_more/questionnaire/step1.html.haml within layouts/application (6.8ms)
|
|
2104
|
+
Completed 200 OK in 49ms (Views: 30.6ms | ActiveRecord: 4.1ms)
|
|
2105
|
+
|
|
2106
|
+
|
|
2107
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-10-29 13:22:45 +0800
|
|
2108
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
2109
|
+
[1m[36mQuestionnaire Load (0.3ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" WHERE "questionnaires"."id" IS NULL LIMIT ?[0m [["LIMIT", 1]]
|
|
2110
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2111
|
+
[1m[35mSQL (0.6ms)[0m [1m[32mINSERT INTO "questionnaires" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", 2016-10-29 05:22:45 UTC], ["updated_at", 2016-10-29 05:22:45 UTC]]
|
|
2112
|
+
[1m[35m (2.7ms)[0m [1m[36mcommit transaction[0m
|
|
2113
|
+
Rendering know_more/questionnaire/step1.html.haml within layouts/application
|
|
2114
|
+
Rendered know_more/questionnaire/step1.html.haml within layouts/application (20.7ms)
|
|
2115
|
+
Completed 200 OK in 81ms (Views: 72.2ms | ActiveRecord: 3.6ms)
|
|
2116
|
+
|
|
2117
|
+
|
|
2118
|
+
Started PATCH "/know_more/questionnaire/step1" for ::1 at 2016-10-29 13:46:37 +0800
|
|
2119
|
+
Processing by KnowMore::QuestionnaireController#step1_update as HTML
|
|
2120
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"rakqwYh4hhLXweJJjMfDngrFV2Ug+SSggw9y/H7CKSA7U5Zg4Cv1Y1QL08nGqftJcZSphC3wanDo3L5wkIM+kw==", "direction"=>"next", "questionnaire"=>{"attribute1"=>"abc"}}
|
|
2121
|
+
[1m[36mQuestionnaire Load (0.2ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" WHERE "questionnaires"."id" IS NULL LIMIT ?[0m [["LIMIT", 1]]
|
|
2122
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2123
|
+
[1m[35mSQL (0.5ms)[0m [1m[32mINSERT INTO "questionnaires" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", 2016-10-29 05:46:37 UTC], ["updated_at", 2016-10-29 05:46:37 UTC]]
|
|
2124
|
+
[1m[35m (0.9ms)[0m [1m[36mcommit transaction[0m
|
|
2125
|
+
Completed 500 Internal Server Error in 37ms (ActiveRecord: 1.8ms)
|
|
2126
|
+
|
|
2127
|
+
|
|
2128
|
+
|
|
2129
|
+
NameError (undefined local variable or method `questionnaire_params' for #<KnowMore::QuestionnaireController:0x007fd9c4718630>
|
|
2130
|
+
Did you mean? questaionnaire_params):
|
|
2131
|
+
|
|
2132
|
+
app/controllers/concerns/know_more/questionnaire_controller_concerns.rb:16:in `_step1_update'
|
|
2133
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout
|
|
2134
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
|
|
2135
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (5.8ms)
|
|
2136
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
2137
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms)
|
|
2138
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
|
|
2139
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms)
|
|
2140
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (94.9ms)
|
|
2141
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-10-29 13:47:14 +0800
|
|
2142
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
2143
|
+
[1m[36mQuestionnaire Load (0.2ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" WHERE "questionnaires"."id" IS NULL LIMIT ?[0m [["LIMIT", 1]]
|
|
2144
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2145
|
+
[1m[35mSQL (1.0ms)[0m [1m[32mINSERT INTO "questionnaires" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", 2016-10-29 05:47:14 UTC], ["updated_at", 2016-10-29 05:47:14 UTC]]
|
|
2146
|
+
[1m[35m (2.2ms)[0m [1m[36mcommit transaction[0m
|
|
2147
|
+
Rendering know_more/questionnaire/step1.html.haml within layouts/application
|
|
2148
|
+
Rendered know_more/questionnaire/step1.html.haml within layouts/application (8.0ms)
|
|
2149
|
+
Completed 200 OK in 63ms (Views: 35.4ms | ActiveRecord: 6.8ms)
|
|
2150
|
+
|
|
2151
|
+
|
|
2152
|
+
Started PATCH "/know_more/questionnaire/step1" for ::1 at 2016-10-29 13:47:18 +0800
|
|
2153
|
+
Processing by KnowMore::QuestionnaireController#step1_update as HTML
|
|
2154
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"HLaCJBJ+gEwHTuDIKy41jPqEeDD4G8nZKV4j+LW6nv6KTD6Fei3zPYSE0UhhQA1bgdWG0fUShwlCje90W/uJTQ==", "direction"=>"next", "questionnaire"=>{"attribute1"=>"111"}}
|
|
2155
|
+
[1m[36mQuestionnaire Load (0.5ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" WHERE "questionnaires"."id" IS NULL LIMIT ?[0m [["LIMIT", 1]]
|
|
2156
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2157
|
+
[1m[35mSQL (0.4ms)[0m [1m[32mINSERT INTO "questionnaires" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", 2016-10-29 05:47:18 UTC], ["updated_at", 2016-10-29 05:47:18 UTC]]
|
|
2158
|
+
[1m[35m (1.0ms)[0m [1m[36mcommit transaction[0m
|
|
2159
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2160
|
+
[1m[35mSQL (0.4ms)[0m [1m[33mUPDATE "questionnaires" SET "attribute1" = ?, "updated_at" = ? WHERE "questionnaires"."id" = ?[0m [["attribute1", "111"], ["updated_at", 2016-10-29 05:47:18 UTC], ["id", 18]]
|
|
2161
|
+
[1m[35m (1.1ms)[0m [1m[36mcommit transaction[0m
|
|
2162
|
+
Redirected to http://localhost:3000/know_more/questionnaire/step2
|
|
2163
|
+
Completed 303 See Other in 14ms (ActiveRecord: 3.6ms)
|
|
2164
|
+
|
|
2165
|
+
|
|
2166
|
+
Started GET "/know_more/questionnaire/step2" for ::1 at 2016-10-29 13:47:18 +0800
|
|
2167
|
+
Processing by KnowMore::QuestionnaireController#step2 as HTML
|
|
2168
|
+
[1m[36mQuestionnaire Load (0.7ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" WHERE "questionnaires"."id" IS NULL LIMIT ?[0m [["LIMIT", 1]]
|
|
2169
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2170
|
+
[1m[35mSQL (0.5ms)[0m [1m[32mINSERT INTO "questionnaires" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", 2016-10-29 05:47:18 UTC], ["updated_at", 2016-10-29 05:47:18 UTC]]
|
|
2171
|
+
[1m[35m (0.7ms)[0m [1m[36mcommit transaction[0m
|
|
2172
|
+
Rendering know_more/questionnaire/step2.html.haml within layouts/application
|
|
2173
|
+
Rendered know_more/questionnaire/step2.html.haml within layouts/application (5.2ms)
|
|
2174
|
+
Completed 200 OK in 38ms (Views: 32.6ms | ActiveRecord: 1.9ms)
|
|
2175
|
+
|
|
2176
|
+
|
|
2177
|
+
[1m[36mQuestionnaire Load (0.1ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
2178
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-10-29 13:59:06 +0800
|
|
2179
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
2180
|
+
[1m[36mQuestionnaire Load (0.2ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" WHERE "questionnaires"."id" IS NULL LIMIT ?[0m [["LIMIT", 1]]
|
|
2181
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2182
|
+
[1m[35mSQL (0.4ms)[0m [1m[32mINSERT INTO "questionnaires" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", 2016-10-29 05:59:06 UTC], ["updated_at", 2016-10-29 05:59:06 UTC]]
|
|
2183
|
+
[1m[35m (2.3ms)[0m [1m[36mcommit transaction[0m
|
|
2184
|
+
Rendering know_more/questionnaire/step1.html.haml within layouts/application
|
|
2185
|
+
Rendered know_more/questionnaire/step1.html.haml within layouts/application (5.5ms)
|
|
2186
|
+
Completed 200 OK in 43ms (Views: 27.8ms | ActiveRecord: 3.7ms)
|
|
2187
|
+
|
|
2188
|
+
|
|
2189
|
+
Started PATCH "/know_more/questionnaire/step1" for ::1 at 2016-10-29 13:59:10 +0800
|
|
2190
|
+
Processing by KnowMore::QuestionnaireController#step1_update as HTML
|
|
2191
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"9h5nhsy27ESxJY+iTfjSSHqu9e4smYll6yllkXfFhExg5NsnpOWfNTLvviIHluqfAf8LDyGQx7WA+qkdmYST/w==", "direction"=>"next", "questionnaire"=>{"attribute1"=>"111"}}
|
|
2192
|
+
[1m[36mQuestionnaire Load (0.2ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" WHERE "questionnaires"."id" IS NULL LIMIT ?[0m [["LIMIT", 1]]
|
|
2193
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2194
|
+
[1m[35mSQL (0.4ms)[0m [1m[32mINSERT INTO "questionnaires" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", 2016-10-29 05:59:10 UTC], ["updated_at", 2016-10-29 05:59:10 UTC]]
|
|
2195
|
+
[1m[35m (0.9ms)[0m [1m[36mcommit transaction[0m
|
|
2196
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2197
|
+
[1m[35mSQL (0.4ms)[0m [1m[33mUPDATE "questionnaires" SET "attribute1" = ?, "updated_at" = ? WHERE "questionnaires"."id" = ?[0m [["attribute1", "111"], ["updated_at", 2016-10-29 05:59:47 UTC], ["id", 21]]
|
|
2198
|
+
[1m[35m (2.5ms)[0m [1m[36mcommit transaction[0m
|
|
2199
|
+
[1m[36mQuestionnaire Load (0.3ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
2200
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2201
|
+
[1m[35m (0.1ms)[0m [1m[36mcommit transaction[0m
|
|
2202
|
+
Redirected to http://localhost:3000/know_more/questionnaire/step2
|
|
2203
|
+
Completed 303 See Other in 69116ms (ActiveRecord: 5.2ms)
|
|
2204
|
+
|
|
2205
|
+
|
|
2206
|
+
Started GET "/know_more/questionnaire/step2" for ::1 at 2016-10-29 14:00:20 +0800
|
|
2207
|
+
Processing by KnowMore::QuestionnaireController#step2 as HTML
|
|
2208
|
+
[1m[36mQuestionnaire Load (0.2ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" WHERE "questionnaires"."id" IS NULL LIMIT ?[0m [["LIMIT", 1]]
|
|
2209
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2210
|
+
[1m[35mSQL (0.4ms)[0m [1m[32mINSERT INTO "questionnaires" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", 2016-10-29 06:00:20 UTC], ["updated_at", 2016-10-29 06:00:20 UTC]]
|
|
2211
|
+
[1m[35m (0.8ms)[0m [1m[36mcommit transaction[0m
|
|
2212
|
+
Rendering know_more/questionnaire/step2.html.haml within layouts/application
|
|
2213
|
+
Rendered know_more/questionnaire/step2.html.haml within layouts/application (4.8ms)
|
|
2214
|
+
Completed 200 OK in 38ms (Views: 33.9ms | ActiveRecord: 1.4ms)
|
|
2215
|
+
|
|
2216
|
+
|
|
2217
|
+
[1m[36mQuestionnaire Load (0.1ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
2218
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-10-29 14:00:55 +0800
|
|
2219
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
2220
|
+
[1m[36mQuestionnaire Load (0.2ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" WHERE "questionnaires"."id" IS NULL LIMIT ?[0m [["LIMIT", 1]]
|
|
2221
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2222
|
+
[1m[35mSQL (1.0ms)[0m [1m[32mINSERT INTO "questionnaires" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", 2016-10-29 06:00:55 UTC], ["updated_at", 2016-10-29 06:00:55 UTC]]
|
|
2223
|
+
[1m[35m (2.5ms)[0m [1m[36mcommit transaction[0m
|
|
2224
|
+
Rendering know_more/questionnaire/step1.html.haml within layouts/application
|
|
2225
|
+
Rendered know_more/questionnaire/step1.html.haml within layouts/application (4.7ms)
|
|
2226
|
+
Completed 200 OK in 30ms (Views: 23.1ms | ActiveRecord: 3.7ms)
|
|
2227
|
+
|
|
2228
|
+
|
|
2229
|
+
Started PATCH "/know_more/questionnaire/step1" for ::1 at 2016-10-29 14:01:01 +0800
|
|
2230
|
+
Processing by KnowMore::QuestionnaireController#step1_update as HTML
|
|
2231
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"1Nx5dS05OJi/gv5QQ0WMu3g01vNCDc21cOnrHNiP8CBCJsXURWpL6TxIz9AJK7RsA2UoEk8Eg2UbOieQNs7nkw==", "direction"=>"next", "questionnaire"=>{"attribute1"=>"111"}}
|
|
2232
|
+
[1m[36mQuestionnaire Load (0.3ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" WHERE "questionnaires"."id" IS NULL LIMIT ?[0m [["LIMIT", 1]]
|
|
2233
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2234
|
+
[1m[35mSQL (0.4ms)[0m [1m[32mINSERT INTO "questionnaires" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", 2016-10-29 06:01:01 UTC], ["updated_at", 2016-10-29 06:01:01 UTC]]
|
|
2235
|
+
[1m[35m (0.8ms)[0m [1m[36mcommit transaction[0m
|
|
2236
|
+
[1m[35m (0.4ms)[0m [1m[36mbegin transaction[0m
|
|
2237
|
+
[1m[35mSQL (1.6ms)[0m [1m[33mUPDATE "questionnaires" SET "attribute1" = ?, "updated_at" = ? WHERE "questionnaires"."id" = ?[0m [["attribute1", "111"], ["updated_at", 2016-10-29 06:01:21 UTC], ["id", 24]]
|
|
2238
|
+
[1m[35m (1.9ms)[0m [1m[36mcommit transaction[0m
|
|
2239
|
+
[1m[36mQuestionnaire Load (0.2ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
2240
|
+
Redirected to http://localhost:3000/know_more/questionnaire/step2
|
|
2241
|
+
Completed 303 See Other in 35915ms (ActiveRecord: 5.5ms)
|
|
2242
|
+
|
|
2243
|
+
|
|
2244
|
+
Started GET "/know_more/questionnaire/step2" for ::1 at 2016-10-29 14:01:37 +0800
|
|
2245
|
+
Processing by KnowMore::QuestionnaireController#step2 as HTML
|
|
2246
|
+
[1m[36mQuestionnaire Load (0.2ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" WHERE "questionnaires"."id" IS NULL LIMIT ?[0m [["LIMIT", 1]]
|
|
2247
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2248
|
+
[1m[35mSQL (0.4ms)[0m [1m[32mINSERT INTO "questionnaires" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", 2016-10-29 06:01:37 UTC], ["updated_at", 2016-10-29 06:01:37 UTC]]
|
|
2249
|
+
[1m[35m (0.8ms)[0m [1m[36mcommit transaction[0m
|
|
2250
|
+
Rendering know_more/questionnaire/step2.html.haml within layouts/application
|
|
2251
|
+
Rendered know_more/questionnaire/step2.html.haml within layouts/application (4.0ms)
|
|
2252
|
+
Completed 200 OK in 33ms (Views: 29.0ms | ActiveRecord: 1.4ms)
|
|
2253
|
+
|
|
2254
|
+
|
|
2255
|
+
[1m[36mQuestionnaire Load (0.2ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
2256
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "questionnaires"[0m
|
|
2257
|
+
[1m[36mQuestionnaire Load (0.4ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires"[0m
|
|
2258
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2259
|
+
[1m[35mSQL (0.5ms)[0m [1m[31mDELETE FROM "questionnaires" WHERE "questionnaires"."id" = ?[0m [["id", 1]]
|
|
2260
|
+
[1m[35m (3.3ms)[0m [1m[36mcommit transaction[0m
|
|
2261
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2262
|
+
[1m[35mSQL (0.3ms)[0m [1m[31mDELETE FROM "questionnaires" WHERE "questionnaires"."id" = ?[0m [["id", 2]]
|
|
2263
|
+
[1m[35m (0.7ms)[0m [1m[36mcommit transaction[0m
|
|
2264
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2265
|
+
[1m[35mSQL (0.3ms)[0m [1m[31mDELETE FROM "questionnaires" WHERE "questionnaires"."id" = ?[0m [["id", 3]]
|
|
2266
|
+
[1m[35m (0.7ms)[0m [1m[36mcommit transaction[0m
|
|
2267
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2268
|
+
[1m[35mSQL (0.3ms)[0m [1m[31mDELETE FROM "questionnaires" WHERE "questionnaires"."id" = ?[0m [["id", 4]]
|
|
2269
|
+
[1m[35m (0.8ms)[0m [1m[36mcommit transaction[0m
|
|
2270
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2271
|
+
[1m[35mSQL (0.4ms)[0m [1m[31mDELETE FROM "questionnaires" WHERE "questionnaires"."id" = ?[0m [["id", 5]]
|
|
2272
|
+
[1m[35m (0.8ms)[0m [1m[36mcommit transaction[0m
|
|
2273
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2274
|
+
[1m[35mSQL (0.3ms)[0m [1m[31mDELETE FROM "questionnaires" WHERE "questionnaires"."id" = ?[0m [["id", 6]]
|
|
2275
|
+
[1m[35m (0.8ms)[0m [1m[36mcommit transaction[0m
|
|
2276
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2277
|
+
[1m[35mSQL (0.3ms)[0m [1m[31mDELETE FROM "questionnaires" WHERE "questionnaires"."id" = ?[0m [["id", 7]]
|
|
2278
|
+
[1m[35m (0.9ms)[0m [1m[36mcommit transaction[0m
|
|
2279
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2280
|
+
[1m[35mSQL (0.3ms)[0m [1m[31mDELETE FROM "questionnaires" WHERE "questionnaires"."id" = ?[0m [["id", 8]]
|
|
2281
|
+
[1m[35m (1.2ms)[0m [1m[36mcommit transaction[0m
|
|
2282
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2283
|
+
[1m[35mSQL (0.3ms)[0m [1m[31mDELETE FROM "questionnaires" WHERE "questionnaires"."id" = ?[0m [["id", 9]]
|
|
2284
|
+
[1m[35m (0.7ms)[0m [1m[36mcommit transaction[0m
|
|
2285
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2286
|
+
[1m[35mSQL (0.3ms)[0m [1m[31mDELETE FROM "questionnaires" WHERE "questionnaires"."id" = ?[0m [["id", 10]]
|
|
2287
|
+
[1m[35m (0.7ms)[0m [1m[36mcommit transaction[0m
|
|
2288
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2289
|
+
[1m[35mSQL (0.3ms)[0m [1m[31mDELETE FROM "questionnaires" WHERE "questionnaires"."id" = ?[0m [["id", 11]]
|
|
2290
|
+
[1m[35m (0.7ms)[0m [1m[36mcommit transaction[0m
|
|
2291
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2292
|
+
[1m[35mSQL (0.2ms)[0m [1m[31mDELETE FROM "questionnaires" WHERE "questionnaires"."id" = ?[0m [["id", 12]]
|
|
2293
|
+
[1m[35m (0.7ms)[0m [1m[36mcommit transaction[0m
|
|
2294
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2295
|
+
[1m[35mSQL (0.2ms)[0m [1m[31mDELETE FROM "questionnaires" WHERE "questionnaires"."id" = ?[0m [["id", 13]]
|
|
2296
|
+
[1m[35m (0.6ms)[0m [1m[36mcommit transaction[0m
|
|
2297
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2298
|
+
[1m[35mSQL (0.2ms)[0m [1m[31mDELETE FROM "questionnaires" WHERE "questionnaires"."id" = ?[0m [["id", 14]]
|
|
2299
|
+
[1m[35m (0.9ms)[0m [1m[36mcommit transaction[0m
|
|
2300
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2301
|
+
[1m[35mSQL (0.3ms)[0m [1m[31mDELETE FROM "questionnaires" WHERE "questionnaires"."id" = ?[0m [["id", 15]]
|
|
2302
|
+
[1m[35m (0.7ms)[0m [1m[36mcommit transaction[0m
|
|
2303
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2304
|
+
[1m[35mSQL (0.3ms)[0m [1m[31mDELETE FROM "questionnaires" WHERE "questionnaires"."id" = ?[0m [["id", 16]]
|
|
2305
|
+
[1m[35m (0.9ms)[0m [1m[36mcommit transaction[0m
|
|
2306
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2307
|
+
[1m[35mSQL (0.3ms)[0m [1m[31mDELETE FROM "questionnaires" WHERE "questionnaires"."id" = ?[0m [["id", 17]]
|
|
2308
|
+
[1m[35m (0.9ms)[0m [1m[36mcommit transaction[0m
|
|
2309
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2310
|
+
[1m[35mSQL (0.6ms)[0m [1m[31mDELETE FROM "questionnaires" WHERE "questionnaires"."id" = ?[0m [["id", 18]]
|
|
2311
|
+
[1m[35m (0.9ms)[0m [1m[36mcommit transaction[0m
|
|
2312
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2313
|
+
[1m[35mSQL (0.3ms)[0m [1m[31mDELETE FROM "questionnaires" WHERE "questionnaires"."id" = ?[0m [["id", 19]]
|
|
2314
|
+
[1m[35m (1.0ms)[0m [1m[36mcommit transaction[0m
|
|
2315
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2316
|
+
[1m[35mSQL (0.3ms)[0m [1m[31mDELETE FROM "questionnaires" WHERE "questionnaires"."id" = ?[0m [["id", 20]]
|
|
2317
|
+
[1m[35m (0.7ms)[0m [1m[36mcommit transaction[0m
|
|
2318
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2319
|
+
[1m[35mSQL (0.2ms)[0m [1m[31mDELETE FROM "questionnaires" WHERE "questionnaires"."id" = ?[0m [["id", 21]]
|
|
2320
|
+
[1m[35m (0.7ms)[0m [1m[36mcommit transaction[0m
|
|
2321
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2322
|
+
[1m[35mSQL (0.3ms)[0m [1m[31mDELETE FROM "questionnaires" WHERE "questionnaires"."id" = ?[0m [["id", 22]]
|
|
2323
|
+
[1m[35m (0.7ms)[0m [1m[36mcommit transaction[0m
|
|
2324
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2325
|
+
[1m[35mSQL (0.2ms)[0m [1m[31mDELETE FROM "questionnaires" WHERE "questionnaires"."id" = ?[0m [["id", 23]]
|
|
2326
|
+
[1m[35m (0.8ms)[0m [1m[36mcommit transaction[0m
|
|
2327
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2328
|
+
[1m[35mSQL (0.3ms)[0m [1m[31mDELETE FROM "questionnaires" WHERE "questionnaires"."id" = ?[0m [["id", 24]]
|
|
2329
|
+
[1m[35m (0.8ms)[0m [1m[36mcommit transaction[0m
|
|
2330
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2331
|
+
[1m[35mSQL (0.2ms)[0m [1m[31mDELETE FROM "questionnaires" WHERE "questionnaires"."id" = ?[0m [["id", 25]]
|
|
2332
|
+
[1m[35m (0.7ms)[0m [1m[36mcommit transaction[0m
|
|
2333
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2334
|
+
[1m[35mSQL (0.5ms)[0m [1m[32mINSERT INTO "questionnaires" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", 2016-10-29 06:21:26 UTC], ["updated_at", 2016-10-29 06:21:26 UTC]]
|
|
2335
|
+
[1m[35m (3.3ms)[0m [1m[36mcommit transaction[0m
|
|
2336
|
+
Started GET "/know_more/questionnaire/step2" for ::1 at 2016-10-29 14:22:25 +0800
|
|
2337
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
2338
|
+
Processing by KnowMore::QuestionnaireController#step2 as HTML
|
|
2339
|
+
Rendering know_more/questionnaire/step2.html.haml within layouts/application
|
|
2340
|
+
Rendered know_more/questionnaire/step2.html.haml within layouts/application (6.8ms)
|
|
2341
|
+
Completed 500 Internal Server Error in 17ms (ActiveRecord: 0.0ms)
|
|
2342
|
+
|
|
2343
|
+
|
|
2344
|
+
|
|
2345
|
+
ActionView::Template::Error (First argument in form cannot contain nil or be empty):
|
|
2346
|
+
1: %h1
|
|
2347
|
+
2: Step 2
|
|
2348
|
+
3: = form_for @questionnaire, url: questionnaire_step2_path do |f|
|
|
2349
|
+
4: = hidden_field_tag :direction, 'next'
|
|
2350
|
+
5:
|
|
2351
|
+
6: = f.text_field :attribute2
|
|
2352
|
+
|
|
2353
|
+
app/views/know_more/questionnaire/step2.html.haml:3:in `_app_views_know_more_questionnaire_step__html_haml___1350394543017376410_70217271594240'
|
|
2354
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout
|
|
2355
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
|
|
2356
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (6.0ms)
|
|
2357
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
2358
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms)
|
|
2359
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
|
|
2360
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (10.7ms)
|
|
2361
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (92.5ms)
|
|
2362
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-10-29 14:22:28 +0800
|
|
2363
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
2364
|
+
Rendering know_more/questionnaire/step1.html.haml within layouts/application
|
|
2365
|
+
Rendered know_more/questionnaire/step1.html.haml within layouts/application (9.4ms)
|
|
2366
|
+
Completed 500 Internal Server Error in 19ms (ActiveRecord: 0.0ms)
|
|
2367
|
+
|
|
2368
|
+
|
|
2369
|
+
|
|
2370
|
+
ActionView::Template::Error (First argument in form cannot contain nil or be empty):
|
|
2371
|
+
1: %h1
|
|
2372
|
+
2: Step 1
|
|
2373
|
+
3: = form_for @questionnaire, url: questionnaire_step1_path do |f|
|
|
2374
|
+
4: = hidden_field_tag :direction, 'next'
|
|
2375
|
+
5:
|
|
2376
|
+
6: = f.text_field :attribute1
|
|
2377
|
+
|
|
2378
|
+
app/views/know_more/questionnaire/step1.html.haml:3:in `_app_views_know_more_questionnaire_step__html_haml__3550328849595975006_70217253244520'
|
|
2379
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout
|
|
2380
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
|
|
2381
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (5.9ms)
|
|
2382
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
2383
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.3ms)
|
|
2384
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
|
|
2385
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms)
|
|
2386
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (84.5ms)
|
|
2387
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "questionnaires"[0m
|
|
2388
|
+
[1m[36mQuestionnaire Load (0.2ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
2389
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-10-29 14:26:58 +0800
|
|
2390
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
2391
|
+
[1m[36mQuestionnaire Load (0.2ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
2392
|
+
Rendering know_more/questionnaire/step1.html.haml within layouts/application
|
|
2393
|
+
Rendered know_more/questionnaire/step1.html.haml within layouts/application (13.0ms)
|
|
2394
|
+
Completed 200 OK in 329ms (Views: 313.3ms | ActiveRecord: 1.1ms)
|
|
2395
|
+
|
|
2396
|
+
|
|
2397
|
+
Started PATCH "/know_more/questionnaire/step1" for ::1 at 2016-10-29 14:27:04 +0800
|
|
2398
|
+
Processing by KnowMore::QuestionnaireController#step1_update as HTML
|
|
2399
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"IGGv962sEe3jlK//qz8QdkiWTaiKoJ02pR1MXLZnnAW2mxNWxf9inGBenn/hUSihM8ezSYep0+bOzoDQWCaLtg==", "direction"=>"next", "questionnaire"=>{"attribute1"=>"111"}}
|
|
2400
|
+
[1m[36mQuestionnaire Load (0.4ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
2401
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2402
|
+
[1m[35mSQL (0.5ms)[0m [1m[33mUPDATE "questionnaires" SET "attribute1" = ?, "updated_at" = ? WHERE "questionnaires"."id" = ?[0m [["attribute1", "111"], ["updated_at", 2016-10-29 06:27:04 UTC], ["id", 26]]
|
|
2403
|
+
[1m[35m (1.0ms)[0m [1m[36mcommit transaction[0m
|
|
2404
|
+
Redirected to http://localhost:3000/know_more/questionnaire/step2
|
|
2405
|
+
Completed 303 See Other in 9ms (ActiveRecord: 2.0ms)
|
|
2406
|
+
|
|
2407
|
+
|
|
2408
|
+
Started GET "/know_more/questionnaire/step2" for ::1 at 2016-10-29 14:27:04 +0800
|
|
2409
|
+
Processing by KnowMore::QuestionnaireController#step2 as HTML
|
|
2410
|
+
[1m[36mQuestionnaire Load (0.3ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
2411
|
+
Rendering know_more/questionnaire/step2.html.haml within layouts/application
|
|
2412
|
+
Rendered know_more/questionnaire/step2.html.haml within layouts/application (5.2ms)
|
|
2413
|
+
Completed 200 OK in 33ms (Views: 31.4ms | ActiveRecord: 0.3ms)
|
|
2414
|
+
|
|
2415
|
+
|
|
2416
|
+
[1m[36mQuestionnaire Load (0.3ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires"[0m
|
|
2417
|
+
Started PATCH "/know_more/questionnaire/step2" for ::1 at 2016-10-29 14:27:25 +0800
|
|
2418
|
+
Processing by KnowMore::QuestionnaireController#step2_update as HTML
|
|
2419
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"LsbpfAyJJMqfjU8b8/KqUMRmA9DRCGmQMcL0d99Xw6i4PFXdZNpXuxxHfpu5nJKHvzf9MdwBJ0BaETj7MRbUGw==", "direction"=>"next", "questionnaire"=>{"attribute2"=>"222"}}
|
|
2420
|
+
[1m[36mQuestionnaire Load (0.4ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
2421
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
2422
|
+
[1m[35mSQL (0.4ms)[0m [1m[33mUPDATE "questionnaires" SET "attribute2" = ?, "updated_at" = ? WHERE "questionnaires"."id" = ?[0m [["attribute2", "222"], ["updated_at", 2016-10-29 06:27:25 UTC], ["id", 26]]
|
|
2423
|
+
[1m[35m (0.7ms)[0m [1m[36mcommit transaction[0m
|
|
2424
|
+
Redirected to http://localhost:3000/know_more/questionnaire/step3
|
|
2425
|
+
Completed 303 See Other in 8ms (ActiveRecord: 1.6ms)
|
|
2426
|
+
|
|
2427
|
+
|
|
2428
|
+
Started GET "/know_more/questionnaire/step3" for ::1 at 2016-10-29 14:27:25 +0800
|
|
2429
|
+
Processing by KnowMore::QuestionnaireController#step3 as HTML
|
|
2430
|
+
[1m[36mQuestionnaire Load (0.3ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
2431
|
+
Rendering know_more/questionnaire/step3.html.haml within layouts/application
|
|
2432
|
+
Rendered know_more/questionnaire/step3.html.haml within layouts/application (4.4ms)
|
|
2433
|
+
Completed 200 OK in 34ms (Views: 32.5ms | ActiveRecord: 0.3ms)
|
|
2434
|
+
|
|
2435
|
+
|
|
2436
|
+
Started GET "/know_more/questionnaire/step3" for ::1 at 2016-10-29 14:27:53 +0800
|
|
2437
|
+
Processing by KnowMore::QuestionnaireController#step3 as HTML
|
|
2438
|
+
[1m[36mQuestionnaire Load (0.3ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
2439
|
+
Rendering know_more/questionnaire/step3.html.haml within layouts/application
|
|
2440
|
+
Rendered know_more/questionnaire/step3.html.haml within layouts/application (3.7ms)
|
|
2441
|
+
Completed 200 OK in 24ms (Views: 22.4ms | ActiveRecord: 0.3ms)
|
|
2442
|
+
|
|
2443
|
+
|
|
2444
|
+
[1m[36mQuestionnaire Load (0.2ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires"[0m
|
|
2445
|
+
Started PATCH "/know_more/questionnaire/step3" for ::1 at 2016-10-29 14:28:03 +0800
|
|
2446
|
+
Processing by KnowMore::QuestionnaireController#step3_update as HTML
|
|
2447
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"epLI8UURyf1E2Owa+zmSE8FSfwAi67UqkUN5Wwb0MCLsaHRQLUK6jMcS3ZqxV6rEugOB4S/i+/r6kLXX6LUnkQ==", "direction"=>"next", "questionnaire"=>{"attribute3"=>"333"}}
|
|
2448
|
+
[1m[36mQuestionnaire Load (0.3ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
2449
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2450
|
+
[1m[35mSQL (0.6ms)[0m [1m[33mUPDATE "questionnaires" SET "attribute3" = ?, "updated_at" = ? WHERE "questionnaires"."id" = ?[0m [["attribute3", "333"], ["updated_at", 2016-10-29 06:28:03 UTC], ["id", 26]]
|
|
2451
|
+
[1m[35m (1.1ms)[0m [1m[36mcommit transaction[0m
|
|
2452
|
+
No template found for KnowMore::QuestionnaireController#step3_update, rendering head :no_content
|
|
2453
|
+
Completed 204 No Content in 154ms (ActiveRecord: 2.2ms)
|
|
2454
|
+
|
|
2455
|
+
|
|
2456
|
+
[1m[36mQuestionnaire Load (0.2ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires"[0m
|
|
2457
|
+
[1m[36mQuestionnaire Load (0.3ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
2458
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-10-29 16:10:23 +0800
|
|
2459
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
2460
|
+
[1m[36mQuestionnaire Load (0.2ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
2461
|
+
Rendering know_more/questionnaire/step1.html.haml within layouts/application
|
|
2462
|
+
Rendered know_more/questionnaire/step1.html.haml within layouts/application (8.0ms)
|
|
2463
|
+
Completed 200 OK in 42ms (Views: 29.4ms | ActiveRecord: 1.1ms)
|
|
2464
|
+
|
|
2465
|
+
|
|
2466
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-10-29 16:10:28 +0800
|
|
2467
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
2468
|
+
[1m[36mQuestionnaire Load (0.2ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
2469
|
+
Rendering know_more/questionnaire/step1.html.haml within layouts/application
|
|
2470
|
+
Rendered know_more/questionnaire/step1.html.haml within layouts/application (5.5ms)
|
|
2471
|
+
Completed 200 OK in 25ms (Views: 23.6ms | ActiveRecord: 0.2ms)
|
|
2472
|
+
|
|
2473
|
+
|
|
2474
|
+
Started PATCH "/know_more/questionnaire/step1" for ::1 at 2016-10-29 16:10:33 +0800
|
|
2475
|
+
Processing by KnowMore::QuestionnaireController#step1_update as HTML
|
|
2476
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"HzTxX1IPICqDFynZJjLS6Xmgr6PD9K5C1aFRlqPm6nCJzk3+OlxTWwDdGFlsXOo+AvFRQs794JK+cp0aTaf9ww==", "direction"=>"next", "questionnaire"=>{"attribute1"=>"111"}}
|
|
2477
|
+
[1m[36mQuestionnaire Load (0.5ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
2478
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2479
|
+
[1m[35m (0.1ms)[0m [1m[36mcommit transaction[0m
|
|
2480
|
+
Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.8ms)
|
|
2481
|
+
|
|
2482
|
+
|
|
2483
|
+
|
|
2484
|
+
NoMethodError (undefined method `progresses' for KnowMore::Questionnaire:Module):
|
|
2485
|
+
|
|
2486
|
+
/Users/julien/Documents/know_more/app/controllers/know_more/questionnaire_controller.rb:40:in `set_previous_status'
|
|
2487
|
+
/Users/julien/Documents/know_more/app/controllers/know_more/questionnaire_controller.rb:26:in `block (2 levels) in <class:QuestionnaireController>'
|
|
2488
|
+
actionpack (5.0.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action'
|
|
2489
|
+
actionpack (5.0.0.1) lib/abstract_controller/base.rb:188:in `process_action'
|
|
2490
|
+
actionpack (5.0.0.1) lib/action_controller/metal/rendering.rb:30:in `process_action'
|
|
2491
|
+
actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
|
|
2492
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:126:in `call'
|
|
2493
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile'
|
|
2494
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:455:in `call'
|
|
2495
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__'
|
|
2496
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks'
|
|
2497
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
|
|
2498
|
+
actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
|
|
2499
|
+
actionpack (5.0.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action'
|
|
2500
|
+
actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
|
|
2501
|
+
activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `block in instrument'
|
|
2502
|
+
activesupport (5.0.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument'
|
|
2503
|
+
activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `instrument'
|
|
2504
|
+
actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
|
2505
|
+
actionpack (5.0.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action'
|
|
2506
|
+
activerecord (5.0.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
|
2507
|
+
actionpack (5.0.0.1) lib/abstract_controller/base.rb:126:in `process'
|
|
2508
|
+
actionview (5.0.0.1) lib/action_view/rendering.rb:30:in `process'
|
|
2509
|
+
actionpack (5.0.0.1) lib/action_controller/metal.rb:190:in `dispatch'
|
|
2510
|
+
actionpack (5.0.0.1) lib/action_controller/metal.rb:262:in `dispatch'
|
|
2511
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch'
|
|
2512
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve'
|
|
2513
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
|
|
2514
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `each'
|
|
2515
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
|
|
2516
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
|
|
2517
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
2518
|
+
railties (5.0.0.1) lib/rails/railtie.rb:193:in `public_send'
|
|
2519
|
+
railties (5.0.0.1) lib/rails/railtie.rb:193:in `method_missing'
|
|
2520
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/mapper.rb:17:in `block in <class:Constraints>'
|
|
2521
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/mapper.rb:46:in `serve'
|
|
2522
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
|
|
2523
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `each'
|
|
2524
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
|
|
2525
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
|
|
2526
|
+
rack (2.0.1) lib/rack/etag.rb:25:in `call'
|
|
2527
|
+
rack (2.0.1) lib/rack/conditional_get.rb:38:in `call'
|
|
2528
|
+
rack (2.0.1) lib/rack/head.rb:12:in `call'
|
|
2529
|
+
rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
|
|
2530
|
+
rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
|
|
2531
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call'
|
|
2532
|
+
activerecord (5.0.0.1) lib/active_record/migration.rb:552:in `call'
|
|
2533
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
|
|
2534
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
|
|
2535
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
|
|
2536
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
|
|
2537
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
|
|
2538
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
2539
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
|
|
2540
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
|
|
2541
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
|
|
2542
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
|
|
2543
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
|
|
2544
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
|
|
2545
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
2546
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
|
|
2547
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
|
|
2548
|
+
sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call'
|
|
2549
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
|
|
2550
|
+
rack (2.0.1) lib/rack/method_override.rb:22:in `call'
|
|
2551
|
+
rack (2.0.1) lib/rack/runtime.rb:22:in `call'
|
|
2552
|
+
activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
2553
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
2554
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
|
|
2555
|
+
rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
|
|
2556
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
2557
|
+
rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
|
|
2558
|
+
/Users/julien/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
|
|
2559
|
+
/Users/julien/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
|
|
2560
|
+
/Users/julien/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
|
|
2561
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout
|
|
2562
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
|
|
2563
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.3ms)
|
|
2564
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
2565
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms)
|
|
2566
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
|
|
2567
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms)
|
|
2568
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (79.0ms)
|
|
2569
|
+
Started PATCH "/know_more/questionnaire/step1" for ::1 at 2016-10-29 16:10:48 +0800
|
|
2570
|
+
Processing by KnowMore::QuestionnaireController#step1_update as HTML
|
|
2571
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"HzTxX1IPICqDFynZJjLS6Xmgr6PD9K5C1aFRlqPm6nCJzk3+OlxTWwDdGFlsXOo+AvFRQs794JK+cp0aTaf9ww==", "direction"=>"next", "questionnaire"=>{"attribute1"=>"111"}}
|
|
2572
|
+
[1m[36mQuestionnaire Load (0.4ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
2573
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2574
|
+
[1m[35m (0.1ms)[0m [1m[36mcommit transaction[0m
|
|
2575
|
+
Redirected to http://localhost:3000/know_more/questionnaire/step2
|
|
2576
|
+
Completed 303 See Other in 24ms (ActiveRecord: 2.1ms)
|
|
2577
|
+
|
|
2578
|
+
|
|
2579
|
+
Started GET "/know_more/questionnaire/step2" for ::1 at 2016-10-29 16:10:48 +0800
|
|
2580
|
+
Processing by KnowMore::QuestionnaireController#step2 as HTML
|
|
2581
|
+
[1m[36mQuestionnaire Load (0.2ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
2582
|
+
Rendering know_more/questionnaire/step2.html.haml within layouts/application
|
|
2583
|
+
Rendered know_more/questionnaire/step2.html.haml within layouts/application (7.9ms)
|
|
2584
|
+
Completed 200 OK in 43ms (Views: 42.0ms | ActiveRecord: 0.2ms)
|
|
2585
|
+
|
|
2586
|
+
|
|
2587
|
+
Started PATCH "/know_more/questionnaire/step2" for ::1 at 2016-10-29 16:10:51 +0800
|
|
2588
|
+
Processing by KnowMore::QuestionnaireController#step2_update as HTML
|
|
2589
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"OXnDI8/yaJlkWrHFnWq2ymZRN5itgoDMsnWueqs2vYyvg3+Cp6Eb6OeQgEXXBI4dHQDJeaCLzhzZpmL2RXeqPw==", "direction"=>"next", "questionnaire"=>{"attribute2"=>"222"}}
|
|
2590
|
+
[1m[36mQuestionnaire Load (0.4ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
2591
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2592
|
+
[1m[35m (0.1ms)[0m [1m[36mcommit transaction[0m
|
|
2593
|
+
Redirected to http://localhost:3000/know_more/questionnaire/step3
|
|
2594
|
+
Completed 303 See Other in 5ms (ActiveRecord: 0.5ms)
|
|
2595
|
+
|
|
2596
|
+
|
|
2597
|
+
Started GET "/know_more/questionnaire/step3" for ::1 at 2016-10-29 16:10:51 +0800
|
|
2598
|
+
Processing by KnowMore::QuestionnaireController#step3 as HTML
|
|
2599
|
+
[1m[36mQuestionnaire Load (0.4ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
2600
|
+
Rendering know_more/questionnaire/step3.html.haml within layouts/application
|
|
2601
|
+
Rendered know_more/questionnaire/step3.html.haml within layouts/application (6.3ms)
|
|
2602
|
+
Completed 200 OK in 40ms (Views: 37.9ms | ActiveRecord: 0.4ms)
|
|
2603
|
+
|
|
2604
|
+
|
|
2605
|
+
[1m[36mQuestionnaire Load (0.3ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" WHERE "questionnaires"."id" = ? LIMIT ?[0m [["id", 26], ["LIMIT", 1]]
|
|
2606
|
+
[1m[36mQuestionnaire Load (0.2ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
2607
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-10-29 16:11:27 +0800
|
|
2608
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
2609
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
2610
|
+
[1m[36mQuestionnaire Load (0.2ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
2611
|
+
Rendering know_more/questionnaire/step1.html.haml within layouts/application
|
|
2612
|
+
Rendered know_more/questionnaire/step1.html.haml within layouts/application (26.8ms)
|
|
2613
|
+
Completed 200 OK in 272ms (Views: 257.9ms | ActiveRecord: 0.9ms)
|
|
2614
|
+
|
|
2615
|
+
|
|
2616
|
+
Started PATCH "/know_more/questionnaire/step1" for ::1 at 2016-10-29 16:11:33 +0800
|
|
2617
|
+
Processing by KnowMore::QuestionnaireController#step1_update as HTML
|
|
2618
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"QBlO2OYbJ7CEtvkKi//OZ6I504ex6XRKj3VkPEfS+xbW4/J5jkhUwQd8yIrBkfaw2WgtZrzgOprkpqiwqZPspQ==", "direction"=>"next", "questionnaire"=>{"attribute1"=>"111"}}
|
|
2619
|
+
[1m[36mQuestionnaire Load (0.3ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
2620
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2621
|
+
[1m[35m (0.1ms)[0m [1m[36mcommit transaction[0m
|
|
2622
|
+
Redirected to http://localhost:3000/know_more/questionnaire/step2
|
|
2623
|
+
Completed 303 See Other in 7ms (ActiveRecord: 0.5ms)
|
|
2624
|
+
|
|
2625
|
+
|
|
2626
|
+
Started GET "/know_more/questionnaire/step2" for ::1 at 2016-10-29 16:11:33 +0800
|
|
2627
|
+
Processing by KnowMore::QuestionnaireController#step2 as HTML
|
|
2628
|
+
[1m[36mQuestionnaire Load (0.3ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
2629
|
+
Rendering know_more/questionnaire/step2.html.haml within layouts/application
|
|
2630
|
+
Rendered know_more/questionnaire/step2.html.haml within layouts/application (22.3ms)
|
|
2631
|
+
Completed 200 OK in 81ms (Views: 79.7ms | ActiveRecord: 0.3ms)
|
|
2632
|
+
|
|
2633
|
+
|
|
2634
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "questionnaires"[0m
|
|
2635
|
+
[1m[36mQuestionnaire Load (0.2ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
2636
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-10-29 16:12:08 +0800
|
|
2637
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
2638
|
+
[1m[36mQuestionnaire Load (0.1ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
2639
|
+
Rendering know_more/questionnaire/step1.html.haml within layouts/application
|
|
2640
|
+
Rendered know_more/questionnaire/step1.html.haml within layouts/application (5.3ms)
|
|
2641
|
+
Completed 200 OK in 35ms (Views: 24.8ms | ActiveRecord: 1.0ms)
|
|
2642
|
+
|
|
2643
|
+
|
|
2644
|
+
Started PATCH "/know_more/questionnaire/step1" for ::1 at 2016-10-29 16:13:00 +0800
|
|
2645
|
+
Processing by KnowMore::QuestionnaireController#step1_update as HTML
|
|
2646
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"lCX4ZTYJiKMUypbDUa6gWUqPQ6jMZnGWuoU1uFfqr6sC30TEXlr70pcAp0MbwJiOMd69ScFvP0bRVvk0uau4GA==", "direction"=>"next", "questionnaire"=>{"attribute1"=>"111"}}
|
|
2647
|
+
[1m[36mQuestionnaire Load (0.2ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
2648
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2649
|
+
[1m[35m (0.1ms)[0m [1m[36mcommit transaction[0m
|
|
2650
|
+
Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.3ms)
|
|
2651
|
+
|
|
2652
|
+
|
|
2653
|
+
|
|
2654
|
+
NoMethodError (undefined method `pry' for #<Binding:0x007fce9b31f058>
|
|
2655
|
+
Did you mean? pretty_print
|
|
2656
|
+
pretty_inspect
|
|
2657
|
+
pretty_print_cycle
|
|
2658
|
+
try):
|
|
2659
|
+
|
|
2660
|
+
/Users/julien/Documents/know_more/app/controllers/know_more/questionnaire_controller.rb:41:in `set_previous_status'
|
|
2661
|
+
/Users/julien/Documents/know_more/app/controllers/know_more/questionnaire_controller.rb:26:in `block (2 levels) in <class:QuestionnaireController>'
|
|
2662
|
+
actionpack (5.0.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action'
|
|
2663
|
+
actionpack (5.0.0.1) lib/abstract_controller/base.rb:188:in `process_action'
|
|
2664
|
+
actionpack (5.0.0.1) lib/action_controller/metal/rendering.rb:30:in `process_action'
|
|
2665
|
+
actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
|
|
2666
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:126:in `call'
|
|
2667
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile'
|
|
2668
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:455:in `call'
|
|
2669
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__'
|
|
2670
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks'
|
|
2671
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
|
|
2672
|
+
actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
|
|
2673
|
+
actionpack (5.0.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action'
|
|
2674
|
+
actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
|
|
2675
|
+
activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `block in instrument'
|
|
2676
|
+
activesupport (5.0.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument'
|
|
2677
|
+
activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `instrument'
|
|
2678
|
+
actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
|
2679
|
+
actionpack (5.0.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action'
|
|
2680
|
+
activerecord (5.0.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
|
2681
|
+
actionpack (5.0.0.1) lib/abstract_controller/base.rb:126:in `process'
|
|
2682
|
+
actionview (5.0.0.1) lib/action_view/rendering.rb:30:in `process'
|
|
2683
|
+
actionpack (5.0.0.1) lib/action_controller/metal.rb:190:in `dispatch'
|
|
2684
|
+
actionpack (5.0.0.1) lib/action_controller/metal.rb:262:in `dispatch'
|
|
2685
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch'
|
|
2686
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve'
|
|
2687
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
|
|
2688
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `each'
|
|
2689
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
|
|
2690
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
|
|
2691
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
2692
|
+
railties (5.0.0.1) lib/rails/railtie.rb:193:in `public_send'
|
|
2693
|
+
railties (5.0.0.1) lib/rails/railtie.rb:193:in `method_missing'
|
|
2694
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/mapper.rb:17:in `block in <class:Constraints>'
|
|
2695
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/mapper.rb:46:in `serve'
|
|
2696
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
|
|
2697
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `each'
|
|
2698
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
|
|
2699
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
|
|
2700
|
+
rack (2.0.1) lib/rack/etag.rb:25:in `call'
|
|
2701
|
+
rack (2.0.1) lib/rack/conditional_get.rb:38:in `call'
|
|
2702
|
+
rack (2.0.1) lib/rack/head.rb:12:in `call'
|
|
2703
|
+
rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
|
|
2704
|
+
rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
|
|
2705
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call'
|
|
2706
|
+
activerecord (5.0.0.1) lib/active_record/migration.rb:552:in `call'
|
|
2707
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
|
|
2708
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
|
|
2709
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
|
|
2710
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
|
|
2711
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
|
|
2712
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
2713
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
|
|
2714
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
|
|
2715
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
|
|
2716
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
|
|
2717
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
|
|
2718
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
|
|
2719
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
2720
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
|
|
2721
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
|
|
2722
|
+
sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call'
|
|
2723
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
|
|
2724
|
+
rack (2.0.1) lib/rack/method_override.rb:22:in `call'
|
|
2725
|
+
rack (2.0.1) lib/rack/runtime.rb:22:in `call'
|
|
2726
|
+
activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
2727
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
2728
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
|
|
2729
|
+
rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
|
|
2730
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
2731
|
+
rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
|
|
2732
|
+
/Users/julien/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
|
|
2733
|
+
/Users/julien/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
|
|
2734
|
+
/Users/julien/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
|
|
2735
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout
|
|
2736
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
|
|
2737
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (5.7ms)
|
|
2738
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
2739
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms)
|
|
2740
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
|
|
2741
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms)
|
|
2742
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (82.6ms)
|
|
2743
|
+
Started PATCH "/know_more/questionnaire/step1" for ::1 at 2016-10-29 16:13:23 +0800
|
|
2744
|
+
Processing by KnowMore::QuestionnaireController#step1_update as HTML
|
|
2745
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"lCX4ZTYJiKMUypbDUa6gWUqPQ6jMZnGWuoU1uFfqr6sC30TEXlr70pcAp0MbwJiOMd69ScFvP0bRVvk0uau4GA==", "direction"=>"next", "questionnaire"=>{"attribute1"=>"111"}}
|
|
2746
|
+
[1m[36mQuestionnaire Load (0.3ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
2747
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2748
|
+
[1m[35m (0.1ms)[0m [1m[36mcommit transaction[0m
|
|
2749
|
+
Redirected to http://localhost:3000/know_more/questionnaire/step2
|
|
2750
|
+
Completed 303 See Other in 22182ms (ActiveRecord: 2.4ms)
|
|
2751
|
+
|
|
2752
|
+
|
|
2753
|
+
Started GET "/know_more/questionnaire/step2" for ::1 at 2016-10-29 16:13:45 +0800
|
|
2754
|
+
Processing by KnowMore::QuestionnaireController#step2 as HTML
|
|
2755
|
+
[1m[36mQuestionnaire Load (0.7ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
2756
|
+
Rendering know_more/questionnaire/step2.html.haml within layouts/application
|
|
2757
|
+
Rendered know_more/questionnaire/step2.html.haml within layouts/application (6.5ms)
|
|
2758
|
+
Completed 200 OK in 41ms (Views: 38.7ms | ActiveRecord: 0.7ms)
|
|
2759
|
+
|
|
2760
|
+
|
|
2761
|
+
Started GET "/know_more/questionnaire/step2" for ::1 at 2016-10-29 16:13:58 +0800
|
|
2762
|
+
Processing by KnowMore::QuestionnaireController#step2 as HTML
|
|
2763
|
+
[1m[36mQuestionnaire Load (0.1ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
2764
|
+
Rendering know_more/questionnaire/step2.html.haml within layouts/application
|
|
2765
|
+
Rendered know_more/questionnaire/step2.html.haml within layouts/application (6.5ms)
|
|
2766
|
+
Completed 200 OK in 44ms (Views: 28.7ms | ActiveRecord: 1.6ms)
|
|
2767
|
+
|
|
2768
|
+
|
|
2769
|
+
Started PATCH "/know_more/questionnaire/step2" for ::1 at 2016-10-29 16:14:07 +0800
|
|
2770
|
+
Processing by KnowMore::QuestionnaireController#step2_update as HTML
|
|
2771
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"0DnNY/5y/+hTEyqS3Fj7lkGz+Gnqz5jIyg7qMU+PjoFGw3HCliGMmdDZGxKWNsNBOuIGiOfG1hih3Sa9oc6ZMg==", "direction"=>"next", "questionnaire"=>{"attribute2"=>"222"}}
|
|
2772
|
+
[1m[36mQuestionnaire Load (0.5ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
2773
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2774
|
+
[1m[35m (0.2ms)[0m [1m[36mcommit transaction[0m
|
|
2775
|
+
Completed 500 Internal Server Error in 249141ms (ActiveRecord: 0.8ms)
|
|
2776
|
+
|
|
2777
|
+
|
|
2778
|
+
|
|
2779
|
+
Started GET "/know_more/questionnaire/step2" for ::1 at 2016-10-29 16:18:16 +0800
|
|
2780
|
+
NoMethodError (undefined method `done?' for "step1":String):
|
|
2781
|
+
|
|
2782
|
+
/Users/julien/Documents/know_more/app/controllers/know_more/questionnaire_controller.rb:34:in `set_next_status'
|
|
2783
|
+
/Users/julien/Documents/know_more/app/controllers/know_more/questionnaire_controller.rb:26:in `block (2 levels) in <class:QuestionnaireController>'
|
|
2784
|
+
actionpack (5.0.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action'
|
|
2785
|
+
actionpack (5.0.0.1) lib/abstract_controller/base.rb:188:in `process_action'
|
|
2786
|
+
actionpack (5.0.0.1) lib/action_controller/metal/rendering.rb:30:in `process_action'
|
|
2787
|
+
actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
|
|
2788
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:126:in `call'
|
|
2789
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile'
|
|
2790
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:455:in `call'
|
|
2791
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__'
|
|
2792
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks'
|
|
2793
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
|
|
2794
|
+
actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
|
|
2795
|
+
actionpack (5.0.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action'
|
|
2796
|
+
actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
|
|
2797
|
+
activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `block in instrument'
|
|
2798
|
+
activesupport (5.0.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument'
|
|
2799
|
+
activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `instrument'
|
|
2800
|
+
actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
|
2801
|
+
actionpack (5.0.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action'
|
|
2802
|
+
activerecord (5.0.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
|
2803
|
+
actionpack (5.0.0.1) lib/abstract_controller/base.rb:126:in `process'
|
|
2804
|
+
actionview (5.0.0.1) lib/action_view/rendering.rb:30:in `process'
|
|
2805
|
+
actionpack (5.0.0.1) lib/action_controller/metal.rb:190:in `dispatch'
|
|
2806
|
+
actionpack (5.0.0.1) lib/action_controller/metal.rb:262:in `dispatch'
|
|
2807
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch'
|
|
2808
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve'
|
|
2809
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
|
|
2810
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `each'
|
|
2811
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
|
|
2812
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
|
|
2813
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
2814
|
+
railties (5.0.0.1) lib/rails/railtie.rb:193:in `public_send'
|
|
2815
|
+
railties (5.0.0.1) lib/rails/railtie.rb:193:in `method_missing'
|
|
2816
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/mapper.rb:17:in `block in <class:Constraints>'
|
|
2817
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/mapper.rb:46:in `serve'
|
|
2818
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
|
|
2819
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `each'
|
|
2820
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
|
|
2821
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
|
|
2822
|
+
rack (2.0.1) lib/rack/etag.rb:25:in `call'
|
|
2823
|
+
rack (2.0.1) lib/rack/conditional_get.rb:38:in `call'
|
|
2824
|
+
rack (2.0.1) lib/rack/head.rb:12:in `call'
|
|
2825
|
+
rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
|
|
2826
|
+
rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
|
|
2827
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call'
|
|
2828
|
+
activerecord (5.0.0.1) lib/active_record/migration.rb:552:in `call'
|
|
2829
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
|
|
2830
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
|
|
2831
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
|
|
2832
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
|
|
2833
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
|
|
2834
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
2835
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
|
|
2836
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
|
|
2837
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
|
|
2838
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
|
|
2839
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
|
|
2840
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
|
|
2841
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
2842
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
|
|
2843
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
|
|
2844
|
+
sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call'
|
|
2845
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
|
|
2846
|
+
rack (2.0.1) lib/rack/method_override.rb:22:in `call'
|
|
2847
|
+
rack (2.0.1) lib/rack/runtime.rb:22:in `call'
|
|
2848
|
+
activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
2849
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
2850
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
|
|
2851
|
+
rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
|
|
2852
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
2853
|
+
rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
|
|
2854
|
+
/Users/julien/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
|
|
2855
|
+
/Users/julien/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
|
|
2856
|
+
/Users/julien/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
|
|
2857
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout
|
|
2858
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
|
|
2859
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.6ms)
|
|
2860
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
2861
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms)
|
|
2862
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
|
|
2863
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms)
|
|
2864
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (71.7ms)
|
|
2865
|
+
Processing by KnowMore::QuestionnaireController#step2 as HTML
|
|
2866
|
+
[1m[36mQuestionnaire Load (0.1ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
2867
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2868
|
+
[1m[35mSQL (0.6ms)[0m [1m[33mUPDATE "questionnaires" SET "progress" = ?, "updated_at" = ? WHERE "questionnaires"."id" = ?[0m [["progress", 1], ["updated_at", 2016-10-29 08:18:16 UTC], ["id", 26]]
|
|
2869
|
+
[1m[35m (2.6ms)[0m [1m[36mcommit transaction[0m
|
|
2870
|
+
Rendering know_more/questionnaire/step2.html.haml within layouts/application
|
|
2871
|
+
Rendered know_more/questionnaire/step2.html.haml within layouts/application (5.8ms)
|
|
2872
|
+
Completed 200 OK in 45ms (Views: 28.5ms | ActiveRecord: 4.2ms)
|
|
2873
|
+
|
|
2874
|
+
|
|
2875
|
+
[1m[36mQuestionnaire Load (0.2ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
2876
|
+
Started PATCH "/know_more/questionnaire/step2" for ::1 at 2016-10-29 16:18:27 +0800
|
|
2877
|
+
Processing by KnowMore::QuestionnaireController#step2_update as HTML
|
|
2878
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"VVVbBIanCh+UDCUmiMqPCz6eEN2hzbADRd5c/GCKnlXDr+el7vR5bhfGFKbCpLfcRc/uPKzE/tMuDZBwjsuJ5g==", "direction"=>"next", "questionnaire"=>{"attribute2"=>"222"}}
|
|
2879
|
+
[1m[36mQuestionnaire Load (0.6ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
2880
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2881
|
+
[1m[35m (0.1ms)[0m [1m[36mcommit transaction[0m
|
|
2882
|
+
Redirected to http://localhost:3000/know_more/questionnaire/step3
|
|
2883
|
+
Completed 303 See Other in 5ms (ActiveRecord: 0.8ms)
|
|
2884
|
+
|
|
2885
|
+
|
|
2886
|
+
Started GET "/know_more/questionnaire/step3" for ::1 at 2016-10-29 16:18:27 +0800
|
|
2887
|
+
Processing by KnowMore::QuestionnaireController#step3 as HTML
|
|
2888
|
+
[1m[36mQuestionnaire Load (0.5ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
2889
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2890
|
+
[1m[35mSQL (0.5ms)[0m [1m[33mUPDATE "questionnaires" SET "progress" = ?, "updated_at" = ? WHERE "questionnaires"."id" = ?[0m [["progress", 2], ["updated_at", 2016-10-29 08:18:27 UTC], ["id", 26]]
|
|
2891
|
+
[1m[35m (2.6ms)[0m [1m[36mcommit transaction[0m
|
|
2892
|
+
Rendering know_more/questionnaire/step3.html.haml within layouts/application
|
|
2893
|
+
Rendered know_more/questionnaire/step3.html.haml within layouts/application (11.0ms)
|
|
2894
|
+
Completed 200 OK in 55ms (Views: 44.6ms | ActiveRecord: 3.7ms)
|
|
2895
|
+
|
|
2896
|
+
|
|
2897
|
+
Started PATCH "/know_more/questionnaire/step2" for ::1 at 2016-10-29 16:18:27 +0800
|
|
2898
|
+
Processing by KnowMore::QuestionnaireController#step2_update as HTML
|
|
2899
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"VVVbBIanCh+UDCUmiMqPCz6eEN2hzbADRd5c/GCKnlXDr+el7vR5bhfGFKbCpLfcRc/uPKzE/tMuDZBwjsuJ5g==", "direction"=>"next", "questionnaire"=>{"attribute2"=>"222"}}
|
|
2900
|
+
[1m[36mQuestionnaire Load (0.5ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
2901
|
+
[1m[35m (0.7ms)[0m [1m[36mbegin transaction[0m
|
|
2902
|
+
[1m[35m (0.4ms)[0m [1m[36mcommit transaction[0m
|
|
2903
|
+
Redirected to http://localhost:3000/know_more/questionnaire/step3
|
|
2904
|
+
Completed 303 See Other in 7ms (ActiveRecord: 1.5ms)
|
|
2905
|
+
|
|
2906
|
+
|
|
2907
|
+
Started GET "/know_more/questionnaire/step3" for ::1 at 2016-10-29 16:18:27 +0800
|
|
2908
|
+
Processing by KnowMore::QuestionnaireController#step3 as HTML
|
|
2909
|
+
[1m[36mQuestionnaire Load (0.3ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
2910
|
+
Rendering know_more/questionnaire/step3.html.haml within layouts/application
|
|
2911
|
+
Rendered know_more/questionnaire/step3.html.haml within layouts/application (7.2ms)
|
|
2912
|
+
Completed 200 OK in 32ms (Views: 30.5ms | ActiveRecord: 0.3ms)
|
|
2913
|
+
|
|
2914
|
+
|
|
2915
|
+
[1m[36mQuestionnaire Load (0.2ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
2916
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-10-29 16:18:34 +0800
|
|
2917
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
2918
|
+
[1m[36mQuestionnaire Load (0.2ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
2919
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2920
|
+
[1m[35mSQL (0.4ms)[0m [1m[33mUPDATE "questionnaires" SET "progress" = ?, "updated_at" = ? WHERE "questionnaires"."id" = ?[0m [["progress", 0], ["updated_at", 2016-10-29 08:18:34 UTC], ["id", 26]]
|
|
2921
|
+
[1m[35m (0.7ms)[0m [1m[36mcommit transaction[0m
|
|
2922
|
+
Rendering know_more/questionnaire/step1.html.haml within layouts/application
|
|
2923
|
+
Rendered know_more/questionnaire/step1.html.haml within layouts/application (4.7ms)
|
|
2924
|
+
Completed 200 OK in 31ms (Views: 25.9ms | ActiveRecord: 1.4ms)
|
|
2925
|
+
|
|
2926
|
+
|
|
2927
|
+
[1m[36mQuestionnaire Load (0.2ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
2928
|
+
Started PATCH "/know_more/questionnaire/step1" for ::1 at 2016-10-29 16:19:00 +0800
|
|
2929
|
+
Processing by KnowMore::QuestionnaireController#step1_update as HTML
|
|
2930
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"seuKA5vJ4oDwjeVlJ2wWB5tl6Z1iW7CT9PsvsJCfgzUnETai85qR8XNH1OVtAi7Q4DQXfG9S/kOfKOM8ft6Uhg==", "direction"=>"next", "questionnaire"=>{"attribute1"=>"111"}}
|
|
2931
|
+
[1m[36mQuestionnaire Load (0.5ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
2932
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2933
|
+
[1m[35m (0.1ms)[0m [1m[36mcommit transaction[0m
|
|
2934
|
+
Redirected to http://localhost:3000/know_more/questionnaire/step2
|
|
2935
|
+
Completed 303 See Other in 4ms (ActiveRecord: 0.7ms)
|
|
2936
|
+
|
|
2937
|
+
|
|
2938
|
+
Started GET "/know_more/questionnaire/step2" for ::1 at 2016-10-29 16:19:00 +0800
|
|
2939
|
+
Processing by KnowMore::QuestionnaireController#step2 as HTML
|
|
2940
|
+
[1m[36mQuestionnaire Load (0.3ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
2941
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
2942
|
+
[1m[35mSQL (0.6ms)[0m [1m[33mUPDATE "questionnaires" SET "progress" = ?, "updated_at" = ? WHERE "questionnaires"."id" = ?[0m [["progress", 1], ["updated_at", 2016-10-29 08:19:00 UTC], ["id", 26]]
|
|
2943
|
+
[1m[35m (1.0ms)[0m [1m[36mcommit transaction[0m
|
|
2944
|
+
Rendering know_more/questionnaire/step2.html.haml within layouts/application
|
|
2945
|
+
Rendered know_more/questionnaire/step2.html.haml within layouts/application (6.1ms)
|
|
2946
|
+
Completed 200 OK in 45ms (Views: 36.7ms | ActiveRecord: 2.1ms)
|
|
2947
|
+
|
|
2948
|
+
|
|
2949
|
+
Started PATCH "/know_more/questionnaire/step2" for ::1 at 2016-10-29 16:19:02 +0800
|
|
2950
|
+
Processing by KnowMore::QuestionnaireController#step2_update as HTML
|
|
2951
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"tVM61fyCCpaYsYthzP5ZL429A8n2ssCeDLH6d2uvk84jqYZ0lNF55xt7uuGGkGH49uz9KPu7jk5nYjb7he6EfQ==", "direction"=>"next", "questionnaire"=>{"attribute2"=>"222"}}
|
|
2952
|
+
[1m[36mQuestionnaire Load (0.4ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
2953
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2954
|
+
[1m[35m (0.2ms)[0m [1m[36mcommit transaction[0m
|
|
2955
|
+
Redirected to http://localhost:3000/know_more/questionnaire/step3
|
|
2956
|
+
Completed 303 See Other in 7ms (ActiveRecord: 0.7ms)
|
|
2957
|
+
|
|
2958
|
+
|
|
2959
|
+
Started GET "/know_more/questionnaire/step3" for ::1 at 2016-10-29 16:19:02 +0800
|
|
2960
|
+
Processing by KnowMore::QuestionnaireController#step3 as HTML
|
|
2961
|
+
[1m[36mQuestionnaire Load (0.3ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
2962
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2963
|
+
[1m[35mSQL (0.5ms)[0m [1m[33mUPDATE "questionnaires" SET "progress" = ?, "updated_at" = ? WHERE "questionnaires"."id" = ?[0m [["progress", 2], ["updated_at", 2016-10-29 08:19:02 UTC], ["id", 26]]
|
|
2964
|
+
[1m[35m (1.5ms)[0m [1m[36mcommit transaction[0m
|
|
2965
|
+
Rendering know_more/questionnaire/step3.html.haml within layouts/application
|
|
2966
|
+
Rendered know_more/questionnaire/step3.html.haml within layouts/application (12.8ms)
|
|
2967
|
+
Completed 200 OK in 49ms (Views: 41.7ms | ActiveRecord: 2.4ms)
|
|
2968
|
+
|
|
2969
|
+
|
|
2970
|
+
Started PATCH "/know_more/questionnaire/step3" for ::1 at 2016-10-29 16:19:07 +0800
|
|
2971
|
+
Processing by KnowMore::QuestionnaireController#step3_update as HTML
|
|
2972
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"ZPgcus/Ww+nIiPY8GVzGOxWMObfzu+l2v2NADm2qP6zyAqAbp4WwmEtCx7xTMv7sbt3HVv6yp6bUsIyCg+soHw==", "direction"=>"previous", "questionnaire"=>{"attribute3"=>"333"}}
|
|
2973
|
+
[1m[36mQuestionnaire Load (0.4ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
2974
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2975
|
+
[1m[35m (0.2ms)[0m [1m[36mcommit transaction[0m
|
|
2976
|
+
Redirected to http://localhost:3000/know_more/questionnaire/step2
|
|
2977
|
+
Completed 303 See Other in 7ms (ActiveRecord: 0.7ms)
|
|
2978
|
+
|
|
2979
|
+
|
|
2980
|
+
Started GET "/know_more/questionnaire/step2" for ::1 at 2016-10-29 16:19:07 +0800
|
|
2981
|
+
Processing by KnowMore::QuestionnaireController#step2 as HTML
|
|
2982
|
+
[1m[36mQuestionnaire Load (0.4ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
2983
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2984
|
+
[1m[35mSQL (0.4ms)[0m [1m[33mUPDATE "questionnaires" SET "progress" = ?, "updated_at" = ? WHERE "questionnaires"."id" = ?[0m [["progress", 1], ["updated_at", 2016-10-29 08:19:07 UTC], ["id", 26]]
|
|
2985
|
+
[1m[35m (1.6ms)[0m [1m[36mcommit transaction[0m
|
|
2986
|
+
Rendering know_more/questionnaire/step2.html.haml within layouts/application
|
|
2987
|
+
Rendered know_more/questionnaire/step2.html.haml within layouts/application (16.2ms)
|
|
2988
|
+
Completed 200 OK in 49ms (Views: 42.6ms | ActiveRecord: 2.4ms)
|
|
2989
|
+
|
|
2990
|
+
|
|
2991
|
+
Started PATCH "/know_more/questionnaire/step2" for ::1 at 2016-10-29 16:19:16 +0800
|
|
2992
|
+
Processing by KnowMore::QuestionnaireController#step2_update as HTML
|
|
2993
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"9uJERAcO8pgCH2mnYp0lf26f0bBOpfgY42ueIyxRQ4BgGPjlb12B6YHVWCco8x2oFc4vUUOstsiIuFKvwhBUMw==", "direction"=>"next", "questionnaire"=>{"attribute2"=>"333"}}
|
|
2994
|
+
[1m[36mQuestionnaire Load (0.3ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
2995
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2996
|
+
[1m[35mSQL (0.5ms)[0m [1m[33mUPDATE "questionnaires" SET "attribute2" = ?, "updated_at" = ? WHERE "questionnaires"."id" = ?[0m [["attribute2", "333"], ["updated_at", 2016-10-29 08:19:16 UTC], ["id", 26]]
|
|
2997
|
+
[1m[35m (0.8ms)[0m [1m[36mcommit transaction[0m
|
|
2998
|
+
Redirected to http://localhost:3000/know_more/questionnaire/step3
|
|
2999
|
+
Completed 303 See Other in 8ms (ActiveRecord: 1.6ms)
|
|
3000
|
+
|
|
3001
|
+
|
|
3002
|
+
Started GET "/know_more/questionnaire/step3" for ::1 at 2016-10-29 16:19:16 +0800
|
|
3003
|
+
Processing by KnowMore::QuestionnaireController#step3 as HTML
|
|
3004
|
+
[1m[36mQuestionnaire Load (0.3ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
3005
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
3006
|
+
[1m[35mSQL (0.4ms)[0m [1m[33mUPDATE "questionnaires" SET "progress" = ?, "updated_at" = ? WHERE "questionnaires"."id" = ?[0m [["progress", 2], ["updated_at", 2016-10-29 08:19:16 UTC], ["id", 26]]
|
|
3007
|
+
[1m[35m (0.8ms)[0m [1m[36mcommit transaction[0m
|
|
3008
|
+
Rendering know_more/questionnaire/step3.html.haml within layouts/application
|
|
3009
|
+
Rendered know_more/questionnaire/step3.html.haml within layouts/application (6.3ms)
|
|
3010
|
+
Completed 200 OK in 44ms (Views: 37.6ms | ActiveRecord: 1.6ms)
|
|
3011
|
+
|
|
3012
|
+
|
|
3013
|
+
Started PATCH "/know_more/questionnaire/step3" for ::1 at 2016-10-29 16:19:19 +0800
|
|
3014
|
+
Processing by KnowMore::QuestionnaireController#step3_update as HTML
|
|
3015
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"MqgZZFlmeIAt3W046PuNbaJI8hZT23GPm46ATNIs0G6kUqXFMTUL8a4XXLiilbW62RkM917SP1/wXUzAPG3H3Q==", "direction"=>"next", "questionnaire"=>{"attribute3"=>"444"}}
|
|
3016
|
+
[1m[36mQuestionnaire Load (0.3ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
3017
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
3018
|
+
[1m[35mSQL (0.4ms)[0m [1m[33mUPDATE "questionnaires" SET "attribute3" = ?, "updated_at" = ? WHERE "questionnaires"."id" = ?[0m [["attribute3", "444"], ["updated_at", 2016-10-29 08:19:19 UTC], ["id", 26]]
|
|
3019
|
+
[1m[35m (0.8ms)[0m [1m[36mcommit transaction[0m
|
|
3020
|
+
No template found for KnowMore::QuestionnaireController#step3_update, rendering head :no_content
|
|
3021
|
+
Completed 204 No Content in 136ms (ActiveRecord: 1.6ms)
|
|
3022
|
+
|
|
3023
|
+
|
|
3024
|
+
[1m[36mQuestionnaire Load (0.2ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
3025
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-10-29 16:19:35 +0800
|
|
3026
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
3027
|
+
[1m[36mQuestionnaire Load (0.2ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
3028
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
3029
|
+
[1m[35mSQL (0.5ms)[0m [1m[33mUPDATE "questionnaires" SET "progress" = ?, "updated_at" = ? WHERE "questionnaires"."id" = ?[0m [["progress", 0], ["updated_at", 2016-10-29 08:19:35 UTC], ["id", 26]]
|
|
3030
|
+
[1m[35m (0.9ms)[0m [1m[36mcommit transaction[0m
|
|
3031
|
+
Rendering know_more/questionnaire/step1.html.haml within layouts/application
|
|
3032
|
+
Rendered know_more/questionnaire/step1.html.haml within layouts/application (6.2ms)
|
|
3033
|
+
Completed 200 OK in 34ms (Views: 28.6ms | ActiveRecord: 1.6ms)
|
|
3034
|
+
|
|
3035
|
+
|
|
3036
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-10-29 16:34:04 +0800
|
|
3037
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
3038
|
+
[1m[36mQuestionnaire Load (0.3ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
3039
|
+
Rendering know_more/questionnaire/step1.html.haml within layouts/application
|
|
3040
|
+
Rendered know_more/questionnaire/step1.html.haml within layouts/application (4.6ms)
|
|
3041
|
+
Completed 200 OK in 31ms (Views: 28.5ms | ActiveRecord: 0.3ms)
|
|
3042
|
+
|
|
3043
|
+
|
|
3044
|
+
Started PATCH "/know_more/questionnaire/step1" for ::1 at 2016-10-29 16:34:09 +0800
|
|
3045
|
+
Processing by KnowMore::QuestionnaireController#step1_update as HTML
|
|
3046
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"akeixeaoGyMo1OBKXmKOv8Y3vvsCxtwgEGB+RK4Bmgv8vR5kjvtoUqse0coUDLZovWZAGg/PkvB7s7LIQECNuA==", "direction"=>"next", "questionnaire"=>{"attribute1"=>"111"}}
|
|
3047
|
+
[1m[36mQuestionnaire Load (0.2ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
3048
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
3049
|
+
[1m[35m (0.1ms)[0m [1m[36mcommit transaction[0m
|
|
3050
|
+
Redirected to http://localhost:3000/know_more/questionnaire/step2
|
|
3051
|
+
Completed 303 See Other in 4ms (ActiveRecord: 0.3ms)
|
|
3052
|
+
|
|
3053
|
+
|
|
3054
|
+
Started GET "/know_more/questionnaire/step2" for ::1 at 2016-10-29 16:34:09 +0800
|
|
3055
|
+
Processing by KnowMore::QuestionnaireController#step2 as HTML
|
|
3056
|
+
[1m[36mQuestionnaire Load (0.2ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
3057
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
3058
|
+
[1m[35mSQL (0.5ms)[0m [1m[33mUPDATE "questionnaires" SET "progress" = ?, "updated_at" = ? WHERE "questionnaires"."id" = ?[0m [["progress", 1], ["updated_at", 2016-10-29 08:34:09 UTC], ["id", 26]]
|
|
3059
|
+
[1m[35m (0.9ms)[0m [1m[36mcommit transaction[0m
|
|
3060
|
+
Rendering know_more/questionnaire/step2.html.haml within layouts/application
|
|
3061
|
+
Rendered know_more/questionnaire/step2.html.haml within layouts/application (6.3ms)
|
|
3062
|
+
Completed 200 OK in 37ms (Views: 32.3ms | ActiveRecord: 1.6ms)
|
|
3063
|
+
|
|
3064
|
+
|
|
3065
|
+
Started PATCH "/know_more/questionnaire/step2" for ::1 at 2016-10-29 16:34:13 +0800
|
|
3066
|
+
Processing by KnowMore::QuestionnaireController#step2_update as HTML
|
|
3067
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"gNONIg6xnbYjJTD17CS57TGe0gyyBTmgF98f1fDvqeoWKTGDZuLux6DvAXWmSoE6Ss8s7b8Md3B8DNNZHq6+WQ==", "direction"=>"next", "questionnaire"=>{"attribute2"=>"333"}}
|
|
3068
|
+
[1m[36mQuestionnaire Load (0.3ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
3069
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
3070
|
+
[1m[35m (0.1ms)[0m [1m[36mcommit transaction[0m
|
|
3071
|
+
Redirected to http://localhost:3000/know_more/questionnaire/step3
|
|
3072
|
+
Completed 303 See Other in 4ms (ActiveRecord: 0.4ms)
|
|
3073
|
+
|
|
3074
|
+
|
|
3075
|
+
Started GET "/know_more/questionnaire/step3" for ::1 at 2016-10-29 16:34:13 +0800
|
|
3076
|
+
Processing by KnowMore::QuestionnaireController#step3 as HTML
|
|
3077
|
+
[1m[36mQuestionnaire Load (0.2ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
3078
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
3079
|
+
[1m[35mSQL (0.4ms)[0m [1m[33mUPDATE "questionnaires" SET "progress" = ?, "updated_at" = ? WHERE "questionnaires"."id" = ?[0m [["progress", 2], ["updated_at", 2016-10-29 08:34:13 UTC], ["id", 26]]
|
|
3080
|
+
[1m[35m (0.8ms)[0m [1m[36mcommit transaction[0m
|
|
3081
|
+
Rendering know_more/questionnaire/step3.html.haml within layouts/application
|
|
3082
|
+
Rendered know_more/questionnaire/step3.html.haml within layouts/application (6.0ms)
|
|
3083
|
+
Completed 200 OK in 37ms (Views: 32.0ms | ActiveRecord: 1.5ms)
|
|
3084
|
+
|
|
3085
|
+
|
|
3086
|
+
Started PATCH "/know_more/questionnaire/step3" for ::1 at 2016-10-29 16:34:16 +0800
|
|
3087
|
+
Processing by KnowMore::QuestionnaireController#step3_update as HTML
|
|
3088
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"PvvLihT/3+yTJQa+Wqv5693l+NNoyxlOeA5sCad1zFOoAXcrfKysnRDvNz4QxcE8prQGMmXCV54T3aCFSTTb4A==", "direction"=>"previous", "questionnaire"=>{"attribute3"=>"444"}}
|
|
3089
|
+
[1m[36mQuestionnaire Load (0.3ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
3090
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
3091
|
+
[1m[35m (0.2ms)[0m [1m[36mcommit transaction[0m
|
|
3092
|
+
Redirected to http://localhost:3000/know_more/questionnaire/step2
|
|
3093
|
+
Completed 303 See Other in 5ms (ActiveRecord: 0.5ms)
|
|
3094
|
+
|
|
3095
|
+
|
|
3096
|
+
Started GET "/know_more/questionnaire/step2" for ::1 at 2016-10-29 16:34:16 +0800
|
|
3097
|
+
Processing by KnowMore::QuestionnaireController#step2 as HTML
|
|
3098
|
+
[1m[36mQuestionnaire Load (1.3ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
3099
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
3100
|
+
[1m[35mSQL (0.5ms)[0m [1m[33mUPDATE "questionnaires" SET "progress" = ?, "updated_at" = ? WHERE "questionnaires"."id" = ?[0m [["progress", 1], ["updated_at", 2016-10-29 08:34:16 UTC], ["id", 26]]
|
|
3101
|
+
[1m[35m (2.1ms)[0m [1m[36mcommit transaction[0m
|
|
3102
|
+
Rendering know_more/questionnaire/step2.html.haml within layouts/application
|
|
3103
|
+
Rendered know_more/questionnaire/step2.html.haml within layouts/application (6.0ms)
|
|
3104
|
+
Completed 200 OK in 44ms (Views: 33.5ms | ActiveRecord: 4.1ms)
|
|
3105
|
+
|
|
3106
|
+
|
|
3107
|
+
Started PATCH "/know_more/questionnaire/step2" for ::1 at 2016-10-29 16:34:17 +0800
|
|
3108
|
+
Processing by KnowMore::QuestionnaireController#step2_update as HTML
|
|
3109
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"DiRRxEEvKozOqH6XK2kFK7LH6Roa+b98/kR63/IuArOY3u1lKXxZ/U1iTxdhBz38yZYX+xfw8ayVl7ZTHG8VAA==", "direction"=>"previous", "questionnaire"=>{"attribute2"=>"333"}}
|
|
3110
|
+
[1m[36mQuestionnaire Load (0.4ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
3111
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
3112
|
+
[1m[35m (0.1ms)[0m [1m[36mcommit transaction[0m
|
|
3113
|
+
Redirected to http://localhost:3000/know_more/questionnaire/step1
|
|
3114
|
+
Completed 303 See Other in 5ms (ActiveRecord: 0.6ms)
|
|
3115
|
+
|
|
3116
|
+
|
|
3117
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-10-29 16:34:17 +0800
|
|
3118
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
3119
|
+
[1m[36mQuestionnaire Load (0.2ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
3120
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
3121
|
+
[1m[35mSQL (0.4ms)[0m [1m[33mUPDATE "questionnaires" SET "progress" = ?, "updated_at" = ? WHERE "questionnaires"."id" = ?[0m [["progress", 0], ["updated_at", 2016-10-29 08:34:17 UTC], ["id", 26]]
|
|
3122
|
+
[1m[35m (1.7ms)[0m [1m[36mcommit transaction[0m
|
|
3123
|
+
Rendering know_more/questionnaire/step1.html.haml within layouts/application
|
|
3124
|
+
Rendered know_more/questionnaire/step1.html.haml within layouts/application (7.8ms)
|
|
3125
|
+
Completed 200 OK in 53ms (Views: 47.3ms | ActiveRecord: 2.4ms)
|
|
3126
|
+
|
|
3127
|
+
|
|
3128
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-10-29 16:37:01 +0800
|
|
3129
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
3130
|
+
[1m[36mQuestionnaire Load (0.1ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
3131
|
+
Rendering know_more/questionnaire/step1.html.haml within layouts/application
|
|
3132
|
+
Rendered know_more/questionnaire/step1.html.haml within layouts/application (4.8ms)
|
|
3133
|
+
Completed 200 OK in 37ms (Views: 27.3ms | ActiveRecord: 0.9ms)
|
|
3134
|
+
|
|
3135
|
+
|
|
3136
|
+
Started GET "/" for ::1 at 2016-10-29 16:37:42 +0800
|
|
3137
|
+
Processing by WelcomeController#hello as HTML
|
|
3138
|
+
[1m[36mQuestionnaire Load (0.1ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
3139
|
+
Completed 500 Internal Server Error in 25ms (ActiveRecord: 0.8ms)
|
|
3140
|
+
|
|
3141
|
+
|
|
3142
|
+
|
|
3143
|
+
NoMethodError (undefined method `questionnaire_step1_url' for #<WelcomeController:0x007fce9951bc50>):
|
|
3144
|
+
|
|
3145
|
+
/Users/julien/Documents/know_more/app/controllers/know_more/controller_helpers.rb:10:in `require_questionnaire!'
|
|
3146
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:382:in `block in make_lambda'
|
|
3147
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:169:in `block (2 levels) in halting'
|
|
3148
|
+
actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:12:in `block (2 levels) in <module:Callbacks>'
|
|
3149
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:170:in `block in halting'
|
|
3150
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:454:in `block in call'
|
|
3151
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:454:in `each'
|
|
3152
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:454:in `call'
|
|
3153
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__'
|
|
3154
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks'
|
|
3155
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
|
|
3156
|
+
actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
|
|
3157
|
+
actionpack (5.0.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action'
|
|
3158
|
+
actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
|
|
3159
|
+
activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `block in instrument'
|
|
3160
|
+
activesupport (5.0.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument'
|
|
3161
|
+
activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `instrument'
|
|
3162
|
+
actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
|
3163
|
+
actionpack (5.0.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action'
|
|
3164
|
+
activerecord (5.0.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
|
3165
|
+
actionpack (5.0.0.1) lib/abstract_controller/base.rb:126:in `process'
|
|
3166
|
+
actionview (5.0.0.1) lib/action_view/rendering.rb:30:in `process'
|
|
3167
|
+
actionpack (5.0.0.1) lib/action_controller/metal.rb:190:in `dispatch'
|
|
3168
|
+
actionpack (5.0.0.1) lib/action_controller/metal.rb:262:in `dispatch'
|
|
3169
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch'
|
|
3170
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve'
|
|
3171
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
|
|
3172
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `each'
|
|
3173
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
|
|
3174
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
|
|
3175
|
+
rack (2.0.1) lib/rack/etag.rb:25:in `call'
|
|
3176
|
+
rack (2.0.1) lib/rack/conditional_get.rb:25:in `call'
|
|
3177
|
+
rack (2.0.1) lib/rack/head.rb:12:in `call'
|
|
3178
|
+
rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
|
|
3179
|
+
rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
|
|
3180
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call'
|
|
3181
|
+
activerecord (5.0.0.1) lib/active_record/migration.rb:552:in `call'
|
|
3182
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
|
|
3183
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
|
|
3184
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
|
|
3185
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
|
|
3186
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
|
|
3187
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
3188
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
|
|
3189
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
|
|
3190
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
|
|
3191
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
|
|
3192
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
|
|
3193
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
|
|
3194
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
3195
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
|
|
3196
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
|
|
3197
|
+
sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call'
|
|
3198
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
|
|
3199
|
+
rack (2.0.1) lib/rack/method_override.rb:22:in `call'
|
|
3200
|
+
rack (2.0.1) lib/rack/runtime.rb:22:in `call'
|
|
3201
|
+
activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
3202
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
3203
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
|
|
3204
|
+
rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
|
|
3205
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
3206
|
+
rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
|
|
3207
|
+
/Users/julien/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
|
|
3208
|
+
/Users/julien/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
|
|
3209
|
+
/Users/julien/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
|
|
3210
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout
|
|
3211
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
|
|
3212
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.3ms)
|
|
3213
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
3214
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms)
|
|
3215
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
|
|
3216
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms)
|
|
3217
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (73.2ms)
|
|
3218
|
+
Started GET "/" for ::1 at 2016-10-29 16:37:42 +0800
|
|
3219
|
+
Processing by WelcomeController#hello as HTML
|
|
3220
|
+
[1m[36mQuestionnaire Load (0.3ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
3221
|
+
Completed 500 Internal Server Error in 19ms (ActiveRecord: 0.3ms)
|
|
3222
|
+
|
|
3223
|
+
|
|
3224
|
+
|
|
3225
|
+
NoMethodError (undefined method `questionnaire_step1_url' for #<WelcomeController:0x007fce9b21f6a8>):
|
|
3226
|
+
|
|
3227
|
+
/Users/julien/Documents/know_more/app/controllers/know_more/controller_helpers.rb:10:in `require_questionnaire!'
|
|
3228
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:382:in `block in make_lambda'
|
|
3229
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:169:in `block (2 levels) in halting'
|
|
3230
|
+
actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:12:in `block (2 levels) in <module:Callbacks>'
|
|
3231
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:170:in `block in halting'
|
|
3232
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:454:in `block in call'
|
|
3233
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:454:in `each'
|
|
3234
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:454:in `call'
|
|
3235
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__'
|
|
3236
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks'
|
|
3237
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
|
|
3238
|
+
actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
|
|
3239
|
+
actionpack (5.0.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action'
|
|
3240
|
+
actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
|
|
3241
|
+
activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `block in instrument'
|
|
3242
|
+
activesupport (5.0.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument'
|
|
3243
|
+
activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `instrument'
|
|
3244
|
+
actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
|
3245
|
+
actionpack (5.0.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action'
|
|
3246
|
+
activerecord (5.0.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
|
3247
|
+
actionpack (5.0.0.1) lib/abstract_controller/base.rb:126:in `process'
|
|
3248
|
+
actionview (5.0.0.1) lib/action_view/rendering.rb:30:in `process'
|
|
3249
|
+
actionpack (5.0.0.1) lib/action_controller/metal.rb:190:in `dispatch'
|
|
3250
|
+
actionpack (5.0.0.1) lib/action_controller/metal.rb:262:in `dispatch'
|
|
3251
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch'
|
|
3252
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve'
|
|
3253
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
|
|
3254
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `each'
|
|
3255
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
|
|
3256
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
|
|
3257
|
+
rack (2.0.1) lib/rack/etag.rb:25:in `call'
|
|
3258
|
+
rack (2.0.1) lib/rack/conditional_get.rb:25:in `call'
|
|
3259
|
+
rack (2.0.1) lib/rack/head.rb:12:in `call'
|
|
3260
|
+
rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
|
|
3261
|
+
rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
|
|
3262
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call'
|
|
3263
|
+
activerecord (5.0.0.1) lib/active_record/migration.rb:552:in `call'
|
|
3264
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
|
|
3265
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
|
|
3266
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
|
|
3267
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
|
|
3268
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
|
|
3269
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
3270
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
|
|
3271
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
|
|
3272
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
|
|
3273
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
|
|
3274
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
|
|
3275
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
|
|
3276
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
3277
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
|
|
3278
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
|
|
3279
|
+
sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call'
|
|
3280
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
|
|
3281
|
+
rack (2.0.1) lib/rack/method_override.rb:22:in `call'
|
|
3282
|
+
rack (2.0.1) lib/rack/runtime.rb:22:in `call'
|
|
3283
|
+
activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
3284
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
3285
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
|
|
3286
|
+
rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
|
|
3287
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
3288
|
+
rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
|
|
3289
|
+
/Users/julien/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
|
|
3290
|
+
/Users/julien/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
|
|
3291
|
+
/Users/julien/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
|
|
3292
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout
|
|
3293
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
|
|
3294
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.0ms)
|
|
3295
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
3296
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms)
|
|
3297
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
|
|
3298
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
|
|
3299
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (72.7ms)
|
|
3300
|
+
Started GET "/" for ::1 at 2016-10-29 16:38:17 +0800
|
|
3301
|
+
Processing by WelcomeController#hello as HTML
|
|
3302
|
+
[1m[36mQuestionnaire Load (0.1ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
3303
|
+
Completed 500 Internal Server Error in 85741ms (ActiveRecord: 0.9ms)
|
|
3304
|
+
|
|
3305
|
+
|
|
3306
|
+
|
|
3307
|
+
NoMethodError (undefined method `questionnaire_step1_url' for #<WelcomeController:0x007fce96ac68d8>):
|
|
3308
|
+
|
|
3309
|
+
Started GET "/" for ::1 at 2016-10-29 16:39:43 +0800
|
|
3310
|
+
/Users/julien/Documents/know_more/app/controllers/know_more/controller_helpers.rb:11:in `require_questionnaire!'
|
|
3311
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:382:in `block in make_lambda'
|
|
3312
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:169:in `block (2 levels) in halting'
|
|
3313
|
+
actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:12:in `block (2 levels) in <module:Callbacks>'
|
|
3314
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:170:in `block in halting'
|
|
3315
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:454:in `block in call'
|
|
3316
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:454:in `each'
|
|
3317
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:454:in `call'
|
|
3318
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__'
|
|
3319
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks'
|
|
3320
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
|
|
3321
|
+
actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
|
|
3322
|
+
actionpack (5.0.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action'
|
|
3323
|
+
actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
|
|
3324
|
+
activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `block in instrument'
|
|
3325
|
+
activesupport (5.0.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument'
|
|
3326
|
+
activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `instrument'
|
|
3327
|
+
actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
|
3328
|
+
actionpack (5.0.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action'
|
|
3329
|
+
activerecord (5.0.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
|
3330
|
+
actionpack (5.0.0.1) lib/abstract_controller/base.rb:126:in `process'
|
|
3331
|
+
actionview (5.0.0.1) lib/action_view/rendering.rb:30:in `process'
|
|
3332
|
+
actionpack (5.0.0.1) lib/action_controller/metal.rb:190:in `dispatch'
|
|
3333
|
+
actionpack (5.0.0.1) lib/action_controller/metal.rb:262:in `dispatch'
|
|
3334
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch'
|
|
3335
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve'
|
|
3336
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
|
|
3337
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `each'
|
|
3338
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
|
|
3339
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
|
|
3340
|
+
rack (2.0.1) lib/rack/etag.rb:25:in `call'
|
|
3341
|
+
rack (2.0.1) lib/rack/conditional_get.rb:25:in `call'
|
|
3342
|
+
rack (2.0.1) lib/rack/head.rb:12:in `call'
|
|
3343
|
+
rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
|
|
3344
|
+
rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
|
|
3345
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call'
|
|
3346
|
+
activerecord (5.0.0.1) lib/active_record/migration.rb:552:in `call'
|
|
3347
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
|
|
3348
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
|
|
3349
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
|
|
3350
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
|
|
3351
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
|
|
3352
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
3353
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
|
|
3354
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
|
|
3355
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
|
|
3356
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
|
|
3357
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
|
|
3358
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
|
|
3359
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
3360
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
|
|
3361
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
|
|
3362
|
+
sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call'
|
|
3363
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
|
|
3364
|
+
rack (2.0.1) lib/rack/method_override.rb:22:in `call'
|
|
3365
|
+
rack (2.0.1) lib/rack/runtime.rb:22:in `call'
|
|
3366
|
+
activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
3367
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
3368
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
|
|
3369
|
+
rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
|
|
3370
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
3371
|
+
rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
|
|
3372
|
+
/Users/julien/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
|
|
3373
|
+
/Users/julien/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
|
|
3374
|
+
/Users/julien/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
|
|
3375
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout
|
|
3376
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
|
|
3377
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.7ms)
|
|
3378
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
3379
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms)
|
|
3380
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
|
|
3381
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms)
|
|
3382
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (77.1ms)
|
|
3383
|
+
Processing by WelcomeController#hello as HTML
|
|
3384
|
+
[1m[36mQuestionnaire Load (0.2ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
3385
|
+
Completed 500 Internal Server Error in 27ms (ActiveRecord: 0.9ms)
|
|
3386
|
+
|
|
3387
|
+
|
|
3388
|
+
|
|
3389
|
+
NoMethodError (undefined method `know_more.questionnaire_step1_url' for #<WelcomeController:0x007fce9b4a6e08>):
|
|
3390
|
+
|
|
3391
|
+
/Users/julien/Documents/know_more/app/controllers/know_more/controller_helpers.rb:10:in `require_questionnaire!'
|
|
3392
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:382:in `block in make_lambda'
|
|
3393
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:169:in `block (2 levels) in halting'
|
|
3394
|
+
actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:12:in `block (2 levels) in <module:Callbacks>'
|
|
3395
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:170:in `block in halting'
|
|
3396
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:454:in `block in call'
|
|
3397
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:454:in `each'
|
|
3398
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:454:in `call'
|
|
3399
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__'
|
|
3400
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks'
|
|
3401
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
|
|
3402
|
+
actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
|
|
3403
|
+
actionpack (5.0.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action'
|
|
3404
|
+
actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
|
|
3405
|
+
activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `block in instrument'
|
|
3406
|
+
activesupport (5.0.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument'
|
|
3407
|
+
activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `instrument'
|
|
3408
|
+
actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
|
3409
|
+
actionpack (5.0.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action'
|
|
3410
|
+
activerecord (5.0.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
|
3411
|
+
actionpack (5.0.0.1) lib/abstract_controller/base.rb:126:in `process'
|
|
3412
|
+
actionview (5.0.0.1) lib/action_view/rendering.rb:30:in `process'
|
|
3413
|
+
actionpack (5.0.0.1) lib/action_controller/metal.rb:190:in `dispatch'
|
|
3414
|
+
actionpack (5.0.0.1) lib/action_controller/metal.rb:262:in `dispatch'
|
|
3415
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch'
|
|
3416
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve'
|
|
3417
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
|
|
3418
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `each'
|
|
3419
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
|
|
3420
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
|
|
3421
|
+
rack (2.0.1) lib/rack/etag.rb:25:in `call'
|
|
3422
|
+
rack (2.0.1) lib/rack/conditional_get.rb:25:in `call'
|
|
3423
|
+
rack (2.0.1) lib/rack/head.rb:12:in `call'
|
|
3424
|
+
rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
|
|
3425
|
+
rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
|
|
3426
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call'
|
|
3427
|
+
activerecord (5.0.0.1) lib/active_record/migration.rb:552:in `call'
|
|
3428
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
|
|
3429
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
|
|
3430
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
|
|
3431
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
|
|
3432
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
|
|
3433
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
3434
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
|
|
3435
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
|
|
3436
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
|
|
3437
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
|
|
3438
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
|
|
3439
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
|
|
3440
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
3441
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
|
|
3442
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
|
|
3443
|
+
sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call'
|
|
3444
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
|
|
3445
|
+
rack (2.0.1) lib/rack/method_override.rb:22:in `call'
|
|
3446
|
+
rack (2.0.1) lib/rack/runtime.rb:22:in `call'
|
|
3447
|
+
activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
3448
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
3449
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
|
|
3450
|
+
rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
|
|
3451
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
3452
|
+
rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
|
|
3453
|
+
/Users/julien/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
|
|
3454
|
+
/Users/julien/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
|
|
3455
|
+
/Users/julien/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
|
|
3456
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout
|
|
3457
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
|
|
3458
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.7ms)
|
|
3459
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
3460
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms)
|
|
3461
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
|
|
3462
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
|
|
3463
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (72.2ms)
|
|
3464
|
+
Started GET "/" for ::1 at 2016-10-29 16:40:25 +0800
|
|
3465
|
+
Processing by WelcomeController#hello as HTML
|
|
3466
|
+
[1m[36mQuestionnaire Load (0.2ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
3467
|
+
Redirected to http://localhost:3000/know_more/questionnaire/step1
|
|
3468
|
+
Filter chain halted as :require_questionnaire! rendered or redirected
|
|
3469
|
+
Completed 303 See Other in 13665ms (ActiveRecord: 1.8ms)
|
|
3470
|
+
|
|
3471
|
+
|
|
3472
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-10-29 16:40:39 +0800
|
|
3473
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
3474
|
+
[1m[36mQuestionnaire Load (0.3ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
3475
|
+
Rendering know_more/questionnaire/step1.html.haml within layouts/application
|
|
3476
|
+
Rendered know_more/questionnaire/step1.html.haml within layouts/application (8.0ms)
|
|
3477
|
+
Completed 200 OK in 38ms (Views: 36.4ms | ActiveRecord: 0.3ms)
|
|
3478
|
+
|
|
3479
|
+
|
|
3480
|
+
Started GET "/" for ::1 at 2016-10-29 16:40:44 +0800
|
|
3481
|
+
Processing by WelcomeController#hello as HTML
|
|
3482
|
+
[1m[36mQuestionnaire Load (0.3ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
3483
|
+
Redirected to http://localhost:3000/know_more/questionnaire/step1
|
|
3484
|
+
Filter chain halted as :require_questionnaire! rendered or redirected
|
|
3485
|
+
Started GET "/" for ::1 at 2016-10-29 16:40:54 +0800
|
|
3486
|
+
Completed 303 See Other in 9929ms (ActiveRecord: 0.3ms)
|
|
3487
|
+
|
|
3488
|
+
|
|
3489
|
+
Processing by WelcomeController#hello as HTML
|
|
3490
|
+
[1m[36mQuestionnaire Load (0.2ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
3491
|
+
Redirected to http://localhost:3000/know_more/questionnaire/step1
|
|
3492
|
+
Filter chain halted as :require_questionnaire! rendered or redirected
|
|
3493
|
+
Completed 303 See Other in 14ms (ActiveRecord: 1.2ms)
|
|
3494
|
+
|
|
3495
|
+
|
|
3496
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-10-29 16:40:54 +0800
|
|
3497
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
3498
|
+
[1m[36mQuestionnaire Load (0.2ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
3499
|
+
Rendering know_more/questionnaire/step1.html.haml within layouts/application
|
|
3500
|
+
Rendered know_more/questionnaire/step1.html.haml within layouts/application (6.2ms)
|
|
3501
|
+
Completed 200 OK in 27ms (Views: 25.7ms | ActiveRecord: 0.2ms)
|
|
3502
|
+
|
|
3503
|
+
|
|
3504
|
+
Started PATCH "/know_more/questionnaire/step1" for ::1 at 2016-10-29 16:41:00 +0800
|
|
3505
|
+
Processing by KnowMore::QuestionnaireController#step1_update as HTML
|
|
3506
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"a+hG9bVNBkCyjgWcyfx8r4+QUHOhPoZzByTMf2h9cKX9EvpU3R51MTFENByDkkR49MGukqw3yKNs9wDzhjxnFg==", "direction"=>"next", "questionnaire"=>{"attribute1"=>"111"}}
|
|
3507
|
+
[1m[36mQuestionnaire Load (0.5ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
3508
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
3509
|
+
[1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
|
3510
|
+
Redirected to http://localhost:3000/know_more/questionnaire/step2
|
|
3511
|
+
Completed 303 See Other in 4ms (ActiveRecord: 0.6ms)
|
|
3512
|
+
|
|
3513
|
+
|
|
3514
|
+
Started GET "/know_more/questionnaire/step2" for ::1 at 2016-10-29 16:41:00 +0800
|
|
3515
|
+
Processing by KnowMore::QuestionnaireController#step2 as HTML
|
|
3516
|
+
[1m[36mQuestionnaire Load (0.2ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
3517
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
3518
|
+
[1m[35mSQL (0.5ms)[0m [1m[33mUPDATE "questionnaires" SET "progress" = ?, "updated_at" = ? WHERE "questionnaires"."id" = ?[0m [["progress", 1], ["updated_at", 2016-10-29 08:41:00 UTC], ["id", 26]]
|
|
3519
|
+
[1m[35m (0.9ms)[0m [1m[36mcommit transaction[0m
|
|
3520
|
+
Rendering know_more/questionnaire/step2.html.haml within layouts/application
|
|
3521
|
+
Rendered know_more/questionnaire/step2.html.haml within layouts/application (5.1ms)
|
|
3522
|
+
Completed 200 OK in 42ms (Views: 36.2ms | ActiveRecord: 1.8ms)
|
|
3523
|
+
|
|
3524
|
+
|
|
3525
|
+
Started PATCH "/know_more/questionnaire/step2" for ::1 at 2016-10-29 16:41:02 +0800
|
|
3526
|
+
Processing by KnowMore::QuestionnaireController#step2_update as HTML
|
|
3527
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"AllMpKGFxPF+S1oW78+KN/aO2pxOu/rQUwQfsitUMQeUo/AFyda3gP2Ba5alobLgjd8kfUOytAA419M+xRUmtA==", "direction"=>"next", "questionnaire"=>{"attribute2"=>"333"}}
|
|
3528
|
+
[1m[36mQuestionnaire Load (0.3ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
3529
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
3530
|
+
[1m[35m (0.1ms)[0m [1m[36mcommit transaction[0m
|
|
3531
|
+
Redirected to http://localhost:3000/know_more/questionnaire/step3
|
|
3532
|
+
Completed 303 See Other in 5ms (ActiveRecord: 0.5ms)
|
|
3533
|
+
|
|
3534
|
+
|
|
3535
|
+
Started GET "/know_more/questionnaire/step3" for ::1 at 2016-10-29 16:41:02 +0800
|
|
3536
|
+
Processing by KnowMore::QuestionnaireController#step3 as HTML
|
|
3537
|
+
[1m[36mQuestionnaire Load (0.2ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
3538
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
3539
|
+
[1m[35mSQL (0.4ms)[0m [1m[33mUPDATE "questionnaires" SET "progress" = ?, "updated_at" = ? WHERE "questionnaires"."id" = ?[0m [["progress", 2], ["updated_at", 2016-10-29 08:41:02 UTC], ["id", 26]]
|
|
3540
|
+
[1m[35m (1.0ms)[0m [1m[36mcommit transaction[0m
|
|
3541
|
+
Rendering know_more/questionnaire/step3.html.haml within layouts/application
|
|
3542
|
+
Rendered know_more/questionnaire/step3.html.haml within layouts/application (8.9ms)
|
|
3543
|
+
Completed 200 OK in 40ms (Views: 33.5ms | ActiveRecord: 1.7ms)
|
|
3544
|
+
|
|
3545
|
+
|
|
3546
|
+
Started GET "/" for ::1 at 2016-10-29 16:41:06 +0800
|
|
3547
|
+
Processing by WelcomeController#hello as HTML
|
|
3548
|
+
[1m[36mQuestionnaire Load (0.3ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
3549
|
+
Redirected to http://localhost:3000/know_more/questionnaire/step3
|
|
3550
|
+
Filter chain halted as :require_questionnaire! rendered or redirected
|
|
3551
|
+
Completed 303 See Other in 3ms (ActiveRecord: 0.3ms)
|
|
3552
|
+
|
|
3553
|
+
|
|
3554
|
+
Started GET "/know_more/questionnaire/step3" for ::1 at 2016-10-29 16:41:06 +0800
|
|
3555
|
+
Processing by KnowMore::QuestionnaireController#step3 as HTML
|
|
3556
|
+
[1m[36mQuestionnaire Load (0.3ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
3557
|
+
Rendering know_more/questionnaire/step3.html.haml within layouts/application
|
|
3558
|
+
Rendered know_more/questionnaire/step3.html.haml within layouts/application (7.9ms)
|
|
3559
|
+
Completed 200 OK in 46ms (Views: 43.9ms | ActiveRecord: 0.3ms)
|
|
3560
|
+
|
|
3561
|
+
|
|
3562
|
+
Started GET "/know_more/questionnaire/step3" for ::1 at 2016-10-29 22:02:29 +0800
|
|
3563
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
3564
|
+
Processing by KnowMore::QuestionnaireController#step3 as HTML
|
|
3565
|
+
[1m[36mQuestionnaire Load (0.4ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
3566
|
+
Rendering know_more/questionnaire/step3.html.haml within layouts/application
|
|
3567
|
+
Rendered know_more/questionnaire/step3.html.haml within layouts/application (31.0ms)
|
|
3568
|
+
Completed 200 OK in 391ms (Views: 374.6ms | ActiveRecord: 1.1ms)
|
|
3569
|
+
|
|
3570
|
+
|
|
3571
|
+
Started GET "/know_more/questionnaire/step3" for ::1 at 2016-10-29 22:03:33 +0800
|
|
3572
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
3573
|
+
Processing by KnowMore::QuestionnaireController#step3 as HTML
|
|
3574
|
+
[1m[36mQuestionnaire Load (0.2ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
3575
|
+
Rendering know_more/questionnaire/step3.html.haml within layouts/application
|
|
3576
|
+
Rendered know_more/questionnaire/step3.html.haml within layouts/application (41.8ms)
|
|
3577
|
+
Completed 200 OK in 333ms (Views: 317.2ms | ActiveRecord: 1.5ms)
|
|
3578
|
+
|
|
3579
|
+
|
|
3580
|
+
Started GET "/" for ::1 at 2016-10-29 22:03:37 +0800
|
|
3581
|
+
Processing by WelcomeController#hello as HTML
|
|
3582
|
+
[1m[36mQuestionnaire Load (0.3ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
3583
|
+
Redirected to http://localhost:3000/know_more/questionnaire/step3
|
|
3584
|
+
Filter chain halted as :require_questionnaire! rendered or redirected
|
|
3585
|
+
Completed 303 See Other in 4ms (ActiveRecord: 0.3ms)
|
|
3586
|
+
|
|
3587
|
+
|
|
3588
|
+
Started GET "/know_more/questionnaire/step3" for ::1 at 2016-10-29 22:03:37 +0800
|
|
3589
|
+
Processing by KnowMore::QuestionnaireController#step3 as HTML
|
|
3590
|
+
[1m[36mQuestionnaire Load (0.2ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
3591
|
+
Rendering know_more/questionnaire/step3.html.haml within layouts/application
|
|
3592
|
+
Rendered know_more/questionnaire/step3.html.haml within layouts/application (4.0ms)
|
|
3593
|
+
Completed 200 OK in 24ms (Views: 21.8ms | ActiveRecord: 0.2ms)
|
|
3594
|
+
|
|
3595
|
+
|
|
3596
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-10-29 22:10:28 +0800
|
|
3597
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
3598
|
+
[1m[36mQuestionnaire Load (0.3ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
3599
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
3600
|
+
[1m[35mSQL (0.6ms)[0m [1m[33mUPDATE "questionnaires" SET "progress" = ?, "updated_at" = ? WHERE "questionnaires"."id" = ?[0m [["progress", 0], ["updated_at", 2016-10-29 14:10:28 UTC], ["id", 26]]
|
|
3601
|
+
[1m[35m (2.3ms)[0m [1m[36mcommit transaction[0m
|
|
3602
|
+
Rendering know_more/questionnaire/step1.html.haml within layouts/application
|
|
3603
|
+
Rendered know_more/questionnaire/step1.html.haml within layouts/application (6.0ms)
|
|
3604
|
+
Completed 200 OK in 60ms (Views: 28.2ms | ActiveRecord: 4.9ms)
|
|
3605
|
+
|
|
3606
|
+
|
|
3607
|
+
Started PATCH "/know_more/questionnaire/step1" for ::1 at 2016-10-29 22:10:31 +0800
|
|
3608
|
+
Processing by KnowMore::QuestionnaireController#step1_update as HTML
|
|
3609
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"8Mgj62qhgUGHdaNvQBx9rCRKF5bUKLE5Cy7rrxKlwuBmMp9KAvLyMAS/ku8KckV7Xxvpd9kh/+lg/Scj/OTVUw==", "direction"=>"next", "questionnaire"=>{"attribute1"=>"111"}}
|
|
3610
|
+
[1m[36mQuestionnaire Load (0.3ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
3611
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
|
3612
|
+
[1m[35m (0.1ms)[0m [1m[36mcommit transaction[0m
|
|
3613
|
+
Redirected to http://localhost:3000/know_more/questionnaire/step2
|
|
3614
|
+
Completed 303 See Other in 5ms (ActiveRecord: 0.6ms)
|
|
3615
|
+
|
|
3616
|
+
|
|
3617
|
+
Started GET "/know_more/questionnaire/step2" for ::1 at 2016-10-29 22:10:31 +0800
|
|
3618
|
+
Processing by KnowMore::QuestionnaireController#step2 as HTML
|
|
3619
|
+
[1m[36mQuestionnaire Load (0.2ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
3620
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
3621
|
+
[1m[35mSQL (0.5ms)[0m [1m[33mUPDATE "questionnaires" SET "progress" = ?, "updated_at" = ? WHERE "questionnaires"."id" = ?[0m [["progress", 1], ["updated_at", 2016-10-29 14:10:31 UTC], ["id", 26]]
|
|
3622
|
+
[1m[35m (0.8ms)[0m [1m[36mcommit transaction[0m
|
|
3623
|
+
Rendering know_more/questionnaire/step2.html.haml within layouts/application
|
|
3624
|
+
Rendered know_more/questionnaire/step2.html.haml within layouts/application (8.7ms)
|
|
3625
|
+
Completed 200 OK in 49ms (Views: 44.2ms | ActiveRecord: 1.7ms)
|
|
3626
|
+
|
|
3627
|
+
|
|
3628
|
+
Started PATCH "/know_more/questionnaire/step2" for ::1 at 2016-10-29 22:10:33 +0800
|
|
3629
|
+
Processing by KnowMore::QuestionnaireController#step2_update as HTML
|
|
3630
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"RV8lkFiQbTxg2yn2YPRsR217rYePxFZOSrXUuhs/B7jTpZkxMMMeTeMRGHYqmlSQFipTZoLNGJ4hZhg29X4QCw==", "direction"=>"next", "questionnaire"=>{"attribute2"=>"333"}}
|
|
3631
|
+
[1m[36mQuestionnaire Load (0.2ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
3632
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
3633
|
+
[1m[35m (0.1ms)[0m [1m[36mcommit transaction[0m
|
|
3634
|
+
Redirected to http://localhost:3000/know_more/questionnaire/step3
|
|
3635
|
+
Completed 303 See Other in 6ms (ActiveRecord: 0.4ms)
|
|
3636
|
+
|
|
3637
|
+
|
|
3638
|
+
Started GET "/know_more/questionnaire/step3" for ::1 at 2016-10-29 22:10:33 +0800
|
|
3639
|
+
Processing by KnowMore::QuestionnaireController#step3 as HTML
|
|
3640
|
+
[1m[36mQuestionnaire Load (0.2ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
3641
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
3642
|
+
[1m[35mSQL (0.4ms)[0m [1m[33mUPDATE "questionnaires" SET "progress" = ?, "updated_at" = ? WHERE "questionnaires"."id" = ?[0m [["progress", 2], ["updated_at", 2016-10-29 14:10:33 UTC], ["id", 26]]
|
|
3643
|
+
[1m[35m (0.8ms)[0m [1m[36mcommit transaction[0m
|
|
3644
|
+
Rendering know_more/questionnaire/step3.html.haml within layouts/application
|
|
3645
|
+
Rendered know_more/questionnaire/step3.html.haml within layouts/application (7.4ms)
|
|
3646
|
+
Completed 200 OK in 45ms (Views: 40.1ms | ActiveRecord: 1.5ms)
|
|
3647
|
+
|
|
3648
|
+
|
|
3649
|
+
Started PATCH "/know_more/questionnaire/step3" for ::1 at 2016-10-29 22:10:37 +0800
|
|
3650
|
+
Processing by KnowMore::QuestionnaireController#step3_update as HTML
|
|
3651
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"SRWnEKa0hy2qpaUEs9oiHb5JhHEeTuGkoKOkKTBt0gPf7xuxzuf0XClvlIT5tBrKxRh6kBNHr3TLcGil3izFsA==", "direction"=>"next", "questionnaire"=>{"attribute3"=>"444"}}
|
|
3652
|
+
[1m[36mQuestionnaire Load (0.3ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
3653
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
3654
|
+
[1m[35m (0.1ms)[0m [1m[36mcommit transaction[0m
|
|
3655
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
3656
|
+
[1m[35mSQL (0.4ms)[0m [1m[33mUPDATE "questionnaires" SET "progress" = ?, "updated_at" = ? WHERE "questionnaires"."id" = ?[0m [["progress", 3], ["updated_at", 2016-10-29 14:10:37 UTC], ["id", 26]]
|
|
3657
|
+
[1m[35m (0.9ms)[0m [1m[36mcommit transaction[0m
|
|
3658
|
+
Redirected to http://localhost:3000/
|
|
3659
|
+
Completed 302 Found in 9ms (ActiveRecord: 1.8ms)
|
|
3660
|
+
|
|
3661
|
+
|
|
3662
|
+
Started GET "/" for ::1 at 2016-10-29 22:10:37 +0800
|
|
3663
|
+
Processing by WelcomeController#hello as HTML
|
|
3664
|
+
[1m[36mQuestionnaire Load (0.2ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
3665
|
+
Rendering welcome/hello.html.erb within layouts/application
|
|
3666
|
+
Rendered welcome/hello.html.erb within layouts/application (0.9ms)
|
|
3667
|
+
Completed 200 OK in 33ms (Views: 29.4ms | ActiveRecord: 0.2ms)
|
|
3668
|
+
|
|
3669
|
+
|
|
3670
|
+
Started GET "/know_more/questionnaire/step3" for ::1 at 2016-10-29 22:10:39 +0800
|
|
3671
|
+
Processing by KnowMore::QuestionnaireController#step3 as HTML
|
|
3672
|
+
[1m[36mQuestionnaire Load (0.3ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
3673
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
3674
|
+
[1m[35mSQL (0.4ms)[0m [1m[33mUPDATE "questionnaires" SET "progress" = ?, "updated_at" = ? WHERE "questionnaires"."id" = ?[0m [["progress", 2], ["updated_at", 2016-10-29 14:10:39 UTC], ["id", 26]]
|
|
3675
|
+
[1m[35m (2.5ms)[0m [1m[36mcommit transaction[0m
|
|
3676
|
+
Rendering know_more/questionnaire/step3.html.haml within layouts/application
|
|
3677
|
+
Rendered know_more/questionnaire/step3.html.haml within layouts/application (4.4ms)
|
|
3678
|
+
Completed 200 OK in 36ms (Views: 29.6ms | ActiveRecord: 3.3ms)
|
|
3679
|
+
|
|
3680
|
+
|
|
3681
|
+
Started GET "/know_more/questionnaire/step2" for ::1 at 2016-10-29 22:10:39 +0800
|
|
3682
|
+
Processing by KnowMore::QuestionnaireController#step2 as HTML
|
|
3683
|
+
[1m[36mQuestionnaire Load (0.2ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
3684
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
3685
|
+
[1m[35mSQL (0.4ms)[0m [1m[33mUPDATE "questionnaires" SET "progress" = ?, "updated_at" = ? WHERE "questionnaires"."id" = ?[0m [["progress", 1], ["updated_at", 2016-10-29 14:10:39 UTC], ["id", 26]]
|
|
3686
|
+
[1m[35m (2.5ms)[0m [1m[36mcommit transaction[0m
|
|
3687
|
+
Rendering know_more/questionnaire/step2.html.haml within layouts/application
|
|
3688
|
+
Rendered know_more/questionnaire/step2.html.haml within layouts/application (4.5ms)
|
|
3689
|
+
Completed 200 OK in 42ms (Views: 35.9ms | ActiveRecord: 3.1ms)
|
|
3690
|
+
|
|
3691
|
+
|
|
3692
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
3693
|
+
[1m[35mSQL (1.2ms)[0m [1m[32mINSERT INTO "questionnaires" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", 2016-11-06 12:12:28 UTC], ["updated_at", 2016-11-06 12:12:28 UTC]]
|
|
3694
|
+
[1m[35m (0.9ms)[0m [1m[36mcommit transaction[0m
|
|
3695
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-11-06 20:38:25 +0800
|
|
3696
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
3697
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
3698
|
+
[1m[36mQuestionnaire Load (0.2ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
3699
|
+
Rendering know_more/questionnaire/step1.html.erb within layouts/application
|
|
3700
|
+
Rendered know_more/questionnaire/step1.html.erb within layouts/application (17.9ms)
|
|
3701
|
+
Completed 200 OK in 338ms (Views: 322.9ms | ActiveRecord: 1.2ms)
|
|
3702
|
+
|
|
3703
|
+
|
|
3704
|
+
Started GET "/" for ::1 at 2016-11-06 20:38:27 +0800
|
|
3705
|
+
Processing by WelcomeController#hello as HTML
|
|
3706
|
+
[1m[36mQuestionnaire Load (0.2ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
3707
|
+
Redirected to http://localhost:3000/know_more/questionnaire/step1
|
|
3708
|
+
Filter chain halted as :require_questionnaire! rendered or redirected
|
|
3709
|
+
Completed 303 See Other in 3ms (ActiveRecord: 0.2ms)
|
|
3710
|
+
|
|
3711
|
+
|
|
3712
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-11-06 20:38:27 +0800
|
|
3713
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
3714
|
+
[1m[36mQuestionnaire Load (0.2ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
3715
|
+
Rendering know_more/questionnaire/step1.html.erb within layouts/application
|
|
3716
|
+
Rendered know_more/questionnaire/step1.html.erb within layouts/application (2.4ms)
|
|
3717
|
+
Completed 200 OK in 50ms (Views: 48.6ms | ActiveRecord: 0.2ms)
|
|
3718
|
+
|
|
3719
|
+
|
|
3720
|
+
Started PATCH "/know_more/questionnaire/step1" for ::1 at 2016-11-06 20:38:31 +0800
|
|
3721
|
+
Processing by KnowMore::QuestionnaireController#step1_update as HTML
|
|
3722
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"nLpN5RPpaXFO5Lm5gnb0BNKWuen+Hv+uGKCgF5FntDQ3Edl43xNw2CA/m4X50oKv4hTOGaAkbBgEzO/bRkoieA==", "direction"=>"next"}
|
|
3723
|
+
[1m[36mQuestionnaire Load (0.2ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
3724
|
+
Completed 400 Bad Request in 2ms (ActiveRecord: 0.2ms)
|
|
3725
|
+
|
|
3726
|
+
|
|
3727
|
+
|
|
3728
|
+
ActionController::ParameterMissing (param is missing or the value is empty: questionnaire):
|
|
3729
|
+
|
|
3730
|
+
app/controllers/concerns/know_more/questionnaire_controller_concerns.rb:39:in `questionnaire_params'
|
|
3731
|
+
app/controllers/concerns/know_more/questionnaire_controller_concerns.rb:16:in `_step1_update'
|
|
3732
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout
|
|
3733
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
|
|
3734
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (8.2ms)
|
|
3735
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
3736
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms)
|
|
3737
|
+
Rendering /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
|
|
3738
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.2ms)
|
|
3739
|
+
Rendered /Users/julien/.rvm/gems/ruby-2.3.1@know_more/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (82.6ms)
|
|
3740
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-11-06 20:40:06 +0800
|
|
3741
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
3742
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
3743
|
+
[1m[36mQuestionnaire Load (0.4ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
3744
|
+
Rendering know_more/questionnaire/step1.html.haml within layouts/application
|
|
3745
|
+
Rendered know_more/questionnaire/step1.html.haml within layouts/application (28.0ms)
|
|
3746
|
+
Completed 200 OK in 448ms (Views: 428.3ms | ActiveRecord: 1.2ms)
|
|
3747
|
+
|
|
3748
|
+
|
|
3749
|
+
Started PATCH "/know_more/questionnaire/step1" for ::1 at 2016-11-06 20:40:11 +0800
|
|
3750
|
+
Processing by KnowMore::QuestionnaireController#step1_update as HTML
|
|
3751
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"i6hkuVVlTeg7wZaey6XOhXAMHQV8IOl3aqRxJtsPb7cgA/AkmZ9UQVUatKKwAbguQI5q9SIaesF2yD7qDCL5+w==", "direction"=>"next", "questionnaire"=>{"attribute1"=>"abc"}}
|
|
3752
|
+
[1m[36mQuestionnaire Load (0.2ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
3753
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
3754
|
+
[1m[35mSQL (0.7ms)[0m [1m[33mUPDATE "questionnaires" SET "attribute1" = ?, "updated_at" = ? WHERE "questionnaires"."id" = ?[0m [["attribute1", "abc"], ["updated_at", 2016-11-06 12:40:11 UTC], ["id", 27]]
|
|
3755
|
+
[1m[35m (0.8ms)[0m [1m[36mcommit transaction[0m
|
|
3756
|
+
Redirected to http://localhost:3000/know_more/questionnaire/step2
|
|
3757
|
+
Completed 303 See Other in 8ms (ActiveRecord: 1.8ms)
|
|
3758
|
+
|
|
3759
|
+
|
|
3760
|
+
Started GET "/know_more/questionnaire/step2" for ::1 at 2016-11-06 20:40:11 +0800
|
|
3761
|
+
Processing by KnowMore::QuestionnaireController#step2 as HTML
|
|
3762
|
+
[1m[36mQuestionnaire Load (0.3ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
3763
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
3764
|
+
[1m[35mSQL (0.4ms)[0m [1m[33mUPDATE "questionnaires" SET "progress" = ?, "updated_at" = ? WHERE "questionnaires"."id" = ?[0m [["progress", 1], ["updated_at", 2016-11-06 12:40:11 UTC], ["id", 27]]
|
|
3765
|
+
[1m[35m (0.8ms)[0m [1m[36mcommit transaction[0m
|
|
3766
|
+
Rendering know_more/questionnaire/step2.html.haml within layouts/application
|
|
3767
|
+
Rendered know_more/questionnaire/step2.html.haml within layouts/application (3.9ms)
|
|
3768
|
+
Completed 200 OK in 28ms (Views: 24.2ms | ActiveRecord: 1.5ms)
|
|
3769
|
+
|
|
3770
|
+
|
|
3771
|
+
Started PATCH "/know_more/questionnaire/step2" for ::1 at 2016-11-06 20:40:12 +0800
|
|
3772
|
+
Processing by KnowMore::QuestionnaireController#step2_update as HTML
|
|
3773
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"FeHSP+eY2s7tsvWtxsQBqG4UnonSv7L1IZw6UHud4FC+SkaiK2LDZ4Np15G9YHcDXpbpeYyFIUM98HWcrLB2HA==", "direction"=>"previous", "questionnaire"=>{"attribute2"=>""}}
|
|
3774
|
+
[1m[36mQuestionnaire Load (0.3ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
3775
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
3776
|
+
[1m[35mSQL (0.5ms)[0m [1m[33mUPDATE "questionnaires" SET "attribute2" = ?, "updated_at" = ? WHERE "questionnaires"."id" = ?[0m [["attribute2", ""], ["updated_at", 2016-11-06 12:40:12 UTC], ["id", 27]]
|
|
3777
|
+
[1m[35m (2.3ms)[0m [1m[36mcommit transaction[0m
|
|
3778
|
+
Redirected to http://localhost:3000/know_more/questionnaire/step1
|
|
3779
|
+
Completed 303 See Other in 9ms (ActiveRecord: 3.4ms)
|
|
3780
|
+
|
|
3781
|
+
|
|
3782
|
+
Started GET "/know_more/questionnaire/step1" for ::1 at 2016-11-06 20:40:12 +0800
|
|
3783
|
+
Processing by KnowMore::QuestionnaireController#step1 as HTML
|
|
3784
|
+
[1m[36mQuestionnaire Load (0.3ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
3785
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
3786
|
+
[1m[35mSQL (0.4ms)[0m [1m[33mUPDATE "questionnaires" SET "progress" = ?, "updated_at" = ? WHERE "questionnaires"."id" = ?[0m [["progress", 0], ["updated_at", 2016-11-06 12:40:12 UTC], ["id", 27]]
|
|
3787
|
+
[1m[35m (0.7ms)[0m [1m[36mcommit transaction[0m
|
|
3788
|
+
Rendering know_more/questionnaire/step1.html.haml within layouts/application
|
|
3789
|
+
Rendered know_more/questionnaire/step1.html.haml within layouts/application (4.6ms)
|
|
3790
|
+
Completed 200 OK in 30ms (Views: 26.1ms | ActiveRecord: 1.4ms)
|
|
3791
|
+
|
|
3792
|
+
|
|
3793
|
+
Started PATCH "/know_more/questionnaire/step1" for ::1 at 2016-11-06 20:40:13 +0800
|
|
3794
|
+
Processing by KnowMore::QuestionnaireController#step1_update as HTML
|
|
3795
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"tyccvo4R1b4dq2J5SuYyIk9LgGgR6niozT7Rs/UdvfwcjIgjQuvMF3NwQEUxQkSJf8n3mE/Q6x7RUp5/IjArsA==", "direction"=>"next", "questionnaire"=>{"attribute1"=>"abc"}}
|
|
3796
|
+
[1m[36mQuestionnaire Load (0.3ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
3797
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
3798
|
+
[1m[35m (0.1ms)[0m [1m[36mcommit transaction[0m
|
|
3799
|
+
Redirected to http://localhost:3000/know_more/questionnaire/step2
|
|
3800
|
+
Completed 303 See Other in 4ms (ActiveRecord: 0.5ms)
|
|
3801
|
+
|
|
3802
|
+
|
|
3803
|
+
Started GET "/know_more/questionnaire/step2" for ::1 at 2016-11-06 20:40:13 +0800
|
|
3804
|
+
Processing by KnowMore::QuestionnaireController#step2 as HTML
|
|
3805
|
+
[1m[36mQuestionnaire Load (0.2ms)[0m [1m[34mSELECT "questionnaires".* FROM "questionnaires" ORDER BY "questionnaires"."id" DESC LIMIT ?[0m [["LIMIT", 1]]
|
|
3806
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
3807
|
+
[1m[35mSQL (0.4ms)[0m [1m[33mUPDATE "questionnaires" SET "progress" = ?, "updated_at" = ? WHERE "questionnaires"."id" = ?[0m [["progress", 1], ["updated_at", 2016-11-06 12:40:13 UTC], ["id", 27]]
|
|
3808
|
+
[1m[35m (0.8ms)[0m [1m[36mcommit transaction[0m
|
|
3809
|
+
Rendering know_more/questionnaire/step2.html.haml within layouts/application
|
|
3810
|
+
Rendered know_more/questionnaire/step2.html.haml within layouts/application (4.8ms)
|
|
3811
|
+
Completed 200 OK in 35ms (Views: 30.3ms | ActiveRecord: 1.5ms)
|
|
3812
|
+
|
|
3813
|
+
|