dynamic-fields-for 1.0.0 → 1.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.
- data/README.md +4 -1
- data/lib/dynamic-fields-for/version.rb +1 -1
- data/spec/features/dynamic_fields_for_spec.rb +110 -0
- data/spec/fixtures/roles.yml +11 -0
- data/spec/fixtures/users.yml +2 -0
- data/spec/rails_app/Rakefile +6 -0
- data/spec/rails_app/app/assets/javascripts/application.coffee +13 -0
- data/spec/rails_app/app/controllers/application_controller.rb +5 -0
- data/spec/rails_app/app/controllers/users_controller.rb +38 -0
- data/spec/rails_app/app/models/role.rb +5 -0
- data/spec/rails_app/app/models/user.rb +7 -0
- data/spec/rails_app/app/views/layouts/application.html.haml +7 -0
- data/spec/rails_app/app/views/users/_form.html.haml +23 -0
- data/spec/rails_app/app/views/users/edit.html.haml +1 -0
- data/spec/rails_app/app/views/users/edit_without_fields.html.haml +6 -0
- data/spec/rails_app/app/views/users/events.html.haml +13 -0
- data/spec/rails_app/app/views/users/new.html.haml +1 -0
- data/spec/rails_app/bin/bundle +3 -0
- data/spec/rails_app/bin/rails +4 -0
- data/spec/rails_app/bin/rake +4 -0
- data/spec/rails_app/config/application.rb +28 -0
- data/spec/rails_app/config/boot.rb +10 -0
- data/spec/rails_app/config/database.yml +24 -0
- data/spec/rails_app/config/environment.rb +7 -0
- data/spec/rails_app/config/environments/development.rb +37 -0
- data/spec/rails_app/config/environments/production.rb +80 -0
- data/spec/rails_app/config/environments/test.rb +41 -0
- data/spec/rails_app/config/initializers/assets.rb +8 -0
- data/spec/rails_app/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/rails_app/config/initializers/cookies_serializer.rb +3 -0
- data/spec/rails_app/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/rails_app/config/initializers/inflections.rb +16 -0
- data/spec/rails_app/config/initializers/mime_types.rb +4 -0
- data/spec/rails_app/config/initializers/secret_token.rb +5 -0
- data/spec/rails_app/config/initializers/session_store.rb +3 -0
- data/spec/rails_app/config/initializers/simple_form.rb +166 -0
- data/spec/rails_app/config/initializers/wrap_parameters.rb +14 -0
- data/spec/rails_app/config/locales/en/simple_form.yml +31 -0
- data/spec/rails_app/config/routes.rb +8 -0
- data/spec/rails_app/config.ru +4 -0
- data/spec/rails_app/db/development.sqlite3 +0 -0
- data/spec/rails_app/db/migrate/001_create_tables.rb +12 -0
- data/spec/rails_app/db/schema.rb +25 -0
- data/spec/rails_app/db/test.sqlite3 +0 -0
- data/spec/rails_app/log/development.log +1974 -0
- data/spec/rails_app/log/test.log +6152 -0
- data/spec/rails_app/public/404.html +67 -0
- data/spec/rails_app/public/422.html +67 -0
- data/spec/rails_app/public/500.html +66 -0
- data/spec/rails_app/public/favicon.ico +0 -0
- data/spec/rails_app/script/rails +6 -0
- data/spec/rails_app/tmp/cache/assets/C51/770/sprockets%2F65b30e4019e7912b6d5468049a3225f7 +0 -0
- data/spec/rails_app/tmp/cache/assets/CB0/C90/sprockets%2F282f835b9033d34d7f393ec15418ea50 +0 -0
- data/spec/rails_app/tmp/cache/assets/CD3/D40/sprockets%2F4d69456240020b937e2ebc9c6a60e13a +0 -0
- data/spec/rails_app/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
- data/spec/rails_app/tmp/cache/assets/CE1/160/sprockets%2F1ea763129b82d9251ca608145dc86ed7 +0 -0
- data/spec/rails_app/tmp/cache/assets/CE3/590/sprockets%2F60f1e97d7008b3ed41f72855a4228bb9 +0 -0
- data/spec/rails_app/tmp/cache/assets/CF0/DA0/sprockets%2Fd7d5b37686831d37c4dd75e645f5e016 +0 -0
- data/spec/rails_app/tmp/cache/assets/CF9/2E0/sprockets%2F67796127ee81f4ec16ee9396fb48b045 +0 -0
- data/spec/rails_app/tmp/cache/assets/D13/070/sprockets%2F3ef994e7d6b14666124b063ac9490afa +0 -0
- data/spec/rails_app/tmp/cache/assets/D23/B10/sprockets%2Fc2a831ed79df487d6485a5c9c52766c2 +0 -0
- data/spec/rails_app/tmp/cache/assets/D32/080/sprockets%2F1548a52bba44f491b7240acb85fdb481 +0 -0
- data/spec/rails_app/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/spec/rails_app/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/spec/rails_app/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/spec/rails_app/tmp/cache/assets/D74/A30/sprockets%2Fd6c9f9b2ca876229f263f68006bac0dd +0 -0
- data/spec/rails_app/tmp/cache/assets/D75/B20/sprockets%2Fb6826ab2b21df7d87c4b74d429e4e44f +0 -0
- data/spec/rails_app/tmp/cache/assets/D77/5C0/sprockets%2F42bf4dd0668fe6fe799a4ba6aa424842 +0 -0
- data/spec/rails_app/tmp/cache/assets/DA8/F20/sprockets%2Fd8e6aa7805f1851a6b8ba9e4fc722d7e +0 -0
- data/spec/rails_app/tmp/cache/assets/DAA/450/sprockets%2F3df09fe42da429dae5b629e74b6684eb +0 -0
- data/spec/rails_app/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/spec/rails_app/tmp/cache/assets/DE9/260/sprockets%2Fadd025ab0eb13a6d4180af43d5df39df +0 -0
- data/spec/rails_app/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/spec/rails_app/tmp/cache/assets/E25/4C0/sprockets%2Fde2fd9fd11c04a582cdbbe3d84a35ae6 +0 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/005NbUmrcPP7BE5ewSp7_ZgR35fy0DC7Zj9ZRwk0MjU.cache +1 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/0twwP-f_pWyvsnE2frKwn25KXXJpg8zSSZjZfhh-W0U.cache +1 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/2STghpkswLWuQb3JJm4u_5kHhdV1Z7Q9V3Vcs4g2Kxk.cache +1 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/35OsSiLOQQXvPwILhNj7TJXVSISbaxJZpzlXryTODyI.cache +1 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/3Ml8X3oHdLRvYIm3Z2bgq0ErAO9DIIdfufZY6xxk_bQ.cache +1 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/4LYhxnvRwaLlxyh9dZBFFu_aFKV14A4A29s9Lq5fwvY.cache +1 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/4dc5iDYQvyTr6_AqdtY_IXkO4H9e_vCk3MfzuPYLzIs.cache +0 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/4s7JRTGpFUHEvdJ0smvNRYzvYLC4ci69YJec-_WSXeM.cache +1 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/5F4sE-a_Yct4eSGFf4CokFK8XFC9VuEqIfkLIVbh7d4.cache +0 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/6GBEq8wOlNbljaEO0IaAuPp9IM7noU4smItOxz75Bgw.cache +0 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/6kWtg2dd7QHHGFFcYERN6y1S3C0bE6obDD4Y8NjDt28.cache +0 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/70Ys2Sg3IKtBLiqlZI5EjjvMa-v_hO7AIwTN6axW6uw.cache +1 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/75_YNF40pq9Qdkjb4voDXxU-fdYHh8eOcBqQSc0wACY.cache +1 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/7T9A3AvzA227hFMUlf1cnCmXMNZ--yzeUeFU_qH5UCk.cache +1 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/7WYjScyAmZLKfnnwGLoGxILffqhTkJ5whgbQW2vXXLU.cache +1 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/7p8BcHcUjuqzaQ_g-5p1N1Iv5fcXMHTy6HNVZJ3chUE.cache +0 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/7tbYhX9PH2B3B17ie9lEUsRZLwf7QxRb5YfjedEkslM.cache +1 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/8WvFXwwHBNQ0Jn0Ft4jscXDq2vYDQtD0-lwweW4Ewg0.cache +1 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/8iWifo1VXYAo1y6HIpaCHVdTFi1Uxzf2cFcmiIEpYm0.cache +1 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/8pWBvOy6jzO_x3j5oaNZGXDybMcNFyn0QeEH3P9JiVY.cache +1 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/9CVm97VXM_R6nB8AyUWv0-mg9VUJ0ZBHMqzp3z6KBYA.cache +0 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/9I5eCEXaP_dUa_-i0SJBd-73ZtOqDMzUKhCkunl0n00.cache +1 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/9u5shJpSGH2XNK6oc2tyXrKH-nIABVI0WQo63n_DV68.cache +1 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/APwRGcTfA0EvBNVnRA6s1LBjwfzZPYC7-D404VhaGQo.cache +1 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/BPmQpDrJX8wo4YdpP2hflzYrb1KMb_8Zgzvmj6FVOGo.cache +1 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/C8__sPir_zLB1skjvzJUuRf9rjvsi3NH5WzAuoBRRBo.cache +1 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/CPC0lA-4Cx2FueL1tlquWe9Qgrf0eUCwOXTXgSDhEyg.cache +1 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/EePrH9vcnM8XjJ0yQkKhABpQ1-9yl1cp2vWKIOaPXDA.cache +1 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/FzbQ2YTgQvuZHn8zoRc4vKkMjL-A5ly_3uG_wrDCxSk.cache +1 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/HYrqPvTHZRmN1vmImSXSmdlqyBGdVTcR6_6MfxpgmZA.cache +0 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/N7nvgHzVHCNMm1iI-aSla1en7KWBZKXq4-vV91Ak29Y.cache +0 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/NIffjSjf2211qbWt1ceMD8h4CV93DTYxhIvFMTVibWY.cache +0 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/NVi1CCiylchuiWliA9pmeoQ61pCKqExfBnHng7eOZqA.cache +1 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/P-NPHOYBfhzg_4wEYB32fn9z7qwf_5kP-DNW_STmm7M.cache +1 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/PIner30XxGVbJth5pdG2X8xdzwP3m-z6yjUTxibsEpQ.cache +1 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/QnxsUWeU6C0G5IDcyjmKYnWIObQWTj96h56A1wd2_TE.cache +1 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/R3fK1lyD12pPiMXAOSZ0hJwdm98o7ROhIGiyeZt64x8.cache +1 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/RLRDP3vBQ-TZ151Q1PfGmvtS57-a6IU2OG2Fz-7kpKk.cache +0 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/RzDmtYfK-3P-j2HtoIzPzkA8WN4Kxj9t-wGVLYXzmDI.cache +0 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/UHazTCAIgk3ECaf5Z5rD74SpvBKID2z4T5Yz2sNhJW8.cache +1 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/U_PFdfoUOZdxkfhOcXk6pyc4lrfjw7srrwJYPmA0Cn4.cache +1 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/Uu4IjUcxuCDWTcNTYDNrOXYaiL-8_D481kJRUscoFS0.cache +0 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/V10JbcfuvpND2sCUgc1bp_v-VWWyZDeNBByADCmjIEE.cache +0 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/VOE1H9GohyBJmS1FZZz5p7NioZERmuTdQ3llfsKaVj4.cache +0 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/Vgg1kG1-YyvEmYnt8OSe_49LZ5Fg-detSj7RIkyJKlE.cache +1 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/WJQcBxjCmjJAWRnGIQv9VBTRRKEHih6jscnJd70cW50.cache +1 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/Wt_OTU0ay_WUYP4kutzOv-RU-rsRnz-JeHhfoXYMJ4k.cache +7 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/X2ViGEX5fWUM52RHJNXyREchayzNWouJusvCfXn0l9U.cache +1 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/XU7rm1nzQx98s-b6a_806KG7jWFIKu8F_sp0gdHN64M.cache +1 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/YqiuB7JK-d4oRQXC7SRMiF3nkFIIsfJCO1zKK0QvjLw.cache +1 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/Zf0GdHeOqOcmQsZyaIR1bq7A58iYXRxF7RgSki0xP-8.cache +1 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/_93TpShhCNwNSN2ABi0sJ8TkPmWKIjLMqcBQHx6W9S8.cache +1 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/a2agfZXZEGSSrlwjd25j16UvmcOWDSEy4mKEbtbYaMk.cache +0 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/a_PdN5dDYMZBxAJkDXdM5vte80OAEp3ATJ1FBwUORUE.cache +2 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/bH71seiu5IgIEswdHw0MxVy2Bft5eTYq7p-J1z2wLSE.cache +1 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/bogDcwpJOnH2EGTPI4BxRTFiwgu0XlxSjUkRdPKRUZI.cache +1 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/cL9X5KmjWqJPT1xI5vqEKFOFSsU-pAuV9geay4MpcwY.cache +1 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/cadxJIIj0tKH4iw91XcKK05eJV8slB_EY1xg4bWHtHY.cache +0 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/cmyPm4CQjK0SGdGAiRQUzSkDzxVC11Cbfe0mwbABnmQ.cache +0 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/d5GSxDUScnoThcT7LMLFwveRhg2-8HTpPiwHKyEFKGg.cache +1 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/d6I4qa3D5aXShq60xuXBXFuB-PCwrhngr8EY6SpyXHw.cache +1 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/fPKkbDzIVlpaAD07gmsUzq3db1tAmEG6BY6UWN2Tq0U.cache +0 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/fmdRPsW3PlR3rbBrsmbauRYUvGi1nwCOTqVWRpLIl2M.cache +0 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/fpWADUS8B7ozjxM4OES8daY5S8Mj6eZ8OqoQ7fNXXUo.cache +1 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/hFbp9B-T1BhYYVTUE-NENpiN2vQ0A-EEJP3yfEv8voM.cache +0 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/jUUbGZ-kWFdNm7cZdBNf0xyQfV-zwp-dUHfdRAuzR4s.cache +0 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/jgg7MjH1YLNuXXB9jSxo7BLHBPMH_QiCxp97M-gRqlE.cache +0 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/jrrOV55Sf9U41wQOifQ570NtUW4H1pBEePlEzujLzAU.cache +1 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/jx9EjyhQ77RJR0mnbwmjJBxZ3Ye3rTnHXyl07tR8gTs.cache +1 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/k5POkyE0JUCcc3gsZOC5c9o6vE3tnR6ilmw5H69LVU0.cache +1 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/l6V2CBOV-G8JXoy2eTfw0ER4Axb6GH8hBAW9v1nC4OU.cache +0 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/mKQKN_P_8jYD-Q80hhjvo4e3LImaXAMIThYLqa9Apvw.cache +0 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/mLgvD_7crCEElvOJAJHYfAMAgazVUaW2Uy6ClPvvWJ4.cache +1 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/mmKtMm4yY2EunJnNTqzT16Aikkg9c1ooLZ5kB0G4veI.cache +0 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/moaVwgLL6aVHUB2iWMenrou9mOYZdBaZn8j1k80p3AA.cache +0 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/naD1x6gn7SYJheSsI6aU_d3A7acFzAkkDsqygZLfZao.cache +1 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/pR0WZ_QziFmGR5DXpU5gUtK1Nfm1X2R9nmSin9jrBHI.cache +0 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/pcUsSlhbu4BvVzOmOCppHGIlPZndwbKDrsMfgQCYDqY.cache +1 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/peIPXIKPOMS3DBXLoSQr95J9ty327Um0vUgLbITJc9g.cache +0 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/pjo0jiZFzHD001Trck4zXHfXwSlZkBjEDcdy-aT_0Aw.cache +2 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/q6Q5iVuKHhUgLzQY3g42H2AATl06s2304_8Pzvnn3pc.cache +1 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/qPjyW0sqKLF_koGEYacxrcwWU60QCfFEwfVXStO1K3I.cache +0 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/rERbnOR49nHBQRnB7kg5PNLQNrhjIHYLi9NEkAk2J7A.cache +0 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/rgOibJhx1nDmCTnIoK7GhJwkSdQIlLQLriJEb-vanl8.cache +1 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/sKRDBhQlKek8nivOEE3iPkWez_DH1UGxtC-96IarWwI.cache +0 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/sZn_c8hNOrnxaQ8Yy3kgXGzy54WUSQLCoe7VSshR9RM.cache +1 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/staSd6rFktYlRt4U_rjmXSqK_cKairudXroMSjwWF-o.cache +1 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/u1_AVk2lrCxTujtkKbM-hX8pFnK-J_in5rv3CoQ0BD0.cache +1 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/ve5ms89UU4CYIorG9tJTHApqsVbcxrjZbVjhS0b0vPI.cache +0 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/vgmfFTzFMwf1hhMw3aul1kts_CSWnqoUVnM75IgOq5g.cache +2 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/wA4UMsI884mrDsixUCmN_u_m80rsWqGJW659dMTvYWc.cache +0 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/wMnnRgv2KHXeZicLBCT41V9Twf3Ws9OT42KMvo7Brts.cache +0 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/wO-8RVLVju09jwLXUEfJhYt9gGIUU8xZ8QQJvlvgA98.cache +1 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/wbhGIsb6sUjFuFyZAFKMhr_QqVUqphS6kt-hwpkpyN0.cache +1 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/wsTMfLbj2DGVQ9_iTFLS4nHX0IQBRJUhxpusR9e82AY.cache +1 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/wukuVHgoW7ddJHSkoaJz1TxDX1BuchCVzwCRHwD8RYE.cache +1 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/xT9aSUCXI9_uo2DpiU0FvOG4p4O9y5PQgJo9Y3qCZ_I.cache +1 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/ySJMBl8_8f1TC2JeQF-Rnp4A9M84cYN97jeVikGSTus.cache +0 -0
- data/spec/rails_app/tmp/cache/assets/test/sprockets/v3.0/yT-p58G9te94oQFaGeJ0KOz86g27qcAxK0uTpdIhWhY.cache +1 -0
- data/spec/spec_helper.rb +14 -0
- data/spec/support/database.rb +21 -0
- data/spec/support/dynamic-fields-for.rb +11 -0
- metadata +351 -3
|
@@ -0,0 +1,1974 @@
|
|
|
1
|
+
Connecting to database specified by database.yml
|
|
2
|
+
Connecting to database specified by database.yml
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
Started GET "/assets/rails.png" for 127.0.0.1 at 2015-05-08 19:41:08 +0300
|
|
6
|
+
Served asset /rails.png - 304 Not Modified (3ms)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 19:41:28 +0300
|
|
10
|
+
|
|
11
|
+
ActionController::RoutingError (No route matches [GET] "/users/test"):
|
|
12
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
13
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
14
|
+
railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
|
|
15
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
|
|
16
|
+
activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
|
|
17
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
|
|
18
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
19
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
|
20
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
|
21
|
+
activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
22
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
|
23
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
|
|
24
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
|
25
|
+
railties (3.2.13) lib/rails/application.rb:223:in `call'
|
|
26
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
|
27
|
+
railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
28
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
|
29
|
+
/Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
|
30
|
+
/Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
|
31
|
+
/Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
Rendered /Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.6ms)
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 19:41:39 +0300
|
|
38
|
+
|
|
39
|
+
ActionController::RoutingError (No route matches [GET] "/users/test"):
|
|
40
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
41
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
42
|
+
railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
|
|
43
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
|
|
44
|
+
activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
|
|
45
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
|
|
46
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
47
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
|
48
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
|
49
|
+
activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
50
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
|
51
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
|
|
52
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
|
53
|
+
railties (3.2.13) lib/rails/application.rb:223:in `call'
|
|
54
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
|
55
|
+
railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
56
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
|
57
|
+
/Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
|
58
|
+
/Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
|
59
|
+
/Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
Rendered /Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.4ms)
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 19:42:40 +0300
|
|
66
|
+
|
|
67
|
+
ActionController::RoutingError (uninitialized constant UsersController):
|
|
68
|
+
activesupport (3.2.13) lib/active_support/inflector/methods.rb:230:in `block in constantize'
|
|
69
|
+
activesupport (3.2.13) lib/active_support/inflector/methods.rb:229:in `each'
|
|
70
|
+
activesupport (3.2.13) lib/active_support/inflector/methods.rb:229:in `constantize'
|
|
71
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
|
|
72
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:54:in `controller'
|
|
73
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:32:in `call'
|
|
74
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
|
75
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
|
76
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
|
77
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
|
78
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
|
79
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
|
80
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
|
81
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
|
|
82
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
|
83
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
|
84
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
|
85
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
|
86
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
|
87
|
+
activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
|
|
88
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
|
89
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
|
90
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__98711322483213243__call__3239772053989551917__callbacks'
|
|
91
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
|
92
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
|
93
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
|
94
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
|
95
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
|
96
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
|
97
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
|
98
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
99
|
+
railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
|
|
100
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
|
|
101
|
+
activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
|
|
102
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
|
|
103
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
104
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
|
105
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
|
106
|
+
activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
107
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
|
108
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
|
|
109
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
|
110
|
+
railties (3.2.13) lib/rails/application.rb:223:in `call'
|
|
111
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
|
112
|
+
railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
113
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
|
114
|
+
/Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
|
115
|
+
/Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
|
116
|
+
/Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
Rendered /Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.4ms)
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 19:43:04 +0300
|
|
123
|
+
|
|
124
|
+
AbstractController::ActionNotFound (The action 'test' could not be found for UsersController):
|
|
125
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:116:in `process'
|
|
126
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
|
|
127
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
|
|
128
|
+
actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
|
129
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
|
|
130
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
|
131
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
|
132
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
|
133
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
|
134
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
|
135
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
|
136
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
|
137
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
|
138
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
|
139
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
|
140
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
|
|
141
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
|
142
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
|
143
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
|
144
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
|
145
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
|
146
|
+
activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
|
|
147
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
|
148
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
|
149
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__98711322483213243__call__3239772053989551917__callbacks'
|
|
150
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
|
151
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
|
152
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
|
153
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
|
154
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
|
155
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
|
156
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
|
157
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
158
|
+
railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
|
|
159
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
|
|
160
|
+
activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
|
|
161
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
|
|
162
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
163
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
|
164
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
|
165
|
+
activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
166
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
|
167
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
|
|
168
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
|
169
|
+
railties (3.2.13) lib/rails/application.rb:223:in `call'
|
|
170
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
|
171
|
+
railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
172
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
|
173
|
+
/Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
|
174
|
+
/Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
|
175
|
+
/Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
|
176
|
+
|
|
177
|
+
|
|
178
|
+
Rendered /Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.3ms)
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 19:44:25 +0300
|
|
182
|
+
Processing by UsersController#test as HTML
|
|
183
|
+
Rendered users/test.html.erb within layouts/application (0.2ms)
|
|
184
|
+
Compiled application.css (0ms) (pid 75374)
|
|
185
|
+
Compiled jquery.js (1ms) (pid 75374)
|
|
186
|
+
Compiled jquery_ujs.js (0ms) (pid 75374)
|
|
187
|
+
Compiled application.js (31ms) (pid 75374)
|
|
188
|
+
Completed 200 OK in 51ms (Views: 50.6ms | ActiveRecord: 0.0ms)
|
|
189
|
+
|
|
190
|
+
|
|
191
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-05-08 19:44:25 +0300
|
|
192
|
+
Served asset /application.css - 304 Not Modified (1ms)
|
|
193
|
+
|
|
194
|
+
|
|
195
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-05-08 19:44:25 +0300
|
|
196
|
+
Served asset /jquery.js - 304 Not Modified (1ms)
|
|
197
|
+
|
|
198
|
+
|
|
199
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-05-08 19:44:25 +0300
|
|
200
|
+
Served asset /application.js - 200 OK (15ms)
|
|
201
|
+
|
|
202
|
+
|
|
203
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-05-08 19:44:25 +0300
|
|
204
|
+
Served asset /jquery_ujs.js - 304 Not Modified (1ms)
|
|
205
|
+
Connecting to database specified by database.yml
|
|
206
|
+
|
|
207
|
+
|
|
208
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 19:45:52 +0300
|
|
209
|
+
Processing by UsersController#test as HTML
|
|
210
|
+
Rendered users/test.html.erb within layouts/application (12.8ms)
|
|
211
|
+
Completed 200 OK in 24ms (Views: 23.5ms | ActiveRecord: 0.0ms)
|
|
212
|
+
|
|
213
|
+
|
|
214
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-05-08 19:45:52 +0300
|
|
215
|
+
Served asset /jquery.js - 304 Not Modified (3ms)
|
|
216
|
+
|
|
217
|
+
|
|
218
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-05-08 19:45:52 +0300
|
|
219
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
|
220
|
+
|
|
221
|
+
|
|
222
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-05-08 19:45:52 +0300
|
|
223
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
224
|
+
|
|
225
|
+
|
|
226
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-05-08 19:45:52 +0300
|
|
227
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
228
|
+
Connecting to database specified by database.yml
|
|
229
|
+
|
|
230
|
+
|
|
231
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 19:47:32 +0300
|
|
232
|
+
Processing by UsersController#test as HTML
|
|
233
|
+
Rendered users/test.html.erb within layouts/application (13.5ms)
|
|
234
|
+
Completed 200 OK in 24ms (Views: 24.0ms | ActiveRecord: 0.0ms)
|
|
235
|
+
|
|
236
|
+
|
|
237
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-05-08 19:47:32 +0300
|
|
238
|
+
Served asset /jquery.js - 304 Not Modified (3ms)
|
|
239
|
+
|
|
240
|
+
|
|
241
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-05-08 19:47:32 +0300
|
|
242
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
|
243
|
+
|
|
244
|
+
|
|
245
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-05-08 19:47:32 +0300
|
|
246
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
247
|
+
|
|
248
|
+
|
|
249
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-05-08 19:47:32 +0300
|
|
250
|
+
Served asset /jquery_ujs.js - 304 Not Modified (1ms)
|
|
251
|
+
Connecting to database specified by database.yml
|
|
252
|
+
|
|
253
|
+
|
|
254
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 19:48:46 +0300
|
|
255
|
+
Processing by UsersController#test as HTML
|
|
256
|
+
Rendered users/test.html.erb within layouts/application (12.8ms)
|
|
257
|
+
Completed 200 OK in 24ms (Views: 23.4ms | ActiveRecord: 0.0ms)
|
|
258
|
+
|
|
259
|
+
|
|
260
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-05-08 19:48:46 +0300
|
|
261
|
+
Served asset /application.css - 304 Not Modified (1ms)
|
|
262
|
+
|
|
263
|
+
|
|
264
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-05-08 19:48:46 +0300
|
|
265
|
+
Served asset /jquery.js - 304 Not Modified (1ms)
|
|
266
|
+
|
|
267
|
+
|
|
268
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-05-08 19:48:46 +0300
|
|
269
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
|
270
|
+
|
|
271
|
+
|
|
272
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-05-08 19:48:46 +0300
|
|
273
|
+
Served asset /jquery_ujs.js - 304 Not Modified (1ms)
|
|
274
|
+
Connecting to database specified by database.yml
|
|
275
|
+
|
|
276
|
+
|
|
277
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 19:50:09 +0300
|
|
278
|
+
Processing by UsersController#test as HTML
|
|
279
|
+
Rendered users/test.html.erb within layouts/application (17.3ms)
|
|
280
|
+
Completed 200 OK in 30ms (Views: 29.4ms | ActiveRecord: 0.0ms)
|
|
281
|
+
|
|
282
|
+
|
|
283
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-05-08 19:50:09 +0300
|
|
284
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
285
|
+
|
|
286
|
+
|
|
287
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-05-08 19:50:09 +0300
|
|
288
|
+
Served asset /jquery_ujs.js - 304 Not Modified (1ms)
|
|
289
|
+
|
|
290
|
+
|
|
291
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-05-08 19:50:09 +0300
|
|
292
|
+
Served asset /application.js - 304 Not Modified (1ms)
|
|
293
|
+
|
|
294
|
+
|
|
295
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-05-08 19:50:09 +0300
|
|
296
|
+
Served asset /jquery.js - 304 Not Modified (1ms)
|
|
297
|
+
Connecting to database specified by database.yml
|
|
298
|
+
|
|
299
|
+
|
|
300
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 19:50:56 +0300
|
|
301
|
+
Processing by UsersController#test as HTML
|
|
302
|
+
Rendered users/test.html.haml within layouts/application (16.6ms)
|
|
303
|
+
Completed 200 OK in 28ms (Views: 27.8ms | ActiveRecord: 0.0ms)
|
|
304
|
+
|
|
305
|
+
|
|
306
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-05-08 19:50:56 +0300
|
|
307
|
+
Served asset /jquery.js - 304 Not Modified (4ms)
|
|
308
|
+
|
|
309
|
+
|
|
310
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-05-08 19:50:56 +0300
|
|
311
|
+
Served asset /jquery_ujs.js - 304 Not Modified (1ms)
|
|
312
|
+
|
|
313
|
+
|
|
314
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-05-08 19:50:56 +0300
|
|
315
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
316
|
+
|
|
317
|
+
|
|
318
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-05-08 19:50:56 +0300
|
|
319
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
|
320
|
+
Connecting to database specified by database.yml
|
|
321
|
+
|
|
322
|
+
|
|
323
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 19:51:21 +0300
|
|
324
|
+
Processing by UsersController#test as HTML
|
|
325
|
+
Rendered users/test.html.haml within layouts/application (16.4ms)
|
|
326
|
+
Completed 200 OK in 29ms (Views: 28.9ms | ActiveRecord: 0.0ms)
|
|
327
|
+
|
|
328
|
+
|
|
329
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-05-08 19:51:21 +0300
|
|
330
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
331
|
+
|
|
332
|
+
|
|
333
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-05-08 19:51:21 +0300
|
|
334
|
+
Served asset /jquery.js - 304 Not Modified (1ms)
|
|
335
|
+
|
|
336
|
+
|
|
337
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-05-08 19:51:21 +0300
|
|
338
|
+
Served asset /jquery_ujs.js - 304 Not Modified (1ms)
|
|
339
|
+
|
|
340
|
+
|
|
341
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-05-08 19:51:21 +0300
|
|
342
|
+
Served asset /application.js - 304 Not Modified (1ms)
|
|
343
|
+
|
|
344
|
+
|
|
345
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 19:52:20 +0300
|
|
346
|
+
Processing by UsersController#test as HTML
|
|
347
|
+
Rendered users/test.html.haml within layouts/application (0.0ms)
|
|
348
|
+
Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
|
349
|
+
|
|
350
|
+
|
|
351
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-05-08 19:52:20 +0300
|
|
352
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
353
|
+
|
|
354
|
+
|
|
355
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-05-08 19:52:20 +0300
|
|
356
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
357
|
+
|
|
358
|
+
|
|
359
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-05-08 19:52:20 +0300
|
|
360
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
361
|
+
|
|
362
|
+
|
|
363
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-05-08 19:52:20 +0300
|
|
364
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
|
365
|
+
Connecting to database specified by database.yml
|
|
366
|
+
|
|
367
|
+
|
|
368
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 19:52:29 +0300
|
|
369
|
+
Processing by UsersController#test as HTML
|
|
370
|
+
Rendered users/test.html.haml within layouts/application (15.7ms)
|
|
371
|
+
Completed 500 Internal Server Error in 24ms
|
|
372
|
+
|
|
373
|
+
ActionView::Template::Error (Illegal nesting: nesting within plain text is illegal.):
|
|
374
|
+
1: <!DOCTYPE html>
|
|
375
|
+
2: <html>
|
|
376
|
+
3: <head>
|
|
377
|
+
4: <title>RailsApp</title>
|
|
378
|
+
5: <%= stylesheet_link_tag "application", :media => "all" %>
|
|
379
|
+
6: <%= javascript_include_tag "application" %>
|
|
380
|
+
7: <%= csrf_meta_tags %>
|
|
381
|
+
app/views/layouts/application.html.haml:4
|
|
382
|
+
|
|
383
|
+
|
|
384
|
+
Rendered /Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
|
|
385
|
+
Rendered /Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.5ms)
|
|
386
|
+
Rendered /Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.6ms)
|
|
387
|
+
|
|
388
|
+
|
|
389
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 19:52:59 +0300
|
|
390
|
+
Processing by UsersController#test as HTML
|
|
391
|
+
Rendered users/test.html.haml within layouts/application (0.1ms)
|
|
392
|
+
Completed 200 OK in 7ms (Views: 6.5ms | ActiveRecord: 0.0ms)
|
|
393
|
+
|
|
394
|
+
|
|
395
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-05-08 19:52:59 +0300
|
|
396
|
+
Served asset /jquery.js - 304 Not Modified (1ms)
|
|
397
|
+
|
|
398
|
+
|
|
399
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-05-08 19:52:59 +0300
|
|
400
|
+
Served asset /jquery_ujs.js - 304 Not Modified (1ms)
|
|
401
|
+
|
|
402
|
+
|
|
403
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-05-08 19:52:59 +0300
|
|
404
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
|
405
|
+
|
|
406
|
+
|
|
407
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 19:54:51 +0300
|
|
408
|
+
Processing by UsersController#test as HTML
|
|
409
|
+
Rendered users/test.html.haml within layouts/application (0.0ms)
|
|
410
|
+
Completed 500 Internal Server Error in 62ms
|
|
411
|
+
|
|
412
|
+
ActionView::Template::Error (SyntaxError: [stdin]:1:1: unexpected //
|
|
413
|
+
(in /Users/st/dev/ror/dynamic-fields-for/spec/rails_app/app/assets/javascripts/application.coffee)):
|
|
414
|
+
2: %html
|
|
415
|
+
3: %head
|
|
416
|
+
4: %title DynamicFieldsFor Test App
|
|
417
|
+
5: = javascript_include_tag "application", "data-turbolinks-track" => true
|
|
418
|
+
6:
|
|
419
|
+
7: %body= yield
|
|
420
|
+
app/views/layouts/application.html.haml:5:in `_app_views_layouts_application_html_haml__873692077985116803_70360798981000'
|
|
421
|
+
|
|
422
|
+
|
|
423
|
+
Rendered /Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
|
|
424
|
+
Rendered /Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.5ms)
|
|
425
|
+
Rendered /Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.2ms)
|
|
426
|
+
|
|
427
|
+
|
|
428
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 19:55:07 +0300
|
|
429
|
+
Processing by UsersController#test as HTML
|
|
430
|
+
Rendered users/test.html.haml within layouts/application (0.1ms)
|
|
431
|
+
Compiled application.js (46ms) (pid 76330)
|
|
432
|
+
Completed 200 OK in 60ms (Views: 59.9ms | ActiveRecord: 0.0ms)
|
|
433
|
+
|
|
434
|
+
|
|
435
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-05-08 19:55:07 +0300
|
|
436
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
437
|
+
|
|
438
|
+
|
|
439
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-05-08 19:55:07 +0300
|
|
440
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
441
|
+
|
|
442
|
+
|
|
443
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-05-08 19:55:07 +0300
|
|
444
|
+
Served asset /application.js - 200 OK (2ms)
|
|
445
|
+
Connecting to database specified by database.yml
|
|
446
|
+
|
|
447
|
+
|
|
448
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 19:55:16 +0300
|
|
449
|
+
Processing by UsersController#test as HTML
|
|
450
|
+
Rendered users/test.html.haml within layouts/application (1.7ms)
|
|
451
|
+
Completed 200 OK in 29ms (Views: 28.4ms | ActiveRecord: 0.0ms)
|
|
452
|
+
|
|
453
|
+
|
|
454
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-05-08 19:55:16 +0300
|
|
455
|
+
Served asset /jquery.js - 304 Not Modified (3ms)
|
|
456
|
+
|
|
457
|
+
|
|
458
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-05-08 19:55:16 +0300
|
|
459
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
|
460
|
+
|
|
461
|
+
|
|
462
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-05-08 19:55:16 +0300
|
|
463
|
+
Served asset /jquery_ujs.js - 304 Not Modified (1ms)
|
|
464
|
+
|
|
465
|
+
|
|
466
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 19:56:07 +0300
|
|
467
|
+
Processing by UsersController#test as HTML
|
|
468
|
+
Rendered users/test.html.haml within layouts/application (0.0ms)
|
|
469
|
+
Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
|
470
|
+
|
|
471
|
+
|
|
472
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-05-08 19:56:07 +0300
|
|
473
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
474
|
+
|
|
475
|
+
|
|
476
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-05-08 19:56:07 +0300
|
|
477
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
478
|
+
|
|
479
|
+
|
|
480
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-05-08 19:56:07 +0300
|
|
481
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
|
482
|
+
Connecting to database specified by database.yml
|
|
483
|
+
|
|
484
|
+
|
|
485
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 19:56:14 +0300
|
|
486
|
+
Processing by UsersController#test as HTML
|
|
487
|
+
Rendered users/test.html.haml within layouts/application (1.8ms)
|
|
488
|
+
Completed 200 OK in 30ms (Views: 29.2ms | ActiveRecord: 0.0ms)
|
|
489
|
+
|
|
490
|
+
|
|
491
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-05-08 19:56:14 +0300
|
|
492
|
+
Served asset /jquery.js - 304 Not Modified (3ms)
|
|
493
|
+
|
|
494
|
+
|
|
495
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-05-08 19:56:14 +0300
|
|
496
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
|
497
|
+
|
|
498
|
+
|
|
499
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-05-08 19:56:14 +0300
|
|
500
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
501
|
+
|
|
502
|
+
|
|
503
|
+
Started GET "/users/new" for 127.0.0.1 at 2015-05-08 19:56:30 +0300
|
|
504
|
+
Processing by UsersController#new as HTML
|
|
505
|
+
Completed 500 Internal Server Error in 2ms
|
|
506
|
+
|
|
507
|
+
ActiveRecord::StatementInvalid (Could not find table 'users'):
|
|
508
|
+
app/controllers/users_controller.rb:26:in `new'
|
|
509
|
+
app/controllers/users_controller.rb:26:in `build_resource'
|
|
510
|
+
|
|
511
|
+
|
|
512
|
+
Rendered /Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
|
|
513
|
+
Rendered /Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.5ms)
|
|
514
|
+
Rendered /Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (5.0ms)
|
|
515
|
+
|
|
516
|
+
|
|
517
|
+
Started GET "/users/new" for 127.0.0.1 at 2015-05-08 19:56:30 +0300
|
|
518
|
+
Processing by UsersController#new as HTML
|
|
519
|
+
Completed 500 Internal Server Error in 0ms
|
|
520
|
+
|
|
521
|
+
ActiveRecord::StatementInvalid (Could not find table 'users'):
|
|
522
|
+
app/controllers/users_controller.rb:26:in `new'
|
|
523
|
+
app/controllers/users_controller.rb:26:in `build_resource'
|
|
524
|
+
|
|
525
|
+
|
|
526
|
+
Rendered /Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.6ms)
|
|
527
|
+
Rendered /Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms)
|
|
528
|
+
Rendered /Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (5.1ms)
|
|
529
|
+
Connecting to database specified by database.yml
|
|
530
|
+
|
|
531
|
+
|
|
532
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 20:04:31 +0300
|
|
533
|
+
Processing by UsersController#test as HTML
|
|
534
|
+
Rendered users/test.html.haml within layouts/application (1.7ms)
|
|
535
|
+
Completed 200 OK in 28ms (Views: 27.8ms | ActiveRecord: 0.0ms)
|
|
536
|
+
|
|
537
|
+
|
|
538
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-05-08 20:04:31 +0300
|
|
539
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
|
540
|
+
|
|
541
|
+
|
|
542
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-05-08 20:04:31 +0300
|
|
543
|
+
Served asset /jquery_ujs.js - 304 Not Modified (1ms)
|
|
544
|
+
|
|
545
|
+
|
|
546
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-05-08 20:04:31 +0300
|
|
547
|
+
Served asset /jquery.js - 304 Not Modified (1ms)
|
|
548
|
+
Connecting to database specified by database.yml
|
|
549
|
+
|
|
550
|
+
|
|
551
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 20:06:39 +0300
|
|
552
|
+
Processing by UsersController#test as HTML
|
|
553
|
+
Rendered users/test.html.haml within layouts/application (1.8ms)
|
|
554
|
+
Completed 200 OK in 28ms (Views: 27.7ms | ActiveRecord: 0.0ms)
|
|
555
|
+
|
|
556
|
+
|
|
557
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-05-08 20:06:39 +0300
|
|
558
|
+
Served asset /jquery.js - 304 Not Modified (3ms)
|
|
559
|
+
|
|
560
|
+
|
|
561
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-05-08 20:06:39 +0300
|
|
562
|
+
Served asset /application.js - 304 Not Modified (1ms)
|
|
563
|
+
|
|
564
|
+
|
|
565
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-05-08 20:06:39 +0300
|
|
566
|
+
Served asset /jquery_ujs.js - 304 Not Modified (1ms)
|
|
567
|
+
Connecting to database specified by database.yml
|
|
568
|
+
Connecting to database specified by database.yml
|
|
569
|
+
|
|
570
|
+
|
|
571
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 20:10:02 +0300
|
|
572
|
+
Processing by UsersController#test as HTML
|
|
573
|
+
Rendered users/test.html.haml within layouts/application (1.7ms)
|
|
574
|
+
Compiled jquery.js (1ms) (pid 77450)
|
|
575
|
+
Compiled jquery_ujs.js (0ms) (pid 77450)
|
|
576
|
+
Compiled application.js (71ms) (pid 77450)
|
|
577
|
+
Completed 200 OK in 103ms (Views: 102.1ms | ActiveRecord: 0.0ms)
|
|
578
|
+
|
|
579
|
+
|
|
580
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-05-08 20:10:02 +0300
|
|
581
|
+
Served asset /application.js - 304 Not Modified (5ms)
|
|
582
|
+
|
|
583
|
+
|
|
584
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-05-08 20:10:02 +0300
|
|
585
|
+
Served asset /jquery.js - 304 Not Modified (1ms)
|
|
586
|
+
|
|
587
|
+
|
|
588
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-05-08 20:10:02 +0300
|
|
589
|
+
Served asset /jquery_ujs.js - 304 Not Modified (1ms)
|
|
590
|
+
|
|
591
|
+
|
|
592
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 20:10:03 +0300
|
|
593
|
+
Processing by UsersController#test as HTML
|
|
594
|
+
Rendered users/test.html.haml within layouts/application (0.1ms)
|
|
595
|
+
Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
|
|
596
|
+
|
|
597
|
+
|
|
598
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-05-08 20:10:03 +0300
|
|
599
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
|
600
|
+
|
|
601
|
+
|
|
602
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-05-08 20:10:03 +0300
|
|
603
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
604
|
+
|
|
605
|
+
|
|
606
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-05-08 20:10:03 +0300
|
|
607
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
608
|
+
Connecting to database specified by database.yml
|
|
609
|
+
|
|
610
|
+
|
|
611
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 20:10:11 +0300
|
|
612
|
+
Processing by UsersController#test as HTML
|
|
613
|
+
Rendered users/test.html.haml within layouts/application (1.7ms)
|
|
614
|
+
Completed 200 OK in 28ms (Views: 27.5ms | ActiveRecord: 0.0ms)
|
|
615
|
+
|
|
616
|
+
|
|
617
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-05-08 20:10:11 +0300
|
|
618
|
+
Served asset /jquery_ujs.js - 304 Not Modified (2ms)
|
|
619
|
+
|
|
620
|
+
|
|
621
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-05-08 20:10:11 +0300
|
|
622
|
+
Served asset /jquery.js - 304 Not Modified (1ms)
|
|
623
|
+
|
|
624
|
+
|
|
625
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-05-08 20:10:11 +0300
|
|
626
|
+
Served asset /application.js - 304 Not Modified (1ms)
|
|
627
|
+
Connecting to database specified by database.yml
|
|
628
|
+
|
|
629
|
+
|
|
630
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 20:13:18 +0300
|
|
631
|
+
Processing by UsersController#test as HTML
|
|
632
|
+
Rendered users/test.html.haml within layouts/application (1.7ms)
|
|
633
|
+
Compiled jquery.js (1ms) (pid 77616)
|
|
634
|
+
Compiled jquery_ujs.js (0ms) (pid 77616)
|
|
635
|
+
Compiled application.js (73ms) (pid 77616)
|
|
636
|
+
Completed 200 OK in 104ms (Views: 103.8ms | ActiveRecord: 0.0ms)
|
|
637
|
+
|
|
638
|
+
|
|
639
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-05-08 20:13:18 +0300
|
|
640
|
+
Served asset /application.js - 304 Not Modified (4ms)
|
|
641
|
+
|
|
642
|
+
|
|
643
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-05-08 20:13:18 +0300
|
|
644
|
+
Served asset /jquery.js - 304 Not Modified (1ms)
|
|
645
|
+
|
|
646
|
+
|
|
647
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-05-08 20:13:18 +0300
|
|
648
|
+
Served asset /jquery_ujs.js - 304 Not Modified (1ms)
|
|
649
|
+
|
|
650
|
+
|
|
651
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 20:13:18 +0300
|
|
652
|
+
Processing by UsersController#test as HTML
|
|
653
|
+
Rendered users/test.html.haml within layouts/application (0.1ms)
|
|
654
|
+
Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
|
655
|
+
|
|
656
|
+
|
|
657
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-05-08 20:13:18 +0300
|
|
658
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
659
|
+
|
|
660
|
+
|
|
661
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-05-08 20:13:18 +0300
|
|
662
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
663
|
+
|
|
664
|
+
|
|
665
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-05-08 20:13:18 +0300
|
|
666
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
|
667
|
+
Connecting to database specified by database.yml
|
|
668
|
+
|
|
669
|
+
|
|
670
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 20:14:39 +0300
|
|
671
|
+
Processing by UsersController#test as HTML
|
|
672
|
+
Rendered users/test.html.haml within layouts/application (1.7ms)
|
|
673
|
+
Completed 200 OK in 29ms (Views: 28.8ms | ActiveRecord: 0.0ms)
|
|
674
|
+
|
|
675
|
+
|
|
676
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-05-08 20:14:39 +0300
|
|
677
|
+
Served asset /jquery_ujs.js - 304 Not Modified (1ms)
|
|
678
|
+
|
|
679
|
+
|
|
680
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-05-08 20:14:39 +0300
|
|
681
|
+
Served asset /application.js - 304 Not Modified (3ms)
|
|
682
|
+
|
|
683
|
+
|
|
684
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-05-08 20:14:39 +0300
|
|
685
|
+
Served asset /jquery.js - 304 Not Modified (1ms)
|
|
686
|
+
Connecting to database specified by database.yml
|
|
687
|
+
|
|
688
|
+
|
|
689
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 20:14:55 +0300
|
|
690
|
+
Processing by UsersController#test as HTML
|
|
691
|
+
Rendered users/test.html.haml within layouts/application (1.8ms)
|
|
692
|
+
Completed 200 OK in 29ms (Views: 28.6ms | ActiveRecord: 0.0ms)
|
|
693
|
+
|
|
694
|
+
|
|
695
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-05-08 20:14:55 +0300
|
|
696
|
+
Served asset /jquery.js - 304 Not Modified (2ms)
|
|
697
|
+
|
|
698
|
+
|
|
699
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-05-08 20:14:55 +0300
|
|
700
|
+
Served asset /jquery_ujs.js - 304 Not Modified (1ms)
|
|
701
|
+
|
|
702
|
+
|
|
703
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-05-08 20:14:55 +0300
|
|
704
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
|
705
|
+
|
|
706
|
+
|
|
707
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 20:14:57 +0300
|
|
708
|
+
Processing by UsersController#test as HTML
|
|
709
|
+
Rendered users/test.html.haml within layouts/application (0.1ms)
|
|
710
|
+
Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
|
|
711
|
+
|
|
712
|
+
|
|
713
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-05-08 20:14:57 +0300
|
|
714
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
715
|
+
|
|
716
|
+
|
|
717
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-05-08 20:14:57 +0300
|
|
718
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
|
719
|
+
|
|
720
|
+
|
|
721
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-05-08 20:14:57 +0300
|
|
722
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
723
|
+
Connecting to database specified by database.yml
|
|
724
|
+
|
|
725
|
+
|
|
726
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 20:15:10 +0300
|
|
727
|
+
Processing by UsersController#test as HTML
|
|
728
|
+
Rendered users/test.html.haml within layouts/application (1.8ms)
|
|
729
|
+
Completed 200 OK in 28ms (Views: 28.2ms | ActiveRecord: 0.0ms)
|
|
730
|
+
|
|
731
|
+
|
|
732
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-05-08 20:15:10 +0300
|
|
733
|
+
Served asset /jquery_ujs.js - 304 Not Modified (1ms)
|
|
734
|
+
|
|
735
|
+
|
|
736
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-05-08 20:15:10 +0300
|
|
737
|
+
Served asset /application.js - 304 Not Modified (1ms)
|
|
738
|
+
|
|
739
|
+
|
|
740
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-05-08 20:15:10 +0300
|
|
741
|
+
Served asset /jquery.js - 304 Not Modified (1ms)
|
|
742
|
+
|
|
743
|
+
|
|
744
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 20:15:11 +0300
|
|
745
|
+
Processing by UsersController#test as HTML
|
|
746
|
+
Rendered users/test.html.haml within layouts/application (0.1ms)
|
|
747
|
+
Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
|
748
|
+
|
|
749
|
+
|
|
750
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-05-08 20:15:11 +0300
|
|
751
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
752
|
+
|
|
753
|
+
|
|
754
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-05-08 20:15:11 +0300
|
|
755
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
|
756
|
+
|
|
757
|
+
|
|
758
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-05-08 20:15:11 +0300
|
|
759
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
760
|
+
Connecting to database specified by database.yml
|
|
761
|
+
|
|
762
|
+
|
|
763
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 20:15:25 +0300
|
|
764
|
+
Processing by UsersController#test as HTML
|
|
765
|
+
Rendered users/test.html.haml within layouts/application (1.9ms)
|
|
766
|
+
Completed 200 OK in 29ms (Views: 28.7ms | ActiveRecord: 0.0ms)
|
|
767
|
+
|
|
768
|
+
|
|
769
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-05-08 20:15:25 +0300
|
|
770
|
+
Served asset /jquery.js - 304 Not Modified (3ms)
|
|
771
|
+
|
|
772
|
+
|
|
773
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-05-08 20:15:25 +0300
|
|
774
|
+
Served asset /jquery_ujs.js - 304 Not Modified (1ms)
|
|
775
|
+
|
|
776
|
+
|
|
777
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-05-08 20:15:25 +0300
|
|
778
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
|
779
|
+
|
|
780
|
+
|
|
781
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 20:15:25 +0300
|
|
782
|
+
Processing by UsersController#test as HTML
|
|
783
|
+
Rendered users/test.html.haml within layouts/application (0.1ms)
|
|
784
|
+
Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
|
785
|
+
|
|
786
|
+
|
|
787
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-05-08 20:15:25 +0300
|
|
788
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
789
|
+
|
|
790
|
+
|
|
791
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-05-08 20:15:25 +0300
|
|
792
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
793
|
+
|
|
794
|
+
|
|
795
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-05-08 20:15:25 +0300
|
|
796
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
|
797
|
+
Connecting to database specified by database.yml
|
|
798
|
+
|
|
799
|
+
|
|
800
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 20:15:45 +0300
|
|
801
|
+
Processing by UsersController#test as HTML
|
|
802
|
+
Rendered users/test.html.haml within layouts/application (1.8ms)
|
|
803
|
+
Completed 200 OK in 28ms (Views: 27.8ms | ActiveRecord: 0.0ms)
|
|
804
|
+
|
|
805
|
+
|
|
806
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-05-08 20:15:45 +0300
|
|
807
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
|
808
|
+
|
|
809
|
+
|
|
810
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-05-08 20:15:45 +0300
|
|
811
|
+
Served asset /jquery_ujs.js - 304 Not Modified (1ms)
|
|
812
|
+
|
|
813
|
+
|
|
814
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-05-08 20:15:45 +0300
|
|
815
|
+
Served asset /jquery.js - 304 Not Modified (1ms)
|
|
816
|
+
|
|
817
|
+
|
|
818
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 20:15:46 +0300
|
|
819
|
+
Processing by UsersController#test as HTML
|
|
820
|
+
Rendered users/test.html.haml within layouts/application (0.1ms)
|
|
821
|
+
Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
|
822
|
+
|
|
823
|
+
|
|
824
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-05-08 20:15:46 +0300
|
|
825
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
826
|
+
|
|
827
|
+
|
|
828
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-05-08 20:15:46 +0300
|
|
829
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
830
|
+
|
|
831
|
+
|
|
832
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-05-08 20:15:46 +0300
|
|
833
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
|
834
|
+
Connecting to database specified by database.yml
|
|
835
|
+
|
|
836
|
+
|
|
837
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 20:17:05 +0300
|
|
838
|
+
Processing by UsersController#test as HTML
|
|
839
|
+
Rendered users/test.html.haml within layouts/application (1.7ms)
|
|
840
|
+
Compiled jquery.js (1ms) (pid 77983)
|
|
841
|
+
Compiled jquery_ujs.js (0ms) (pid 77983)
|
|
842
|
+
Compiled application.js (73ms) (pid 77983)
|
|
843
|
+
Completed 200 OK in 104ms (Views: 103.7ms | ActiveRecord: 0.0ms)
|
|
844
|
+
|
|
845
|
+
|
|
846
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-05-08 20:17:05 +0300
|
|
847
|
+
Served asset /jquery.js - 304 Not Modified (3ms)
|
|
848
|
+
|
|
849
|
+
|
|
850
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-05-08 20:17:05 +0300
|
|
851
|
+
Served asset /jquery_ujs.js - 304 Not Modified (1ms)
|
|
852
|
+
|
|
853
|
+
|
|
854
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-05-08 20:17:05 +0300
|
|
855
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
|
856
|
+
|
|
857
|
+
|
|
858
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 20:17:56 +0300
|
|
859
|
+
Processing by UsersController#test as HTML
|
|
860
|
+
Rendered users/test.html.haml within layouts/application (0.1ms)
|
|
861
|
+
Compiled turbolinks.js (908ms) (pid 77983)
|
|
862
|
+
Compiled dynamic-fields-for.js (0ms) (pid 77983)
|
|
863
|
+
Compiled application.js (954ms) (pid 77983)
|
|
864
|
+
Completed 200 OK in 1000ms (Views: 999.7ms | ActiveRecord: 0.0ms)
|
|
865
|
+
|
|
866
|
+
|
|
867
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-05-08 20:17:57 +0300
|
|
868
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
869
|
+
|
|
870
|
+
|
|
871
|
+
Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2015-05-08 20:17:57 +0300
|
|
872
|
+
Served asset /turbolinks.js - 200 OK (1ms)
|
|
873
|
+
|
|
874
|
+
|
|
875
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-05-08 20:17:57 +0300
|
|
876
|
+
Served asset /application.js - 200 OK (3ms)
|
|
877
|
+
|
|
878
|
+
|
|
879
|
+
Started GET "/assets/dynamic-fields-for.js?body=1" for 127.0.0.1 at 2015-05-08 20:17:57 +0300
|
|
880
|
+
Served asset /dynamic-fields-for.js - 200 OK (1ms)
|
|
881
|
+
|
|
882
|
+
|
|
883
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 20:17:58 +0300
|
|
884
|
+
Processing by UsersController#test as HTML
|
|
885
|
+
Rendered users/test.html.haml within layouts/application (0.1ms)
|
|
886
|
+
Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.0ms)
|
|
887
|
+
|
|
888
|
+
|
|
889
|
+
Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2015-05-08 20:17:58 +0300
|
|
890
|
+
Served asset /turbolinks.js - 304 Not Modified (0ms)
|
|
891
|
+
|
|
892
|
+
|
|
893
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-05-08 20:17:58 +0300
|
|
894
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
895
|
+
|
|
896
|
+
|
|
897
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-05-08 20:17:58 +0300
|
|
898
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
|
899
|
+
|
|
900
|
+
|
|
901
|
+
Started GET "/assets/dynamic-fields-for.js?body=1" for 127.0.0.1 at 2015-05-08 20:17:58 +0300
|
|
902
|
+
Served asset /dynamic-fields-for.js - 304 Not Modified (0ms)
|
|
903
|
+
|
|
904
|
+
|
|
905
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 20:18:03 +0300
|
|
906
|
+
Processing by UsersController#test as HTML
|
|
907
|
+
Rendered users/test.html.haml within layouts/application (0.1ms)
|
|
908
|
+
Completed 200 OK in 5ms (Views: 5.2ms | ActiveRecord: 0.0ms)
|
|
909
|
+
|
|
910
|
+
|
|
911
|
+
Started GET "/assets/dynamic-fields-for.js?body=1" for 127.0.0.1 at 2015-05-08 20:18:03 +0300
|
|
912
|
+
Served asset /dynamic-fields-for.js - 304 Not Modified (0ms)
|
|
913
|
+
|
|
914
|
+
|
|
915
|
+
Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2015-05-08 20:18:03 +0300
|
|
916
|
+
Served asset /turbolinks.js - 304 Not Modified (0ms)
|
|
917
|
+
|
|
918
|
+
|
|
919
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-05-08 20:18:03 +0300
|
|
920
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
921
|
+
|
|
922
|
+
|
|
923
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-05-08 20:18:03 +0300
|
|
924
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
|
925
|
+
|
|
926
|
+
|
|
927
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 20:18:08 +0300
|
|
928
|
+
Processing by UsersController#test as HTML
|
|
929
|
+
Rendered users/test.html.haml within layouts/application (0.2ms)
|
|
930
|
+
Completed 200 OK in 5ms (Views: 5.2ms | ActiveRecord: 0.0ms)
|
|
931
|
+
|
|
932
|
+
|
|
933
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-05-08 20:18:08 +0300
|
|
934
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
935
|
+
|
|
936
|
+
|
|
937
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-05-08 20:18:08 +0300
|
|
938
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
|
939
|
+
|
|
940
|
+
|
|
941
|
+
Started GET "/assets/dynamic-fields-for.js?body=1" for 127.0.0.1 at 2015-05-08 20:18:08 +0300
|
|
942
|
+
Served asset /dynamic-fields-for.js - 304 Not Modified (0ms)
|
|
943
|
+
|
|
944
|
+
|
|
945
|
+
Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2015-05-08 20:18:08 +0300
|
|
946
|
+
Served asset /turbolinks.js - 304 Not Modified (0ms)
|
|
947
|
+
Connecting to database specified by database.yml
|
|
948
|
+
|
|
949
|
+
|
|
950
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 20:22:13 +0300
|
|
951
|
+
Processing by UsersController#test as HTML
|
|
952
|
+
Rendered users/test.html.haml within layouts/application (1.8ms)
|
|
953
|
+
Completed 200 OK in 31ms (Views: 30.9ms | ActiveRecord: 0.0ms)
|
|
954
|
+
|
|
955
|
+
|
|
956
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-05-08 20:22:13 +0300
|
|
957
|
+
Served asset /jquery.js - 304 Not Modified (1ms)
|
|
958
|
+
|
|
959
|
+
|
|
960
|
+
Started GET "/assets/dynamic-fields-for.js?body=1" for 127.0.0.1 at 2015-05-08 20:22:13 +0300
|
|
961
|
+
Served asset /dynamic-fields-for.js - 304 Not Modified (0ms)
|
|
962
|
+
|
|
963
|
+
|
|
964
|
+
Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2015-05-08 20:22:13 +0300
|
|
965
|
+
Served asset /turbolinks.js - 304 Not Modified (1ms)
|
|
966
|
+
|
|
967
|
+
|
|
968
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-05-08 20:22:13 +0300
|
|
969
|
+
Served asset /application.js - 304 Not Modified (20ms)
|
|
970
|
+
|
|
971
|
+
|
|
972
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 20:22:14 +0300
|
|
973
|
+
Processing by UsersController#test as HTML
|
|
974
|
+
Rendered users/test.html.haml within layouts/application (0.1ms)
|
|
975
|
+
Completed 200 OK in 5ms (Views: 5.1ms | ActiveRecord: 0.0ms)
|
|
976
|
+
|
|
977
|
+
|
|
978
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-05-08 20:22:14 +0300
|
|
979
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
980
|
+
|
|
981
|
+
|
|
982
|
+
Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2015-05-08 20:22:14 +0300
|
|
983
|
+
Served asset /turbolinks.js - 304 Not Modified (0ms)
|
|
984
|
+
|
|
985
|
+
|
|
986
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-05-08 20:22:14 +0300
|
|
987
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
|
988
|
+
|
|
989
|
+
|
|
990
|
+
Started GET "/assets/dynamic-fields-for.js?body=1" for 127.0.0.1 at 2015-05-08 20:22:14 +0300
|
|
991
|
+
Served asset /dynamic-fields-for.js - 304 Not Modified (0ms)
|
|
992
|
+
|
|
993
|
+
|
|
994
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 20:22:15 +0300
|
|
995
|
+
Processing by UsersController#test as HTML
|
|
996
|
+
Rendered users/test.html.haml within layouts/application (0.0ms)
|
|
997
|
+
Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.0ms)
|
|
998
|
+
|
|
999
|
+
|
|
1000
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-05-08 20:22:15 +0300
|
|
1001
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
1002
|
+
|
|
1003
|
+
|
|
1004
|
+
Started GET "/assets/dynamic-fields-for.js?body=1" for 127.0.0.1 at 2015-05-08 20:22:15 +0300
|
|
1005
|
+
Served asset /dynamic-fields-for.js - 304 Not Modified (0ms)
|
|
1006
|
+
|
|
1007
|
+
|
|
1008
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-05-08 20:22:15 +0300
|
|
1009
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
|
1010
|
+
|
|
1011
|
+
|
|
1012
|
+
Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2015-05-08 20:22:15 +0300
|
|
1013
|
+
Served asset /turbolinks.js - 304 Not Modified (0ms)
|
|
1014
|
+
|
|
1015
|
+
|
|
1016
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 20:22:19 +0300
|
|
1017
|
+
Processing by UsersController#test as HTML
|
|
1018
|
+
Rendered users/test.html.haml within layouts/application (0.1ms)
|
|
1019
|
+
Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
|
|
1020
|
+
|
|
1021
|
+
|
|
1022
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-05-08 20:22:19 +0300
|
|
1023
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
1024
|
+
|
|
1025
|
+
|
|
1026
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-05-08 20:22:19 +0300
|
|
1027
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
|
1028
|
+
|
|
1029
|
+
|
|
1030
|
+
Started GET "/assets/dynamic-fields-for.js?body=1" for 127.0.0.1 at 2015-05-08 20:22:19 +0300
|
|
1031
|
+
Served asset /dynamic-fields-for.js - 304 Not Modified (0ms)
|
|
1032
|
+
|
|
1033
|
+
|
|
1034
|
+
Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2015-05-08 20:22:19 +0300
|
|
1035
|
+
Served asset /turbolinks.js - 304 Not Modified (0ms)
|
|
1036
|
+
|
|
1037
|
+
|
|
1038
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 20:22:25 +0300
|
|
1039
|
+
Processing by UsersController#test as HTML
|
|
1040
|
+
Rendered users/test.html.haml within layouts/application (0.1ms)
|
|
1041
|
+
Completed 200 OK in 5ms (Views: 5.1ms | ActiveRecord: 0.0ms)
|
|
1042
|
+
|
|
1043
|
+
|
|
1044
|
+
Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2015-05-08 20:22:25 +0300
|
|
1045
|
+
Served asset /turbolinks.js - 304 Not Modified (0ms)
|
|
1046
|
+
|
|
1047
|
+
|
|
1048
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-05-08 20:22:25 +0300
|
|
1049
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
1050
|
+
|
|
1051
|
+
|
|
1052
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-05-08 20:22:25 +0300
|
|
1053
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
|
1054
|
+
|
|
1055
|
+
|
|
1056
|
+
Started GET "/assets/dynamic-fields-for.js?body=1" for 127.0.0.1 at 2015-05-08 20:22:25 +0300
|
|
1057
|
+
Served asset /dynamic-fields-for.js - 304 Not Modified (0ms)
|
|
1058
|
+
Connecting to database specified by database.yml
|
|
1059
|
+
|
|
1060
|
+
|
|
1061
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 20:24:01 +0300
|
|
1062
|
+
Processing by UsersController#test as HTML
|
|
1063
|
+
Rendered users/test.html.haml within layouts/application (1.7ms)
|
|
1064
|
+
Compiled jquery.js (1ms) (pid 78509)
|
|
1065
|
+
Compiled turbolinks.js (912ms) (pid 78509)
|
|
1066
|
+
Compiled dynamic-fields-for.js (0ms) (pid 78509)
|
|
1067
|
+
Compiled application.js (996ms) (pid 78509)
|
|
1068
|
+
Completed 200 OK in 1031ms (Views: 1030.4ms | ActiveRecord: 0.0ms)
|
|
1069
|
+
|
|
1070
|
+
|
|
1071
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-05-08 20:24:02 +0300
|
|
1072
|
+
Served asset /jquery.js - 304 Not Modified (4ms)
|
|
1073
|
+
|
|
1074
|
+
|
|
1075
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-05-08 20:24:02 +0300
|
|
1076
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
|
1077
|
+
|
|
1078
|
+
|
|
1079
|
+
Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2015-05-08 20:24:02 +0300
|
|
1080
|
+
Served asset /turbolinks.js - 304 Not Modified (1ms)
|
|
1081
|
+
|
|
1082
|
+
|
|
1083
|
+
Started GET "/assets/dynamic-fields-for.js?body=1" for 127.0.0.1 at 2015-05-08 20:24:02 +0300
|
|
1084
|
+
Served asset /dynamic-fields-for.js - 304 Not Modified (1ms)
|
|
1085
|
+
|
|
1086
|
+
|
|
1087
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 20:24:04 +0300
|
|
1088
|
+
Processing by UsersController#test as HTML
|
|
1089
|
+
Rendered users/test.html.haml within layouts/application (0.1ms)
|
|
1090
|
+
Completed 200 OK in 5ms (Views: 5.1ms | ActiveRecord: 0.0ms)
|
|
1091
|
+
|
|
1092
|
+
|
|
1093
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-05-08 20:24:04 +0300
|
|
1094
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
1095
|
+
|
|
1096
|
+
|
|
1097
|
+
Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2015-05-08 20:24:04 +0300
|
|
1098
|
+
Served asset /turbolinks.js - 304 Not Modified (0ms)
|
|
1099
|
+
|
|
1100
|
+
|
|
1101
|
+
Started GET "/assets/dynamic-fields-for.js?body=1" for 127.0.0.1 at 2015-05-08 20:24:04 +0300
|
|
1102
|
+
Served asset /dynamic-fields-for.js - 304 Not Modified (0ms)
|
|
1103
|
+
|
|
1104
|
+
|
|
1105
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-05-08 20:24:04 +0300
|
|
1106
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
|
1107
|
+
Connecting to database specified by database.yml
|
|
1108
|
+
|
|
1109
|
+
|
|
1110
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 20:28:01 +0300
|
|
1111
|
+
Processing by UsersController#test as HTML
|
|
1112
|
+
Rendered users/test.html.haml within layouts/application (1.7ms)
|
|
1113
|
+
Completed 200 OK in 30ms (Views: 30.1ms | ActiveRecord: 0.0ms)
|
|
1114
|
+
|
|
1115
|
+
|
|
1116
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-05-08 20:28:01 +0300
|
|
1117
|
+
Served asset /jquery.js - 304 Not Modified (5ms)
|
|
1118
|
+
|
|
1119
|
+
|
|
1120
|
+
Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2015-05-08 20:28:01 +0300
|
|
1121
|
+
Served asset /turbolinks.js - 304 Not Modified (1ms)
|
|
1122
|
+
|
|
1123
|
+
|
|
1124
|
+
Started GET "/assets/dynamic-fields-for.js?body=1" for 127.0.0.1 at 2015-05-08 20:28:01 +0300
|
|
1125
|
+
Served asset /dynamic-fields-for.js - 304 Not Modified (0ms)
|
|
1126
|
+
|
|
1127
|
+
|
|
1128
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-05-08 20:28:01 +0300
|
|
1129
|
+
Served asset /application.js - 304 Not Modified (20ms)
|
|
1130
|
+
|
|
1131
|
+
|
|
1132
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 20:28:02 +0300
|
|
1133
|
+
Processing by UsersController#test as HTML
|
|
1134
|
+
Rendered users/test.html.haml within layouts/application (0.1ms)
|
|
1135
|
+
Completed 200 OK in 5ms (Views: 5.3ms | ActiveRecord: 0.0ms)
|
|
1136
|
+
|
|
1137
|
+
|
|
1138
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-05-08 20:28:02 +0300
|
|
1139
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
1140
|
+
|
|
1141
|
+
|
|
1142
|
+
Started GET "/assets/dynamic-fields-for.js?body=1" for 127.0.0.1 at 2015-05-08 20:28:02 +0300
|
|
1143
|
+
Served asset /dynamic-fields-for.js - 304 Not Modified (0ms)
|
|
1144
|
+
|
|
1145
|
+
|
|
1146
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-05-08 20:28:02 +0300
|
|
1147
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
|
1148
|
+
|
|
1149
|
+
|
|
1150
|
+
Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2015-05-08 20:28:02 +0300
|
|
1151
|
+
Served asset /turbolinks.js - 304 Not Modified (0ms)
|
|
1152
|
+
Connecting to database specified by database.yml
|
|
1153
|
+
|
|
1154
|
+
|
|
1155
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 20:29:12 +0300
|
|
1156
|
+
Processing by UsersController#test as HTML
|
|
1157
|
+
Rendered users/test.html.haml within layouts/application (1.9ms)
|
|
1158
|
+
Compiled jquery.js (1ms) (pid 78958)
|
|
1159
|
+
Compiled turbolinks.js (907ms) (pid 78958)
|
|
1160
|
+
Compiled dynamic-fields-for.js (0ms) (pid 78958)
|
|
1161
|
+
Compiled application.js (991ms) (pid 78958)
|
|
1162
|
+
Completed 200 OK in 1027ms (Views: 1026.4ms | ActiveRecord: 0.0ms)
|
|
1163
|
+
|
|
1164
|
+
|
|
1165
|
+
Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2015-05-08 20:29:13 +0300
|
|
1166
|
+
Served asset /turbolinks.js - 304 Not Modified (1ms)
|
|
1167
|
+
|
|
1168
|
+
|
|
1169
|
+
Started GET "/assets/dynamic-fields-for.js?body=1" for 127.0.0.1 at 2015-05-08 20:29:13 +0300
|
|
1170
|
+
Served asset /dynamic-fields-for.js - 304 Not Modified (1ms)
|
|
1171
|
+
|
|
1172
|
+
|
|
1173
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-05-08 20:29:13 +0300
|
|
1174
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
|
1175
|
+
|
|
1176
|
+
|
|
1177
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-05-08 20:29:13 +0300
|
|
1178
|
+
Served asset /jquery.js - 304 Not Modified (1ms)
|
|
1179
|
+
Connecting to database specified by database.yml
|
|
1180
|
+
|
|
1181
|
+
|
|
1182
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 20:30:51 +0300
|
|
1183
|
+
Processing by UsersController#test as HTML
|
|
1184
|
+
Rendered users/test.html.haml within layouts/application (1.9ms)
|
|
1185
|
+
Compiled jquery.js (1ms) (pid 79278)
|
|
1186
|
+
Compiled turbolinks.js (906ms) (pid 79278)
|
|
1187
|
+
Compiled dynamic-fields-for.js (0ms) (pid 79278)
|
|
1188
|
+
Compiled application.js (991ms) (pid 79278)
|
|
1189
|
+
Completed 200 OK in 1025ms (Views: 1024.5ms | ActiveRecord: 0.0ms)
|
|
1190
|
+
|
|
1191
|
+
|
|
1192
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-05-08 20:30:53 +0300
|
|
1193
|
+
Served asset /jquery.js - 304 Not Modified (2ms)
|
|
1194
|
+
|
|
1195
|
+
|
|
1196
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-05-08 20:30:53 +0300
|
|
1197
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
|
1198
|
+
|
|
1199
|
+
|
|
1200
|
+
Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2015-05-08 20:30:53 +0300
|
|
1201
|
+
Served asset /turbolinks.js - 304 Not Modified (1ms)
|
|
1202
|
+
|
|
1203
|
+
|
|
1204
|
+
Started GET "/assets/dynamic-fields-for.js?body=1" for 127.0.0.1 at 2015-05-08 20:30:53 +0300
|
|
1205
|
+
Served asset /dynamic-fields-for.js - 304 Not Modified (1ms)
|
|
1206
|
+
Connecting to database specified by database.yml
|
|
1207
|
+
Connecting to database specified by database.yml
|
|
1208
|
+
|
|
1209
|
+
|
|
1210
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 20:42:25 +0300
|
|
1211
|
+
Processing by UsersController#test as HTML
|
|
1212
|
+
Rendered users/test.html.haml within layouts/application (1.8ms)
|
|
1213
|
+
Completed 200 OK in 24ms (Views: 23.9ms | ActiveRecord: 0.0ms)
|
|
1214
|
+
|
|
1215
|
+
|
|
1216
|
+
Started GET "/javascripts/application.js" for 127.0.0.1 at 2015-05-08 20:42:25 +0300
|
|
1217
|
+
|
|
1218
|
+
ActionController::RoutingError (No route matches [GET] "/javascripts/application.js"):
|
|
1219
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
1220
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
1221
|
+
railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
|
|
1222
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
|
|
1223
|
+
activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
|
|
1224
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
|
|
1225
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
1226
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
|
1227
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
|
1228
|
+
activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
1229
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
|
1230
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
|
|
1231
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
|
1232
|
+
railties (3.2.13) lib/rails/application.rb:223:in `call'
|
|
1233
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
|
1234
|
+
railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
1235
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
|
1236
|
+
/Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
|
1237
|
+
/Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
|
1238
|
+
/Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
|
1239
|
+
|
|
1240
|
+
|
|
1241
|
+
Rendered /Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.4ms)
|
|
1242
|
+
|
|
1243
|
+
|
|
1244
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 20:42:26 +0300
|
|
1245
|
+
Processing by UsersController#test as HTML
|
|
1246
|
+
Rendered users/test.html.haml within layouts/application (0.1ms)
|
|
1247
|
+
Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
|
1248
|
+
|
|
1249
|
+
|
|
1250
|
+
Started GET "/javascripts/application.js" for 127.0.0.1 at 2015-05-08 20:42:26 +0300
|
|
1251
|
+
|
|
1252
|
+
ActionController::RoutingError (No route matches [GET] "/javascripts/application.js"):
|
|
1253
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
1254
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
1255
|
+
railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
|
|
1256
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
|
|
1257
|
+
activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
|
|
1258
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
|
|
1259
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
1260
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
|
1261
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
|
1262
|
+
activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
1263
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
|
1264
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
|
|
1265
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
|
1266
|
+
railties (3.2.13) lib/rails/application.rb:223:in `call'
|
|
1267
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
|
1268
|
+
railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
1269
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
|
1270
|
+
/Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
|
1271
|
+
/Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
|
1272
|
+
/Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
|
1273
|
+
|
|
1274
|
+
|
|
1275
|
+
Rendered /Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.4ms)
|
|
1276
|
+
|
|
1277
|
+
|
|
1278
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 20:42:27 +0300
|
|
1279
|
+
Processing by UsersController#test as HTML
|
|
1280
|
+
Rendered users/test.html.haml within layouts/application (0.0ms)
|
|
1281
|
+
Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
|
1282
|
+
|
|
1283
|
+
|
|
1284
|
+
Started GET "/javascripts/application.js" for 127.0.0.1 at 2015-05-08 20:42:27 +0300
|
|
1285
|
+
|
|
1286
|
+
ActionController::RoutingError (No route matches [GET] "/javascripts/application.js"):
|
|
1287
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
1288
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
1289
|
+
railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
|
|
1290
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
|
|
1291
|
+
activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
|
|
1292
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
|
|
1293
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
1294
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
|
1295
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
|
1296
|
+
activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
1297
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
|
1298
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
|
|
1299
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
|
1300
|
+
railties (3.2.13) lib/rails/application.rb:223:in `call'
|
|
1301
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
|
1302
|
+
railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
1303
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
|
1304
|
+
/Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
|
1305
|
+
/Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
|
1306
|
+
/Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
|
1307
|
+
|
|
1308
|
+
|
|
1309
|
+
Rendered /Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.3ms)
|
|
1310
|
+
|
|
1311
|
+
|
|
1312
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 20:42:27 +0300
|
|
1313
|
+
Processing by UsersController#test as HTML
|
|
1314
|
+
Rendered users/test.html.haml within layouts/application (0.1ms)
|
|
1315
|
+
Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
|
1316
|
+
|
|
1317
|
+
|
|
1318
|
+
Started GET "/javascripts/application.js" for 127.0.0.1 at 2015-05-08 20:42:27 +0300
|
|
1319
|
+
|
|
1320
|
+
ActionController::RoutingError (No route matches [GET] "/javascripts/application.js"):
|
|
1321
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
1322
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
1323
|
+
railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
|
|
1324
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
|
|
1325
|
+
activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
|
|
1326
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
|
|
1327
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
1328
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
|
1329
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
|
1330
|
+
activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
1331
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
|
1332
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
|
|
1333
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
|
1334
|
+
railties (3.2.13) lib/rails/application.rb:223:in `call'
|
|
1335
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
|
1336
|
+
railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
1337
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
|
1338
|
+
/Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
|
1339
|
+
/Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
|
1340
|
+
/Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
|
1341
|
+
|
|
1342
|
+
|
|
1343
|
+
Rendered /Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.3ms)
|
|
1344
|
+
|
|
1345
|
+
|
|
1346
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 20:42:28 +0300
|
|
1347
|
+
Processing by UsersController#test as HTML
|
|
1348
|
+
Rendered users/test.html.haml within layouts/application (0.0ms)
|
|
1349
|
+
Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
|
1350
|
+
|
|
1351
|
+
|
|
1352
|
+
Started GET "/javascripts/application.js" for 127.0.0.1 at 2015-05-08 20:42:28 +0300
|
|
1353
|
+
|
|
1354
|
+
ActionController::RoutingError (No route matches [GET] "/javascripts/application.js"):
|
|
1355
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
1356
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
1357
|
+
railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
|
|
1358
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
|
|
1359
|
+
activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
|
|
1360
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
|
|
1361
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
1362
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
|
1363
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
|
1364
|
+
activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
1365
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
|
1366
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
|
|
1367
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
|
1368
|
+
railties (3.2.13) lib/rails/application.rb:223:in `call'
|
|
1369
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
|
1370
|
+
railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
1371
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
|
1372
|
+
/Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
|
1373
|
+
/Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
|
1374
|
+
/Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
|
1375
|
+
|
|
1376
|
+
|
|
1377
|
+
Rendered /Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
|
1378
|
+
|
|
1379
|
+
|
|
1380
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 20:42:28 +0300
|
|
1381
|
+
Processing by UsersController#test as HTML
|
|
1382
|
+
Rendered users/test.html.haml within layouts/application (0.1ms)
|
|
1383
|
+
Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
|
1384
|
+
|
|
1385
|
+
|
|
1386
|
+
Started GET "/javascripts/application.js" for 127.0.0.1 at 2015-05-08 20:42:28 +0300
|
|
1387
|
+
|
|
1388
|
+
ActionController::RoutingError (No route matches [GET] "/javascripts/application.js"):
|
|
1389
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
1390
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
1391
|
+
railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
|
|
1392
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
|
|
1393
|
+
activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
|
|
1394
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
|
|
1395
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
1396
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
|
1397
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
|
1398
|
+
activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
1399
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
|
1400
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
|
|
1401
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
|
1402
|
+
railties (3.2.13) lib/rails/application.rb:223:in `call'
|
|
1403
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
|
1404
|
+
railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
1405
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
|
1406
|
+
/Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
|
1407
|
+
/Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
|
1408
|
+
/Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
|
1409
|
+
|
|
1410
|
+
|
|
1411
|
+
Rendered /Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.3ms)
|
|
1412
|
+
|
|
1413
|
+
|
|
1414
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 20:42:29 +0300
|
|
1415
|
+
Processing by UsersController#test as HTML
|
|
1416
|
+
Rendered users/test.html.haml within layouts/application (0.0ms)
|
|
1417
|
+
Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
|
1418
|
+
|
|
1419
|
+
|
|
1420
|
+
Started GET "/javascripts/application.js" for 127.0.0.1 at 2015-05-08 20:42:29 +0300
|
|
1421
|
+
|
|
1422
|
+
ActionController::RoutingError (No route matches [GET] "/javascripts/application.js"):
|
|
1423
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
1424
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
1425
|
+
railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
|
|
1426
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
|
|
1427
|
+
activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
|
|
1428
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
|
|
1429
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
1430
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
|
1431
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
|
1432
|
+
activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
1433
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
|
1434
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
|
|
1435
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
|
1436
|
+
railties (3.2.13) lib/rails/application.rb:223:in `call'
|
|
1437
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
|
1438
|
+
railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
1439
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
|
1440
|
+
/Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
|
1441
|
+
/Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
|
1442
|
+
/Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
|
1443
|
+
|
|
1444
|
+
|
|
1445
|
+
Rendered /Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
|
1446
|
+
Connecting to database specified by database.yml
|
|
1447
|
+
|
|
1448
|
+
|
|
1449
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 20:43:08 +0300
|
|
1450
|
+
Processing by UsersController#test as HTML
|
|
1451
|
+
Rendered users/test.html.haml within layouts/application (1.7ms)
|
|
1452
|
+
Compiled jquery.js (1ms) (pid 80472)
|
|
1453
|
+
Compiled turbolinks.js (907ms) (pid 80472)
|
|
1454
|
+
Compiled dynamic-fields-for.js (0ms) (pid 80472)
|
|
1455
|
+
Compiled application.js (993ms) (pid 80472)
|
|
1456
|
+
Completed 200 OK in 1027ms (Views: 1026.2ms | ActiveRecord: 0.0ms)
|
|
1457
|
+
|
|
1458
|
+
|
|
1459
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-05-08 20:43:09 +0300
|
|
1460
|
+
Served asset /jquery.js - 304 Not Modified (20ms)
|
|
1461
|
+
|
|
1462
|
+
|
|
1463
|
+
Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2015-05-08 20:43:09 +0300
|
|
1464
|
+
Served asset /turbolinks.js - 304 Not Modified (1ms)
|
|
1465
|
+
|
|
1466
|
+
|
|
1467
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-05-08 20:43:09 +0300
|
|
1468
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
|
1469
|
+
|
|
1470
|
+
|
|
1471
|
+
Started GET "/assets/dynamic-fields-for.js?body=1" for 127.0.0.1 at 2015-05-08 20:43:09 +0300
|
|
1472
|
+
Served asset /dynamic-fields-for.js - 304 Not Modified (1ms)
|
|
1473
|
+
|
|
1474
|
+
|
|
1475
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 20:44:14 +0300
|
|
1476
|
+
|
|
1477
|
+
ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
|
|
1478
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:410:in `retrieve_connection'
|
|
1479
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_specification.rb:171:in `retrieve_connection'
|
|
1480
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_specification.rb:145:in `connection'
|
|
1481
|
+
activerecord (3.2.13) lib/active_record/query_cache.rb:67:in `rescue in call'
|
|
1482
|
+
activerecord (3.2.13) lib/active_record/query_cache.rb:61:in `call'
|
|
1483
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
|
1484
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
|
1485
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__3719375161936772849__call__3709041741106226814__callbacks'
|
|
1486
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
|
1487
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
|
1488
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
|
1489
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
|
1490
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
|
1491
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
|
1492
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
|
1493
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
1494
|
+
railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
|
|
1495
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
|
|
1496
|
+
activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
|
|
1497
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
|
|
1498
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
1499
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
|
1500
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
|
1501
|
+
activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
1502
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
|
1503
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
|
|
1504
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
|
1505
|
+
railties (3.2.13) lib/rails/application.rb:223:in `call'
|
|
1506
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
|
1507
|
+
railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
1508
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
|
1509
|
+
/Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
|
1510
|
+
/Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
|
1511
|
+
/Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
|
1512
|
+
|
|
1513
|
+
|
|
1514
|
+
Rendered /Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.6ms)
|
|
1515
|
+
Rendered /Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.5ms)
|
|
1516
|
+
Rendered /Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (8.1ms)
|
|
1517
|
+
|
|
1518
|
+
|
|
1519
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 20:44:18 +0300
|
|
1520
|
+
|
|
1521
|
+
ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
|
|
1522
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:410:in `retrieve_connection'
|
|
1523
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_specification.rb:171:in `retrieve_connection'
|
|
1524
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_specification.rb:145:in `connection'
|
|
1525
|
+
activerecord (3.2.13) lib/active_record/query_cache.rb:67:in `rescue in call'
|
|
1526
|
+
activerecord (3.2.13) lib/active_record/query_cache.rb:61:in `call'
|
|
1527
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
|
1528
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
|
1529
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__3719375161936772849__call__3709041741106226814__callbacks'
|
|
1530
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
|
1531
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
|
1532
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
|
1533
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
|
1534
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
|
1535
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
|
1536
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
|
1537
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
1538
|
+
railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
|
|
1539
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
|
|
1540
|
+
activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
|
|
1541
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
|
|
1542
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
1543
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
|
1544
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
|
1545
|
+
activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
1546
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
|
1547
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
|
|
1548
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
|
1549
|
+
railties (3.2.13) lib/rails/application.rb:223:in `call'
|
|
1550
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
|
1551
|
+
railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
1552
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
|
1553
|
+
/Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
|
1554
|
+
/Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
|
1555
|
+
/Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
|
1556
|
+
|
|
1557
|
+
|
|
1558
|
+
Rendered /Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.6ms)
|
|
1559
|
+
Rendered /Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms)
|
|
1560
|
+
Rendered /Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (5.1ms)
|
|
1561
|
+
Connecting to database specified by database.yml
|
|
1562
|
+
|
|
1563
|
+
|
|
1564
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 20:44:53 +0300
|
|
1565
|
+
Processing by UsersController#test as HTML
|
|
1566
|
+
Rendered users/test.html.haml within layouts/application (1.8ms)
|
|
1567
|
+
Compiled jquery.js (1ms) (pid 80725)
|
|
1568
|
+
Compiled turbolinks.js (915ms) (pid 80725)
|
|
1569
|
+
Compiled dynamic-fields-for.js (0ms) (pid 80725)
|
|
1570
|
+
Compiled application.js (1002ms) (pid 80725)
|
|
1571
|
+
Completed 200 OK in 1036ms (Views: 1035.8ms | ActiveRecord: 0.0ms)
|
|
1572
|
+
|
|
1573
|
+
|
|
1574
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-05-08 20:44:54 +0300
|
|
1575
|
+
Served asset /jquery.js - 304 Not Modified (19ms)
|
|
1576
|
+
|
|
1577
|
+
|
|
1578
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-05-08 20:44:54 +0300
|
|
1579
|
+
Served asset /application.js - 304 Not Modified (4ms)
|
|
1580
|
+
|
|
1581
|
+
|
|
1582
|
+
Started GET "/assets/dynamic-fields-for.js?body=1" for 127.0.0.1 at 2015-05-08 20:44:54 +0300
|
|
1583
|
+
Served asset /dynamic-fields-for.js - 304 Not Modified (1ms)
|
|
1584
|
+
|
|
1585
|
+
|
|
1586
|
+
Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2015-05-08 20:44:54 +0300
|
|
1587
|
+
Served asset /turbolinks.js - 304 Not Modified (1ms)
|
|
1588
|
+
Connecting to database specified by database.yml
|
|
1589
|
+
|
|
1590
|
+
|
|
1591
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 20:45:30 +0300
|
|
1592
|
+
Processing by UsersController#test as HTML
|
|
1593
|
+
Rendered users/test.html.haml within layouts/application (1.9ms)
|
|
1594
|
+
Completed 200 OK in 35ms (Views: 34.1ms | ActiveRecord: 0.0ms)
|
|
1595
|
+
|
|
1596
|
+
|
|
1597
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-05-08 20:45:30 +0300
|
|
1598
|
+
Served asset /jquery.js - 304 Not Modified (4ms)
|
|
1599
|
+
|
|
1600
|
+
|
|
1601
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-05-08 20:45:30 +0300
|
|
1602
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
|
1603
|
+
|
|
1604
|
+
|
|
1605
|
+
Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2015-05-08 20:45:30 +0300
|
|
1606
|
+
Served asset /turbolinks.js - 304 Not Modified (18ms)
|
|
1607
|
+
|
|
1608
|
+
|
|
1609
|
+
Started GET "/assets/dynamic-fields-for.js?body=1" for 127.0.0.1 at 2015-05-08 20:45:30 +0300
|
|
1610
|
+
Served asset /dynamic-fields-for.js - 304 Not Modified (1ms)
|
|
1611
|
+
Connecting to database specified by database.yml
|
|
1612
|
+
|
|
1613
|
+
|
|
1614
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 20:58:26 +0300
|
|
1615
|
+
Processing by UsersController#test as HTML
|
|
1616
|
+
Rendered users/test.html.haml within layouts/application (1.9ms)
|
|
1617
|
+
Compiled jquery.js (1ms) (pid 81675)
|
|
1618
|
+
Compiled turbolinks.js (910ms) (pid 81675)
|
|
1619
|
+
Compiled dynamic-fields-for.js (0ms) (pid 81675)
|
|
1620
|
+
Compiled application.js (997ms) (pid 81675)
|
|
1621
|
+
Completed 200 OK in 1031ms (Views: 1030.9ms | ActiveRecord: 0.0ms)
|
|
1622
|
+
|
|
1623
|
+
|
|
1624
|
+
Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2015-05-08 20:58:27 +0300
|
|
1625
|
+
Served asset /turbolinks.js - 304 Not Modified (4ms)
|
|
1626
|
+
|
|
1627
|
+
|
|
1628
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-05-08 20:58:27 +0300
|
|
1629
|
+
Served asset /jquery.js - 304 Not Modified (1ms)
|
|
1630
|
+
|
|
1631
|
+
|
|
1632
|
+
Started GET "/assets/dynamic-fields-for.js?body=1" for 127.0.0.1 at 2015-05-08 20:58:27 +0300
|
|
1633
|
+
Served asset /dynamic-fields-for.js - 304 Not Modified (1ms)
|
|
1634
|
+
|
|
1635
|
+
|
|
1636
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-05-08 20:58:27 +0300
|
|
1637
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
|
1638
|
+
|
|
1639
|
+
|
|
1640
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 20:58:39 +0300
|
|
1641
|
+
|
|
1642
|
+
ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
|
|
1643
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:410:in `retrieve_connection'
|
|
1644
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_specification.rb:171:in `retrieve_connection'
|
|
1645
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_specification.rb:145:in `connection'
|
|
1646
|
+
activerecord (3.2.13) lib/active_record/query_cache.rb:67:in `rescue in call'
|
|
1647
|
+
activerecord (3.2.13) lib/active_record/query_cache.rb:61:in `call'
|
|
1648
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
|
1649
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
|
1650
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__2195546497727169262__call__2790656896854144612__callbacks'
|
|
1651
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
|
1652
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
|
1653
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
|
1654
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
|
1655
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
|
1656
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
|
1657
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
|
1658
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
1659
|
+
railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
|
|
1660
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
|
|
1661
|
+
activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
|
|
1662
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
|
|
1663
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
1664
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
|
1665
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
|
1666
|
+
activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
1667
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
|
1668
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
|
|
1669
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
|
1670
|
+
railties (3.2.13) lib/rails/application.rb:223:in `call'
|
|
1671
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
|
1672
|
+
railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
1673
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
|
1674
|
+
/Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
|
1675
|
+
/Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
|
1676
|
+
/Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
|
1677
|
+
|
|
1678
|
+
|
|
1679
|
+
Rendered /Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.5ms)
|
|
1680
|
+
Rendered /Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
|
|
1681
|
+
Rendered /Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (6.8ms)
|
|
1682
|
+
Connecting to database specified by database.yml
|
|
1683
|
+
|
|
1684
|
+
|
|
1685
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 21:00:09 +0300
|
|
1686
|
+
Processing by UsersController#test as HTML
|
|
1687
|
+
Rendered users/test.html.haml within layouts/application (1.8ms)
|
|
1688
|
+
Completed 200 OK in 32ms (Views: 31.3ms | ActiveRecord: 0.0ms)
|
|
1689
|
+
|
|
1690
|
+
|
|
1691
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-05-08 21:00:09 +0300
|
|
1692
|
+
Served asset /jquery.js - 304 Not Modified (1ms)
|
|
1693
|
+
|
|
1694
|
+
|
|
1695
|
+
Started GET "/assets/dynamic-fields-for.js?body=1" for 127.0.0.1 at 2015-05-08 21:00:09 +0300
|
|
1696
|
+
Served asset /dynamic-fields-for.js - 304 Not Modified (0ms)
|
|
1697
|
+
|
|
1698
|
+
|
|
1699
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-05-08 21:00:09 +0300
|
|
1700
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
|
1701
|
+
|
|
1702
|
+
|
|
1703
|
+
Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2015-05-08 21:00:09 +0300
|
|
1704
|
+
Served asset /turbolinks.js - 304 Not Modified (17ms)
|
|
1705
|
+
Connecting to database specified by database.yml
|
|
1706
|
+
|
|
1707
|
+
|
|
1708
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 21:02:30 +0300
|
|
1709
|
+
Processing by UsersController#test as HTML
|
|
1710
|
+
Rendered users/test.html.haml within layouts/application (2.0ms)
|
|
1711
|
+
Completed 200 OK in 32ms (Views: 31.7ms | ActiveRecord: 0.0ms)
|
|
1712
|
+
|
|
1713
|
+
|
|
1714
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-05-08 21:02:30 +0300
|
|
1715
|
+
Served asset /jquery.js - 304 Not Modified (4ms)
|
|
1716
|
+
|
|
1717
|
+
|
|
1718
|
+
Started GET "/assets/dynamic-fields-for.js?body=1" for 127.0.0.1 at 2015-05-08 21:02:30 +0300
|
|
1719
|
+
Served asset /dynamic-fields-for.js - 304 Not Modified (0ms)
|
|
1720
|
+
|
|
1721
|
+
|
|
1722
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-05-08 21:02:30 +0300
|
|
1723
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
|
1724
|
+
|
|
1725
|
+
|
|
1726
|
+
Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2015-05-08 21:02:30 +0300
|
|
1727
|
+
Served asset /turbolinks.js - 304 Not Modified (18ms)
|
|
1728
|
+
Connecting to database specified by database.yml
|
|
1729
|
+
|
|
1730
|
+
|
|
1731
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 21:03:41 +0300
|
|
1732
|
+
Processing by UsersController#test as HTML
|
|
1733
|
+
Rendered users/test.html.haml within layouts/application (1.8ms)
|
|
1734
|
+
Completed 200 OK in 31ms (Views: 30.3ms | ActiveRecord: 0.0ms)
|
|
1735
|
+
|
|
1736
|
+
|
|
1737
|
+
Started GET "/assets/dynamic-fields-for.js?body=1" for 127.0.0.1 at 2015-05-08 21:03:41 +0300
|
|
1738
|
+
Served asset /dynamic-fields-for.js - 304 Not Modified (2ms)
|
|
1739
|
+
|
|
1740
|
+
|
|
1741
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-05-08 21:03:41 +0300
|
|
1742
|
+
Served asset /jquery.js - 304 Not Modified (1ms)
|
|
1743
|
+
|
|
1744
|
+
|
|
1745
|
+
Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2015-05-08 21:03:41 +0300
|
|
1746
|
+
Served asset /turbolinks.js - 304 Not Modified (1ms)
|
|
1747
|
+
|
|
1748
|
+
|
|
1749
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-05-08 21:03:41 +0300
|
|
1750
|
+
Served asset /application.js - 304 Not Modified (19ms)
|
|
1751
|
+
|
|
1752
|
+
|
|
1753
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 21:04:11 +0300
|
|
1754
|
+
Connecting to database specified by database.yml
|
|
1755
|
+
Processing by UsersController#test as HTML
|
|
1756
|
+
Rendered users/test.html.haml within layouts/application (1.7ms)
|
|
1757
|
+
Completed 200 OK in 31ms (Views: 30.2ms | ActiveRecord: 0.0ms)
|
|
1758
|
+
|
|
1759
|
+
|
|
1760
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-05-08 21:04:11 +0300
|
|
1761
|
+
Served asset /jquery.js - 304 Not Modified (20ms)
|
|
1762
|
+
|
|
1763
|
+
|
|
1764
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-05-08 21:04:11 +0300
|
|
1765
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
|
1766
|
+
|
|
1767
|
+
|
|
1768
|
+
Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2015-05-08 21:04:11 +0300
|
|
1769
|
+
Served asset /turbolinks.js - 304 Not Modified (1ms)
|
|
1770
|
+
|
|
1771
|
+
|
|
1772
|
+
Started GET "/assets/dynamic-fields-for.js?body=1" for 127.0.0.1 at 2015-05-08 21:04:11 +0300
|
|
1773
|
+
Served asset /dynamic-fields-for.js - 304 Not Modified (1ms)
|
|
1774
|
+
|
|
1775
|
+
|
|
1776
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 21:04:44 +0300
|
|
1777
|
+
Connecting to database specified by database.yml
|
|
1778
|
+
Processing by UsersController#test as HTML
|
|
1779
|
+
Rendered users/test.html.haml within layouts/application (1.8ms)
|
|
1780
|
+
Completed 200 OK in 30ms (Views: 29.7ms | ActiveRecord: 0.0ms)
|
|
1781
|
+
|
|
1782
|
+
|
|
1783
|
+
Started GET "/assets/dynamic-fields-for.js?body=1" for 127.0.0.1 at 2015-05-08 21:04:44 +0300
|
|
1784
|
+
Served asset /dynamic-fields-for.js - 304 Not Modified (1ms)
|
|
1785
|
+
|
|
1786
|
+
|
|
1787
|
+
Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2015-05-08 21:04:44 +0300
|
|
1788
|
+
Served asset /turbolinks.js - 304 Not Modified (1ms)
|
|
1789
|
+
|
|
1790
|
+
|
|
1791
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-05-08 21:04:44 +0300
|
|
1792
|
+
Served asset /jquery.js - 304 Not Modified (17ms)
|
|
1793
|
+
|
|
1794
|
+
|
|
1795
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-05-08 21:04:44 +0300
|
|
1796
|
+
Served asset /application.js - 304 Not Modified (3ms)
|
|
1797
|
+
|
|
1798
|
+
|
|
1799
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 21:05:15 +0300
|
|
1800
|
+
Processing by UsersController#test as HTML
|
|
1801
|
+
Rendered users/test.html.haml within layouts/application (0.1ms)
|
|
1802
|
+
Completed 200 OK in 7ms (Views: 6.5ms | ActiveRecord: 0.0ms)
|
|
1803
|
+
|
|
1804
|
+
|
|
1805
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-05-08 21:05:15 +0300
|
|
1806
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
1807
|
+
|
|
1808
|
+
|
|
1809
|
+
Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2015-05-08 21:05:15 +0300
|
|
1810
|
+
Served asset /turbolinks.js - 304 Not Modified (0ms)
|
|
1811
|
+
|
|
1812
|
+
|
|
1813
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-05-08 21:05:15 +0300
|
|
1814
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
|
1815
|
+
|
|
1816
|
+
|
|
1817
|
+
Started GET "/assets/dynamic-fields-for.js?body=1" for 127.0.0.1 at 2015-05-08 21:05:15 +0300
|
|
1818
|
+
Served asset /dynamic-fields-for.js - 304 Not Modified (0ms)
|
|
1819
|
+
|
|
1820
|
+
|
|
1821
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 21:05:18 +0300
|
|
1822
|
+
Processing by UsersController#test as HTML
|
|
1823
|
+
Rendered users/test.html.haml within layouts/application (0.1ms)
|
|
1824
|
+
Completed 200 OK in 5ms (Views: 5.1ms | ActiveRecord: 0.0ms)
|
|
1825
|
+
|
|
1826
|
+
|
|
1827
|
+
Started GET "/assets/dynamic-fields-for.js?body=1" for 127.0.0.1 at 2015-05-08 21:05:18 +0300
|
|
1828
|
+
Served asset /dynamic-fields-for.js - 304 Not Modified (0ms)
|
|
1829
|
+
|
|
1830
|
+
|
|
1831
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-05-08 21:05:18 +0300
|
|
1832
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
|
1833
|
+
|
|
1834
|
+
|
|
1835
|
+
Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2015-05-08 21:05:18 +0300
|
|
1836
|
+
Served asset /turbolinks.js - 304 Not Modified (0ms)
|
|
1837
|
+
|
|
1838
|
+
|
|
1839
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-05-08 21:05:18 +0300
|
|
1840
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
1841
|
+
|
|
1842
|
+
|
|
1843
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 21:06:05 +0300
|
|
1844
|
+
Connecting to database specified by database.yml
|
|
1845
|
+
Processing by UsersController#test as HTML
|
|
1846
|
+
Rendered users/test.html.haml within layouts/application (1.8ms)
|
|
1847
|
+
Completed 200 OK in 30ms (Views: 30.0ms | ActiveRecord: 0.0ms)
|
|
1848
|
+
|
|
1849
|
+
|
|
1850
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-05-08 21:06:05 +0300
|
|
1851
|
+
Served asset /jquery.js - 304 Not Modified (19ms)
|
|
1852
|
+
|
|
1853
|
+
|
|
1854
|
+
Started GET "/assets/dynamic-fields-for.js?body=1" for 127.0.0.1 at 2015-05-08 21:06:05 +0300
|
|
1855
|
+
Served asset /dynamic-fields-for.js - 304 Not Modified (1ms)
|
|
1856
|
+
|
|
1857
|
+
|
|
1858
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-05-08 21:06:05 +0300
|
|
1859
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
|
1860
|
+
|
|
1861
|
+
|
|
1862
|
+
Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2015-05-08 21:06:05 +0300
|
|
1863
|
+
Served asset /turbolinks.js - 304 Not Modified (1ms)
|
|
1864
|
+
|
|
1865
|
+
|
|
1866
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 21:06:17 +0300
|
|
1867
|
+
|
|
1868
|
+
ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
|
|
1869
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:410:in `retrieve_connection'
|
|
1870
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_specification.rb:171:in `retrieve_connection'
|
|
1871
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_specification.rb:145:in `connection'
|
|
1872
|
+
activerecord (3.2.13) lib/active_record/query_cache.rb:67:in `rescue in call'
|
|
1873
|
+
activerecord (3.2.13) lib/active_record/query_cache.rb:61:in `call'
|
|
1874
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
|
1875
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
|
1876
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__3377098281724499321__call__4394763134841122430__callbacks'
|
|
1877
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
|
1878
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
|
1879
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
|
1880
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
|
1881
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
|
1882
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
|
1883
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
|
1884
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
1885
|
+
railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
|
|
1886
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
|
|
1887
|
+
activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
|
|
1888
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
|
|
1889
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
1890
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
|
1891
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
|
1892
|
+
activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
1893
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
|
1894
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
|
|
1895
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
|
1896
|
+
railties (3.2.13) lib/rails/application.rb:223:in `call'
|
|
1897
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
|
1898
|
+
railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
1899
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
|
1900
|
+
/Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
|
1901
|
+
/Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
|
1902
|
+
/Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
|
1903
|
+
|
|
1904
|
+
|
|
1905
|
+
Rendered /Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.6ms)
|
|
1906
|
+
Rendered /Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
|
|
1907
|
+
Rendered /Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.3ms)
|
|
1908
|
+
|
|
1909
|
+
|
|
1910
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 21:06:23 +0300
|
|
1911
|
+
|
|
1912
|
+
ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
|
|
1913
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:410:in `retrieve_connection'
|
|
1914
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_specification.rb:171:in `retrieve_connection'
|
|
1915
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_specification.rb:145:in `connection'
|
|
1916
|
+
activerecord (3.2.13) lib/active_record/query_cache.rb:67:in `rescue in call'
|
|
1917
|
+
activerecord (3.2.13) lib/active_record/query_cache.rb:61:in `call'
|
|
1918
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
|
1919
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
|
1920
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__3377098281724499321__call__4394763134841122430__callbacks'
|
|
1921
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
|
1922
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
|
1923
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
|
1924
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
|
1925
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
|
1926
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
|
1927
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
|
1928
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
1929
|
+
railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
|
|
1930
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
|
|
1931
|
+
activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
|
|
1932
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
|
|
1933
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
1934
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
|
1935
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
|
1936
|
+
activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
1937
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
|
1938
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
|
|
1939
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
|
1940
|
+
railties (3.2.13) lib/rails/application.rb:223:in `call'
|
|
1941
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
|
1942
|
+
railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
1943
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
|
1944
|
+
/Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
|
1945
|
+
/Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
|
1946
|
+
/Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
|
1947
|
+
|
|
1948
|
+
|
|
1949
|
+
Rendered /Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
|
|
1950
|
+
Rendered /Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms)
|
|
1951
|
+
Rendered /Users/st/.rbenv/versions/1.9.3-p547/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (6.2ms)
|
|
1952
|
+
|
|
1953
|
+
|
|
1954
|
+
Started GET "/users/test" for 127.0.0.1 at 2015-05-08 21:06:31 +0300
|
|
1955
|
+
Connecting to database specified by database.yml
|
|
1956
|
+
Processing by UsersController#test as HTML
|
|
1957
|
+
Rendered users/test.html.haml within layouts/application (1.8ms)
|
|
1958
|
+
Completed 200 OK in 32ms (Views: 31.8ms | ActiveRecord: 0.0ms)
|
|
1959
|
+
|
|
1960
|
+
|
|
1961
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-05-08 21:06:32 +0300
|
|
1962
|
+
Served asset /jquery.js - 304 Not Modified (2ms)
|
|
1963
|
+
|
|
1964
|
+
|
|
1965
|
+
Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2015-05-08 21:06:32 +0300
|
|
1966
|
+
Served asset /turbolinks.js - 304 Not Modified (2ms)
|
|
1967
|
+
|
|
1968
|
+
|
|
1969
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-05-08 21:06:32 +0300
|
|
1970
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
|
1971
|
+
|
|
1972
|
+
|
|
1973
|
+
Started GET "/assets/dynamic-fields-for.js?body=1" for 127.0.0.1 at 2015-05-08 21:06:32 +0300
|
|
1974
|
+
Served asset /dynamic-fields-for.js - 304 Not Modified (1ms)
|