any_login 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/README.rdoc +27 -0
- data/Rakefile +37 -0
- data/app/assets/images/any_login/person.png +0 -0
- data/app/controllers/any_login/application_controller.rb +11 -0
- data/app/helpers/any_login/application_helper.rb +58 -0
- data/app/views/any_login/_any_login.html.erb +123 -0
- data/config/routes.rb +7 -0
- data/lib/any_login.rb +99 -0
- data/lib/any_login/engine.rb +26 -0
- data/lib/any_login/routes.rb +7 -0
- data/lib/any_login/strategy/devise.rb +19 -0
- data/lib/any_login/version.rb +3 -0
- data/lib/generators/any_login/USAGE +8 -0
- data/lib/generators/any_login/any_login_generator.rb +6 -0
- data/lib/generators/any_login/templates/any_login.rb +13 -0
- data/test/any_login_test.rb +7 -0
- data/test/dummy/README.rdoc +28 -0
- data/test/dummy/Rakefile +6 -0
- data/test/dummy/app/assets/fonts/glyphicons-halflings-regular.eot +0 -0
- data/test/dummy/app/assets/fonts/glyphicons-halflings-regular.svg +288 -0
- data/test/dummy/app/assets/fonts/glyphicons-halflings-regular.ttf +0 -0
- data/test/dummy/app/assets/fonts/glyphicons-halflings-regular.woff +0 -0
- data/test/dummy/app/assets/fonts/glyphicons-halflings-regular.woff2 +0 -0
- data/test/dummy/app/assets/javascripts/application.js +15 -0
- data/test/dummy/app/assets/javascripts/bootstrap.min.js +7 -0
- data/test/dummy/app/assets/javascripts/home.js +2 -0
- data/test/dummy/app/assets/stylesheets/application.css +15 -0
- data/test/dummy/app/assets/stylesheets/bootstrap-theme.min.css +5 -0
- data/test/dummy/app/assets/stylesheets/bootstrap.min.css +5 -0
- data/test/dummy/app/assets/stylesheets/home.css +4 -0
- data/test/dummy/app/controllers/application_controller.rb +5 -0
- data/test/dummy/app/controllers/home_controller.rb +9 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/helpers/home_helper.rb +2 -0
- data/test/dummy/app/models/user.rb +10 -0
- data/test/dummy/app/views/home/about.html.erb +2 -0
- data/test/dummy/app/views/home/index.html.erb +530 -0
- data/test/dummy/app/views/layouts/application.html.erb +22 -0
- data/test/dummy/app/views/shared/_footer.html.erb +16 -0
- data/test/dummy/app/views/shared/_header.html.erb +33 -0
- data/test/dummy/bin/bundle +3 -0
- data/test/dummy/bin/rails +4 -0
- data/test/dummy/bin/rake +4 -0
- data/test/dummy/bin/setup +29 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/config/application.rb +26 -0
- data/test/dummy/config/boot.rb +5 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +42 -0
- data/test/dummy/config/environments/production.rb +79 -0
- data/test/dummy/config/environments/test.rb +42 -0
- data/test/dummy/config/initializers/any_login.rb +5 -0
- data/test/dummy/config/initializers/assets.rb +11 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
- data/test/dummy/config/initializers/devise.rb +262 -0
- data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/dummy/config/initializers/inflections.rb +16 -0
- data/test/dummy/config/initializers/mime_types.rb +4 -0
- data/test/dummy/config/initializers/session_store.rb +3 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/devise.en.yml +60 -0
- data/test/dummy/config/locales/en.yml +23 -0
- data/test/dummy/config/routes.rb +6 -0
- data/test/dummy/config/secrets.yml +22 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/migrate/20150907190739_create_users.rb +9 -0
- data/test/dummy/db/migrate/20150907190846_add_devise_to_users.rb +49 -0
- data/test/dummy/db/migrate/20150909210357_populate_test_users.rb +21 -0
- data/test/dummy/db/schema.rb +37 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +1128 -0
- data/test/dummy/log/test.log +373 -0
- data/test/dummy/public/404.html +67 -0
- data/test/dummy/public/422.html +67 -0
- data/test/dummy/public/500.html +66 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/test/controllers/home_controller_test.rb +15 -0
- data/test/dummy/test/fixtures/users.yml +11 -0
- data/test/dummy/test/models/user_test.rb +7 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/0mUCX5MiuPurvwMDJN1viKrLiNvvFTZc-L6ZBrckEic.cache +1 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/2SYNbjkqPSMfgHiWdLtg7nuZalOIPjaNfQttqkDHHss.cache +1 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/3Q9PpN59Iw3R8NFQfW4EE4gsPONlCYSdvAD3JsCbGIA.cache +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/5Lly_CA8DZvPhQV2jDQx-Y6P_y3Ygra9t5jfSlGhHDA.cache +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/7iLZhCRqomVffwv-AVwkHFYCcmPKLrrk7qQChfRapi0.cache +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/7ur7VUze24s0VKgJKWpnUo96FYlWHEmE8HNVJZZMNTE.cache +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/8zb9xKJcvuzFNLl5eXm8-rMWpJcFxk8hMEmnWwSkMMQ.cache +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/AtSjVjN-l74fcYePzHnq_C7uDbKLzJtTnFyqpQfFU_4.cache +1 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/BmgZIlC4dPPN5_-UVlbtqC4gTJIdxEs0RdshJXE6MrE.cache +1 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/CC1ihO7XYNMibY_amTWKI8YUE-hQGPYSpCaqmNg-Jjk.cache +1 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/C_5kL4_NWLeARMnjY-tAZ1QL-YK0CZVidwahgGIsFzE.cache +1 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/DGFPj1WMU5MK9HUz3l69cYrktq0pxG73ZYroFiWFf1Q.cache +1 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/EI5LzNFYz6ZfxNyOoS1ZOx8cjFegSaBzfB3-qRCE8Uw.cache +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/FAQZN9Offj6Ralh8lPOcWnqsujeCnr7kRDG35KPXIFg.cache +1 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/FEs8uokP_fREF7aomsryzRXjitBkvS9tWXmjSCB81_s.cache +2 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Fa6FU_PRuF2wp96Xm5R5izWdsog-W7-Fl8Ka6LvWWk0.cache +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/GAdJwtpszZDaIVjZ1vy_hhrduwyRVZ-UVvY1VWHC1F8.cache +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/IccPPvFDyMMsygLAgf1nuZlbJFhWotiFNmcybOaFSro.cache +1 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/IlGSUvskziqqa652wnpgtDgid_Xny41bFG0ewd4lB7M.cache +4 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/J_8z3vJer-T2RbrrfOrrS-aanW_S2qbPaLmPgcAUTCM.cache +1 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Ji0-C9rfE9nAgyKe3RRhYhog0GEaVgtWkXSOchJdJYM.cache +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/K_jYNiV8wzkrkscwTARjB-fUFotRIGgDroMQRWsZoxE.cache +1 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/LFqrFvIrFTK4bxXknLWn2XqLAtiVYCxLng_CGNJ4SVo.cache +1 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/LsWw_Wu-4ficFT-ML0ZSsHOfPYWu1V3d5-MikqnX8Fc.cache +1 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/NEqiXLuP2oYe7BUdje_GmZ-W8tpK1aeaYF4gjJqv0RM.cache +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/OI6uxGcnsKavdWTtwDAasU3wPx8QXhzBgV0X2n1KjMQ.cache +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/OrM4D1znaRp8zJBOHxDL6-QpEUTx98mqOthiNDmtv_Y.cache +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/OrR4h_6kjDqtTFVQuXjcgs0o7CxiOP63AEj_AGSAjtU.cache +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Owlced5DGUDsMwIsBZyIwvGxfm8ACWU3ay2phFkvSjM.cache +1 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/P6GmfkMYDKAH537GCnftfOOraEeXWHUBfh10dnmy4Gg.cache +1 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/PF8peKtDrqGmgwiVlyi6IUk5qvykD3NPmuzKyA1PhP0.cache +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/PGAZI7MHK6aEYaV0hHeITwxJ5N03rsEaTwLqMw62t9U.cache +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Q3vUnsRezfxvQTLmfEUUbhKNB54P4eFotkxcswSF834.cache +1 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/QBPpZbLf8M4F3nLK9viHM6W4N_JryJWPspRElgi6pJw.cache +1 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/QtG2mQIAsmnEypY91SLARNSWyyllU43Tf-29a5Q7IjA.cache +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/RICxiF1Y7tRr1144F7mHmJPW-mEKzj8mvHddAM2tiiM.cache +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/RkSvs4z6bXZCiOGZNxmI6QNJYKG-MS6FTQpKQAyDJc0.cache +1 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/SG1bNzk0fDOmjTY_MTvIDm0zXIIdNqTI6qkD0H9woOA.cache +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/TXOhutpNU8EMOUm5epQFgsJYCvqIc1TlLWbW5lo0uEs.cache +1 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/UM0weT-qqb6-BXbyenqRwt6ixDB_eb2faZeK1mvPZoY.cache +1 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/VeLENRGeiTBRwGJzFiViJTsWIBxrBd108tWE6VKn4Ek.cache +1 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/WtSTBHPqPJS6POv28C9Su9x2mW16It1Kfzn-iIGM44Q.cache +1 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Wv2ZrYmoB1mW6LcyH4gmxG-CXkmL3XiMp8kC2gZMZJE.cache +2 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/YNjflxhjoc6hSFX1xoeS63gOYFKaBsmE-aEg7L9TaHA.cache +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/aV2lHHL_bMOztNki30IWE4anPdMWzXAkfg_dPingc8Y.cache +1 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/bQoUeMoyVPAXgwui9DzMeA6I9dU19Q-ke1Xu3LC9dk4.cache +1 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/dvqnGzqP5nqsTc5Vkke-cprFBa45eFo2QNPspkN-qOQ.cache +1 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/gPbb-C0stzrkDgjCLG6a6J1AGYNk4_X0kFvyGLRvSCc.cache +1 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/gadB5x8m3Dg9LDdVonhWppxUv7J7zACwl_2FtL-WS2g.cache +1 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/gdEO0xoQMaFCyk0bLTL9puO0bSGNWg0PFKY2xlDW9HM.cache +1 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/hSDEcApI55-JVsyaRJw-W-DA0hrLo2fBsSRtizuEDBI.cache +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/kO8N46uvJsIIglg5jaI0YRzqZxxVG7iyvUDwRjlCiFg.cache +1 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/kXF0ywhnFoQlc9Q4DYuleE1sNExOUZJlt24sV_8Nzfs.cache +1 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/l6JtVxklW8nQn3WaiBLRs2UU_cVrm9thr8FWrSQFnFE.cache +1 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/myQlTWBqjEV7aXVwBtOaHIt42To2MmC_zlFFqkPxjmw.cache +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/o2X38ta6JWjELW3lhNfN7_KowXHcyJu6vPjRv_xUZ28.cache +1 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/pIVqc5tXAaLDSQbx4dvcFawX1iRPdcw_JTjDIE6Y0eM.cache +2 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/pnW3u_1AN48ig6ngefI89y96xoSlvnJurx-e3J-leoE.cache +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/qcN-H5ioVjPEIjojelEQsfdYHJLnVkRXiMfS7fMsOKM.cache +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/sGvDE_1KVdF5NOorceoKmEPLP3D8OF6yAs2B2UReguU.cache +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/sYqD_6_DLhWbWmBm4ZOKDNI8bKtF7czThI6GXwmFlMU.cache +2 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/sgALL3J-9VpCWqd6Gt4edjNFRDJCegUnBj_k4Hg1Lk0.cache +1 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/sh4xTbeFOQvmDNCWNG_o_rxwgbie1P7BovzPLTpYtg0.cache +1 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/ssS2x0Wl67rwXHaVHsh6CO7ayn9fQ5saIwATKN6O-nI.cache +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/th8j6zWSaTIS6jxJKJVLFy3P2LC9wdiuQ4C1xWcnhUM.cache +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/tuEq0SXuQh3A3UWa1dGXRLlKGMt6evB5YqwFJRyPvIE.cache +2 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/uOsJ4RbOhb9nvMwhf9lzUHRpwpiRFNexQoQX3IoMafE.cache +1 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/urVojGa6d1SRmE17SmNPfvygicsNO0rKkv5O3sF4quE.cache +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/uugggZv5gxeHU2FxmV1B-bNg7quJtLpNiQUQBY8hEu4.cache +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/vC87Ti4dfYY3jCaPO6OPoRAuMfUMJ2p5tMjYAKtqUw4.cache +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/wSKFcgQC7KKgyXwKQKaMK6Ztjmt3kapkfDjS77n-W3I.cache +3 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/2fnIYpMuQIhuY4fuSr391k1N56QWkitsT2boe8qTaMc.cache +1 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/5LGawpUDypkb6KrQy14PHBOBvguN9iBvxEHH4FtD82Q.cache +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/5Lly_CA8DZvPhQV2jDQx-Y6P_y3Ygra9t5jfSlGhHDA.cache +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/5v04KhtOaN4Y_Jr6jsIEZhn52V5A4l0w3CazUVzKjPU.cache +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/5x5QyKbF3AyeyEB4IM113P7-rE5Hy6bz2QwHeMrd7nA.cache +1 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/7ur7VUze24s0VKgJKWpnUo96FYlWHEmE8HNVJZZMNTE.cache +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/ASS8gmPSY4-jnkui14zqivm3x-lCN4eZklzKmn8Szg0.cache +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/AtSjVjN-l74fcYePzHnq_C7uDbKLzJtTnFyqpQfFU_4.cache +1 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/CRAJhzElqj5oh-wxyOrJ6HQwszHJvcya6hlcczfEtY4.cache +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/C_5kL4_NWLeARMnjY-tAZ1QL-YK0CZVidwahgGIsFzE.cache +1 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/CmKITYh3oVk9z51_l8Xi6Vn54j3utI0AWvWb19mJxK8.cache +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/FAQZN9Offj6Ralh8lPOcWnqsujeCnr7kRDG35KPXIFg.cache +1 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/FEs8uokP_fREF7aomsryzRXjitBkvS9tWXmjSCB81_s.cache +2 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/Fv0q14URpEElr8JckQRM5nO4NmDRe_b0NrxveKXuu4s.cache +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/GAdJwtpszZDaIVjZ1vy_hhrduwyRVZ-UVvY1VWHC1F8.cache +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/L1nRpuovk9hLaarXKukmEFFIlRHS-hp_ibkGxAVPcEE.cache +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/L7xpCtaByAnRRGFY2-UQGsMjrXfkqQeHO87Mibe3QhE.cache +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/O0KKUhoSmd2Q948y61hBrhm4UgbSJVgEqdLgsNbvoQU.cache +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/OI6uxGcnsKavdWTtwDAasU3wPx8QXhzBgV0X2n1KjMQ.cache +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/OJ8Xn4kiILBc5N1iHDL2PuB3GOTLNLx66TJ-o9kiFb0.cache +1 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/Owlced5DGUDsMwIsBZyIwvGxfm8ACWU3ay2phFkvSjM.cache +1 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/OzZFerjHbWGTsFx92c-JF36NNjyMkzh6Zqqt0PjgAac.cache +1 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/P6GmfkMYDKAH537GCnftfOOraEeXWHUBfh10dnmy4Gg.cache +1 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/PBhQkLPfcMr8AauDPTSUphnFi9StIDWj0WBdaIIZFos.cache +1 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/Q3vUnsRezfxvQTLmfEUUbhKNB54P4eFotkxcswSF834.cache +1 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/RICxiF1Y7tRr1144F7mHmJPW-mEKzj8mvHddAM2tiiM.cache +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/RXWAeuDhMtHr2vLlWWFw1oSqIiRFJcmY__w54DicQ58.cache +1 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/RbEnVrLsa7hWrkBIGqV5ZdMPD-ehXmD7q4MS5aOIHU8.cache +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/RkSvs4z6bXZCiOGZNxmI6QNJYKG-MS6FTQpKQAyDJc0.cache +1 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/UXd7yvTDXrekr6CX2dWbBYv9B3hTw2cZ4t2TuUiCLTc.cache +1 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/VeLENRGeiTBRwGJzFiViJTsWIBxrBd108tWE6VKn4Ek.cache +1 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/W33KM6utzxdKHyRwJSe3vYO1aU2EntAXxZoSgZ1uUac.cache +1 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/WUcaxhpxfHk3tsqG1JXQy6iBRK9eQ0pkHzxk2NGj3Ps.cache +1 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/WtSTBHPqPJS6POv28C9Su9x2mW16It1Kfzn-iIGM44Q.cache +1 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/Wv2ZrYmoB1mW6LcyH4gmxG-CXkmL3XiMp8kC2gZMZJE.cache +2 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/XGM9it7b5UYdpWGq7Ce_s9bxIk2Dp2trc0ub0-WdTzs.cache +1 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/Xtu0577MttfVSmKOiG5xJxvBam7MSF_GhOZynZsSeuc.cache +1 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/Yi6XqUaOMhrVQYbOFDszEGKgq7eFdGgEiGtN1Dtjoco.cache +1 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/YmhO31KbA_R395b8Sjeb065uOdHxZ2vrXDL36L3W7kE.cache +1 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/_B5Bdp4aDeD-uSuI8DWuy-PpHM3v5eD3Gdi2zN3Mooc.cache +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/bQoUeMoyVPAXgwui9DzMeA6I9dU19Q-ke1Xu3LC9dk4.cache +1 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/cWzqklKCwgjz3ySepSZKDQxCepO0xZSkCdZaTBTZVsQ.cache +1 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/egNsAXN2kaHymEOx3NU5BOnPhU_XYYlcSWUUvLMTdcA.cache +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/gYomMdsiFcr9v9Gt3-xBlwggze8THA7rgwiaq-8IHrw.cache +1 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/gdEO0xoQMaFCyk0bLTL9puO0bSGNWg0PFKY2xlDW9HM.cache +1 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/hIlbDHmRe1X_zVDANRw4wrHjnaasIGIu3SoUc5vH8O4.cache +1 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/hSDEcApI55-JVsyaRJw-W-DA0hrLo2fBsSRtizuEDBI.cache +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/hUmUEhmK7ztoXFpmikcwZMwk9h8tQnWyJjYfq0GPAKI.cache +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/hqR9m0i5bhK0cfl3QGM_w2M_3Uk_IEqKjp-suKM_18Y.cache +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/jagno3A0Rv2nweFB6787uBwRLs_i_u18XBCxLCV1-kk.cache +1 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/kAeDHz-o0hn5oO-cwy0_Unre93ExAa4El8SSO23VgrA.cache +3 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/kGyXKeXcBntxtFoWUtKtVa8aa1iGkF7jcYxHYjYnB2c.cache +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/kNqvUZsqp7pXX8G6WPH1ix1zD50S9vdf4Ye-4SrbMWI.cache +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/kO8N46uvJsIIglg5jaI0YRzqZxxVG7iyvUDwRjlCiFg.cache +1 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/m0IpB0R9vr_NP0tPSe2uoTDCa9E9dgHRELPwVhDBj-M.cache +1 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/myQlTWBqjEV7aXVwBtOaHIt42To2MmC_zlFFqkPxjmw.cache +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/o2X38ta6JWjELW3lhNfN7_KowXHcyJu6vPjRv_xUZ28.cache +1 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/pIVqc5tXAaLDSQbx4dvcFawX1iRPdcw_JTjDIE6Y0eM.cache +2 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/pnW3u_1AN48ig6ngefI89y96xoSlvnJurx-e3J-leoE.cache +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/sYqD_6_DLhWbWmBm4ZOKDNI8bKtF7czThI6GXwmFlMU.cache +2 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/ssS2x0Wl67rwXHaVHsh6CO7ayn9fQ5saIwATKN6O-nI.cache +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/tuEq0SXuQh3A3UWa1dGXRLlKGMt6evB5YqwFJRyPvIE.cache +2 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/u9XYz1n7lju0ZiAPZuUgGPBP-3FGlLYNGALaTpPBgU4.cache +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/uOsJ4RbOhb9nvMwhf9lzUHRpwpiRFNexQoQX3IoMafE.cache +1 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/uugggZv5gxeHU2FxmV1B-bNg7quJtLpNiQUQBY8hEu4.cache +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/uzGDr56Ry0XUNOvcVav44pqVfhES2aLqDlo3PWGG2V4.cache +1 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/va_iem9gJRtQZFSf8UZZP07dwlVPWwBB_oQi535l87I.cache +1 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/wk5FwYB-2sMDpzX3UK3g269m9zybwAc6VhDwuc-GkG0.cache +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/x1vgLKvr2zQdjUkf2BuMehFadl87MfEvMpinBRI6xIs.cache +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/ykPzTe9EiclkiGrh4-oYIDrCebAtGq-gVA_pg2OnBUQ.cache +3 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/zjW1WJXfQevh5kt1q_h1SZliBXs_CVzA7hq9cQPwVk8.cache +1 -0
- data/test/integration/navigation_test.rb +8 -0
- data/test/test_helper.rb +25 -0
- metadata +580 -0
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
|
2
|
+
|
|
3
|
+
# Add new inflection rules using the following format. Inflections
|
|
4
|
+
# are locale specific, and you may define rules for as many different
|
|
5
|
+
# locales as you wish. All of these examples are active by default:
|
|
6
|
+
# ActiveSupport::Inflector.inflections(:en) do |inflect|
|
|
7
|
+
# inflect.plural /^(ox)$/i, '\1en'
|
|
8
|
+
# inflect.singular /^(ox)en/i, '\1'
|
|
9
|
+
# inflect.irregular 'person', 'people'
|
|
10
|
+
# inflect.uncountable %w( fish sheep )
|
|
11
|
+
# end
|
|
12
|
+
|
|
13
|
+
# These inflection rules are supported but not enabled by default:
|
|
14
|
+
# ActiveSupport::Inflector.inflections(:en) do |inflect|
|
|
15
|
+
# inflect.acronym 'RESTful'
|
|
16
|
+
# end
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
|
2
|
+
|
|
3
|
+
# This file contains settings for ActionController::ParamsWrapper which
|
|
4
|
+
# is enabled by default.
|
|
5
|
+
|
|
6
|
+
# Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
|
|
7
|
+
ActiveSupport.on_load(:action_controller) do
|
|
8
|
+
wrap_parameters format: [:json] if respond_to?(:wrap_parameters)
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
# To enable root element in JSON for ActiveRecord objects.
|
|
12
|
+
# ActiveSupport.on_load(:active_record) do
|
|
13
|
+
# self.include_root_in_json = true
|
|
14
|
+
# end
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
# Additional translations at https://github.com/plataformatec/devise/wiki/I18n
|
|
2
|
+
|
|
3
|
+
en:
|
|
4
|
+
devise:
|
|
5
|
+
confirmations:
|
|
6
|
+
confirmed: "Your email address has been successfully confirmed."
|
|
7
|
+
send_instructions: "You will receive an email with instructions for how to confirm your email address in a few minutes."
|
|
8
|
+
send_paranoid_instructions: "If your email address exists in our database, you will receive an email with instructions for how to confirm your email address in a few minutes."
|
|
9
|
+
failure:
|
|
10
|
+
already_authenticated: "You are already signed in."
|
|
11
|
+
inactive: "Your account is not activated yet."
|
|
12
|
+
invalid: "Invalid %{authentication_keys} or password."
|
|
13
|
+
locked: "Your account is locked."
|
|
14
|
+
last_attempt: "You have one more attempt before your account is locked."
|
|
15
|
+
not_found_in_database: "Invalid %{authentication_keys} or password."
|
|
16
|
+
timeout: "Your session expired. Please sign in again to continue."
|
|
17
|
+
unauthenticated: "You need to sign in or sign up before continuing."
|
|
18
|
+
unconfirmed: "You have to confirm your email address before continuing."
|
|
19
|
+
mailer:
|
|
20
|
+
confirmation_instructions:
|
|
21
|
+
subject: "Confirmation instructions"
|
|
22
|
+
reset_password_instructions:
|
|
23
|
+
subject: "Reset password instructions"
|
|
24
|
+
unlock_instructions:
|
|
25
|
+
subject: "Unlock instructions"
|
|
26
|
+
omniauth_callbacks:
|
|
27
|
+
failure: "Could not authenticate you from %{kind} because \"%{reason}\"."
|
|
28
|
+
success: "Successfully authenticated from %{kind} account."
|
|
29
|
+
passwords:
|
|
30
|
+
no_token: "You can't access this page without coming from a password reset email. If you do come from a password reset email, please make sure you used the full URL provided."
|
|
31
|
+
send_instructions: "You will receive an email with instructions on how to reset your password in a few minutes."
|
|
32
|
+
send_paranoid_instructions: "If your email address exists in our database, you will receive a password recovery link at your email address in a few minutes."
|
|
33
|
+
updated: "Your password has been changed successfully. You are now signed in."
|
|
34
|
+
updated_not_active: "Your password has been changed successfully."
|
|
35
|
+
registrations:
|
|
36
|
+
destroyed: "Bye! Your account has been successfully cancelled. We hope to see you again soon."
|
|
37
|
+
signed_up: "Welcome! You have signed up successfully."
|
|
38
|
+
signed_up_but_inactive: "You have signed up successfully. However, we could not sign you in because your account is not yet activated."
|
|
39
|
+
signed_up_but_locked: "You have signed up successfully. However, we could not sign you in because your account is locked."
|
|
40
|
+
signed_up_but_unconfirmed: "A message with a confirmation link has been sent to your email address. Please follow the link to activate your account."
|
|
41
|
+
update_needs_confirmation: "You updated your account successfully, but we need to verify your new email address. Please check your email and follow the confirm link to confirm your new email address."
|
|
42
|
+
updated: "Your account has been updated successfully."
|
|
43
|
+
sessions:
|
|
44
|
+
signed_in: "Signed in successfully."
|
|
45
|
+
signed_out: "Signed out successfully."
|
|
46
|
+
already_signed_out: "Signed out successfully."
|
|
47
|
+
unlocks:
|
|
48
|
+
send_instructions: "You will receive an email with instructions for how to unlock your account in a few minutes."
|
|
49
|
+
send_paranoid_instructions: "If your account exists, you will receive an email with instructions for how to unlock it in a few minutes."
|
|
50
|
+
unlocked: "Your account has been unlocked successfully. Please sign in to continue."
|
|
51
|
+
errors:
|
|
52
|
+
messages:
|
|
53
|
+
already_confirmed: "was already confirmed, please try signing in"
|
|
54
|
+
confirmation_period_expired: "needs to be confirmed within %{period}, please request a new one"
|
|
55
|
+
expired: "has expired, please request a new one"
|
|
56
|
+
not_found: "not found"
|
|
57
|
+
not_locked: "was not locked"
|
|
58
|
+
not_saved:
|
|
59
|
+
one: "1 error prohibited this %{resource} from being saved:"
|
|
60
|
+
other: "%{count} errors prohibited this %{resource} from being saved:"
|
|
@@ -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,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 `rake 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: 0185a39cbc94e0e4efe2efcb693619031ea34cc67a1a94cef1fb0fee74c5fcbfb4fbb3acff192e2dd0d2f2960f8b403a1f5ed0fa46972963b33e33d599ce5e9b
|
|
15
|
+
|
|
16
|
+
test:
|
|
17
|
+
secret_key_base: ea13d47b7f6469e9bf1053b6a45629dc8c27f962351fd07ebf5dea75e514a297a762b168a3b0156be83ba9086b20790d83458a3579e5c67d1d1eb1068fe72f04
|
|
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,49 @@
|
|
|
1
|
+
class AddDeviseToUsers < ActiveRecord::Migration
|
|
2
|
+
def self.up
|
|
3
|
+
change_table(:users) do |t|
|
|
4
|
+
## Database authenticatable
|
|
5
|
+
t.string :email, null: false, default: ""
|
|
6
|
+
t.string :encrypted_password, null: false, default: ""
|
|
7
|
+
|
|
8
|
+
## Recoverable
|
|
9
|
+
t.string :reset_password_token
|
|
10
|
+
t.datetime :reset_password_sent_at
|
|
11
|
+
|
|
12
|
+
## Rememberable
|
|
13
|
+
t.datetime :remember_created_at
|
|
14
|
+
|
|
15
|
+
## Trackable
|
|
16
|
+
t.integer :sign_in_count, default: 0, null: false
|
|
17
|
+
t.datetime :current_sign_in_at
|
|
18
|
+
t.datetime :last_sign_in_at
|
|
19
|
+
t.string :current_sign_in_ip
|
|
20
|
+
t.string :last_sign_in_ip
|
|
21
|
+
|
|
22
|
+
## Confirmable
|
|
23
|
+
# t.string :confirmation_token
|
|
24
|
+
# t.datetime :confirmed_at
|
|
25
|
+
# t.datetime :confirmation_sent_at
|
|
26
|
+
# t.string :unconfirmed_email # Only if using reconfirmable
|
|
27
|
+
|
|
28
|
+
## Lockable
|
|
29
|
+
# t.integer :failed_attempts, default: 0, null: false # Only if lock strategy is :failed_attempts
|
|
30
|
+
# t.string :unlock_token # Only if unlock strategy is :email or :both
|
|
31
|
+
# t.datetime :locked_at
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
# Uncomment below if timestamps were not included in your original model.
|
|
35
|
+
# t.timestamps null: false
|
|
36
|
+
end
|
|
37
|
+
|
|
38
|
+
add_index :users, :email, unique: true
|
|
39
|
+
add_index :users, :reset_password_token, unique: true
|
|
40
|
+
# add_index :users, :confirmation_token, unique: true
|
|
41
|
+
# add_index :users, :unlock_token, unique: true
|
|
42
|
+
end
|
|
43
|
+
|
|
44
|
+
def self.down
|
|
45
|
+
# By default, we don't want to make any assumption about how to roll back a migration when your
|
|
46
|
+
# model already existed. Please edit below which fields you would like to remove in this migration.
|
|
47
|
+
raise ActiveRecord::IrreversibleMigration
|
|
48
|
+
end
|
|
49
|
+
end
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
class PopulateTestUsers < ActiveRecord::Migration
|
|
2
|
+
def change
|
|
3
|
+
add_column :users, :role, :string
|
|
4
|
+
100.times { User.create(name: gen_name, age: rand(100), email: gen_email, role: gen_role, password: '12345678', password_confirmation: '12345678') }
|
|
5
|
+
end
|
|
6
|
+
|
|
7
|
+
private
|
|
8
|
+
|
|
9
|
+
def gen_name
|
|
10
|
+
['Igor', 'Michael' 'John', 'Stan', 'Bob', 'Kris', 'Alan'].sample + ' ' + rand(100).to_s
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
def gen_email
|
|
14
|
+
email = ['Igor', 'Michael' 'John', 'Stan', 'Bob', 'Kris', 'Alan'].sample + rand(100).to_s + '@gmail.com'
|
|
15
|
+
email.downcase
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
def gen_role
|
|
19
|
+
['admin', 'user', 'moderator'].sample
|
|
20
|
+
end
|
|
21
|
+
end
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# encoding: UTF-8
|
|
2
|
+
# This file is auto-generated from the current state of the database. Instead
|
|
3
|
+
# of editing this file, please use the migrations feature of Active Record to
|
|
4
|
+
# incrementally modify your database, and then regenerate this schema definition.
|
|
5
|
+
#
|
|
6
|
+
# Note that this schema.rb definition is the authoritative source for your
|
|
7
|
+
# database schema. If you need to create the application database on another
|
|
8
|
+
# system, you should be using db:schema:load, not running all the migrations
|
|
9
|
+
# from scratch. The latter is a flawed and unsustainable approach (the more migrations
|
|
10
|
+
# you'll amass, the slower it'll run and the greater likelihood for issues).
|
|
11
|
+
#
|
|
12
|
+
# It's strongly recommended that you check this file into your version control system.
|
|
13
|
+
|
|
14
|
+
ActiveRecord::Schema.define(version: 20150909210357) do
|
|
15
|
+
|
|
16
|
+
create_table "users", force: :cascade do |t|
|
|
17
|
+
t.string "name"
|
|
18
|
+
t.integer "age"
|
|
19
|
+
t.datetime "created_at", null: false
|
|
20
|
+
t.datetime "updated_at", null: false
|
|
21
|
+
t.string "email", default: "", null: false
|
|
22
|
+
t.string "encrypted_password", default: "", null: false
|
|
23
|
+
t.string "reset_password_token"
|
|
24
|
+
t.datetime "reset_password_sent_at"
|
|
25
|
+
t.datetime "remember_created_at"
|
|
26
|
+
t.integer "sign_in_count", default: 0, null: false
|
|
27
|
+
t.datetime "current_sign_in_at"
|
|
28
|
+
t.datetime "last_sign_in_at"
|
|
29
|
+
t.string "current_sign_in_ip"
|
|
30
|
+
t.string "last_sign_in_ip"
|
|
31
|
+
t.string "role"
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
add_index "users", ["email"], name: "index_users_on_email", unique: true
|
|
35
|
+
add_index "users", ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true
|
|
36
|
+
|
|
37
|
+
end
|
|
Binary file
|
|
@@ -0,0 +1,1128 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
Started GET "/" for 192.168.217.1 at 2015-09-14 08:24:10 -0700
|
|
4
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
5
|
+
Processing by HomeController#index as HTML
|
|
6
|
+
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 75]]
|
|
7
|
+
Rendered home/index.html.erb within layouts/application (27.8ms)
|
|
8
|
+
[1m[36mUser Load (0.7ms)[0m [1mSELECT "users".* FROM "users"[0m
|
|
9
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (8.3ms)
|
|
10
|
+
Completed 200 OK in 212ms (Views: 210.2ms | ActiveRecord: 1.5ms)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
Started POST "/any_login/any_login/sign_in" for 192.168.217.1 at 2015-09-14 08:24:14 -0700
|
|
14
|
+
Processing by AnyLogin::ApplicationController#any_login as HTML
|
|
15
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"bM1FxHNDHwBJZ77I7Ga7Qa1ipEi1lsVoI0vDbcnN7C+KH1mM4eSZolaW50SVbroPRK8dQi8D0W9soJIfWJMcWA==", "id"=>""}
|
|
16
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", nil]]
|
|
17
|
+
Completed 404 Not Found in 3ms (ActiveRecord: 0.2ms)
|
|
18
|
+
|
|
19
|
+
ActiveRecord::RecordNotFound (Couldn't find User with 'id'=):
|
|
20
|
+
activerecord (4.2.4) lib/active_record/core.rb:155:in `find'
|
|
21
|
+
/root/projects/any_login/lib/any_login/strategy/devise.rb:8:in `any_login_sign_in'
|
|
22
|
+
/root/projects/any_login/app/controllers/any_login/application_controller.rb:6:in `call'
|
|
23
|
+
/root/projects/any_login/app/controllers/any_login/application_controller.rb:6:in `any_login'
|
|
24
|
+
actionpack (4.2.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
|
25
|
+
actionpack (4.2.4) lib/abstract_controller/base.rb:198:in `process_action'
|
|
26
|
+
actionpack (4.2.4) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
|
27
|
+
actionpack (4.2.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
|
|
28
|
+
activesupport (4.2.4) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
|
|
29
|
+
activesupport (4.2.4) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
|
|
30
|
+
activesupport (4.2.4) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
|
31
|
+
actionpack (4.2.4) lib/abstract_controller/callbacks.rb:19:in `process_action'
|
|
32
|
+
actionpack (4.2.4) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
|
33
|
+
actionpack (4.2.4) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
|
|
34
|
+
activesupport (4.2.4) lib/active_support/notifications.rb:164:in `block in instrument'
|
|
35
|
+
activesupport (4.2.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
|
36
|
+
activesupport (4.2.4) lib/active_support/notifications.rb:164:in `instrument'
|
|
37
|
+
actionpack (4.2.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
|
38
|
+
actionpack (4.2.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
|
|
39
|
+
activerecord (4.2.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
|
40
|
+
actionpack (4.2.4) lib/abstract_controller/base.rb:137:in `process'
|
|
41
|
+
actionview (4.2.4) lib/action_view/rendering.rb:30:in `process'
|
|
42
|
+
actionpack (4.2.4) lib/action_controller/metal.rb:196:in `dispatch'
|
|
43
|
+
actionpack (4.2.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
|
44
|
+
actionpack (4.2.4) lib/action_controller/metal.rb:237:in `block in action'
|
|
45
|
+
actionpack (4.2.4) lib/action_dispatch/routing/route_set.rb:76:in `call'
|
|
46
|
+
actionpack (4.2.4) lib/action_dispatch/routing/route_set.rb:76:in `dispatch'
|
|
47
|
+
actionpack (4.2.4) lib/action_dispatch/routing/route_set.rb:45:in `serve'
|
|
48
|
+
actionpack (4.2.4) lib/action_dispatch/journey/router.rb:43:in `block in serve'
|
|
49
|
+
actionpack (4.2.4) lib/action_dispatch/journey/router.rb:30:in `each'
|
|
50
|
+
actionpack (4.2.4) lib/action_dispatch/journey/router.rb:30:in `serve'
|
|
51
|
+
actionpack (4.2.4) lib/action_dispatch/routing/route_set.rb:821:in `call'
|
|
52
|
+
railties (4.2.4) lib/rails/engine.rb:518:in `call'
|
|
53
|
+
railties (4.2.4) lib/rails/railtie.rb:194:in `public_send'
|
|
54
|
+
railties (4.2.4) lib/rails/railtie.rb:194:in `method_missing'
|
|
55
|
+
actionpack (4.2.4) lib/action_dispatch/routing/mapper.rb:51:in `serve'
|
|
56
|
+
actionpack (4.2.4) lib/action_dispatch/journey/router.rb:43:in `block in serve'
|
|
57
|
+
actionpack (4.2.4) lib/action_dispatch/journey/router.rb:30:in `each'
|
|
58
|
+
actionpack (4.2.4) lib/action_dispatch/journey/router.rb:30:in `serve'
|
|
59
|
+
actionpack (4.2.4) lib/action_dispatch/routing/route_set.rb:821:in `call'
|
|
60
|
+
warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
|
|
61
|
+
warden (1.2.3) lib/warden/manager.rb:34:in `catch'
|
|
62
|
+
warden (1.2.3) lib/warden/manager.rb:34:in `call'
|
|
63
|
+
rack (1.6.4) lib/rack/etag.rb:24:in `call'
|
|
64
|
+
rack (1.6.4) lib/rack/conditionalget.rb:38:in `call'
|
|
65
|
+
rack (1.6.4) lib/rack/head.rb:13:in `call'
|
|
66
|
+
actionpack (4.2.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
|
67
|
+
actionpack (4.2.4) lib/action_dispatch/middleware/flash.rb:260:in `call'
|
|
68
|
+
rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
|
|
69
|
+
rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
|
|
70
|
+
actionpack (4.2.4) lib/action_dispatch/middleware/cookies.rb:560:in `call'
|
|
71
|
+
activerecord (4.2.4) lib/active_record/query_cache.rb:36:in `call'
|
|
72
|
+
activerecord (4.2.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
|
|
73
|
+
activerecord (4.2.4) lib/active_record/migration.rb:377:in `call'
|
|
74
|
+
actionpack (4.2.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
|
75
|
+
activesupport (4.2.4) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
|
|
76
|
+
activesupport (4.2.4) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
|
|
77
|
+
activesupport (4.2.4) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
|
78
|
+
actionpack (4.2.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
|
79
|
+
actionpack (4.2.4) lib/action_dispatch/middleware/reloader.rb:73:in `call'
|
|
80
|
+
actionpack (4.2.4) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
|
|
81
|
+
actionpack (4.2.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
|
82
|
+
actionpack (4.2.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
|
83
|
+
railties (4.2.4) lib/rails/rack/logger.rb:38:in `call_app'
|
|
84
|
+
railties (4.2.4) lib/rails/rack/logger.rb:20:in `block in call'
|
|
85
|
+
activesupport (4.2.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
|
86
|
+
activesupport (4.2.4) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
87
|
+
activesupport (4.2.4) lib/active_support/tagged_logging.rb:68:in `tagged'
|
|
88
|
+
railties (4.2.4) lib/rails/rack/logger.rb:20:in `call'
|
|
89
|
+
quiet_assets (1.1.0) lib/quiet_assets.rb:27:in `call_with_quiet_assets'
|
|
90
|
+
actionpack (4.2.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
|
91
|
+
rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
|
|
92
|
+
rack (1.6.4) lib/rack/runtime.rb:18:in `call'
|
|
93
|
+
activesupport (4.2.4) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
94
|
+
rack (1.6.4) lib/rack/lock.rb:17:in `call'
|
|
95
|
+
actionpack (4.2.4) lib/action_dispatch/middleware/static.rb:116:in `call'
|
|
96
|
+
rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
|
|
97
|
+
railties (4.2.4) lib/rails/engine.rb:518:in `call'
|
|
98
|
+
railties (4.2.4) lib/rails/application.rb:165:in `call'
|
|
99
|
+
rack (1.6.4) lib/rack/lock.rb:17:in `call'
|
|
100
|
+
rack (1.6.4) lib/rack/content_length.rb:15:in `call'
|
|
101
|
+
rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
|
|
102
|
+
/usr/local/rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
|
|
103
|
+
/usr/local/rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
|
|
104
|
+
/usr/local/rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
Rendered /usr/local/rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.4ms)
|
|
108
|
+
Rendered /usr/local/rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms)
|
|
109
|
+
Rendered /usr/local/rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
|
|
110
|
+
Rendered /usr/local/rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (17.1ms)
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
Started GET "/" for 192.168.217.1 at 2015-09-14 08:27:25 -0700
|
|
114
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
115
|
+
Processing by HomeController#index as HTML
|
|
116
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 75]]
|
|
117
|
+
Rendered home/index.html.erb within layouts/application (25.7ms)
|
|
118
|
+
[1m[36mUser Load (0.6ms)[0m [1mSELECT "users".* FROM "users"[0m
|
|
119
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (8.4ms)
|
|
120
|
+
Completed 200 OK in 184ms (Views: 182.7ms | ActiveRecord: 1.3ms)
|
|
121
|
+
|
|
122
|
+
|
|
123
|
+
Started POST "/any_login/any_login/sign_in" for 192.168.217.1 at 2015-09-14 08:27:29 -0700
|
|
124
|
+
Processing by AnyLogin::ApplicationController#any_login as HTML
|
|
125
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"MPuSNV4EhUFShRSkok1Na2PLfhLualgsutJOLrGmXr7WKY59zKMD4010TSjbRUwligbHGHT/TCv1OR9cIPiuyQ==", "id"=>""}
|
|
126
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", nil]]
|
|
127
|
+
Completed 404 Not Found in 3ms (ActiveRecord: 0.2ms)
|
|
128
|
+
|
|
129
|
+
ActiveRecord::RecordNotFound (Couldn't find User with 'id'=):
|
|
130
|
+
activerecord (4.2.4) lib/active_record/core.rb:155:in `find'
|
|
131
|
+
/root/projects/any_login/lib/any_login/strategy/devise.rb:8:in `any_login_sign_in'
|
|
132
|
+
/root/projects/any_login/app/controllers/any_login/application_controller.rb:6:in `call'
|
|
133
|
+
/root/projects/any_login/app/controllers/any_login/application_controller.rb:6:in `any_login'
|
|
134
|
+
actionpack (4.2.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
|
135
|
+
actionpack (4.2.4) lib/abstract_controller/base.rb:198:in `process_action'
|
|
136
|
+
actionpack (4.2.4) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
|
137
|
+
actionpack (4.2.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
|
|
138
|
+
activesupport (4.2.4) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
|
|
139
|
+
activesupport (4.2.4) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
|
|
140
|
+
activesupport (4.2.4) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
|
141
|
+
actionpack (4.2.4) lib/abstract_controller/callbacks.rb:19:in `process_action'
|
|
142
|
+
actionpack (4.2.4) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
|
143
|
+
actionpack (4.2.4) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
|
|
144
|
+
activesupport (4.2.4) lib/active_support/notifications.rb:164:in `block in instrument'
|
|
145
|
+
activesupport (4.2.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
|
146
|
+
activesupport (4.2.4) lib/active_support/notifications.rb:164:in `instrument'
|
|
147
|
+
actionpack (4.2.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
|
148
|
+
actionpack (4.2.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
|
|
149
|
+
activerecord (4.2.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
|
150
|
+
actionpack (4.2.4) lib/abstract_controller/base.rb:137:in `process'
|
|
151
|
+
actionview (4.2.4) lib/action_view/rendering.rb:30:in `process'
|
|
152
|
+
actionpack (4.2.4) lib/action_controller/metal.rb:196:in `dispatch'
|
|
153
|
+
actionpack (4.2.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
|
154
|
+
actionpack (4.2.4) lib/action_controller/metal.rb:237:in `block in action'
|
|
155
|
+
actionpack (4.2.4) lib/action_dispatch/routing/route_set.rb:76:in `call'
|
|
156
|
+
actionpack (4.2.4) lib/action_dispatch/routing/route_set.rb:76:in `dispatch'
|
|
157
|
+
actionpack (4.2.4) lib/action_dispatch/routing/route_set.rb:45:in `serve'
|
|
158
|
+
actionpack (4.2.4) lib/action_dispatch/journey/router.rb:43:in `block in serve'
|
|
159
|
+
actionpack (4.2.4) lib/action_dispatch/journey/router.rb:30:in `each'
|
|
160
|
+
actionpack (4.2.4) lib/action_dispatch/journey/router.rb:30:in `serve'
|
|
161
|
+
actionpack (4.2.4) lib/action_dispatch/routing/route_set.rb:821:in `call'
|
|
162
|
+
railties (4.2.4) lib/rails/engine.rb:518:in `call'
|
|
163
|
+
railties (4.2.4) lib/rails/railtie.rb:194:in `public_send'
|
|
164
|
+
railties (4.2.4) lib/rails/railtie.rb:194:in `method_missing'
|
|
165
|
+
actionpack (4.2.4) lib/action_dispatch/routing/mapper.rb:51:in `serve'
|
|
166
|
+
actionpack (4.2.4) lib/action_dispatch/journey/router.rb:43:in `block in serve'
|
|
167
|
+
actionpack (4.2.4) lib/action_dispatch/journey/router.rb:30:in `each'
|
|
168
|
+
actionpack (4.2.4) lib/action_dispatch/journey/router.rb:30:in `serve'
|
|
169
|
+
actionpack (4.2.4) lib/action_dispatch/routing/route_set.rb:821:in `call'
|
|
170
|
+
warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
|
|
171
|
+
warden (1.2.3) lib/warden/manager.rb:34:in `catch'
|
|
172
|
+
warden (1.2.3) lib/warden/manager.rb:34:in `call'
|
|
173
|
+
rack (1.6.4) lib/rack/etag.rb:24:in `call'
|
|
174
|
+
rack (1.6.4) lib/rack/conditionalget.rb:38:in `call'
|
|
175
|
+
rack (1.6.4) lib/rack/head.rb:13:in `call'
|
|
176
|
+
actionpack (4.2.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
|
177
|
+
actionpack (4.2.4) lib/action_dispatch/middleware/flash.rb:260:in `call'
|
|
178
|
+
rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
|
|
179
|
+
rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
|
|
180
|
+
actionpack (4.2.4) lib/action_dispatch/middleware/cookies.rb:560:in `call'
|
|
181
|
+
activerecord (4.2.4) lib/active_record/query_cache.rb:36:in `call'
|
|
182
|
+
activerecord (4.2.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
|
|
183
|
+
activerecord (4.2.4) lib/active_record/migration.rb:377:in `call'
|
|
184
|
+
actionpack (4.2.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
|
185
|
+
activesupport (4.2.4) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
|
|
186
|
+
activesupport (4.2.4) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
|
|
187
|
+
activesupport (4.2.4) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
|
188
|
+
actionpack (4.2.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
|
189
|
+
actionpack (4.2.4) lib/action_dispatch/middleware/reloader.rb:73:in `call'
|
|
190
|
+
actionpack (4.2.4) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
|
|
191
|
+
actionpack (4.2.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
|
192
|
+
actionpack (4.2.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
|
193
|
+
railties (4.2.4) lib/rails/rack/logger.rb:38:in `call_app'
|
|
194
|
+
railties (4.2.4) lib/rails/rack/logger.rb:20:in `block in call'
|
|
195
|
+
activesupport (4.2.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
|
196
|
+
activesupport (4.2.4) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
197
|
+
activesupport (4.2.4) lib/active_support/tagged_logging.rb:68:in `tagged'
|
|
198
|
+
railties (4.2.4) lib/rails/rack/logger.rb:20:in `call'
|
|
199
|
+
quiet_assets (1.1.0) lib/quiet_assets.rb:27:in `call_with_quiet_assets'
|
|
200
|
+
actionpack (4.2.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
|
201
|
+
rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
|
|
202
|
+
rack (1.6.4) lib/rack/runtime.rb:18:in `call'
|
|
203
|
+
activesupport (4.2.4) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
204
|
+
rack (1.6.4) lib/rack/lock.rb:17:in `call'
|
|
205
|
+
actionpack (4.2.4) lib/action_dispatch/middleware/static.rb:116:in `call'
|
|
206
|
+
rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
|
|
207
|
+
railties (4.2.4) lib/rails/engine.rb:518:in `call'
|
|
208
|
+
railties (4.2.4) lib/rails/application.rb:165:in `call'
|
|
209
|
+
rack (1.6.4) lib/rack/lock.rb:17:in `call'
|
|
210
|
+
rack (1.6.4) lib/rack/content_length.rb:15:in `call'
|
|
211
|
+
rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
|
|
212
|
+
/usr/local/rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
|
|
213
|
+
/usr/local/rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
|
|
214
|
+
/usr/local/rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
|
|
215
|
+
|
|
216
|
+
|
|
217
|
+
Rendered /usr/local/rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.3ms)
|
|
218
|
+
Rendered /usr/local/rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms)
|
|
219
|
+
Rendered /usr/local/rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms)
|
|
220
|
+
Rendered /usr/local/rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (17.1ms)
|
|
221
|
+
|
|
222
|
+
|
|
223
|
+
Started GET "/" for 192.168.217.1 at 2015-09-14 08:28:07 -0700
|
|
224
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
225
|
+
Processing by HomeController#index as HTML
|
|
226
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 75]]
|
|
227
|
+
Rendered home/index.html.erb within layouts/application (30.0ms)
|
|
228
|
+
[1m[36mUser Load (0.7ms)[0m [1mSELECT "users".* FROM "users"[0m
|
|
229
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (8.5ms)
|
|
230
|
+
Completed 200 OK in 192ms (Views: 190.2ms | ActiveRecord: 1.3ms)
|
|
231
|
+
|
|
232
|
+
|
|
233
|
+
Started POST "/any_login/any_login/sign_in" for 192.168.217.1 at 2015-09-14 08:28:28 -0700
|
|
234
|
+
Processing by AnyLogin::ApplicationController#any_login as HTML
|
|
235
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"q5fw6EC+bf8ystbgYWKt2vNn4qBqgLQaxDsHsWmDLONNReyg0hnrXS1Dj2wYaqyUGqpbqvAVoB2L0FbD+N3clA==", "id"=>""}
|
|
236
|
+
[1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", nil]]
|
|
237
|
+
Completed 404 Not Found in 4ms (ActiveRecord: 0.4ms)
|
|
238
|
+
|
|
239
|
+
ActiveRecord::RecordNotFound (Couldn't find User with 'id'=):
|
|
240
|
+
activerecord (4.2.4) lib/active_record/core.rb:155:in `find'
|
|
241
|
+
/root/projects/any_login/lib/any_login/strategy/devise.rb:8:in `any_login_sign_in'
|
|
242
|
+
/root/projects/any_login/app/controllers/any_login/application_controller.rb:6:in `call'
|
|
243
|
+
/root/projects/any_login/app/controllers/any_login/application_controller.rb:6:in `any_login'
|
|
244
|
+
actionpack (4.2.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
|
245
|
+
actionpack (4.2.4) lib/abstract_controller/base.rb:198:in `process_action'
|
|
246
|
+
actionpack (4.2.4) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
|
247
|
+
actionpack (4.2.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
|
|
248
|
+
activesupport (4.2.4) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
|
|
249
|
+
activesupport (4.2.4) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
|
|
250
|
+
activesupport (4.2.4) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
|
251
|
+
actionpack (4.2.4) lib/abstract_controller/callbacks.rb:19:in `process_action'
|
|
252
|
+
actionpack (4.2.4) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
|
253
|
+
actionpack (4.2.4) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
|
|
254
|
+
activesupport (4.2.4) lib/active_support/notifications.rb:164:in `block in instrument'
|
|
255
|
+
activesupport (4.2.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
|
256
|
+
activesupport (4.2.4) lib/active_support/notifications.rb:164:in `instrument'
|
|
257
|
+
actionpack (4.2.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
|
258
|
+
actionpack (4.2.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
|
|
259
|
+
activerecord (4.2.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
|
260
|
+
actionpack (4.2.4) lib/abstract_controller/base.rb:137:in `process'
|
|
261
|
+
actionview (4.2.4) lib/action_view/rendering.rb:30:in `process'
|
|
262
|
+
actionpack (4.2.4) lib/action_controller/metal.rb:196:in `dispatch'
|
|
263
|
+
actionpack (4.2.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
|
264
|
+
actionpack (4.2.4) lib/action_controller/metal.rb:237:in `block in action'
|
|
265
|
+
actionpack (4.2.4) lib/action_dispatch/routing/route_set.rb:76:in `call'
|
|
266
|
+
actionpack (4.2.4) lib/action_dispatch/routing/route_set.rb:76:in `dispatch'
|
|
267
|
+
actionpack (4.2.4) lib/action_dispatch/routing/route_set.rb:45:in `serve'
|
|
268
|
+
actionpack (4.2.4) lib/action_dispatch/journey/router.rb:43:in `block in serve'
|
|
269
|
+
actionpack (4.2.4) lib/action_dispatch/journey/router.rb:30:in `each'
|
|
270
|
+
actionpack (4.2.4) lib/action_dispatch/journey/router.rb:30:in `serve'
|
|
271
|
+
actionpack (4.2.4) lib/action_dispatch/routing/route_set.rb:821:in `call'
|
|
272
|
+
railties (4.2.4) lib/rails/engine.rb:518:in `call'
|
|
273
|
+
railties (4.2.4) lib/rails/railtie.rb:194:in `public_send'
|
|
274
|
+
railties (4.2.4) lib/rails/railtie.rb:194:in `method_missing'
|
|
275
|
+
actionpack (4.2.4) lib/action_dispatch/routing/mapper.rb:51:in `serve'
|
|
276
|
+
actionpack (4.2.4) lib/action_dispatch/journey/router.rb:43:in `block in serve'
|
|
277
|
+
actionpack (4.2.4) lib/action_dispatch/journey/router.rb:30:in `each'
|
|
278
|
+
actionpack (4.2.4) lib/action_dispatch/journey/router.rb:30:in `serve'
|
|
279
|
+
actionpack (4.2.4) lib/action_dispatch/routing/route_set.rb:821:in `call'
|
|
280
|
+
warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
|
|
281
|
+
warden (1.2.3) lib/warden/manager.rb:34:in `catch'
|
|
282
|
+
warden (1.2.3) lib/warden/manager.rb:34:in `call'
|
|
283
|
+
rack (1.6.4) lib/rack/etag.rb:24:in `call'
|
|
284
|
+
rack (1.6.4) lib/rack/conditionalget.rb:38:in `call'
|
|
285
|
+
rack (1.6.4) lib/rack/head.rb:13:in `call'
|
|
286
|
+
actionpack (4.2.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
|
287
|
+
actionpack (4.2.4) lib/action_dispatch/middleware/flash.rb:260:in `call'
|
|
288
|
+
rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
|
|
289
|
+
rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
|
|
290
|
+
actionpack (4.2.4) lib/action_dispatch/middleware/cookies.rb:560:in `call'
|
|
291
|
+
activerecord (4.2.4) lib/active_record/query_cache.rb:36:in `call'
|
|
292
|
+
activerecord (4.2.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
|
|
293
|
+
activerecord (4.2.4) lib/active_record/migration.rb:377:in `call'
|
|
294
|
+
actionpack (4.2.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
|
295
|
+
activesupport (4.2.4) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
|
|
296
|
+
activesupport (4.2.4) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
|
|
297
|
+
activesupport (4.2.4) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
|
298
|
+
actionpack (4.2.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
|
299
|
+
actionpack (4.2.4) lib/action_dispatch/middleware/reloader.rb:73:in `call'
|
|
300
|
+
actionpack (4.2.4) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
|
|
301
|
+
actionpack (4.2.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
|
302
|
+
actionpack (4.2.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
|
303
|
+
railties (4.2.4) lib/rails/rack/logger.rb:38:in `call_app'
|
|
304
|
+
railties (4.2.4) lib/rails/rack/logger.rb:20:in `block in call'
|
|
305
|
+
activesupport (4.2.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
|
306
|
+
activesupport (4.2.4) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
307
|
+
activesupport (4.2.4) lib/active_support/tagged_logging.rb:68:in `tagged'
|
|
308
|
+
railties (4.2.4) lib/rails/rack/logger.rb:20:in `call'
|
|
309
|
+
quiet_assets (1.1.0) lib/quiet_assets.rb:27:in `call_with_quiet_assets'
|
|
310
|
+
actionpack (4.2.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
|
311
|
+
rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
|
|
312
|
+
rack (1.6.4) lib/rack/runtime.rb:18:in `call'
|
|
313
|
+
activesupport (4.2.4) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
314
|
+
rack (1.6.4) lib/rack/lock.rb:17:in `call'
|
|
315
|
+
actionpack (4.2.4) lib/action_dispatch/middleware/static.rb:116:in `call'
|
|
316
|
+
rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
|
|
317
|
+
railties (4.2.4) lib/rails/engine.rb:518:in `call'
|
|
318
|
+
railties (4.2.4) lib/rails/application.rb:165:in `call'
|
|
319
|
+
rack (1.6.4) lib/rack/lock.rb:17:in `call'
|
|
320
|
+
rack (1.6.4) lib/rack/content_length.rb:15:in `call'
|
|
321
|
+
rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
|
|
322
|
+
/usr/local/rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
|
|
323
|
+
/usr/local/rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
|
|
324
|
+
/usr/local/rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
|
|
325
|
+
|
|
326
|
+
|
|
327
|
+
Rendered /usr/local/rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.4ms)
|
|
328
|
+
Rendered /usr/local/rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms)
|
|
329
|
+
Rendered /usr/local/rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms)
|
|
330
|
+
Rendered /usr/local/rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (19.3ms)
|
|
331
|
+
|
|
332
|
+
|
|
333
|
+
Started GET "/" for 192.168.217.1 at 2015-09-14 08:29:34 -0700
|
|
334
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
335
|
+
Processing by HomeController#index as HTML
|
|
336
|
+
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 75]]
|
|
337
|
+
Rendered home/index.html.erb within layouts/application (29.0ms)
|
|
338
|
+
[1m[36mUser Load (0.7ms)[0m [1mSELECT "users".* FROM "users"[0m
|
|
339
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (8.7ms)
|
|
340
|
+
Completed 200 OK in 275ms (Views: 272.7ms | ActiveRecord: 1.4ms)
|
|
341
|
+
|
|
342
|
+
|
|
343
|
+
Started GET "/" for 192.168.217.1 at 2015-09-14 08:29:36 -0700
|
|
344
|
+
Processing by HomeController#index as HTML
|
|
345
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 75]]
|
|
346
|
+
Rendered home/index.html.erb within layouts/application (2.2ms)
|
|
347
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (7.4ms)
|
|
348
|
+
Completed 200 OK in 38ms (Views: 37.6ms | ActiveRecord: 0.1ms)
|
|
349
|
+
|
|
350
|
+
|
|
351
|
+
Started POST "/any_login/any_login/sign_in" for 192.168.217.1 at 2015-09-14 08:29:39 -0700
|
|
352
|
+
Processing by AnyLogin::ApplicationController#any_login as HTML
|
|
353
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"cIl0eJp9K3QoOi4kV/lKMxVIrrPyWVhO8/Mnog62WpCWW2gwCNqt1jfLd6gu8Ut9/IUXuWjMTEm8GHbQn+iq5w==", "selected_id"=>"5", "id"=>""}
|
|
354
|
+
[1m[36mUser Load (0.6ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 5]]
|
|
355
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 75]]
|
|
356
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
357
|
+
[1m[35mSQL (0.3ms)[0m UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["last_sign_in_at", "2015-09-14 15:29:39.237212"], ["current_sign_in_at", "2015-09-14 15:29:39.237212"], ["last_sign_in_ip", "192.168.217.1"], ["current_sign_in_ip", "192.168.217.1"], ["sign_in_count", 1], ["updated_at", "2015-09-14 15:29:39.238885"], ["id", 5]]
|
|
358
|
+
[1m[36m (5.0ms)[0m [1mcommit transaction[0m
|
|
359
|
+
Redirected to http://cn.com:3000/
|
|
360
|
+
Completed 302 Found in 22ms (ActiveRecord: 6.2ms)
|
|
361
|
+
|
|
362
|
+
|
|
363
|
+
Started GET "/" for 192.168.217.1 at 2015-09-14 08:29:39 -0700
|
|
364
|
+
Processing by HomeController#index as HTML
|
|
365
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 5]]
|
|
366
|
+
Rendered home/index.html.erb within layouts/application (2.6ms)
|
|
367
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (4.7ms)
|
|
368
|
+
Completed 200 OK in 26ms (Views: 25.7ms | ActiveRecord: 0.2ms)
|
|
369
|
+
|
|
370
|
+
|
|
371
|
+
Started DELETE "/users/sign_out" for 192.168.217.1 at 2015-09-14 08:29:43 -0700
|
|
372
|
+
Processing by Devise::SessionsController#destroy as HTML
|
|
373
|
+
Parameters: {"authenticity_token"=>"p+robMpRZ2S7istCXAyqMEbNguf10qPYK5XClPRAW2pBOPQkWPbhxqR7ks4lBKt+rwA77W9Ht99kfpPmZR6rHQ=="}
|
|
374
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1[0m [["id", 5]]
|
|
375
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
376
|
+
[1m[36m (0.1ms)[0m [1mcommit transaction[0m
|
|
377
|
+
Redirected to http://cn.com:3000/
|
|
378
|
+
Completed 302 Found in 14ms (ActiveRecord: 0.3ms)
|
|
379
|
+
|
|
380
|
+
|
|
381
|
+
Started GET "/" for 192.168.217.1 at 2015-09-14 08:29:43 -0700
|
|
382
|
+
Processing by HomeController#index as HTML
|
|
383
|
+
Rendered home/index.html.erb within layouts/application (3.9ms)
|
|
384
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (5.1ms)
|
|
385
|
+
Completed 200 OK in 32ms (Views: 31.4ms | ActiveRecord: 0.0ms)
|
|
386
|
+
|
|
387
|
+
|
|
388
|
+
Started POST "/any_login/any_login/sign_in" for 192.168.217.1 at 2015-09-14 08:29:49 -0700
|
|
389
|
+
Processing by AnyLogin::ApplicationController#any_login as HTML
|
|
390
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"Y3N0vE+xuGqOu812WxHCFdDt5eTq/8HDb8mA7xeEikmC5c6j5E8YpBUNXCWEQyFCj0tHNwfX0IrkD+/+FqJyxw==", "selected_id"=>"", "id"=>"3", "commit"=>"Login"}
|
|
391
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]]
|
|
392
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
393
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "users" SET "current_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2015-09-14 15:29:49.823707"], ["sign_in_count", 2], ["updated_at", "2015-09-14 15:29:49.824725"], ["id", 3]]
|
|
394
|
+
[1m[36m (4.8ms)[0m [1mcommit transaction[0m
|
|
395
|
+
Redirected to http://cn.com:3000/
|
|
396
|
+
Completed 302 Found in 10ms (ActiveRecord: 5.2ms)
|
|
397
|
+
|
|
398
|
+
|
|
399
|
+
Started GET "/" for 192.168.217.1 at 2015-09-14 08:29:49 -0700
|
|
400
|
+
Processing by HomeController#index as HTML
|
|
401
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 3]]
|
|
402
|
+
Rendered home/index.html.erb within layouts/application (1.9ms)
|
|
403
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (7.7ms)
|
|
404
|
+
Completed 200 OK in 52ms (Views: 51.6ms | ActiveRecord: 0.1ms)
|
|
405
|
+
|
|
406
|
+
|
|
407
|
+
Started GET "/" for 192.168.217.1 at 2015-09-14 08:30:25 -0700
|
|
408
|
+
Processing by HomeController#index as HTML
|
|
409
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1[0m [["id", 3]]
|
|
410
|
+
Rendered home/index.html.erb within layouts/application (2.1ms)
|
|
411
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (10.0ms)
|
|
412
|
+
Completed 200 OK in 51ms (Views: 50.6ms | ActiveRecord: 0.1ms)
|
|
413
|
+
|
|
414
|
+
|
|
415
|
+
Started GET "/" for 192.168.217.1 at 2015-09-14 08:30:33 -0700
|
|
416
|
+
Processing by HomeController#index as HTML
|
|
417
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 3]]
|
|
418
|
+
Rendered home/index.html.erb within layouts/application (1.4ms)
|
|
419
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (6.2ms)
|
|
420
|
+
Completed 200 OK in 27ms (Views: 26.1ms | ActiveRecord: 0.1ms)
|
|
421
|
+
|
|
422
|
+
|
|
423
|
+
Started GET "/" for 192.168.217.1 at 2015-09-14 08:30:41 -0700
|
|
424
|
+
Processing by HomeController#index as HTML
|
|
425
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1[0m [["id", 3]]
|
|
426
|
+
Rendered home/index.html.erb within layouts/application (1.7ms)
|
|
427
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (7.1ms)
|
|
428
|
+
Completed 200 OK in 26ms (Views: 25.8ms | ActiveRecord: 0.1ms)
|
|
429
|
+
|
|
430
|
+
|
|
431
|
+
Started POST "/any_login/any_login/sign_in" for 192.168.217.1 at 2015-09-14 08:30:46 -0700
|
|
432
|
+
Processing by AnyLogin::ApplicationController#any_login as HTML
|
|
433
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"/oaC2v0wLlzqLmjOZBrMDKFh3X3xlnAsqd1TpCOv+g8fEDjFVs6OknGY+Z27SC9b/sd/rhy+YWUiGzy1IokCgQ==", "selected_id"=>"15", "id"=>""}
|
|
434
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 15]]
|
|
435
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1[0m [["id", 3]]
|
|
436
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
437
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ?[0m [["last_sign_in_at", "2015-09-14 15:30:46.255873"], ["current_sign_in_at", "2015-09-14 15:30:46.255873"], ["last_sign_in_ip", "192.168.217.1"], ["current_sign_in_ip", "192.168.217.1"], ["sign_in_count", 1], ["updated_at", "2015-09-14 15:30:46.256819"], ["id", 15]]
|
|
438
|
+
[1m[35m (6.0ms)[0m commit transaction
|
|
439
|
+
Redirected to http://cn.com:3000/
|
|
440
|
+
Completed 302 Found in 13ms (ActiveRecord: 6.7ms)
|
|
441
|
+
|
|
442
|
+
|
|
443
|
+
Started GET "/" for 192.168.217.1 at 2015-09-14 08:30:46 -0700
|
|
444
|
+
Processing by HomeController#index as HTML
|
|
445
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1[0m [["id", 15]]
|
|
446
|
+
Rendered home/index.html.erb within layouts/application (1.4ms)
|
|
447
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (5.2ms)
|
|
448
|
+
Completed 200 OK in 29ms (Views: 28.9ms | ActiveRecord: 0.1ms)
|
|
449
|
+
|
|
450
|
+
|
|
451
|
+
Started DELETE "/users/sign_out" for 192.168.217.1 at 2015-09-14 08:30:49 -0700
|
|
452
|
+
Processing by Devise::SessionsController#destroy as HTML
|
|
453
|
+
Parameters: {"authenticity_token"=>"U/2gTG1jbGssIddj/6jEjKmQZDN8oKqauDPnyxzXZHqyaxpTxp3MpbeXRjAg+ifb9jbG4JGIu9Mz9YjaHfGc9A=="}
|
|
454
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 15]]
|
|
455
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
456
|
+
[1m[35m (0.2ms)[0m commit transaction
|
|
457
|
+
Redirected to http://cn.com:3000/
|
|
458
|
+
Completed 302 Found in 7ms (ActiveRecord: 0.6ms)
|
|
459
|
+
|
|
460
|
+
|
|
461
|
+
Started GET "/" for 192.168.217.1 at 2015-09-14 08:30:49 -0700
|
|
462
|
+
Processing by HomeController#index as HTML
|
|
463
|
+
Rendered home/index.html.erb within layouts/application (0.5ms)
|
|
464
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (4.8ms)
|
|
465
|
+
Completed 200 OK in 28ms (Views: 27.7ms | ActiveRecord: 0.0ms)
|
|
466
|
+
|
|
467
|
+
|
|
468
|
+
Started GET "/" for 192.168.217.1 at 2015-09-14 08:33:27 -0700
|
|
469
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
470
|
+
Processing by HomeController#index as HTML
|
|
471
|
+
Rendered home/index.html.erb within layouts/application (11.2ms)
|
|
472
|
+
[1m[35mUser Load (0.7ms)[0m SELECT "users".* FROM "users"
|
|
473
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (19.4ms)
|
|
474
|
+
Completed 200 OK in 274ms (Views: 272.6ms | ActiveRecord: 1.0ms)
|
|
475
|
+
|
|
476
|
+
|
|
477
|
+
Started GET "/" for 192.168.217.1 at 2015-09-14 08:34:08 -0700
|
|
478
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
479
|
+
Processing by HomeController#index as HTML
|
|
480
|
+
Rendered home/index.html.erb within layouts/application (11.0ms)
|
|
481
|
+
[1m[35mUser Load (0.6ms)[0m SELECT "users".* FROM "users"
|
|
482
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (18.6ms)
|
|
483
|
+
Completed 200 OK in 273ms (Views: 272.1ms | ActiveRecord: 1.0ms)
|
|
484
|
+
|
|
485
|
+
|
|
486
|
+
Started GET "/" for 192.168.217.1 at 2015-09-14 08:35:17 -0700
|
|
487
|
+
Processing by HomeController#index as HTML
|
|
488
|
+
Rendered home/index.html.erb within layouts/application (0.6ms)
|
|
489
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (4.2ms)
|
|
490
|
+
Completed 200 OK in 23ms (Views: 22.8ms | ActiveRecord: 0.0ms)
|
|
491
|
+
|
|
492
|
+
|
|
493
|
+
Started POST "/any_login/any_login/sign_in" for 192.168.217.1 at 2015-09-14 08:35:22 -0700
|
|
494
|
+
Processing by AnyLogin::ApplicationController#any_login as HTML
|
|
495
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"qnHRWslbqBH4Ar51A/JDuRV5dhS+C+U+bysQADeEisMxa5wGjfdPBZlj6FPS6WrfSVYeAy5ii+Yg88vKa/h5yw==", "selected_id"=>"35", "id"=>""}
|
|
496
|
+
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 35]]
|
|
497
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
498
|
+
[1m[36mSQL (0.5ms)[0m [1mUPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ?[0m [["last_sign_in_at", "2015-09-14 15:35:22.365363"], ["current_sign_in_at", "2015-09-14 15:35:22.365363"], ["last_sign_in_ip", "192.168.217.1"], ["current_sign_in_ip", "192.168.217.1"], ["sign_in_count", 1], ["updated_at", "2015-09-14 15:35:22.367040"], ["id", 35]]
|
|
499
|
+
[1m[35m (7.4ms)[0m commit transaction
|
|
500
|
+
Redirected to http://cn.com:3000/
|
|
501
|
+
Completed 302 Found in 21ms (ActiveRecord: 8.2ms)
|
|
502
|
+
|
|
503
|
+
|
|
504
|
+
Started GET "/" for 192.168.217.1 at 2015-09-14 08:35:22 -0700
|
|
505
|
+
Processing by HomeController#index as HTML
|
|
506
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1[0m [["id", 35]]
|
|
507
|
+
Rendered home/index.html.erb within layouts/application (1.8ms)
|
|
508
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (26.3ms)
|
|
509
|
+
Completed 200 OK in 47ms (Views: 46.6ms | ActiveRecord: 0.2ms)
|
|
510
|
+
|
|
511
|
+
|
|
512
|
+
Started POST "/any_login/any_login/sign_in" for 192.168.217.1 at 2015-09-14 08:35:27 -0700
|
|
513
|
+
Processing by AnyLogin::ApplicationController#any_login as HTML
|
|
514
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"YNrziU9juqbj686D3lF8ZW5n3gI/UobYA/L+EJxewgr7wL7VC89dsoKKmKUPSlUDMki2Fa876ABMKiXawCIxAg==", "selected_id"=>"40", "id"=>""}
|
|
515
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 40]]
|
|
516
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1[0m [["id", 35]]
|
|
517
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
518
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ?[0m [["last_sign_in_at", "2015-09-14 15:35:27.647094"], ["current_sign_in_at", "2015-09-14 15:35:27.647094"], ["last_sign_in_ip", "192.168.217.1"], ["current_sign_in_ip", "192.168.217.1"], ["sign_in_count", 1], ["updated_at", "2015-09-14 15:35:27.647948"], ["id", 40]]
|
|
519
|
+
[1m[35m (5.0ms)[0m commit transaction
|
|
520
|
+
Redirected to http://cn.com:3000/
|
|
521
|
+
Completed 302 Found in 12ms (ActiveRecord: 5.6ms)
|
|
522
|
+
|
|
523
|
+
|
|
524
|
+
Started GET "/" for 192.168.217.1 at 2015-09-14 08:35:27 -0700
|
|
525
|
+
Processing by HomeController#index as HTML
|
|
526
|
+
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1[0m [["id", 40]]
|
|
527
|
+
Rendered home/index.html.erb within layouts/application (1.8ms)
|
|
528
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (5.2ms)
|
|
529
|
+
Completed 200 OK in 30ms (Views: 29.4ms | ActiveRecord: 0.3ms)
|
|
530
|
+
|
|
531
|
+
|
|
532
|
+
Started GET "/about" for 192.168.217.1 at 2015-09-14 08:35:30 -0700
|
|
533
|
+
Processing by HomeController#about as HTML
|
|
534
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 40]]
|
|
535
|
+
Rendered home/about.html.erb within layouts/application (0.4ms)
|
|
536
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (10.7ms)
|
|
537
|
+
Completed 200 OK in 37ms (Views: 32.5ms | ActiveRecord: 0.1ms)
|
|
538
|
+
|
|
539
|
+
|
|
540
|
+
Started GET "/" for 192.168.217.1 at 2015-09-14 08:35:31 -0700
|
|
541
|
+
Processing by HomeController#index as HTML
|
|
542
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1[0m [["id", 40]]
|
|
543
|
+
Rendered home/index.html.erb within layouts/application (8.8ms)
|
|
544
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (8.5ms)
|
|
545
|
+
Completed 200 OK in 51ms (Views: 49.8ms | ActiveRecord: 0.1ms)
|
|
546
|
+
|
|
547
|
+
|
|
548
|
+
Started GET "/" for 192.168.217.1 at 2015-09-14 08:35:33 -0700
|
|
549
|
+
Processing by HomeController#index as HTML
|
|
550
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 40]]
|
|
551
|
+
Rendered home/index.html.erb within layouts/application (1.6ms)
|
|
552
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (10.5ms)
|
|
553
|
+
Completed 200 OK in 49ms (Views: 48.8ms | ActiveRecord: 0.1ms)
|
|
554
|
+
|
|
555
|
+
|
|
556
|
+
Started GET "/" for 192.168.217.1 at 2015-09-21 03:45:14 -0700
|
|
557
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
558
|
+
Processing by HomeController#index as HTML
|
|
559
|
+
Rendered home/index.html.erb within layouts/application (10.3ms)
|
|
560
|
+
[1m[35mUser Load (0.7ms)[0m SELECT "users".* FROM "users"
|
|
561
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (21.8ms)
|
|
562
|
+
Completed 200 OK in 218ms (Views: 217.1ms | ActiveRecord: 1.1ms)
|
|
563
|
+
|
|
564
|
+
|
|
565
|
+
Started GET "/" for 192.168.217.1 at 2015-09-21 03:45:30 -0700
|
|
566
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
567
|
+
Processing by HomeController#index as HTML
|
|
568
|
+
Rendered home/index.html.erb within layouts/application (9.8ms)
|
|
569
|
+
[1m[35mUser Load (0.6ms)[0m SELECT "users".* FROM "users"
|
|
570
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (18.8ms)
|
|
571
|
+
Completed 200 OK in 264ms (Views: 262.1ms | ActiveRecord: 1.1ms)
|
|
572
|
+
|
|
573
|
+
|
|
574
|
+
Started GET "/" for 192.168.217.1 at 2015-09-21 03:47:17 -0700
|
|
575
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
576
|
+
Processing by HomeController#index as HTML
|
|
577
|
+
Rendered home/index.html.erb within layouts/application (10.7ms)
|
|
578
|
+
[1m[35mUser Load (1.0ms)[0m SELECT "users".* FROM "users"
|
|
579
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (42.0ms)
|
|
580
|
+
Completed 200 OK in 409ms (Views: 407.0ms | ActiveRecord: 1.4ms)
|
|
581
|
+
|
|
582
|
+
|
|
583
|
+
Started GET "/" for 192.168.217.1 at 2015-09-21 03:51:20 -0700
|
|
584
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
585
|
+
Processing by HomeController#index as HTML
|
|
586
|
+
Rendered home/index.html.erb within layouts/application (12.7ms)
|
|
587
|
+
Rendered shared/_header.html.erb (0.3ms)
|
|
588
|
+
[1m[35mUser Load (0.7ms)[0m SELECT "users".* FROM "users"
|
|
589
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (20.3ms)
|
|
590
|
+
Completed 200 OK in 290ms (Views: 288.5ms | ActiveRecord: 1.4ms)
|
|
591
|
+
|
|
592
|
+
|
|
593
|
+
Started GET "/" for 192.168.217.1 at 2015-09-21 03:51:53 -0700
|
|
594
|
+
Processing by HomeController#index as HTML
|
|
595
|
+
Rendered home/index.html.erb within layouts/application (1.4ms)
|
|
596
|
+
Rendered shared/_header.html.erb (0.1ms)
|
|
597
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (5.7ms)
|
|
598
|
+
Completed 200 OK in 39ms (Views: 38.4ms | ActiveRecord: 0.0ms)
|
|
599
|
+
|
|
600
|
+
|
|
601
|
+
Started GET "/" for 192.168.217.1 at 2015-09-21 03:53:21 -0700
|
|
602
|
+
Processing by HomeController#index as HTML
|
|
603
|
+
Rendered home/index.html.erb within layouts/application (1.6ms)
|
|
604
|
+
Rendered shared/_header.html.erb (0.0ms)
|
|
605
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (7.7ms)
|
|
606
|
+
Completed 200 OK in 44ms (Views: 43.9ms | ActiveRecord: 0.0ms)
|
|
607
|
+
|
|
608
|
+
|
|
609
|
+
Started GET "/" for 192.168.217.1 at 2015-09-21 03:54:00 -0700
|
|
610
|
+
Processing by HomeController#index as HTML
|
|
611
|
+
Rendered home/index.html.erb within layouts/application (0.5ms)
|
|
612
|
+
Rendered shared/_header.html.erb (1.2ms)
|
|
613
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (7.4ms)
|
|
614
|
+
Completed 200 OK in 68ms (Views: 68.3ms | ActiveRecord: 0.0ms)
|
|
615
|
+
|
|
616
|
+
|
|
617
|
+
Started GET "/" for 192.168.217.1 at 2015-09-21 03:54:42 -0700
|
|
618
|
+
Processing by HomeController#index as HTML
|
|
619
|
+
Rendered home/index.html.erb within layouts/application (1.7ms)
|
|
620
|
+
Rendered shared/_header.html.erb (0.0ms)
|
|
621
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (6.6ms)
|
|
622
|
+
Completed 200 OK in 37ms (Views: 36.8ms | ActiveRecord: 0.0ms)
|
|
623
|
+
|
|
624
|
+
|
|
625
|
+
Started GET "/" for 192.168.217.1 at 2015-09-21 03:54:49 -0700
|
|
626
|
+
Processing by HomeController#index as HTML
|
|
627
|
+
Rendered home/index.html.erb within layouts/application (1.7ms)
|
|
628
|
+
Rendered shared/_header.html.erb (0.1ms)
|
|
629
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (5.4ms)
|
|
630
|
+
Completed 200 OK in 42ms (Views: 41.3ms | ActiveRecord: 0.0ms)
|
|
631
|
+
|
|
632
|
+
|
|
633
|
+
Started GET "/" for 192.168.217.1 at 2015-09-21 03:55:07 -0700
|
|
634
|
+
Processing by HomeController#index as HTML
|
|
635
|
+
Rendered home/index.html.erb within layouts/application (1.9ms)
|
|
636
|
+
Rendered shared/_header.html.erb (0.0ms)
|
|
637
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (5.2ms)
|
|
638
|
+
Completed 200 OK in 37ms (Views: 36.6ms | ActiveRecord: 0.0ms)
|
|
639
|
+
|
|
640
|
+
|
|
641
|
+
Started GET "/" for 192.168.217.1 at 2015-09-21 03:55:18 -0700
|
|
642
|
+
Processing by HomeController#index as HTML
|
|
643
|
+
Rendered home/index.html.erb within layouts/application (1.7ms)
|
|
644
|
+
Rendered shared/_header.html.erb (0.0ms)
|
|
645
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (5.4ms)
|
|
646
|
+
Completed 200 OK in 43ms (Views: 42.6ms | ActiveRecord: 0.0ms)
|
|
647
|
+
|
|
648
|
+
|
|
649
|
+
Started GET "/about" for 192.168.217.1 at 2015-09-21 03:55:25 -0700
|
|
650
|
+
Processing by HomeController#about as HTML
|
|
651
|
+
Completed 401 Unauthorized in 4ms (ActiveRecord: 0.0ms)
|
|
652
|
+
|
|
653
|
+
|
|
654
|
+
Started GET "/users/sign_in" for 192.168.217.1 at 2015-09-21 03:55:25 -0700
|
|
655
|
+
Processing by Devise::SessionsController#new as HTML
|
|
656
|
+
Rendered /usr/local/rvm/gems/ruby-2.2.2/gems/devise-3.5.2/app/views/devise/shared/_links.html.erb (1.4ms)
|
|
657
|
+
Rendered /usr/local/rvm/gems/ruby-2.2.2/gems/devise-3.5.2/app/views/devise/sessions/new.html.erb within layouts/application (56.9ms)
|
|
658
|
+
Rendered shared/_header.html.erb (0.1ms)
|
|
659
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (5.5ms)
|
|
660
|
+
Completed 200 OK in 121ms (Views: 109.6ms | ActiveRecord: 0.0ms)
|
|
661
|
+
|
|
662
|
+
|
|
663
|
+
Started GET "/users/sign_in" for 192.168.217.1 at 2015-09-21 03:56:04 -0700
|
|
664
|
+
Processing by Devise::SessionsController#new as HTML
|
|
665
|
+
Rendered /usr/local/rvm/gems/ruby-2.2.2/gems/devise-3.5.2/app/views/devise/shared/_links.html.erb (0.3ms)
|
|
666
|
+
Rendered /usr/local/rvm/gems/ruby-2.2.2/gems/devise-3.5.2/app/views/devise/sessions/new.html.erb within layouts/application (2.7ms)
|
|
667
|
+
Rendered shared/_header.html.erb (0.0ms)
|
|
668
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (14.6ms)
|
|
669
|
+
Completed 200 OK in 51ms (Views: 50.0ms | ActiveRecord: 0.0ms)
|
|
670
|
+
|
|
671
|
+
|
|
672
|
+
Started GET "/users/sign_in" for 192.168.217.1 at 2015-09-21 03:56:51 -0700
|
|
673
|
+
Processing by Devise::SessionsController#new as HTML
|
|
674
|
+
Rendered /usr/local/rvm/gems/ruby-2.2.2/gems/devise-3.5.2/app/views/devise/shared/_links.html.erb (0.5ms)
|
|
675
|
+
Rendered /usr/local/rvm/gems/ruby-2.2.2/gems/devise-3.5.2/app/views/devise/sessions/new.html.erb within layouts/application (3.2ms)
|
|
676
|
+
Rendered shared/_header.html.erb (0.0ms)
|
|
677
|
+
Rendered shared/_footer.html.erb (0.6ms)
|
|
678
|
+
Completed 500 Internal Server Error in 37ms (ActiveRecord: 0.0ms)
|
|
679
|
+
|
|
680
|
+
SyntaxError (/root/projects/any_login/test/dummy/app/views/shared/_footer.html.erb:12: syntax error, unexpected keyword_ensure, expecting end-of-input):
|
|
681
|
+
app/views/shared/_footer.html.erb:12: syntax error, unexpected keyword_ensure, expecting end-of-input
|
|
682
|
+
app/views/layouts/application.html.erb:24:in `_app_views_layouts_application_html_erb___283140696977877261_70068802693400'
|
|
683
|
+
|
|
684
|
+
|
|
685
|
+
Rendered /usr/local/rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.7ms)
|
|
686
|
+
Rendered /usr/local/rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms)
|
|
687
|
+
Rendered /usr/local/rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
|
|
688
|
+
Rendered /usr/local/rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (23.2ms)
|
|
689
|
+
|
|
690
|
+
|
|
691
|
+
Started GET "/users/sign_in" for 192.168.217.1 at 2015-09-21 03:57:13 -0700
|
|
692
|
+
Processing by Devise::SessionsController#new as HTML
|
|
693
|
+
Rendered /usr/local/rvm/gems/ruby-2.2.2/gems/devise-3.5.2/app/views/devise/shared/_links.html.erb (0.4ms)
|
|
694
|
+
Rendered /usr/local/rvm/gems/ruby-2.2.2/gems/devise-3.5.2/app/views/devise/sessions/new.html.erb within layouts/application (3.2ms)
|
|
695
|
+
Rendered shared/_header.html.erb (0.0ms)
|
|
696
|
+
Rendered shared/_footer.html.erb (1.0ms)
|
|
697
|
+
Completed 500 Internal Server Error in 34ms (ActiveRecord: 0.0ms)
|
|
698
|
+
|
|
699
|
+
SyntaxError (/root/projects/any_login/test/dummy/app/views/shared/_footer.html.erb:12: syntax error, unexpected keyword_ensure, expecting end-of-input):
|
|
700
|
+
app/views/shared/_footer.html.erb:12: syntax error, unexpected keyword_ensure, expecting end-of-input
|
|
701
|
+
app/views/layouts/application.html.erb:20:in `_app_views_layouts_application_html_erb___283140696977877261_70068938112360'
|
|
702
|
+
|
|
703
|
+
|
|
704
|
+
Rendered /usr/local/rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.9ms)
|
|
705
|
+
Rendered /usr/local/rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms)
|
|
706
|
+
Rendered /usr/local/rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
|
|
707
|
+
Rendered /usr/local/rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (19.9ms)
|
|
708
|
+
|
|
709
|
+
|
|
710
|
+
Started GET "/users/sign_in" for 192.168.217.1 at 2015-09-21 03:57:31 -0700
|
|
711
|
+
Processing by Devise::SessionsController#new as HTML
|
|
712
|
+
Rendered /usr/local/rvm/gems/ruby-2.2.2/gems/devise-3.5.2/app/views/devise/shared/_links.html.erb (0.3ms)
|
|
713
|
+
Rendered /usr/local/rvm/gems/ruby-2.2.2/gems/devise-3.5.2/app/views/devise/sessions/new.html.erb within layouts/application (2.5ms)
|
|
714
|
+
Rendered shared/_header.html.erb (0.0ms)
|
|
715
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (5.6ms)
|
|
716
|
+
Rendered shared/_footer.html.erb (7.2ms)
|
|
717
|
+
Completed 200 OK in 41ms (Views: 39.6ms | ActiveRecord: 0.0ms)
|
|
718
|
+
|
|
719
|
+
|
|
720
|
+
Started GET "/users/sign_in" for 192.168.217.1 at 2015-09-21 03:57:51 -0700
|
|
721
|
+
Processing by Devise::SessionsController#new as HTML
|
|
722
|
+
Rendered /usr/local/rvm/gems/ruby-2.2.2/gems/devise-3.5.2/app/views/devise/shared/_links.html.erb (0.3ms)
|
|
723
|
+
Rendered /usr/local/rvm/gems/ruby-2.2.2/gems/devise-3.5.2/app/views/devise/sessions/new.html.erb within layouts/application (3.0ms)
|
|
724
|
+
Rendered shared/_header.html.erb (0.0ms)
|
|
725
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (5.2ms)
|
|
726
|
+
Rendered shared/_footer.html.erb (6.8ms)
|
|
727
|
+
Completed 200 OK in 40ms (Views: 39.5ms | ActiveRecord: 0.0ms)
|
|
728
|
+
|
|
729
|
+
|
|
730
|
+
Started GET "/users/sign_in" for 192.168.217.1 at 2015-09-21 03:57:57 -0700
|
|
731
|
+
Processing by Devise::SessionsController#new as HTML
|
|
732
|
+
Rendered /usr/local/rvm/gems/ruby-2.2.2/gems/devise-3.5.2/app/views/devise/shared/_links.html.erb (0.2ms)
|
|
733
|
+
Rendered /usr/local/rvm/gems/ruby-2.2.2/gems/devise-3.5.2/app/views/devise/sessions/new.html.erb within layouts/application (2.3ms)
|
|
734
|
+
Rendered shared/_header.html.erb (0.0ms)
|
|
735
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (5.4ms)
|
|
736
|
+
Rendered shared/_footer.html.erb (7.7ms)
|
|
737
|
+
Completed 200 OK in 41ms (Views: 39.4ms | ActiveRecord: 0.0ms)
|
|
738
|
+
|
|
739
|
+
|
|
740
|
+
Started GET "/users/sign_in" for 192.168.217.1 at 2015-09-21 03:58:13 -0700
|
|
741
|
+
Processing by Devise::SessionsController#new as HTML
|
|
742
|
+
Rendered /usr/local/rvm/gems/ruby-2.2.2/gems/devise-3.5.2/app/views/devise/shared/_links.html.erb (0.2ms)
|
|
743
|
+
Rendered /usr/local/rvm/gems/ruby-2.2.2/gems/devise-3.5.2/app/views/devise/sessions/new.html.erb within layouts/application (2.2ms)
|
|
744
|
+
Rendered shared/_header.html.erb (0.3ms)
|
|
745
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (5.7ms)
|
|
746
|
+
Rendered shared/_footer.html.erb (6.8ms)
|
|
747
|
+
Completed 200 OK in 47ms (Views: 45.1ms | ActiveRecord: 0.0ms)
|
|
748
|
+
|
|
749
|
+
|
|
750
|
+
Started GET "/" for 192.168.217.1 at 2015-09-21 03:58:14 -0700
|
|
751
|
+
Processing by HomeController#index as HTML
|
|
752
|
+
Rendered home/index.html.erb within layouts/application (1.4ms)
|
|
753
|
+
Rendered shared/_header.html.erb (0.1ms)
|
|
754
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (4.9ms)
|
|
755
|
+
Rendered shared/_footer.html.erb (6.0ms)
|
|
756
|
+
Completed 200 OK in 44ms (Views: 43.3ms | ActiveRecord: 0.0ms)
|
|
757
|
+
|
|
758
|
+
|
|
759
|
+
Started GET "/" for 192.168.217.1 at 2015-09-21 03:58:28 -0700
|
|
760
|
+
Processing by HomeController#index as HTML
|
|
761
|
+
Rendered home/index.html.erb within layouts/application (0.8ms)
|
|
762
|
+
Rendered shared/_header.html.erb (0.5ms)
|
|
763
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (5.7ms)
|
|
764
|
+
Rendered shared/_footer.html.erb (7.1ms)
|
|
765
|
+
Completed 200 OK in 36ms (Views: 35.6ms | ActiveRecord: 0.0ms)
|
|
766
|
+
|
|
767
|
+
|
|
768
|
+
Started GET "/about" for 192.168.217.1 at 2015-09-21 03:58:29 -0700
|
|
769
|
+
Processing by HomeController#about as HTML
|
|
770
|
+
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
|
|
771
|
+
|
|
772
|
+
|
|
773
|
+
Started GET "/users/sign_in" for 192.168.217.1 at 2015-09-21 03:58:29 -0700
|
|
774
|
+
Processing by Devise::SessionsController#new as HTML
|
|
775
|
+
Rendered /usr/local/rvm/gems/ruby-2.2.2/gems/devise-3.5.2/app/views/devise/shared/_links.html.erb (0.4ms)
|
|
776
|
+
Rendered /usr/local/rvm/gems/ruby-2.2.2/gems/devise-3.5.2/app/views/devise/sessions/new.html.erb within layouts/application (2.8ms)
|
|
777
|
+
Rendered shared/_header.html.erb (0.0ms)
|
|
778
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (5.8ms)
|
|
779
|
+
Rendered shared/_footer.html.erb (7.7ms)
|
|
780
|
+
Completed 200 OK in 49ms (Views: 47.7ms | ActiveRecord: 0.0ms)
|
|
781
|
+
|
|
782
|
+
|
|
783
|
+
Started POST "/any_login/any_login/sign_in" for 192.168.217.1 at 2015-09-21 03:58:33 -0700
|
|
784
|
+
Processing by AnyLogin::ApplicationController#any_login as HTML
|
|
785
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"iBZxPhrcBGUvMcOn6UgvlJz8b8dbqpQqrhGFfJnXRxDzI/lrDGVZoU1clIX3huepOi7QNyZh5R4xETkasIu/bA==", "selected_id"=>"11", "id"=>""}
|
|
786
|
+
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 11]]
|
|
787
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
788
|
+
[1m[36mSQL (0.4ms)[0m [1mUPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ?[0m [["last_sign_in_at", "2015-09-21 10:58:33.871247"], ["current_sign_in_at", "2015-09-21 10:58:33.871247"], ["last_sign_in_ip", "192.168.217.1"], ["current_sign_in_ip", "192.168.217.1"], ["sign_in_count", 1], ["updated_at", "2015-09-21 10:58:33.872644"], ["id", 11]]
|
|
789
|
+
[1m[35m (4.5ms)[0m commit transaction
|
|
790
|
+
Redirected to http://royal.com:3000/
|
|
791
|
+
Completed 302 Found in 55ms (ActiveRecord: 5.2ms)
|
|
792
|
+
|
|
793
|
+
|
|
794
|
+
Started GET "/" for 192.168.217.1 at 2015-09-21 03:58:33 -0700
|
|
795
|
+
Processing by HomeController#index as HTML
|
|
796
|
+
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1[0m [["id", 11]]
|
|
797
|
+
Rendered home/index.html.erb within layouts/application (2.8ms)
|
|
798
|
+
Rendered shared/_header.html.erb (0.1ms)
|
|
799
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (5.8ms)
|
|
800
|
+
Rendered shared/_footer.html.erb (7.4ms)
|
|
801
|
+
Completed 200 OK in 43ms (Views: 42.4ms | ActiveRecord: 0.3ms)
|
|
802
|
+
|
|
803
|
+
|
|
804
|
+
Started GET "/about" for 192.168.217.1 at 2015-09-21 03:58:36 -0700
|
|
805
|
+
Processing by HomeController#about as HTML
|
|
806
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 11]]
|
|
807
|
+
Rendered home/about.html.erb within layouts/application (0.3ms)
|
|
808
|
+
Rendered shared/_header.html.erb (0.0ms)
|
|
809
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (5.3ms)
|
|
810
|
+
Rendered shared/_footer.html.erb (6.3ms)
|
|
811
|
+
Completed 200 OK in 46ms (Views: 44.4ms | ActiveRecord: 0.1ms)
|
|
812
|
+
|
|
813
|
+
|
|
814
|
+
Started GET "/" for 192.168.217.1 at 2015-09-21 03:58:37 -0700
|
|
815
|
+
Processing by HomeController#index as HTML
|
|
816
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1[0m [["id", 11]]
|
|
817
|
+
Rendered home/index.html.erb within layouts/application (1.6ms)
|
|
818
|
+
Rendered shared/_header.html.erb (0.0ms)
|
|
819
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (5.2ms)
|
|
820
|
+
Rendered shared/_footer.html.erb (6.1ms)
|
|
821
|
+
Completed 200 OK in 38ms (Views: 37.2ms | ActiveRecord: 0.1ms)
|
|
822
|
+
|
|
823
|
+
|
|
824
|
+
Started GET "/" for 192.168.217.1 at 2015-09-21 03:58:47 -0700
|
|
825
|
+
Processing by HomeController#index as HTML
|
|
826
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 11]]
|
|
827
|
+
Rendered home/index.html.erb within layouts/application (1.4ms)
|
|
828
|
+
Rendered shared/_header.html.erb (0.0ms)
|
|
829
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (6.8ms)
|
|
830
|
+
Rendered shared/_footer.html.erb (7.9ms)
|
|
831
|
+
Completed 200 OK in 38ms (Views: 38.0ms | ActiveRecord: 0.1ms)
|
|
832
|
+
|
|
833
|
+
|
|
834
|
+
Started GET "/" for 192.168.217.1 at 2015-09-21 03:59:33 -0700
|
|
835
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
836
|
+
Processing by HomeController#index as HTML
|
|
837
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 11]]
|
|
838
|
+
Rendered home/index.html.erb within layouts/application (29.5ms)
|
|
839
|
+
Rendered shared/_header.html.erb (0.4ms)
|
|
840
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (4.8ms)
|
|
841
|
+
Rendered shared/_footer.html.erb (6.3ms)
|
|
842
|
+
Completed 500 Internal Server Error in 209ms (ActiveRecord: 0.7ms)
|
|
843
|
+
|
|
844
|
+
ActionView::Template::Error (uninitialized constant Account):
|
|
845
|
+
1: <div id='any_login' class='<%= any_login_klasses %>'>
|
|
846
|
+
2: <%= form_tag any_login.sign_in_path, :method => :post, :id => 'any_login_form' do %>
|
|
847
|
+
3: <%= image_tag image_path('any_login/person.png'), :alt => AnyLogin.klass, :onclick => "AnyLogin.on_image_click();" %>
|
|
848
|
+
4: <span id='any_login_box' class='hidden_box'>
|
|
849
|
+
5: <%= any_login_select %>
|
|
850
|
+
6: or by
|
|
851
|
+
app/views/shared/_footer.html.erb:15:in `_app_views_shared__footer_html_erb__4291331222363472076_69981170914900'
|
|
852
|
+
app/views/layouts/application.html.erb:20:in `_app_views_layouts_application_html_erb__2861233580582114849_47455080'
|
|
853
|
+
|
|
854
|
+
|
|
855
|
+
Rendered /usr/local/rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (17.9ms)
|
|
856
|
+
Rendered /usr/local/rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.8ms)
|
|
857
|
+
Rendered /usr/local/rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms)
|
|
858
|
+
Rendered /usr/local/rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (35.3ms)
|
|
859
|
+
|
|
860
|
+
|
|
861
|
+
Started GET "/" for 192.168.217.1 at 2015-09-21 03:59:44 -0700
|
|
862
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
863
|
+
Processing by HomeController#index as HTML
|
|
864
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 11]]
|
|
865
|
+
Rendered home/index.html.erb within layouts/application (26.2ms)
|
|
866
|
+
Rendered shared/_header.html.erb (0.3ms)
|
|
867
|
+
[1m[36mUser Load (0.8ms)[0m [1mSELECT "users".* FROM "users"[0m
|
|
868
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (9.7ms)
|
|
869
|
+
Rendered shared/_footer.html.erb (11.5ms)
|
|
870
|
+
Completed 200 OK in 247ms (Views: 245.2ms | ActiveRecord: 1.5ms)
|
|
871
|
+
|
|
872
|
+
|
|
873
|
+
Started GET "/" for 192.168.217.1 at 2015-09-21 04:00:14 -0700
|
|
874
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
875
|
+
Processing by HomeController#index as HTML
|
|
876
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 11]]
|
|
877
|
+
Rendered home/index.html.erb within layouts/application (28.4ms)
|
|
878
|
+
Rendered shared/_header.html.erb (0.3ms)
|
|
879
|
+
[1m[36mUser Load (0.7ms)[0m [1mSELECT "users".* FROM "users"[0m
|
|
880
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (9.7ms)
|
|
881
|
+
Rendered shared/_footer.html.erb (11.3ms)
|
|
882
|
+
Completed 200 OK in 247ms (Views: 244.6ms | ActiveRecord: 1.6ms)
|
|
883
|
+
|
|
884
|
+
|
|
885
|
+
Started GET "/" for 192.168.217.1 at 2015-09-21 04:00:22 -0700
|
|
886
|
+
Processing by HomeController#index as HTML
|
|
887
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 11]]
|
|
888
|
+
Rendered home/index.html.erb within layouts/application (1.7ms)
|
|
889
|
+
Rendered shared/_header.html.erb (0.0ms)
|
|
890
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (11.1ms)
|
|
891
|
+
Rendered shared/_footer.html.erb (12.1ms)
|
|
892
|
+
Completed 200 OK in 75ms (Views: 74.8ms | ActiveRecord: 0.1ms)
|
|
893
|
+
|
|
894
|
+
|
|
895
|
+
Started GET "/" for 192.168.217.1 at 2015-09-21 04:00:23 -0700
|
|
896
|
+
Processing by HomeController#index as HTML
|
|
897
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1[0m [["id", 11]]
|
|
898
|
+
Rendered home/index.html.erb within layouts/application (1.6ms)
|
|
899
|
+
Rendered shared/_header.html.erb (0.1ms)
|
|
900
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (4.7ms)
|
|
901
|
+
Rendered shared/_footer.html.erb (5.8ms)
|
|
902
|
+
Completed 200 OK in 37ms (Views: 36.9ms | ActiveRecord: 0.1ms)
|
|
903
|
+
|
|
904
|
+
|
|
905
|
+
Started GET "/" for 192.168.217.1 at 2015-09-21 04:00:36 -0700
|
|
906
|
+
Processing by HomeController#index as HTML
|
|
907
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 11]]
|
|
908
|
+
Rendered home/index.html.erb within layouts/application (2.2ms)
|
|
909
|
+
Rendered shared/_header.html.erb (0.4ms)
|
|
910
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (6.5ms)
|
|
911
|
+
Rendered shared/_footer.html.erb (7.8ms)
|
|
912
|
+
Completed 200 OK in 41ms (Views: 40.6ms | ActiveRecord: 0.1ms)
|
|
913
|
+
|
|
914
|
+
|
|
915
|
+
Started GET "/" for 192.168.217.1 at 2015-09-21 04:07:34 -0700
|
|
916
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
917
|
+
Processing by HomeController#index as HTML
|
|
918
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 11]]
|
|
919
|
+
Rendered home/index.html.erb within layouts/application (27.1ms)
|
|
920
|
+
Rendered shared/_header.html.erb (0.3ms)
|
|
921
|
+
[1m[36mUser Load (0.7ms)[0m [1mSELECT "users".* FROM "users"[0m
|
|
922
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (8.8ms)
|
|
923
|
+
Rendered shared/_footer.html.erb (10.3ms)
|
|
924
|
+
Completed 200 OK in 197ms (Views: 195.1ms | ActiveRecord: 1.4ms)
|
|
925
|
+
|
|
926
|
+
|
|
927
|
+
Started GET "/" for 192.168.217.1 at 2015-09-21 04:07:36 -0700
|
|
928
|
+
Processing by HomeController#index as HTML
|
|
929
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 11]]
|
|
930
|
+
Rendered home/index.html.erb within layouts/application (1.6ms)
|
|
931
|
+
Rendered shared/_header.html.erb (0.0ms)
|
|
932
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (14.6ms)
|
|
933
|
+
Rendered shared/_footer.html.erb (16.3ms)
|
|
934
|
+
Completed 200 OK in 56ms (Views: 56.0ms | ActiveRecord: 0.1ms)
|
|
935
|
+
|
|
936
|
+
|
|
937
|
+
Started GET "/" for 192.168.217.1 at 2015-09-21 04:08:20 -0700
|
|
938
|
+
Processing by HomeController#index as HTML
|
|
939
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1[0m [["id", 11]]
|
|
940
|
+
Rendered home/index.html.erb within layouts/application (2.7ms)
|
|
941
|
+
Rendered shared/_header.html.erb (0.0ms)
|
|
942
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (5.4ms)
|
|
943
|
+
Rendered shared/_footer.html.erb (6.4ms)
|
|
944
|
+
Completed 200 OK in 65ms (Views: 64.6ms | ActiveRecord: 0.1ms)
|
|
945
|
+
|
|
946
|
+
|
|
947
|
+
Started GET "/about" for 192.168.217.1 at 2015-09-21 04:08:20 -0700
|
|
948
|
+
Processing by HomeController#about as HTML
|
|
949
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 11]]
|
|
950
|
+
Rendered home/about.html.erb within layouts/application (0.5ms)
|
|
951
|
+
Rendered shared/_header.html.erb (0.0ms)
|
|
952
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (10.0ms)
|
|
953
|
+
Rendered shared/_footer.html.erb (11.5ms)
|
|
954
|
+
Completed 200 OK in 68ms (Views: 63.2ms | ActiveRecord: 0.2ms)
|
|
955
|
+
|
|
956
|
+
|
|
957
|
+
Started GET "/" for 192.168.217.1 at 2015-09-21 04:08:22 -0700
|
|
958
|
+
Processing by HomeController#index as HTML
|
|
959
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1[0m [["id", 11]]
|
|
960
|
+
Rendered home/index.html.erb within layouts/application (2.9ms)
|
|
961
|
+
Rendered shared/_header.html.erb (0.1ms)
|
|
962
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (9.2ms)
|
|
963
|
+
Rendered shared/_footer.html.erb (11.4ms)
|
|
964
|
+
Completed 200 OK in 68ms (Views: 67.8ms | ActiveRecord: 0.1ms)
|
|
965
|
+
|
|
966
|
+
|
|
967
|
+
Started GET "/" for 192.168.217.1 at 2015-09-21 04:08:49 -0700
|
|
968
|
+
Processing by HomeController#index as HTML
|
|
969
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 11]]
|
|
970
|
+
Rendered home/index.html.erb within layouts/application (3.5ms)
|
|
971
|
+
Rendered shared/_header.html.erb (0.1ms)
|
|
972
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (7.1ms)
|
|
973
|
+
Rendered shared/_footer.html.erb (9.1ms)
|
|
974
|
+
Completed 200 OK in 57ms (Views: 56.8ms | ActiveRecord: 0.1ms)
|
|
975
|
+
|
|
976
|
+
|
|
977
|
+
Started GET "/" for 192.168.217.1 at 2015-09-21 04:09:05 -0700
|
|
978
|
+
Processing by HomeController#index as HTML
|
|
979
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1[0m [["id", 11]]
|
|
980
|
+
Rendered home/index.html.erb within layouts/application (1.9ms)
|
|
981
|
+
Rendered shared/_header.html.erb (0.1ms)
|
|
982
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (5.2ms)
|
|
983
|
+
Rendered shared/_footer.html.erb (6.2ms)
|
|
984
|
+
Completed 200 OK in 39ms (Views: 39.0ms | ActiveRecord: 0.1ms)
|
|
985
|
+
|
|
986
|
+
|
|
987
|
+
Started GET "/" for 192.168.217.1 at 2015-09-21 04:43:41 -0700
|
|
988
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
989
|
+
Processing by HomeController#index as HTML
|
|
990
|
+
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 11]]
|
|
991
|
+
Rendered home/index.html.erb within layouts/application (33.0ms)
|
|
992
|
+
Rendered shared/_header.html.erb (0.4ms)
|
|
993
|
+
[1m[36mUser Load (0.7ms)[0m [1mSELECT "users".* FROM "users"[0m
|
|
994
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (9.4ms)
|
|
995
|
+
Rendered shared/_footer.html.erb (11.3ms)
|
|
996
|
+
Completed 200 OK in 305ms (Views: 303.0ms | ActiveRecord: 1.4ms)
|
|
997
|
+
|
|
998
|
+
|
|
999
|
+
Started DELETE "/users/sign_out" for 192.168.217.1 at 2015-09-21 04:43:47 -0700
|
|
1000
|
+
Processing by Devise::SessionsController#destroy as HTML
|
|
1001
|
+
Parameters: {"authenticity_token"=>"f9nmpLe+tKyGp0KmD71VK3YNcBQG8ayYL+FuTVcdxVYE7G7xoQfpaOTKFYQRc50W0N/P5Hs63ayw4dIrfkE9Kg=="}
|
|
1002
|
+
[1m[35mUser Load (0.5ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 11]]
|
|
1003
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
1004
|
+
[1m[35m (0.1ms)[0m commit transaction
|
|
1005
|
+
Redirected to http://royal.com:3000/
|
|
1006
|
+
Completed 302 Found in 28ms (ActiveRecord: 0.6ms)
|
|
1007
|
+
|
|
1008
|
+
|
|
1009
|
+
Started GET "/" for 192.168.217.1 at 2015-09-21 04:43:47 -0700
|
|
1010
|
+
Processing by HomeController#index as HTML
|
|
1011
|
+
Rendered home/index.html.erb within layouts/application (3.0ms)
|
|
1012
|
+
Rendered shared/_header.html.erb (0.0ms)
|
|
1013
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (6.8ms)
|
|
1014
|
+
Rendered shared/_footer.html.erb (7.9ms)
|
|
1015
|
+
Completed 200 OK in 45ms (Views: 45.1ms | ActiveRecord: 0.0ms)
|
|
1016
|
+
|
|
1017
|
+
|
|
1018
|
+
Started GET "/" for 192.168.217.1 at 2015-09-21 04:43:48 -0700
|
|
1019
|
+
Processing by HomeController#index as HTML
|
|
1020
|
+
Rendered home/index.html.erb within layouts/application (1.0ms)
|
|
1021
|
+
Rendered shared/_header.html.erb (0.0ms)
|
|
1022
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (5.2ms)
|
|
1023
|
+
Rendered shared/_footer.html.erb (6.7ms)
|
|
1024
|
+
Completed 200 OK in 41ms (Views: 40.7ms | ActiveRecord: 0.0ms)
|
|
1025
|
+
|
|
1026
|
+
|
|
1027
|
+
Started POST "/any_login/any_login/sign_in" for 192.168.217.1 at 2015-09-21 04:43:57 -0700
|
|
1028
|
+
Processing by AnyLogin::ApplicationController#any_login as HTML
|
|
1029
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"PGoGwRhIJQ0Mdx4qL0PnyFdYqxrOB8Hj5D+SPOwKb4gVVj4sCuGBM77dKbRiot/1UbRuYQqIjSE3aifgdOKiEw==", "selected_id"=>"17", "id"=>""}
|
|
1030
|
+
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 17]]
|
|
1031
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
1032
|
+
[1m[36mSQL (0.4ms)[0m [1mUPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ?[0m [["last_sign_in_at", "2015-09-21 11:43:57.564984"], ["current_sign_in_at", "2015-09-21 11:43:57.564984"], ["last_sign_in_ip", "192.168.217.1"], ["current_sign_in_ip", "192.168.217.1"], ["sign_in_count", 1], ["updated_at", "2015-09-21 11:43:57.566441"], ["id", 17]]
|
|
1033
|
+
[1m[35m (4.8ms)[0m commit transaction
|
|
1034
|
+
Redirected to http://royal.com:3000/
|
|
1035
|
+
Completed 302 Found in 16ms (ActiveRecord: 5.6ms)
|
|
1036
|
+
|
|
1037
|
+
|
|
1038
|
+
Started GET "/" for 192.168.217.1 at 2015-09-21 04:43:57 -0700
|
|
1039
|
+
Processing by HomeController#index as HTML
|
|
1040
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1[0m [["id", 17]]
|
|
1041
|
+
Rendered home/index.html.erb within layouts/application (2.2ms)
|
|
1042
|
+
Rendered shared/_header.html.erb (0.0ms)
|
|
1043
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (7.6ms)
|
|
1044
|
+
Rendered shared/_footer.html.erb (9.9ms)
|
|
1045
|
+
Completed 200 OK in 67ms (Views: 66.8ms | ActiveRecord: 0.2ms)
|
|
1046
|
+
|
|
1047
|
+
|
|
1048
|
+
Started GET "/" for 192.168.217.1 at 2015-09-21 04:45:21 -0700
|
|
1049
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
1050
|
+
Processing by HomeController#index as HTML
|
|
1051
|
+
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 17]]
|
|
1052
|
+
Rendered home/index.html.erb within layouts/application (25.9ms)
|
|
1053
|
+
Rendered shared/_header.html.erb (0.5ms)
|
|
1054
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (5.7ms)
|
|
1055
|
+
Rendered shared/_footer.html.erb (7.6ms)
|
|
1056
|
+
Completed 500 Internal Server Error in 277ms (ActiveRecord: 0.7ms)
|
|
1057
|
+
|
|
1058
|
+
ActionView::Template::Error (uninitialized constant Account):
|
|
1059
|
+
1: <div id='any_login' class='<%= any_login_klasses %>'>
|
|
1060
|
+
2: <%= form_tag any_login.sign_in_path, :method => :post, :id => 'any_login_form' do %>
|
|
1061
|
+
3: <%= image_tag image_path('any_login/person.png'), :alt => AnyLogin.klass, :onclick => "AnyLogin.on_image_click();" %>
|
|
1062
|
+
4: <span id='any_login_box' class='hidden_box'>
|
|
1063
|
+
5: <%= any_login_select %>
|
|
1064
|
+
6: or by
|
|
1065
|
+
app/views/shared/_footer.html.erb:15:in `_app_views_shared__footer_html_erb__1782214268780491899_69992646280260'
|
|
1066
|
+
app/views/layouts/application.html.erb:20:in `_app_views_layouts_application_html_erb__4028402496058411977_38265200'
|
|
1067
|
+
|
|
1068
|
+
|
|
1069
|
+
Rendered /usr/local/rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (10.8ms)
|
|
1070
|
+
Rendered /usr/local/rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.2ms)
|
|
1071
|
+
Rendered /usr/local/rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms)
|
|
1072
|
+
Rendered /usr/local/rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (26.6ms)
|
|
1073
|
+
|
|
1074
|
+
|
|
1075
|
+
Started GET "/" for 192.168.217.1 at 2015-09-21 04:45:31 -0700
|
|
1076
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
1077
|
+
Processing by HomeController#index as HTML
|
|
1078
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 17]]
|
|
1079
|
+
Rendered home/index.html.erb within layouts/application (28.1ms)
|
|
1080
|
+
Rendered shared/_header.html.erb (0.4ms)
|
|
1081
|
+
[1m[36mUser Load (0.7ms)[0m [1mSELECT "users".* FROM "users"[0m
|
|
1082
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (9.9ms)
|
|
1083
|
+
Rendered shared/_footer.html.erb (11.5ms)
|
|
1084
|
+
Completed 200 OK in 248ms (Views: 246.0ms | ActiveRecord: 1.4ms)
|
|
1085
|
+
|
|
1086
|
+
|
|
1087
|
+
Started POST "/any_login/any_login/sign_in" for 192.168.217.1 at 2015-09-21 04:45:36 -0700
|
|
1088
|
+
Processing by AnyLogin::ApplicationController#any_login as HTML
|
|
1089
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"b1+iD7E4lUQ38o6H+zNhs8Rj62eejjP/V8l7+YtsXo1GY5rio5ExeoVYuRm20lmOwo8uHFoBfz2EnM4lE4STFg==", "selected_id"=>"59", "id"=>""}
|
|
1090
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 59]]
|
|
1091
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1[0m [["id", 17]]
|
|
1092
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
1093
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ?[0m [["last_sign_in_at", "2015-09-21 11:45:36.996587"], ["current_sign_in_at", "2015-09-21 11:45:36.996587"], ["last_sign_in_ip", "192.168.217.1"], ["current_sign_in_ip", "192.168.217.1"], ["sign_in_count", 1], ["updated_at", "2015-09-21 11:45:36.998477"], ["id", 59]]
|
|
1094
|
+
[1m[35m (4.7ms)[0m commit transaction
|
|
1095
|
+
Redirected to http://royal.com:3000/
|
|
1096
|
+
Completed 302 Found in 19ms (ActiveRecord: 5.4ms)
|
|
1097
|
+
|
|
1098
|
+
|
|
1099
|
+
Started GET "/" for 192.168.217.1 at 2015-09-21 04:45:37 -0700
|
|
1100
|
+
Processing by HomeController#index as HTML
|
|
1101
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1[0m [["id", 59]]
|
|
1102
|
+
Rendered home/index.html.erb within layouts/application (2.2ms)
|
|
1103
|
+
Rendered shared/_header.html.erb (0.0ms)
|
|
1104
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (8.3ms)
|
|
1105
|
+
Rendered shared/_footer.html.erb (9.9ms)
|
|
1106
|
+
Completed 200 OK in 79ms (Views: 78.7ms | ActiveRecord: 0.1ms)
|
|
1107
|
+
|
|
1108
|
+
|
|
1109
|
+
Started GET "/" for 192.168.217.1 at 2015-09-21 05:02:24 -0700
|
|
1110
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
1111
|
+
Processing by HomeController#index as HTML
|
|
1112
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 59]]
|
|
1113
|
+
Rendered home/index.html.erb within layouts/application (30.3ms)
|
|
1114
|
+
Rendered shared/_header.html.erb (0.4ms)
|
|
1115
|
+
[1m[36mUser Load (0.9ms)[0m [1mSELECT "users".* FROM "users"[0m
|
|
1116
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (10.1ms)
|
|
1117
|
+
Rendered shared/_footer.html.erb (12.0ms)
|
|
1118
|
+
Completed 200 OK in 275ms (Views: 273.0ms | ActiveRecord: 1.5ms)
|
|
1119
|
+
|
|
1120
|
+
|
|
1121
|
+
Started GET "/" for 192.168.217.1 at 2015-09-21 05:02:24 -0700
|
|
1122
|
+
Processing by HomeController#index as HTML
|
|
1123
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 59]]
|
|
1124
|
+
Rendered home/index.html.erb within layouts/application (1.9ms)
|
|
1125
|
+
Rendered shared/_header.html.erb (0.0ms)
|
|
1126
|
+
Rendered /root/projects/any_login/app/views/any_login/_any_login.html.erb (9.5ms)
|
|
1127
|
+
Rendered shared/_footer.html.erb (10.9ms)
|
|
1128
|
+
Completed 200 OK in 62ms (Views: 61.1ms | ActiveRecord: 0.2ms)
|