attached 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.
- checksums.yaml +4 -4
- data/README.rdoc +9 -12
- data/Rakefile +19 -5
- data/lib/attached/version.rb +1 -1
- data/test/dummy/Rakefile +1 -2
- data/test/dummy/app/assets/javascripts/application.js.coffee +6 -0
- data/test/dummy/app/assets/stylesheets/application.css.sass +4 -0
- data/test/dummy/app/controllers/application_controller.rb +1 -1
- data/test/dummy/app/controllers/audios_controller.rb +8 -2
- data/test/dummy/app/controllers/images_controller.rb +10 -1
- data/test/dummy/app/views/audios/_form.html.haml +7 -9
- data/test/dummy/app/views/images/_form.html.haml +7 -9
- data/test/dummy/app/views/layouts/application.html.haml +6 -7
- data/test/dummy/app/views/main/index.html.haml +1 -1
- data/test/dummy/app/views/shared/_error.html.haml +2 -2
- data/test/dummy/bin/bundle +3 -0
- data/test/dummy/bin/rails +4 -0
- data/test/dummy/bin/rake +4 -0
- data/test/dummy/config.ru +1 -1
- data/test/dummy/config/application.rb +1 -23
- data/test/dummy/config/boot.rb +4 -9
- data/test/dummy/config/database.yml +7 -8
- data/test/dummy/config/environment.rb +3 -3
- data/test/dummy/config/environments/development.rb +21 -14
- data/test/dummy/config/environments/production.rb +48 -25
- data/test/dummy/config/environments/test.rb +19 -19
- data/test/dummy/config/initializers/other.rb +7 -2
- data/test/dummy/config/routes.rb +1 -1
- data/test/dummy/config/secrets.yml +22 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +3885 -0
- data/test/dummy/log/test.log +12546 -0
- data/test/dummy/public/system/audios/files/full/{03aa10a4-36f0-4467-a789-6e81d9e453c8.aac → 16a35230-6ae5-47e4-9e09-2ecdbd31cd58.aac} +0 -0
- data/test/dummy/public/system/audios/files/full/{08ddd220-3b8a-4bc3-b20f-a01c7c7be816.aac → 560a41f2-83cd-4734-a741-5da103917a9b.aac} +0 -0
- data/test/dummy/public/system/audios/files/full/{0c4bedc3-ecc8-4d63-bc22-200d1cc094c9.aac → 7aad29c4-7736-4492-9455-1a6ff333d807.aac} +0 -0
- data/test/dummy/public/system/audios/files/full/{0fc15fdd-b724-412e-ab8b-7d782ea617e5.aac → 90fc1944-196e-4a47-945e-4344ef62eb8c.aac} +0 -0
- data/test/dummy/public/system/audios/files/full/a9034b45-c9c6-4387-b611-ef0c64c641e6.aac +0 -0
- data/test/dummy/public/system/audios/files/full/a96d0f64-2c94-4378-980e-d12e3492d412.aac +0 -0
- data/test/dummy/public/system/audios/files/full/c0c22ae4-a660-4ebd-8640-d1c82246911f.aac +0 -0
- data/test/dummy/public/system/audios/files/full/d97113db-5a93-4cdb-a022-74292de1e40b.aac +0 -0
- data/test/dummy/public/system/audios/files/full/e90ebfbd-b590-4fe9-9cd5-b13b9ba7bb04.aac +0 -0
- data/test/dummy/public/system/audios/files/large/{03aa10a4-36f0-4467-a789-6e81d9e453c8.aac → 16a35230-6ae5-47e4-9e09-2ecdbd31cd58.aac} +0 -0
- data/test/dummy/public/system/audios/files/large/{08ddd220-3b8a-4bc3-b20f-a01c7c7be816.aac → 560a41f2-83cd-4734-a741-5da103917a9b.aac} +0 -0
- data/test/dummy/public/system/audios/files/large/{0c4bedc3-ecc8-4d63-bc22-200d1cc094c9.aac → 7aad29c4-7736-4492-9455-1a6ff333d807.aac} +0 -0
- data/test/dummy/public/system/audios/files/large/{0fc15fdd-b724-412e-ab8b-7d782ea617e5.aac → 90fc1944-196e-4a47-945e-4344ef62eb8c.aac} +0 -0
- data/test/dummy/public/system/audios/files/large/a9034b45-c9c6-4387-b611-ef0c64c641e6.aac +0 -0
- data/test/dummy/public/system/audios/files/large/a96d0f64-2c94-4378-980e-d12e3492d412.aac +0 -0
- data/test/dummy/public/system/audios/files/large/c0c22ae4-a660-4ebd-8640-d1c82246911f.aac +0 -0
- data/test/dummy/public/system/audios/files/large/d97113db-5a93-4cdb-a022-74292de1e40b.aac +0 -0
- data/test/dummy/public/system/audios/files/large/e90ebfbd-b590-4fe9-9cd5-b13b9ba7bb04.aac +0 -0
- data/test/dummy/public/system/audios/files/original/{03aa10a4-36f0-4467-a789-6e81d9e453c8.wav → 16a35230-6ae5-47e4-9e09-2ecdbd31cd58.wav} +0 -0
- data/test/dummy/public/system/audios/files/original/{08ddd220-3b8a-4bc3-b20f-a01c7c7be816.wav → 560a41f2-83cd-4734-a741-5da103917a9b.wav} +0 -0
- data/test/dummy/public/system/audios/files/original/{0c4bedc3-ecc8-4d63-bc22-200d1cc094c9.wav → 7aad29c4-7736-4492-9455-1a6ff333d807.wav} +0 -0
- data/test/dummy/public/system/audios/files/original/{0fc15fdd-b724-412e-ab8b-7d782ea617e5.wav → 90fc1944-196e-4a47-945e-4344ef62eb8c.wav} +0 -0
- data/test/dummy/public/system/audios/files/original/{145812bc-ebc6-473b-8fd5-5eeb09ecd472.wav → a9034b45-c9c6-4387-b611-ef0c64c641e6.wav} +0 -0
- data/test/dummy/public/system/audios/files/original/{1f2913b0-3691-4287-93ed-d4d94b59fc2d.wav → a96d0f64-2c94-4378-980e-d12e3492d412.wav} +0 -0
- data/test/dummy/public/system/audios/files/original/{3a1b4099-b855-4ff9-acac-76516674d1f1.wav → c0c22ae4-a660-4ebd-8640-d1c82246911f.wav} +0 -0
- data/test/dummy/public/system/audios/files/original/{4a01c5c5-0e66-4487-9f51-923654547298.wav → d97113db-5a93-4cdb-a022-74292de1e40b.wav} +0 -0
- data/test/dummy/public/system/audios/files/original/{4eb32841-d92a-4f18-bee7-9ae824e607da.wav → e90ebfbd-b590-4fe9-9cd5-b13b9ba7bb04.wav} +0 -0
- data/test/dummy/public/system/audios/files/small/{03aa10a4-36f0-4467-a789-6e81d9e453c8.aac → 16a35230-6ae5-47e4-9e09-2ecdbd31cd58.aac} +0 -0
- data/test/dummy/public/system/audios/files/small/{08ddd220-3b8a-4bc3-b20f-a01c7c7be816.aac → 560a41f2-83cd-4734-a741-5da103917a9b.aac} +0 -0
- data/test/dummy/public/system/audios/files/small/{0c4bedc3-ecc8-4d63-bc22-200d1cc094c9.aac → 7aad29c4-7736-4492-9455-1a6ff333d807.aac} +0 -0
- data/test/dummy/public/system/audios/files/small/{0fc15fdd-b724-412e-ab8b-7d782ea617e5.aac → 90fc1944-196e-4a47-945e-4344ef62eb8c.aac} +0 -0
- data/test/dummy/public/system/audios/files/small/a9034b45-c9c6-4387-b611-ef0c64c641e6.aac +0 -0
- data/test/dummy/public/system/audios/files/small/a96d0f64-2c94-4378-980e-d12e3492d412.aac +0 -0
- data/test/dummy/public/system/audios/files/small/c0c22ae4-a660-4ebd-8640-d1c82246911f.aac +0 -0
- data/test/dummy/public/system/audios/files/small/d97113db-5a93-4cdb-a022-74292de1e40b.aac +0 -0
- data/test/dummy/public/system/audios/files/small/e90ebfbd-b590-4fe9-9cd5-b13b9ba7bb04.aac +0 -0
- data/test/dummy/public/system/images/files/full/329d663d-5677-4285-a839-877859cfd838.jpg +0 -0
- data/test/dummy/public/system/images/files/full/7f8e3f3d-4eea-4d98-8195-f4e1b8442201.jpg +0 -0
- data/test/dummy/public/system/images/files/full/a954dc52-3b4b-4fbe-b01e-e1666d8a042d.jpg +0 -0
- data/test/dummy/public/system/images/files/full/c371693a-cd36-4f6e-8f47-1e56fe5e0184.jpg +0 -0
- data/test/dummy/public/system/images/files/full/c70f2dd8-f763-4492-96d6-a94aab79c368.jpg +0 -0
- data/test/dummy/public/system/images/files/full/d2843290-f79a-4548-923e-f09ab58df1e2.jpg +0 -0
- data/test/dummy/public/system/images/files/full/d77e071f-dd69-425a-9ff3-5ba9ae31b88d.jpg +0 -0
- data/test/dummy/public/system/images/files/full/da527c5d-7f5c-4b94-aa6d-1280678e37fc.jpg +0 -0
- data/test/dummy/public/system/images/files/full/dbbf622a-9f59-4d7b-90b4-d6a78efa96a5.jpg +0 -0
- data/test/dummy/public/system/images/files/large/{0a4e9cfb-4d8e-4ec6-8923-dd2f86de2031.jpg → 329d663d-5677-4285-a839-877859cfd838.jpg} +0 -0
- data/test/dummy/public/system/images/files/large/{11696170-7c3a-4eb4-ae19-e8458b803176.jpg → 7f8e3f3d-4eea-4d98-8195-f4e1b8442201.jpg} +0 -0
- data/test/dummy/public/system/images/files/large/{1276411a-ba14-46a4-ad13-2110bbee2373.jpg → a954dc52-3b4b-4fbe-b01e-e1666d8a042d.jpg} +0 -0
- data/test/dummy/public/system/images/files/large/{1d487ceb-4a4d-465e-9090-b803664b0453.jpg → c371693a-cd36-4f6e-8f47-1e56fe5e0184.jpg} +0 -0
- data/test/dummy/public/system/images/files/large/{24d010d8-7e38-433c-8e7b-abb8983745ac.jpg → c70f2dd8-f763-4492-96d6-a94aab79c368.jpg} +0 -0
- data/test/dummy/public/system/images/files/large/{2d159817-c18c-4aea-842a-7100ffeb171b.jpg → d2843290-f79a-4548-923e-f09ab58df1e2.jpg} +0 -0
- data/test/dummy/public/system/images/files/large/{38387849-e947-467d-ae17-19a4fdaaa8f3.jpg → d77e071f-dd69-425a-9ff3-5ba9ae31b88d.jpg} +0 -0
- data/test/dummy/public/system/images/files/large/{3e1a357b-e8eb-40a1-80aa-c58b0871a637.jpg → da527c5d-7f5c-4b94-aa6d-1280678e37fc.jpg} +0 -0
- data/test/dummy/public/system/images/files/large/{6142216b-5606-4376-b815-39da7ebac624.jpg → dbbf622a-9f59-4d7b-90b4-d6a78efa96a5.jpg} +0 -0
- data/test/dummy/public/system/images/files/original/{0a4e9cfb-4d8e-4ec6-8923-dd2f86de2031.png → 329d663d-5677-4285-a839-877859cfd838.png} +0 -0
- data/test/dummy/public/system/images/files/original/{11696170-7c3a-4eb4-ae19-e8458b803176.png → 7f8e3f3d-4eea-4d98-8195-f4e1b8442201.png} +0 -0
- data/test/dummy/public/system/images/files/original/{1276411a-ba14-46a4-ad13-2110bbee2373.png → a954dc52-3b4b-4fbe-b01e-e1666d8a042d.png} +0 -0
- data/test/dummy/public/system/images/files/original/{1d487ceb-4a4d-465e-9090-b803664b0453.png → c371693a-cd36-4f6e-8f47-1e56fe5e0184.png} +0 -0
- data/test/dummy/public/system/images/files/original/{24d010d8-7e38-433c-8e7b-abb8983745ac.png → c70f2dd8-f763-4492-96d6-a94aab79c368.png} +0 -0
- data/test/dummy/public/system/images/files/original/{2d159817-c18c-4aea-842a-7100ffeb171b.png → d2843290-f79a-4548-923e-f09ab58df1e2.png} +0 -0
- data/test/dummy/public/system/images/files/original/{38387849-e947-467d-ae17-19a4fdaaa8f3.png → d77e071f-dd69-425a-9ff3-5ba9ae31b88d.png} +0 -0
- data/test/dummy/public/system/images/files/original/{3e1a357b-e8eb-40a1-80aa-c58b0871a637.png → da527c5d-7f5c-4b94-aa6d-1280678e37fc.png} +0 -0
- data/test/dummy/public/system/images/files/original/{6142216b-5606-4376-b815-39da7ebac624.png → dbbf622a-9f59-4d7b-90b4-d6a78efa96a5.png} +0 -0
- data/test/dummy/public/system/images/files/small/{11696170-7c3a-4eb4-ae19-e8458b803176.jpg → 329d663d-5677-4285-a839-877859cfd838.jpg} +0 -0
- data/test/dummy/public/system/images/files/small/{38387849-e947-467d-ae17-19a4fdaaa8f3.jpg → 7f8e3f3d-4eea-4d98-8195-f4e1b8442201.jpg} +0 -0
- data/test/dummy/public/system/images/files/small/{3e1a357b-e8eb-40a1-80aa-c58b0871a637.jpg → a954dc52-3b4b-4fbe-b01e-e1666d8a042d.jpg} +0 -0
- data/test/dummy/public/system/images/files/small/{6142216b-5606-4376-b815-39da7ebac624.jpg → c371693a-cd36-4f6e-8f47-1e56fe5e0184.jpg} +0 -0
- data/test/dummy/public/system/images/files/small/{82cf7f7a-7764-4929-a5b4-a7d4dc21289e.jpg → c70f2dd8-f763-4492-96d6-a94aab79c368.jpg} +0 -0
- data/test/dummy/public/system/images/files/small/{83eefeeb-afaa-4a88-8114-30ccf6a208aa.jpg → d2843290-f79a-4548-923e-f09ab58df1e2.jpg} +0 -0
- data/test/dummy/public/system/images/files/small/{b97dc186-c2e6-469a-9bb2-e70ea715631f.jpg → d77e071f-dd69-425a-9ff3-5ba9ae31b88d.jpg} +0 -0
- data/test/dummy/public/system/images/files/small/{d2614a29-3e26-4c93-b986-770a5f4f288a.jpg → da527c5d-7f5c-4b94-aa6d-1280678e37fc.jpg} +0 -0
- data/test/dummy/public/system/images/files/small/{dc220293-a2fc-4012-ac83-8c2b16605480.jpg → dbbf622a-9f59-4d7b-90b4-d6a78efa96a5.jpg} +0 -0
- data/test/dummy/public/system/images/files/thumb/{0a4e9cfb-4d8e-4ec6-8923-dd2f86de2031.jpg → 329d663d-5677-4285-a839-877859cfd838.jpg} +0 -0
- data/test/dummy/public/system/images/files/thumb/{11696170-7c3a-4eb4-ae19-e8458b803176.jpg → 7f8e3f3d-4eea-4d98-8195-f4e1b8442201.jpg} +0 -0
- data/test/dummy/public/system/images/files/thumb/{1276411a-ba14-46a4-ad13-2110bbee2373.jpg → a954dc52-3b4b-4fbe-b01e-e1666d8a042d.jpg} +0 -0
- data/test/dummy/public/system/images/files/thumb/{1d487ceb-4a4d-465e-9090-b803664b0453.jpg → c371693a-cd36-4f6e-8f47-1e56fe5e0184.jpg} +0 -0
- data/test/dummy/public/system/images/files/thumb/{24d010d8-7e38-433c-8e7b-abb8983745ac.jpg → c70f2dd8-f763-4492-96d6-a94aab79c368.jpg} +0 -0
- data/test/dummy/public/system/images/files/thumb/{2d159817-c18c-4aea-842a-7100ffeb171b.jpg → d2843290-f79a-4548-923e-f09ab58df1e2.jpg} +0 -0
- data/test/dummy/public/system/images/files/thumb/{38387849-e947-467d-ae17-19a4fdaaa8f3.jpg → d77e071f-dd69-425a-9ff3-5ba9ae31b88d.jpg} +0 -0
- data/test/dummy/public/system/images/files/thumb/{3e1a357b-e8eb-40a1-80aa-c58b0871a637.jpg → da527c5d-7f5c-4b94-aa6d-1280678e37fc.jpg} +0 -0
- data/test/dummy/public/system/images/files/thumb/{6142216b-5606-4376-b815-39da7ebac624.jpg → dbbf622a-9f59-4d7b-90b4-d6a78efa96a5.jpg} +0 -0
- data/test/dummy/test/{functional → controllers}/audios_controller_test.rb +0 -0
- data/test/dummy/test/{functional → controllers}/images_controller_test.rb +0 -0
- data/test/dummy/test/{functional → controllers}/main_controller_test.rb +0 -0
- data/test/dummy/test/{unit/helpers → helpers}/audios_helper_test.rb +0 -0
- data/test/dummy/test/{unit/helpers → helpers}/images_helper_test.rb +0 -0
- data/test/dummy/test/{unit/helpers → helpers}/main_helper_test.rb +0 -0
- data/test/dummy/test/{unit → models}/audio_test.rb +0 -0
- data/test/dummy/test/{unit → models}/image_test.rb +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/5764ffad01f0ea0171b73b1499be4ef449de0d04/bootstrap.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_alerts.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_badges.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_breadcrumbs.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_button-groups.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_buttons.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_carousel.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_close.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_code.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_component-animations.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_dropdowns.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_forms.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_glyphicons.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_grid.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_input-groups.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_jumbotron.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_labels.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_list-group.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_media.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_mixins.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_modals.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_navbar.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_navs.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_normalize.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_pager.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_pagination.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_panels.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_popovers.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_print.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_progress-bars.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_responsive-utilities.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_scaffolding.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_tables.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_thumbnails.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_tooltip.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_type.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_utilities.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_variables.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_wells.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/a65986acf0f0ebaf5aa2dd8d628decbba8b65a86/application.css.sassc +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/06f695f41a494899faaa16f690433be1 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/0cb29a0a7bac94d282bc3799b93d3ee6 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/0d3881005b0646df783d5c24683d34f5 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/0e04367b8ea95cb35782b48838bd24b2 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/0ea367483766eb90a4ffb403408313f5 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/1a6846f0a837ae2524e2f9ec89e6ef43 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/1fe4edeb1f4a64495bd38f76d9e6920a +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/261b7bdff795a9c5acb01b7110a2a88b +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/2c52775d044ceee33a3e06cc1ba60d1e +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/2c71abaa2371b3386845e67add4f8277 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/2e5fcc2fdcf6528258fe605905a7bcfe +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/320483f499b6e5410e1a742c8c8294ed +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/3914c376ffa3558573dbe1ccb7499f50 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/3c800a1cf4855b93ea872443337ebd28 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/3c8868d77887cedc87f74b870d2d7c76 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/3e1a2f725f99d963973dd5d4b43efd32 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/42a2061c0298dd4ea685c21fe2a9eb83 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/450d0ed395cde2e77f52438c70200108 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/496b2ee177572b152f4efafa3f1103b7 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/49c455cb355c05b285c24edb215ccb4c +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/50c1885539f61359c48af74fcae1df31 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/549433c69cea92d25866de086133f624 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/6b324aab327a9823b347c65f7678dfa5 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/6ba9aa74f171933b582aa5ec665b1802 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/6c3e053393afe303432ca73f1b41490b +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/6cc89c232eff40bc9533fe4c2a8d15d9 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/6f4bdcf3f6a5ed7c8e416fbfa0cf66e0 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/727f70a842ecf0c3e852eabd86bd6c6f +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/76776af5afb703c7a680b51071eb450e +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/7b388e89b60553deff85038e4ea965ac +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/7d0c9e7319977768d00c6ef0c7366ead +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/84229cc526ddb18d2ba6c6442c51a909 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/84cf3ada5197e0cfd9348de6be11aaf5 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/86e145a39f85cceeaffdff91ebb61449 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/882fe1ce214b1c1786dfed00e0036c1b +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/894843c2f5103fd0e457e1d301f61e93 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/8a9b6b249b7ab4a91181a2e4520780d9 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/8f9b6c406fb09f554d7f54c7dd832de0 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/92834390b88d0e550f8684cd5e838bb4 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/963ef9a47f043204dae3e92b97044881 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/9825994f15e1356ca4ee540bd6ea6fac +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/9ccb8dc8b4af336e49d205f87862ef1a +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/9e39039f3d0507a564809cad0d5d5cb0 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/a7b6a1cfde428f550b0698840e43b4b9 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/a83a8f46290e80e532faece42e973368 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/aac5e564fe0b807f4bf93e1433c0473f +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/b42056434dd7901ade7e256a02de61d7 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/b9845a648e75ffb5238a366640a69fe4 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/ba3fd2216047f68709344405b0edbecc +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/c18dad9dd3f436d0ae913c6b7c30b3fa +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/c5880aca76ccbb51f9388362e8afc1e6 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/c6725fcbab64da44bc306511d1d17b3c +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/c6e921b97652df19711a09674e03d332 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/dfb751dedba446156ad8faced2578a40 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/e0e9ea1ba2cf7c43c81962f3c50ac7f3 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/e73da68c84df9a17e33433f447f54cec +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/e923693cc38343f52fc6ab529e4eea51 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/ec0f47a1d3da692a726774d571fcad37 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/ee5fe019233be630e680f07bf191078f +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/f4dca90e60775c14f52647ed3136e9e3 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/fa5f03af4ae0dd0ecd7dc485c4c75d3f +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/fb5420244da2a2ebfb8700df72877475 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/fd8e342bf30316da8b68a4ca3b54105e +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/5764ffad01f0ea0171b73b1499be4ef449de0d04/bootstrap.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_alerts.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_badges.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_breadcrumbs.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_button-groups.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_buttons.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_carousel.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_close.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_code.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_component-animations.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_dropdowns.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_forms.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_glyphicons.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_grid.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_input-groups.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_jumbotron.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_labels.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_list-group.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_media.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_mixins.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_modals.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_navbar.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_navs.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_normalize.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_pager.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_pagination.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_panels.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_popovers.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_print.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_progress-bars.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_responsive-utilities.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_scaffolding.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_tables.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_thumbnails.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_tooltip.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_type.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_utilities.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_variables.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/85910505bc401c357efc3ef8e34258beb13cd26c/_wells.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/a65986acf0f0ebaf5aa2dd8d628decbba8b65a86/application.css.sassc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/a65986acf0f0ebaf5aa2dd8d628decbba8b65a86/main.css.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/02010a0d03c11b9f5e95c8f4d0c239fd +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/023b678a946e6cd30ea4ad6c02156a17 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/06f695f41a494899faaa16f690433be1 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/0d3881005b0646df783d5c24683d34f5 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/0ea367483766eb90a4ffb403408313f5 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/1a6846f0a837ae2524e2f9ec89e6ef43 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/1e0cdf62d248817cd0d57552fa59a747 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/1fe4edeb1f4a64495bd38f76d9e6920a +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/249d8739cb936acd5298707eee0d6720 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/261b7bdff795a9c5acb01b7110a2a88b +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/2c52775d044ceee33a3e06cc1ba60d1e +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/2d08eff463240e8cc13e4b8901e1d625 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/2e5fcc2fdcf6528258fe605905a7bcfe +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/320483f499b6e5410e1a742c8c8294ed +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/36678fb386cb1e93639340b27f1a32a7 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/3914c376ffa3558573dbe1ccb7499f50 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/3c2045d945903b236c2059b37428b6b0 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/3c800a1cf4855b93ea872443337ebd28 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/3c8868d77887cedc87f74b870d2d7c76 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/3e1a2f725f99d963973dd5d4b43efd32 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/46add8dc415e49665e983a9e13d2f2f7 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/496b2ee177572b152f4efafa3f1103b7 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/49c455cb355c05b285c24edb215ccb4c +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/50c1885539f61359c48af74fcae1df31 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/531b2b0fe7a5528280d1f96c27cb8e25 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/549433c69cea92d25866de086133f624 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/5bf2927a85e8089c52a0fb6defdb8df5 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/63f16d220c281d63145042502624d9f1 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/645f7fde421d881494d2cfc9dbcf817a +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/6591980c2206acd5e6c8cedfefdb173e +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/6b324aab327a9823b347c65f7678dfa5 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/6ba9aa74f171933b582aa5ec665b1802 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/6c3e053393afe303432ca73f1b41490b +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/6cc89c232eff40bc9533fe4c2a8d15d9 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/6f4bdcf3f6a5ed7c8e416fbfa0cf66e0 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/701985b1c07dc19b8224c5f5503d0b22 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/727f70a842ecf0c3e852eabd86bd6c6f +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/76776af5afb703c7a680b51071eb450e +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/7d0c9e7319977768d00c6ef0c7366ead +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/84cf3ada5197e0cfd9348de6be11aaf5 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/86e145a39f85cceeaffdff91ebb61449 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/882fe1ce214b1c1786dfed00e0036c1b +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/8a9b6b249b7ab4a91181a2e4520780d9 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/8f9b6c406fb09f554d7f54c7dd832de0 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/905038f8c0d26c6336bee65ebdd054aa +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/9825994f15e1356ca4ee540bd6ea6fac +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/9c49721d6991847a079dca45f3186f9b +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/9ccb8dc8b4af336e49d205f87862ef1a +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/a0ac0765809a3afda8369ad8a0004061 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/a7b6a1cfde428f550b0698840e43b4b9 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/a83a8f46290e80e532faece42e973368 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/aaa64f65b7159c447dab8ded1b82d9a3 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/accedd3fe9c8dc38b28fdb281224109e +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/b42056434dd7901ade7e256a02de61d7 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/b9845a648e75ffb5238a366640a69fe4 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/ba3fd2216047f68709344405b0edbecc +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/c18dad9dd3f436d0ae913c6b7c30b3fa +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/c5880aca76ccbb51f9388362e8afc1e6 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/c6725fcbab64da44bc306511d1d17b3c +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/c6e921b97652df19711a09674e03d332 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/d1126181d20218e4609dc938c49b8c89 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/d1fafb1a97f0491105d64b8ffb8257ea +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/d681e43e15f4dce9ad4758373d498609 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/e0e9ea1ba2cf7c43c81962f3c50ac7f3 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/e73da68c84df9a17e33433f447f54cec +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/e923693cc38343f52fc6ab529e4eea51 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/ebaf8810257ee299d1cfd9e06ee6eb23 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/ec0f47a1d3da692a726774d571fcad37 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/f14dc6e5e5e6b9d1dcfbb2dab612a366 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/f2e2ff9e8de22a7f1fd56cdf5980ed5a +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/f4dca90e60775c14f52647ed3136e9e3 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/fa5f03af4ae0dd0ecd7dc485c4c75d3f +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/fd8e342bf30316da8b68a4ca3b54105e +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/fea6989ee18710eb77486d368f1ec23c +0 -0
- data/test/dummy/tmp/pids/server.pid +1 -0
- data/test/test_helper.rb +7 -0
- metadata +675 -447
- data/test/dummy/app/assets/javascripts/application.js +0 -4
- data/test/dummy/app/assets/javascripts/main.js.coffee +0 -0
- data/test/dummy/app/assets/stylesheets/application.css +0 -9
- data/test/dummy/app/assets/stylesheets/main.css.scss +0 -6
- data/test/dummy/public/system/audios/files/full/145812bc-ebc6-473b-8fd5-5eeb09ecd472.aac +0 -0
- data/test/dummy/public/system/audios/files/full/1f2913b0-3691-4287-93ed-d4d94b59fc2d.aac +0 -0
- data/test/dummy/public/system/audios/files/full/3a1b4099-b855-4ff9-acac-76516674d1f1.aac +0 -0
- data/test/dummy/public/system/audios/files/full/4a01c5c5-0e66-4487-9f51-923654547298.aac +0 -0
- data/test/dummy/public/system/audios/files/full/4eb32841-d92a-4f18-bee7-9ae824e607da.aac +0 -0
- data/test/dummy/public/system/audios/files/full/56734390-9752-4291-9220-1b447b909b57.aac +0 -0
- data/test/dummy/public/system/audios/files/full/57905e8e-356e-4705-9b60-ebf2ca941bbb.aac +0 -0
- data/test/dummy/public/system/audios/files/full/6ba84723-c6b3-4dcc-9fdd-dab340dfe82b.aac +0 -0
- data/test/dummy/public/system/audios/files/full/749c8645-6940-44d6-aa21-ee5f1fc27ba3.aac +0 -0
- data/test/dummy/public/system/audios/files/full/9132339e-842c-4f09-84f7-f7bc144dcc79.aac +0 -0
- data/test/dummy/public/system/audios/files/full/940a5cde-b0cd-426c-ada1-1754d5c555bd.aac +0 -0
- data/test/dummy/public/system/audios/files/full/967dd748-2281-42ff-9036-8a138783cc92.aac +0 -0
- data/test/dummy/public/system/audios/files/full/a77a2cc0-8c48-405e-9801-33642ba2ba60.aac +0 -0
- data/test/dummy/public/system/audios/files/full/f1a0c007-9bfc-4c65-b302-f7a5bd93ca3c.aac +0 -0
- data/test/dummy/public/system/audios/files/full/f1f39f3e-5e8b-4503-958a-1fe1e064224b.aac +0 -0
- data/test/dummy/public/system/audios/files/full/fbac7738-20ef-4a65-a4b4-943fe3afb379.aac +0 -0
- data/test/dummy/public/system/audios/files/large/145812bc-ebc6-473b-8fd5-5eeb09ecd472.aac +0 -0
- data/test/dummy/public/system/audios/files/large/1f2913b0-3691-4287-93ed-d4d94b59fc2d.aac +0 -0
- data/test/dummy/public/system/audios/files/large/3a1b4099-b855-4ff9-acac-76516674d1f1.aac +0 -0
- data/test/dummy/public/system/audios/files/large/4a01c5c5-0e66-4487-9f51-923654547298.aac +0 -0
- data/test/dummy/public/system/audios/files/large/4eb32841-d92a-4f18-bee7-9ae824e607da.aac +0 -0
- data/test/dummy/public/system/audios/files/large/56734390-9752-4291-9220-1b447b909b57.aac +0 -0
- data/test/dummy/public/system/audios/files/large/57905e8e-356e-4705-9b60-ebf2ca941bbb.aac +0 -0
- data/test/dummy/public/system/audios/files/large/6ba84723-c6b3-4dcc-9fdd-dab340dfe82b.aac +0 -0
- data/test/dummy/public/system/audios/files/large/749c8645-6940-44d6-aa21-ee5f1fc27ba3.aac +0 -0
- data/test/dummy/public/system/audios/files/large/9132339e-842c-4f09-84f7-f7bc144dcc79.aac +0 -0
- data/test/dummy/public/system/audios/files/large/940a5cde-b0cd-426c-ada1-1754d5c555bd.aac +0 -0
- data/test/dummy/public/system/audios/files/large/967dd748-2281-42ff-9036-8a138783cc92.aac +0 -0
- data/test/dummy/public/system/audios/files/large/a77a2cc0-8c48-405e-9801-33642ba2ba60.aac +0 -0
- data/test/dummy/public/system/audios/files/large/f1a0c007-9bfc-4c65-b302-f7a5bd93ca3c.aac +0 -0
- data/test/dummy/public/system/audios/files/large/f1f39f3e-5e8b-4503-958a-1fe1e064224b.aac +0 -0
- data/test/dummy/public/system/audios/files/large/fbac7738-20ef-4a65-a4b4-943fe3afb379.aac +0 -0
- data/test/dummy/public/system/audios/files/original/56734390-9752-4291-9220-1b447b909b57.wav +0 -0
- data/test/dummy/public/system/audios/files/original/57905e8e-356e-4705-9b60-ebf2ca941bbb.wav +0 -0
- data/test/dummy/public/system/audios/files/original/6ba84723-c6b3-4dcc-9fdd-dab340dfe82b.wav +0 -0
- data/test/dummy/public/system/audios/files/original/749c8645-6940-44d6-aa21-ee5f1fc27ba3.wav +0 -0
- data/test/dummy/public/system/audios/files/original/9132339e-842c-4f09-84f7-f7bc144dcc79.wav +0 -0
- data/test/dummy/public/system/audios/files/original/940a5cde-b0cd-426c-ada1-1754d5c555bd.wav +0 -0
- data/test/dummy/public/system/audios/files/original/967dd748-2281-42ff-9036-8a138783cc92.wav +0 -0
- data/test/dummy/public/system/audios/files/original/a77a2cc0-8c48-405e-9801-33642ba2ba60.wav +0 -0
- data/test/dummy/public/system/audios/files/original/f1a0c007-9bfc-4c65-b302-f7a5bd93ca3c.wav +0 -0
- data/test/dummy/public/system/audios/files/original/f1f39f3e-5e8b-4503-958a-1fe1e064224b.wav +0 -0
- data/test/dummy/public/system/audios/files/original/fbac7738-20ef-4a65-a4b4-943fe3afb379.wav +0 -0
- data/test/dummy/public/system/audios/files/small/145812bc-ebc6-473b-8fd5-5eeb09ecd472.aac +0 -0
- data/test/dummy/public/system/audios/files/small/1f2913b0-3691-4287-93ed-d4d94b59fc2d.aac +0 -0
- data/test/dummy/public/system/audios/files/small/3a1b4099-b855-4ff9-acac-76516674d1f1.aac +0 -0
- data/test/dummy/public/system/audios/files/small/4a01c5c5-0e66-4487-9f51-923654547298.aac +0 -0
- data/test/dummy/public/system/audios/files/small/4eb32841-d92a-4f18-bee7-9ae824e607da.aac +0 -0
- data/test/dummy/public/system/audios/files/small/56734390-9752-4291-9220-1b447b909b57.aac +0 -0
- data/test/dummy/public/system/audios/files/small/57905e8e-356e-4705-9b60-ebf2ca941bbb.aac +0 -0
- data/test/dummy/public/system/audios/files/small/6ba84723-c6b3-4dcc-9fdd-dab340dfe82b.aac +0 -0
- data/test/dummy/public/system/audios/files/small/749c8645-6940-44d6-aa21-ee5f1fc27ba3.aac +0 -0
- data/test/dummy/public/system/audios/files/small/9132339e-842c-4f09-84f7-f7bc144dcc79.aac +0 -0
- data/test/dummy/public/system/audios/files/small/940a5cde-b0cd-426c-ada1-1754d5c555bd.aac +0 -0
- data/test/dummy/public/system/audios/files/small/967dd748-2281-42ff-9036-8a138783cc92.aac +0 -0
- data/test/dummy/public/system/audios/files/small/a77a2cc0-8c48-405e-9801-33642ba2ba60.aac +0 -0
- data/test/dummy/public/system/audios/files/small/f1a0c007-9bfc-4c65-b302-f7a5bd93ca3c.aac +0 -0
- data/test/dummy/public/system/audios/files/small/f1f39f3e-5e8b-4503-958a-1fe1e064224b.aac +0 -0
- data/test/dummy/public/system/audios/files/small/fbac7738-20ef-4a65-a4b4-943fe3afb379.aac +0 -0
- data/test/dummy/public/system/images/files/full/030f7d0e-1c89-43e7-b9b3-c00bc0304a42.jpg +0 -0
- data/test/dummy/public/system/images/files/full/0a4e9cfb-4d8e-4ec6-8923-dd2f86de2031.jpg +0 -0
- data/test/dummy/public/system/images/files/full/0c424f00-5750-46dc-adc3-c9504a07b5cd.jpg +0 -0
- data/test/dummy/public/system/images/files/full/11696170-7c3a-4eb4-ae19-e8458b803176.jpg +0 -0
- data/test/dummy/public/system/images/files/full/1276411a-ba14-46a4-ad13-2110bbee2373.jpg +0 -0
- data/test/dummy/public/system/images/files/full/1d487ceb-4a4d-465e-9090-b803664b0453.jpg +0 -0
- data/test/dummy/public/system/images/files/full/24d010d8-7e38-433c-8e7b-abb8983745ac.jpg +0 -0
- data/test/dummy/public/system/images/files/full/2d159817-c18c-4aea-842a-7100ffeb171b.jpg +0 -0
- data/test/dummy/public/system/images/files/full/38387849-e947-467d-ae17-19a4fdaaa8f3.jpg +0 -0
- data/test/dummy/public/system/images/files/full/39b2b131-3635-4b3f-8fe3-c86b2228a4b1.jpg +0 -0
- data/test/dummy/public/system/images/files/full/3e1a357b-e8eb-40a1-80aa-c58b0871a637.jpg +0 -0
- data/test/dummy/public/system/images/files/full/6142216b-5606-4376-b815-39da7ebac624.jpg +0 -0
- data/test/dummy/public/system/images/files/full/62893101-c755-40a2-8fff-fa7c96989db3.jpg +0 -0
- data/test/dummy/public/system/images/files/full/82cf7f7a-7764-4929-a5b4-a7d4dc21289e.jpg +0 -0
- data/test/dummy/public/system/images/files/full/83eefeeb-afaa-4a88-8114-30ccf6a208aa.jpg +0 -0
- data/test/dummy/public/system/images/files/full/966c7ca9-8e1d-4783-aebf-aeedc2956700.jpg +0 -0
- data/test/dummy/public/system/images/files/full/af2b2586-b144-4d62-9bd2-a38cd9eab3dc.jpg +0 -0
- data/test/dummy/public/system/images/files/full/b13978ba-3c3f-41dc-9e0f-684b70fada8c.jpg +0 -0
- data/test/dummy/public/system/images/files/full/b97dc186-c2e6-469a-9bb2-e70ea715631f.jpg +0 -0
- data/test/dummy/public/system/images/files/full/d2614a29-3e26-4c93-b986-770a5f4f288a.jpg +0 -0
- data/test/dummy/public/system/images/files/full/dc220293-a2fc-4012-ac83-8c2b16605480.jpg +0 -0
- data/test/dummy/public/system/images/files/full/e047c5f7-5dd3-4479-b50a-0e210a5aea9d.jpg +0 -0
- data/test/dummy/public/system/images/files/full/f8db5cf9-bfc2-44dd-86db-703847a36753.jpg +0 -0
- data/test/dummy/public/system/images/files/full/fbf7f894-6322-4233-b2a7-0fae7f44f642.jpg +0 -0
- data/test/dummy/public/system/images/files/large/030f7d0e-1c89-43e7-b9b3-c00bc0304a42.jpg +0 -0
- data/test/dummy/public/system/images/files/large/0c424f00-5750-46dc-adc3-c9504a07b5cd.jpg +0 -0
- data/test/dummy/public/system/images/files/large/39b2b131-3635-4b3f-8fe3-c86b2228a4b1.jpg +0 -0
- data/test/dummy/public/system/images/files/large/62893101-c755-40a2-8fff-fa7c96989db3.jpg +0 -0
- data/test/dummy/public/system/images/files/large/82cf7f7a-7764-4929-a5b4-a7d4dc21289e.jpg +0 -0
- data/test/dummy/public/system/images/files/large/83eefeeb-afaa-4a88-8114-30ccf6a208aa.jpg +0 -0
- data/test/dummy/public/system/images/files/large/966c7ca9-8e1d-4783-aebf-aeedc2956700.jpg +0 -0
- data/test/dummy/public/system/images/files/large/af2b2586-b144-4d62-9bd2-a38cd9eab3dc.jpg +0 -0
- data/test/dummy/public/system/images/files/large/b13978ba-3c3f-41dc-9e0f-684b70fada8c.jpg +0 -0
- data/test/dummy/public/system/images/files/large/b97dc186-c2e6-469a-9bb2-e70ea715631f.jpg +0 -0
- data/test/dummy/public/system/images/files/large/d2614a29-3e26-4c93-b986-770a5f4f288a.jpg +0 -0
- data/test/dummy/public/system/images/files/large/dc220293-a2fc-4012-ac83-8c2b16605480.jpg +0 -0
- data/test/dummy/public/system/images/files/large/e047c5f7-5dd3-4479-b50a-0e210a5aea9d.jpg +0 -0
- data/test/dummy/public/system/images/files/large/f8db5cf9-bfc2-44dd-86db-703847a36753.jpg +0 -0
- data/test/dummy/public/system/images/files/large/fbf7f894-6322-4233-b2a7-0fae7f44f642.jpg +0 -0
- data/test/dummy/public/system/images/files/original/030f7d0e-1c89-43e7-b9b3-c00bc0304a42.png +0 -0
- data/test/dummy/public/system/images/files/original/0c424f00-5750-46dc-adc3-c9504a07b5cd.png +0 -0
- data/test/dummy/public/system/images/files/original/39b2b131-3635-4b3f-8fe3-c86b2228a4b1.png +0 -0
- data/test/dummy/public/system/images/files/original/62893101-c755-40a2-8fff-fa7c96989db3.png +0 -0
- data/test/dummy/public/system/images/files/original/82cf7f7a-7764-4929-a5b4-a7d4dc21289e.png +0 -0
- data/test/dummy/public/system/images/files/original/83eefeeb-afaa-4a88-8114-30ccf6a208aa.png +0 -0
- data/test/dummy/public/system/images/files/original/966c7ca9-8e1d-4783-aebf-aeedc2956700.png +0 -0
- data/test/dummy/public/system/images/files/original/af2b2586-b144-4d62-9bd2-a38cd9eab3dc.png +0 -0
- data/test/dummy/public/system/images/files/original/b13978ba-3c3f-41dc-9e0f-684b70fada8c.png +0 -0
- data/test/dummy/public/system/images/files/original/b97dc186-c2e6-469a-9bb2-e70ea715631f.png +0 -0
- data/test/dummy/public/system/images/files/original/d2614a29-3e26-4c93-b986-770a5f4f288a.png +0 -0
- data/test/dummy/public/system/images/files/original/dc220293-a2fc-4012-ac83-8c2b16605480.png +0 -0
- data/test/dummy/public/system/images/files/original/e047c5f7-5dd3-4479-b50a-0e210a5aea9d.png +0 -0
- data/test/dummy/public/system/images/files/original/f8db5cf9-bfc2-44dd-86db-703847a36753.png +0 -0
- data/test/dummy/public/system/images/files/original/fbf7f894-6322-4233-b2a7-0fae7f44f642.png +0 -0
- data/test/dummy/public/system/images/files/small/030f7d0e-1c89-43e7-b9b3-c00bc0304a42.jpg +0 -0
- data/test/dummy/public/system/images/files/small/0a4e9cfb-4d8e-4ec6-8923-dd2f86de2031.jpg +0 -0
- data/test/dummy/public/system/images/files/small/0c424f00-5750-46dc-adc3-c9504a07b5cd.jpg +0 -0
- data/test/dummy/public/system/images/files/small/1276411a-ba14-46a4-ad13-2110bbee2373.jpg +0 -0
- data/test/dummy/public/system/images/files/small/1d487ceb-4a4d-465e-9090-b803664b0453.jpg +0 -0
- data/test/dummy/public/system/images/files/small/24d010d8-7e38-433c-8e7b-abb8983745ac.jpg +0 -0
- data/test/dummy/public/system/images/files/small/2d159817-c18c-4aea-842a-7100ffeb171b.jpg +0 -0
- data/test/dummy/public/system/images/files/small/39b2b131-3635-4b3f-8fe3-c86b2228a4b1.jpg +0 -0
- data/test/dummy/public/system/images/files/small/62893101-c755-40a2-8fff-fa7c96989db3.jpg +0 -0
- data/test/dummy/public/system/images/files/small/966c7ca9-8e1d-4783-aebf-aeedc2956700.jpg +0 -0
- data/test/dummy/public/system/images/files/small/af2b2586-b144-4d62-9bd2-a38cd9eab3dc.jpg +0 -0
- data/test/dummy/public/system/images/files/small/b13978ba-3c3f-41dc-9e0f-684b70fada8c.jpg +0 -0
- data/test/dummy/public/system/images/files/small/e047c5f7-5dd3-4479-b50a-0e210a5aea9d.jpg +0 -0
- data/test/dummy/public/system/images/files/small/f8db5cf9-bfc2-44dd-86db-703847a36753.jpg +0 -0
- data/test/dummy/public/system/images/files/small/fbf7f894-6322-4233-b2a7-0fae7f44f642.jpg +0 -0
- data/test/dummy/public/system/images/files/thumb/030f7d0e-1c89-43e7-b9b3-c00bc0304a42.jpg +0 -0
- data/test/dummy/public/system/images/files/thumb/0c424f00-5750-46dc-adc3-c9504a07b5cd.jpg +0 -0
- data/test/dummy/public/system/images/files/thumb/39b2b131-3635-4b3f-8fe3-c86b2228a4b1.jpg +0 -0
- data/test/dummy/public/system/images/files/thumb/62893101-c755-40a2-8fff-fa7c96989db3.jpg +0 -0
- data/test/dummy/public/system/images/files/thumb/82cf7f7a-7764-4929-a5b4-a7d4dc21289e.jpg +0 -0
- data/test/dummy/public/system/images/files/thumb/83eefeeb-afaa-4a88-8114-30ccf6a208aa.jpg +0 -0
- data/test/dummy/public/system/images/files/thumb/966c7ca9-8e1d-4783-aebf-aeedc2956700.jpg +0 -0
- data/test/dummy/public/system/images/files/thumb/af2b2586-b144-4d62-9bd2-a38cd9eab3dc.jpg +0 -0
- data/test/dummy/public/system/images/files/thumb/b13978ba-3c3f-41dc-9e0f-684b70fada8c.jpg +0 -0
- data/test/dummy/public/system/images/files/thumb/b97dc186-c2e6-469a-9bb2-e70ea715631f.jpg +0 -0
- data/test/dummy/public/system/images/files/thumb/d2614a29-3e26-4c93-b986-770a5f4f288a.jpg +0 -0
- data/test/dummy/public/system/images/files/thumb/dc220293-a2fc-4012-ac83-8c2b16605480.jpg +0 -0
- data/test/dummy/public/system/images/files/thumb/e047c5f7-5dd3-4479-b50a-0e210a5aea9d.jpg +0 -0
- data/test/dummy/public/system/images/files/thumb/f8db5cf9-bfc2-44dd-86db-703847a36753.jpg +0 -0
- data/test/dummy/public/system/images/files/thumb/fbf7f894-6322-4233-b2a7-0fae7f44f642.jpg +0 -0
|
@@ -1,39 +1,39 @@
|
|
|
1
|
-
|
|
2
|
-
# Settings specified here will take precedence over those in config/application.rb
|
|
1
|
+
Rails.application.configure do
|
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb.
|
|
3
3
|
|
|
4
4
|
# The test environment is used exclusively to run your application's
|
|
5
|
-
# test suite.
|
|
5
|
+
# test suite. You never need to work with it otherwise. Remember that
|
|
6
6
|
# your test database is "scratch space" for the test suite and is wiped
|
|
7
|
-
# and recreated between test runs.
|
|
7
|
+
# and recreated between test runs. Don't rely on the data there!
|
|
8
8
|
config.cache_classes = true
|
|
9
9
|
|
|
10
|
-
#
|
|
11
|
-
|
|
12
|
-
|
|
10
|
+
# Do not eager load code on boot. This avoids loading your whole application
|
|
11
|
+
# just for the purpose of running a single test. If you are using a tool that
|
|
12
|
+
# preloads Rails for running tests, you may have to set it to true.
|
|
13
|
+
config.eager_load = false
|
|
13
14
|
|
|
14
|
-
#
|
|
15
|
-
config.
|
|
15
|
+
# Configure static asset server for tests with Cache-Control for performance.
|
|
16
|
+
config.serve_static_assets = true
|
|
17
|
+
config.static_cache_control = 'public, max-age=3600'
|
|
16
18
|
|
|
17
|
-
# Show full error reports and disable caching
|
|
19
|
+
# Show full error reports and disable caching.
|
|
18
20
|
config.consider_all_requests_local = true
|
|
19
21
|
config.action_controller.perform_caching = false
|
|
20
22
|
|
|
21
|
-
# Raise exceptions instead of rendering exception templates
|
|
23
|
+
# Raise exceptions instead of rendering exception templates.
|
|
22
24
|
config.action_dispatch.show_exceptions = false
|
|
23
25
|
|
|
24
|
-
# Disable request forgery protection in test environment
|
|
25
|
-
config.action_controller.allow_forgery_protection
|
|
26
|
+
# Disable request forgery protection in test environment.
|
|
27
|
+
config.action_controller.allow_forgery_protection = false
|
|
26
28
|
|
|
27
29
|
# Tell Action Mailer not to deliver emails to the real world.
|
|
28
30
|
# The :test delivery method accumulates sent emails in the
|
|
29
31
|
# ActionMailer::Base.deliveries array.
|
|
30
32
|
config.action_mailer.delivery_method = :test
|
|
31
33
|
|
|
32
|
-
#
|
|
33
|
-
# This is necessary if your schema can't be completely dumped by the schema dumper,
|
|
34
|
-
# like if you have constraints or database-specific column types
|
|
35
|
-
# config.active_record.schema_format = :sql
|
|
36
|
-
|
|
37
|
-
# Print deprecation notices to the stderr
|
|
34
|
+
# Print deprecation notices to the stderr.
|
|
38
35
|
config.active_support.deprecation = :stderr
|
|
36
|
+
|
|
37
|
+
# Raises error for missing translations
|
|
38
|
+
# config.action_view.raise_on_missing_translations = true
|
|
39
39
|
end
|
|
@@ -1,2 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
Rails.application.config.filter_parameters += [:password]
|
|
2
|
+
Rails.application.config.session_store :cookie_store, :key => '_dummy_session'
|
|
3
|
+
Rails.application.config.action_dispatch.cookies_serializer = :json
|
|
4
|
+
|
|
5
|
+
ActiveSupport.on_load(:action_controller) do
|
|
6
|
+
wrap_parameters :format => [:json] if respond_to?(:wrap_parameters)
|
|
7
|
+
end
|
data/test/dummy/config/routes.rb
CHANGED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
|
2
|
+
|
|
3
|
+
# Your secret key is used for verifying the integrity of signed cookies.
|
|
4
|
+
# If you change this key, all old signed cookies will become invalid!
|
|
5
|
+
|
|
6
|
+
# Make sure the secret is at least 30 characters and all random,
|
|
7
|
+
# no regular words or you'll be exposed to dictionary attacks.
|
|
8
|
+
# You can use `rake secret` to generate a secure secret key.
|
|
9
|
+
|
|
10
|
+
# Make sure the secrets in this file are kept private
|
|
11
|
+
# if you're sharing your code publicly.
|
|
12
|
+
|
|
13
|
+
development:
|
|
14
|
+
secret_key_base: 38bf0f5e959908692c9de89a1b55d58bffd04e76526f5b0e475a1bc765721dde201ceafe1e1582606c88413168caaf7a459639cdb598bb28aed2e1a43f7634d2
|
|
15
|
+
|
|
16
|
+
test:
|
|
17
|
+
secret_key_base: ce11adafea152ef162271e9851e05f059cd16fde2326bfdb42082ccf511c02dea14741313ce805cc2b6712e6dec531f5496251cc415f29969b78ff89187efd18
|
|
18
|
+
|
|
19
|
+
# Do not keep production secrets in the repository,
|
|
20
|
+
# instead read values from the environment.
|
|
21
|
+
production:
|
|
22
|
+
secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
|
|
Binary file
|
data/test/dummy/db/test.sqlite3
CHANGED
|
Binary file
|
|
@@ -76,3 +76,3888 @@ Migrating to CreateImages (20101223191846)
|
|
|
76
76
|
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
77
77
|
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20101223191846')[0m
|
|
78
78
|
[1m[35m (0.7ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20101223191836')
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
Started GET "/" for 127.0.0.1 at 2014-05-13 23:59:56 -0700
|
|
82
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
83
|
+
Processing by MainController#index as HTML
|
|
84
|
+
Rendered main/index.html.haml within layouts/application (2.2ms)
|
|
85
|
+
Completed 200 OK in 40ms (Views: 39.5ms | ActiveRecord: 0.0ms)
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-13 23:59:57 -0700
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-13 23:59:57 -0700
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-13 23:59:57 -0700
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-13 23:59:57 -0700
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
Started GET "/" for 127.0.0.1 at 2014-05-13 23:59:58 -0700
|
|
101
|
+
Processing by MainController#index as HTML
|
|
102
|
+
Rendered main/index.html.haml within layouts/application (0.3ms)
|
|
103
|
+
Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-13 23:59:58 -0700
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-13 23:59:58 -0700
|
|
110
|
+
|
|
111
|
+
|
|
112
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-13 23:59:58 -0700
|
|
113
|
+
|
|
114
|
+
|
|
115
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-13 23:59:58 -0700
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
Started GET "/audios" for 127.0.0.1 at 2014-05-14 00:00:00 -0700
|
|
119
|
+
Processing by AudiosController#index as HTML
|
|
120
|
+
[1m[35mAudio Load (0.1ms)[0m SELECT "audios".* FROM "audios"
|
|
121
|
+
Rendered audios/index.html.haml within layouts/application (3.0ms)
|
|
122
|
+
Completed 200 OK in 9ms (Views: 6.1ms | ActiveRecord: 0.1ms)
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-14 00:00:00 -0700
|
|
126
|
+
|
|
127
|
+
|
|
128
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-14 00:00:00 -0700
|
|
129
|
+
|
|
130
|
+
|
|
131
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-14 00:00:00 -0700
|
|
132
|
+
|
|
133
|
+
|
|
134
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-14 00:00:00 -0700
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
Started GET "/" for 127.0.0.1 at 2014-05-14 00:03:12 -0700
|
|
138
|
+
Processing by MainController#index as HTML
|
|
139
|
+
Rendered main/index.html.haml within layouts/application (0.4ms)
|
|
140
|
+
Completed 500 Internal Server Error in 14ms
|
|
141
|
+
|
|
142
|
+
ActionView::Template::Error (File to import not found or unreadable: bootstrap.
|
|
143
|
+
Load paths:
|
|
144
|
+
/Users/kevin/Frameworks/attached/test/dummy/app/assets/images
|
|
145
|
+
/Users/kevin/Frameworks/attached/test/dummy/app/assets/javascripts
|
|
146
|
+
/Users/kevin/Frameworks/attached/test/dummy/app/assets/stylesheets
|
|
147
|
+
/Users/kevin/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/coffee-rails-4.0.1/lib/assets/javascripts
|
|
148
|
+
/Users/kevin/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/jquery-rails-3.1.0/vendor/assets/javascripts
|
|
149
|
+
(in /Users/kevin/Frameworks/attached/test/dummy/app/assets/stylesheets/application.css.sass:1)):
|
|
150
|
+
2: <html>
|
|
151
|
+
3: <head>
|
|
152
|
+
4: <title>Dummy</title>
|
|
153
|
+
5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
|
|
154
|
+
6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
|
|
155
|
+
7: <%= csrf_meta_tags %>
|
|
156
|
+
8: </head>
|
|
157
|
+
app/assets/stylesheets/application.css.sass:1
|
|
158
|
+
app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__2353088863320687792_70324735925700'
|
|
159
|
+
app/controllers/main_controller.rb:5:in `index'
|
|
160
|
+
|
|
161
|
+
|
|
162
|
+
Rendered /Users/kevin/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
|
|
163
|
+
Rendered /Users/kevin/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
|
|
164
|
+
Rendered /Users/kevin/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (11.2ms)
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
Started GET "/" for 127.0.0.1 at 2014-05-14 00:03:19 -0700
|
|
168
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
169
|
+
Processing by MainController#index as HTML
|
|
170
|
+
Rendered main/index.html.haml within layouts/application (2.4ms)
|
|
171
|
+
Completed 200 OK in 1378ms (Views: 1377.3ms | ActiveRecord: 0.0ms)
|
|
172
|
+
|
|
173
|
+
|
|
174
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-14 00:03:20 -0700
|
|
175
|
+
|
|
176
|
+
|
|
177
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:20 -0700
|
|
178
|
+
|
|
179
|
+
|
|
180
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:20 -0700
|
|
181
|
+
|
|
182
|
+
|
|
183
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:20 -0700
|
|
184
|
+
|
|
185
|
+
|
|
186
|
+
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:20 -0700
|
|
187
|
+
|
|
188
|
+
|
|
189
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:20 -0700
|
|
190
|
+
|
|
191
|
+
|
|
192
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:20 -0700
|
|
193
|
+
|
|
194
|
+
|
|
195
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:20 -0700
|
|
196
|
+
|
|
197
|
+
|
|
198
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:21 -0700
|
|
199
|
+
|
|
200
|
+
|
|
201
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:21 -0700
|
|
202
|
+
|
|
203
|
+
|
|
204
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:21 -0700
|
|
205
|
+
|
|
206
|
+
|
|
207
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:21 -0700
|
|
208
|
+
|
|
209
|
+
|
|
210
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:21 -0700
|
|
211
|
+
|
|
212
|
+
|
|
213
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:21 -0700
|
|
214
|
+
|
|
215
|
+
|
|
216
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:21 -0700
|
|
217
|
+
|
|
218
|
+
|
|
219
|
+
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:21 -0700
|
|
220
|
+
|
|
221
|
+
|
|
222
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:21 -0700
|
|
223
|
+
|
|
224
|
+
|
|
225
|
+
Started GET "/audios" for 127.0.0.1 at 2014-05-14 00:03:26 -0700
|
|
226
|
+
Processing by AudiosController#index as HTML
|
|
227
|
+
[1m[35mAudio Load (0.2ms)[0m SELECT "audios".* FROM "audios"
|
|
228
|
+
Rendered audios/index.html.haml within layouts/application (3.1ms)
|
|
229
|
+
Completed 200 OK in 11ms (Views: 9.3ms | ActiveRecord: 0.2ms)
|
|
230
|
+
|
|
231
|
+
|
|
232
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-14 00:03:26 -0700
|
|
233
|
+
|
|
234
|
+
|
|
235
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:26 -0700
|
|
236
|
+
|
|
237
|
+
|
|
238
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:26 -0700
|
|
239
|
+
|
|
240
|
+
|
|
241
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:26 -0700
|
|
242
|
+
|
|
243
|
+
|
|
244
|
+
Started GET "/" for 127.0.0.1 at 2014-05-14 00:03:41 -0700
|
|
245
|
+
Processing by MainController#index as HTML
|
|
246
|
+
Rendered main/index.html.haml within layouts/application (0.3ms)
|
|
247
|
+
Completed 200 OK in 570ms (Views: 569.7ms | ActiveRecord: 0.0ms)
|
|
248
|
+
|
|
249
|
+
|
|
250
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-14 00:03:42 -0700
|
|
251
|
+
|
|
252
|
+
|
|
253
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:42 -0700
|
|
254
|
+
|
|
255
|
+
|
|
256
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:42 -0700
|
|
257
|
+
|
|
258
|
+
|
|
259
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:42 -0700
|
|
260
|
+
|
|
261
|
+
|
|
262
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:42 -0700
|
|
263
|
+
|
|
264
|
+
|
|
265
|
+
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:42 -0700
|
|
266
|
+
|
|
267
|
+
|
|
268
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:42 -0700
|
|
269
|
+
|
|
270
|
+
|
|
271
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:42 -0700
|
|
272
|
+
|
|
273
|
+
|
|
274
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:42 -0700
|
|
275
|
+
|
|
276
|
+
|
|
277
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:42 -0700
|
|
278
|
+
|
|
279
|
+
|
|
280
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:42 -0700
|
|
281
|
+
|
|
282
|
+
|
|
283
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:42 -0700
|
|
284
|
+
|
|
285
|
+
|
|
286
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:42 -0700
|
|
287
|
+
|
|
288
|
+
|
|
289
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:42 -0700
|
|
290
|
+
|
|
291
|
+
|
|
292
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:42 -0700
|
|
293
|
+
|
|
294
|
+
|
|
295
|
+
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:42 -0700
|
|
296
|
+
|
|
297
|
+
|
|
298
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:42 -0700
|
|
299
|
+
|
|
300
|
+
|
|
301
|
+
Started GET "/audios" for 127.0.0.1 at 2014-05-14 00:03:46 -0700
|
|
302
|
+
Processing by AudiosController#index as HTML
|
|
303
|
+
[1m[36mAudio Load (0.1ms)[0m [1mSELECT "audios".* FROM "audios"[0m
|
|
304
|
+
Rendered audios/index.html.haml within layouts/application (0.7ms)
|
|
305
|
+
Completed 200 OK in 7ms (Views: 6.4ms | ActiveRecord: 0.1ms)
|
|
306
|
+
|
|
307
|
+
|
|
308
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-14 00:03:46 -0700
|
|
309
|
+
|
|
310
|
+
|
|
311
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:46 -0700
|
|
312
|
+
|
|
313
|
+
|
|
314
|
+
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:46 -0700
|
|
315
|
+
|
|
316
|
+
|
|
317
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:46 -0700
|
|
318
|
+
|
|
319
|
+
|
|
320
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:46 -0700
|
|
321
|
+
|
|
322
|
+
|
|
323
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:46 -0700
|
|
324
|
+
|
|
325
|
+
|
|
326
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:46 -0700
|
|
327
|
+
|
|
328
|
+
|
|
329
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:46 -0700
|
|
330
|
+
|
|
331
|
+
|
|
332
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:46 -0700
|
|
333
|
+
|
|
334
|
+
|
|
335
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:46 -0700
|
|
336
|
+
|
|
337
|
+
|
|
338
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:46 -0700
|
|
339
|
+
|
|
340
|
+
|
|
341
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:46 -0700
|
|
342
|
+
|
|
343
|
+
|
|
344
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:46 -0700
|
|
345
|
+
|
|
346
|
+
|
|
347
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:46 -0700
|
|
348
|
+
|
|
349
|
+
|
|
350
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:46 -0700
|
|
351
|
+
|
|
352
|
+
|
|
353
|
+
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:46 -0700
|
|
354
|
+
|
|
355
|
+
|
|
356
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:46 -0700
|
|
357
|
+
|
|
358
|
+
|
|
359
|
+
Started GET "/audios/new" for 127.0.0.1 at 2014-05-14 00:03:48 -0700
|
|
360
|
+
Processing by AudiosController#new as HTML
|
|
361
|
+
Rendered audios/_form.html.haml (12.4ms)
|
|
362
|
+
Rendered audios/new.html.haml within layouts/application (15.5ms)
|
|
363
|
+
Completed 200 OK in 22ms (Views: 20.9ms | ActiveRecord: 0.2ms)
|
|
364
|
+
|
|
365
|
+
|
|
366
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-14 00:03:48 -0700
|
|
367
|
+
|
|
368
|
+
|
|
369
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:48 -0700
|
|
370
|
+
|
|
371
|
+
|
|
372
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:48 -0700
|
|
373
|
+
|
|
374
|
+
|
|
375
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:48 -0700
|
|
376
|
+
|
|
377
|
+
|
|
378
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:48 -0700
|
|
379
|
+
|
|
380
|
+
|
|
381
|
+
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:48 -0700
|
|
382
|
+
|
|
383
|
+
|
|
384
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:48 -0700
|
|
385
|
+
|
|
386
|
+
|
|
387
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:48 -0700
|
|
388
|
+
|
|
389
|
+
|
|
390
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:48 -0700
|
|
391
|
+
|
|
392
|
+
|
|
393
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:48 -0700
|
|
394
|
+
|
|
395
|
+
|
|
396
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:48 -0700
|
|
397
|
+
|
|
398
|
+
|
|
399
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:48 -0700
|
|
400
|
+
|
|
401
|
+
|
|
402
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:48 -0700
|
|
403
|
+
|
|
404
|
+
|
|
405
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:48 -0700
|
|
406
|
+
|
|
407
|
+
|
|
408
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:48 -0700
|
|
409
|
+
|
|
410
|
+
|
|
411
|
+
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:48 -0700
|
|
412
|
+
|
|
413
|
+
|
|
414
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:48 -0700
|
|
415
|
+
|
|
416
|
+
|
|
417
|
+
Started GET "/" for 127.0.0.1 at 2014-05-14 00:03:52 -0700
|
|
418
|
+
Processing by MainController#index as HTML
|
|
419
|
+
Rendered main/index.html.haml within layouts/application (0.3ms)
|
|
420
|
+
Completed 200 OK in 6ms (Views: 6.2ms | ActiveRecord: 0.0ms)
|
|
421
|
+
|
|
422
|
+
|
|
423
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-14 00:03:52 -0700
|
|
424
|
+
|
|
425
|
+
|
|
426
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:52 -0700
|
|
427
|
+
|
|
428
|
+
|
|
429
|
+
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:52 -0700
|
|
430
|
+
|
|
431
|
+
|
|
432
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:52 -0700
|
|
433
|
+
|
|
434
|
+
|
|
435
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:52 -0700
|
|
436
|
+
|
|
437
|
+
|
|
438
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:52 -0700
|
|
439
|
+
|
|
440
|
+
|
|
441
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:52 -0700
|
|
442
|
+
|
|
443
|
+
|
|
444
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:52 -0700
|
|
445
|
+
|
|
446
|
+
|
|
447
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:52 -0700
|
|
448
|
+
|
|
449
|
+
|
|
450
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:52 -0700
|
|
451
|
+
|
|
452
|
+
|
|
453
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:52 -0700
|
|
454
|
+
|
|
455
|
+
|
|
456
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:52 -0700
|
|
457
|
+
|
|
458
|
+
|
|
459
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:52 -0700
|
|
460
|
+
|
|
461
|
+
|
|
462
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:52 -0700
|
|
463
|
+
|
|
464
|
+
|
|
465
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:52 -0700
|
|
466
|
+
|
|
467
|
+
|
|
468
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:52 -0700
|
|
469
|
+
|
|
470
|
+
|
|
471
|
+
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:52 -0700
|
|
472
|
+
|
|
473
|
+
|
|
474
|
+
Started GET "/images" for 127.0.0.1 at 2014-05-14 00:03:53 -0700
|
|
475
|
+
Processing by ImagesController#index as HTML
|
|
476
|
+
[1m[35mImage Load (0.1ms)[0m SELECT "images".* FROM "images"
|
|
477
|
+
Rendered images/index.html.haml within layouts/application (19.9ms)
|
|
478
|
+
Completed 200 OK in 30ms (Views: 26.9ms | ActiveRecord: 0.3ms)
|
|
479
|
+
|
|
480
|
+
|
|
481
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-14 00:03:53 -0700
|
|
482
|
+
|
|
483
|
+
|
|
484
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:53 -0700
|
|
485
|
+
|
|
486
|
+
|
|
487
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:53 -0700
|
|
488
|
+
|
|
489
|
+
|
|
490
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:53 -0700
|
|
491
|
+
|
|
492
|
+
|
|
493
|
+
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:53 -0700
|
|
494
|
+
|
|
495
|
+
|
|
496
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:53 -0700
|
|
497
|
+
|
|
498
|
+
|
|
499
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:53 -0700
|
|
500
|
+
|
|
501
|
+
|
|
502
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:53 -0700
|
|
503
|
+
|
|
504
|
+
|
|
505
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:53 -0700
|
|
506
|
+
|
|
507
|
+
|
|
508
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:53 -0700
|
|
509
|
+
|
|
510
|
+
|
|
511
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:53 -0700
|
|
512
|
+
|
|
513
|
+
|
|
514
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:53 -0700
|
|
515
|
+
|
|
516
|
+
|
|
517
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:53 -0700
|
|
518
|
+
|
|
519
|
+
|
|
520
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:53 -0700
|
|
521
|
+
|
|
522
|
+
|
|
523
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:53 -0700
|
|
524
|
+
|
|
525
|
+
|
|
526
|
+
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:53 -0700
|
|
527
|
+
|
|
528
|
+
|
|
529
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:53 -0700
|
|
530
|
+
|
|
531
|
+
|
|
532
|
+
Started GET "/images/1/edit" for 127.0.0.1 at 2014-05-14 00:03:55 -0700
|
|
533
|
+
Processing by ImagesController#edit as HTML
|
|
534
|
+
Parameters: {"id"=>"1"}
|
|
535
|
+
[1m[36mImage Load (0.2ms)[0m [1mSELECT "images".* FROM "images" WHERE "images"."id" = ? LIMIT 1[0m [["id", 1]]
|
|
536
|
+
Rendered images/_form.html.haml (3.8ms)
|
|
537
|
+
Rendered images/edit.html.haml within layouts/application (6.0ms)
|
|
538
|
+
Completed 200 OK in 15ms (Views: 12.4ms | ActiveRecord: 0.2ms)
|
|
539
|
+
|
|
540
|
+
|
|
541
|
+
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:55 -0700
|
|
542
|
+
|
|
543
|
+
|
|
544
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-14 00:03:55 -0700
|
|
545
|
+
|
|
546
|
+
|
|
547
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:55 -0700
|
|
548
|
+
|
|
549
|
+
|
|
550
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:55 -0700
|
|
551
|
+
|
|
552
|
+
|
|
553
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:55 -0700
|
|
554
|
+
|
|
555
|
+
|
|
556
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:55 -0700
|
|
557
|
+
|
|
558
|
+
|
|
559
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:55 -0700
|
|
560
|
+
|
|
561
|
+
|
|
562
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:55 -0700
|
|
563
|
+
|
|
564
|
+
|
|
565
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:55 -0700
|
|
566
|
+
|
|
567
|
+
|
|
568
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:55 -0700
|
|
569
|
+
|
|
570
|
+
|
|
571
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:55 -0700
|
|
572
|
+
|
|
573
|
+
|
|
574
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:55 -0700
|
|
575
|
+
|
|
576
|
+
|
|
577
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:55 -0700
|
|
578
|
+
|
|
579
|
+
|
|
580
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:55 -0700
|
|
581
|
+
|
|
582
|
+
|
|
583
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:55 -0700
|
|
584
|
+
|
|
585
|
+
|
|
586
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:55 -0700
|
|
587
|
+
|
|
588
|
+
|
|
589
|
+
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2014-05-14 00:03:55 -0700
|
|
590
|
+
|
|
591
|
+
|
|
592
|
+
Started GET "/images/1" for 127.0.0.1 at 2014-05-14 00:04:04 -0700
|
|
593
|
+
Processing by ImagesController#show as HTML
|
|
594
|
+
Parameters: {"id"=>"1"}
|
|
595
|
+
[1m[35mImage Load (0.1ms)[0m SELECT "images".* FROM "images" WHERE "images"."id" = ? LIMIT 1 [["id", 1]]
|
|
596
|
+
Rendered images/show.html.haml within layouts/application (2.6ms)
|
|
597
|
+
Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.1ms)
|
|
598
|
+
|
|
599
|
+
|
|
600
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-14 00:04:04 -0700
|
|
601
|
+
|
|
602
|
+
|
|
603
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:04 -0700
|
|
604
|
+
|
|
605
|
+
|
|
606
|
+
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:04 -0700
|
|
607
|
+
|
|
608
|
+
|
|
609
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:04 -0700
|
|
610
|
+
|
|
611
|
+
|
|
612
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:04 -0700
|
|
613
|
+
|
|
614
|
+
|
|
615
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:04 -0700
|
|
616
|
+
|
|
617
|
+
|
|
618
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:04 -0700
|
|
619
|
+
|
|
620
|
+
|
|
621
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:04 -0700
|
|
622
|
+
|
|
623
|
+
|
|
624
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:04 -0700
|
|
625
|
+
|
|
626
|
+
|
|
627
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:04 -0700
|
|
628
|
+
|
|
629
|
+
|
|
630
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:04 -0700
|
|
631
|
+
|
|
632
|
+
|
|
633
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:04 -0700
|
|
634
|
+
|
|
635
|
+
|
|
636
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:04 -0700
|
|
637
|
+
|
|
638
|
+
|
|
639
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:04 -0700
|
|
640
|
+
|
|
641
|
+
|
|
642
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:04 -0700
|
|
643
|
+
|
|
644
|
+
|
|
645
|
+
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:04 -0700
|
|
646
|
+
|
|
647
|
+
|
|
648
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:04 -0700
|
|
649
|
+
|
|
650
|
+
|
|
651
|
+
Started GET "/system/images/files/full/030f7d0e-1c89-43e7-b9b3-c00bc0304a42.jpg" for 127.0.0.1 at 2014-05-14 00:04:04 -0700
|
|
652
|
+
|
|
653
|
+
ActionController::RoutingError (No route matches [GET] "/system/images/files/full/030f7d0e-1c89-43e7-b9b3-c00bc0304a42.jpg"):
|
|
654
|
+
actionpack (4.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
655
|
+
actionpack (4.1.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
|
656
|
+
railties (4.1.1) lib/rails/rack/logger.rb:38:in `call_app'
|
|
657
|
+
railties (4.1.1) lib/rails/rack/logger.rb:20:in `block in call'
|
|
658
|
+
activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
|
659
|
+
activesupport (4.1.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
660
|
+
activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `tagged'
|
|
661
|
+
railties (4.1.1) lib/rails/rack/logger.rb:20:in `call'
|
|
662
|
+
actionpack (4.1.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
|
663
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
|
664
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
|
665
|
+
activesupport (4.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
|
|
666
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
|
667
|
+
actionpack (4.1.1) lib/action_dispatch/middleware/static.rb:64:in `call'
|
|
668
|
+
rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
|
|
669
|
+
railties (4.1.1) lib/rails/engine.rb:514:in `call'
|
|
670
|
+
railties (4.1.1) lib/rails/application.rb:144:in `call'
|
|
671
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
|
672
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
|
673
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
|
674
|
+
/Users/kevin/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
|
|
675
|
+
/Users/kevin/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
|
|
676
|
+
/Users/kevin/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
|
|
677
|
+
|
|
678
|
+
|
|
679
|
+
Rendered /Users/kevin/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.8ms)
|
|
680
|
+
Rendered /Users/kevin/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms)
|
|
681
|
+
Rendered /Users/kevin/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.8ms)
|
|
682
|
+
Rendered /Users/kevin/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (22.8ms)
|
|
683
|
+
|
|
684
|
+
|
|
685
|
+
Started GET "/images/1/edit" for 127.0.0.1 at 2014-05-14 00:04:06 -0700
|
|
686
|
+
Processing by ImagesController#edit as HTML
|
|
687
|
+
Parameters: {"id"=>"1"}
|
|
688
|
+
[1m[36mImage Load (0.1ms)[0m [1mSELECT "images".* FROM "images" WHERE "images"."id" = ? LIMIT 1[0m [["id", 1]]
|
|
689
|
+
Rendered images/_form.html.haml (2.1ms)
|
|
690
|
+
Rendered images/edit.html.haml within layouts/application (2.6ms)
|
|
691
|
+
Completed 200 OK in 10ms (Views: 8.8ms | ActiveRecord: 0.1ms)
|
|
692
|
+
|
|
693
|
+
|
|
694
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-14 00:04:06 -0700
|
|
695
|
+
|
|
696
|
+
|
|
697
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:06 -0700
|
|
698
|
+
|
|
699
|
+
|
|
700
|
+
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:06 -0700
|
|
701
|
+
|
|
702
|
+
|
|
703
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:06 -0700
|
|
704
|
+
|
|
705
|
+
|
|
706
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:06 -0700
|
|
707
|
+
|
|
708
|
+
|
|
709
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:06 -0700
|
|
710
|
+
|
|
711
|
+
|
|
712
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:06 -0700
|
|
713
|
+
|
|
714
|
+
|
|
715
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:06 -0700
|
|
716
|
+
|
|
717
|
+
|
|
718
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:06 -0700
|
|
719
|
+
|
|
720
|
+
|
|
721
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:06 -0700
|
|
722
|
+
|
|
723
|
+
|
|
724
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:06 -0700
|
|
725
|
+
|
|
726
|
+
|
|
727
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:06 -0700
|
|
728
|
+
|
|
729
|
+
|
|
730
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:06 -0700
|
|
731
|
+
|
|
732
|
+
|
|
733
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:06 -0700
|
|
734
|
+
|
|
735
|
+
|
|
736
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:06 -0700
|
|
737
|
+
|
|
738
|
+
|
|
739
|
+
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:06 -0700
|
|
740
|
+
|
|
741
|
+
|
|
742
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:06 -0700
|
|
743
|
+
|
|
744
|
+
|
|
745
|
+
Started DELETE "/images/1" for 127.0.0.1 at 2014-05-14 00:04:08 -0700
|
|
746
|
+
Processing by ImagesController#destroy as HTML
|
|
747
|
+
Parameters: {"authenticity_token"=>"0QzEKRCqGpAkw+LcC2l726k/V1PpWlKbiafoiusTU+0=", "id"=>"1"}
|
|
748
|
+
[1m[35mImage Load (0.1ms)[0m SELECT "images".* FROM "images" WHERE "images"."id" = ? LIMIT 1 [["id", 1]]
|
|
749
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
750
|
+
[attached] destroy attached
|
|
751
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "images" WHERE "images"."id" = ? [["id", 1]]
|
|
752
|
+
[1m[36m (1.9ms)[0m [1mcommit transaction[0m
|
|
753
|
+
Redirected to http://localhost:3000/images
|
|
754
|
+
Completed 302 Found in 9ms (ActiveRecord: 2.3ms)
|
|
755
|
+
|
|
756
|
+
|
|
757
|
+
Started GET "/images" for 127.0.0.1 at 2014-05-14 00:04:08 -0700
|
|
758
|
+
Processing by ImagesController#index as HTML
|
|
759
|
+
[1m[35mImage Load (0.1ms)[0m SELECT "images".* FROM "images"
|
|
760
|
+
Rendered images/index.html.haml within layouts/application (2.6ms)
|
|
761
|
+
Completed 200 OK in 9ms (Views: 8.5ms | ActiveRecord: 0.1ms)
|
|
762
|
+
|
|
763
|
+
|
|
764
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-14 00:04:08 -0700
|
|
765
|
+
|
|
766
|
+
|
|
767
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:08 -0700
|
|
768
|
+
|
|
769
|
+
|
|
770
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:08 -0700
|
|
771
|
+
|
|
772
|
+
|
|
773
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:08 -0700
|
|
774
|
+
|
|
775
|
+
|
|
776
|
+
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:08 -0700
|
|
777
|
+
|
|
778
|
+
|
|
779
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:08 -0700
|
|
780
|
+
|
|
781
|
+
|
|
782
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:08 -0700
|
|
783
|
+
|
|
784
|
+
|
|
785
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:08 -0700
|
|
786
|
+
|
|
787
|
+
|
|
788
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:08 -0700
|
|
789
|
+
|
|
790
|
+
|
|
791
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:08 -0700
|
|
792
|
+
|
|
793
|
+
|
|
794
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:08 -0700
|
|
795
|
+
|
|
796
|
+
|
|
797
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:08 -0700
|
|
798
|
+
|
|
799
|
+
|
|
800
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:08 -0700
|
|
801
|
+
|
|
802
|
+
|
|
803
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:08 -0700
|
|
804
|
+
|
|
805
|
+
|
|
806
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:08 -0700
|
|
807
|
+
|
|
808
|
+
|
|
809
|
+
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:08 -0700
|
|
810
|
+
|
|
811
|
+
|
|
812
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:08 -0700
|
|
813
|
+
|
|
814
|
+
|
|
815
|
+
Started DELETE "/images/2" for 127.0.0.1 at 2014-05-14 00:04:09 -0700
|
|
816
|
+
Processing by ImagesController#destroy as HTML
|
|
817
|
+
Parameters: {"authenticity_token"=>"0QzEKRCqGpAkw+LcC2l726k/V1PpWlKbiafoiusTU+0=", "id"=>"2"}
|
|
818
|
+
[1m[36mImage Load (0.1ms)[0m [1mSELECT "images".* FROM "images" WHERE "images"."id" = ? LIMIT 1[0m [["id", 2]]
|
|
819
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
820
|
+
[attached] destroy attached
|
|
821
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "images" WHERE "images"."id" = ?[0m [["id", 2]]
|
|
822
|
+
[1m[35m (1.1ms)[0m commit transaction
|
|
823
|
+
Redirected to http://localhost:3000/images
|
|
824
|
+
Completed 302 Found in 5ms (ActiveRecord: 1.4ms)
|
|
825
|
+
|
|
826
|
+
|
|
827
|
+
Started GET "/images" for 127.0.0.1 at 2014-05-14 00:04:09 -0700
|
|
828
|
+
Processing by ImagesController#index as HTML
|
|
829
|
+
[1m[36mImage Load (0.1ms)[0m [1mSELECT "images".* FROM "images"[0m
|
|
830
|
+
Rendered images/index.html.haml within layouts/application (1.9ms)
|
|
831
|
+
Completed 200 OK in 8ms (Views: 7.8ms | ActiveRecord: 0.1ms)
|
|
832
|
+
|
|
833
|
+
|
|
834
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:09 -0700
|
|
835
|
+
|
|
836
|
+
|
|
837
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-14 00:04:09 -0700
|
|
838
|
+
|
|
839
|
+
|
|
840
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:09 -0700
|
|
841
|
+
|
|
842
|
+
|
|
843
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:09 -0700
|
|
844
|
+
|
|
845
|
+
|
|
846
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:09 -0700
|
|
847
|
+
|
|
848
|
+
|
|
849
|
+
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:09 -0700
|
|
850
|
+
|
|
851
|
+
|
|
852
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:09 -0700
|
|
853
|
+
|
|
854
|
+
|
|
855
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:09 -0700
|
|
856
|
+
|
|
857
|
+
|
|
858
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:09 -0700
|
|
859
|
+
|
|
860
|
+
|
|
861
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:09 -0700
|
|
862
|
+
|
|
863
|
+
|
|
864
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:09 -0700
|
|
865
|
+
|
|
866
|
+
|
|
867
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:09 -0700
|
|
868
|
+
|
|
869
|
+
|
|
870
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:09 -0700
|
|
871
|
+
|
|
872
|
+
|
|
873
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:09 -0700
|
|
874
|
+
|
|
875
|
+
|
|
876
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:09 -0700
|
|
877
|
+
|
|
878
|
+
|
|
879
|
+
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:09 -0700
|
|
880
|
+
|
|
881
|
+
|
|
882
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:09 -0700
|
|
883
|
+
|
|
884
|
+
|
|
885
|
+
Started DELETE "/images/3" for 127.0.0.1 at 2014-05-14 00:04:09 -0700
|
|
886
|
+
Processing by ImagesController#destroy as HTML
|
|
887
|
+
Parameters: {"authenticity_token"=>"0QzEKRCqGpAkw+LcC2l726k/V1PpWlKbiafoiusTU+0=", "id"=>"3"}
|
|
888
|
+
[1m[35mImage Load (0.1ms)[0m SELECT "images".* FROM "images" WHERE "images"."id" = ? LIMIT 1 [["id", 3]]
|
|
889
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
890
|
+
[attached] destroy attached
|
|
891
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "images" WHERE "images"."id" = ? [["id", 3]]
|
|
892
|
+
[1m[36m (1.0ms)[0m [1mcommit transaction[0m
|
|
893
|
+
Redirected to http://localhost:3000/images
|
|
894
|
+
Completed 302 Found in 4ms (ActiveRecord: 1.3ms)
|
|
895
|
+
|
|
896
|
+
|
|
897
|
+
Started GET "/images" for 127.0.0.1 at 2014-05-14 00:04:09 -0700
|
|
898
|
+
Processing by ImagesController#index as HTML
|
|
899
|
+
[1m[35mImage Load (0.1ms)[0m SELECT "images".* FROM "images"
|
|
900
|
+
Rendered images/index.html.haml within layouts/application (1.3ms)
|
|
901
|
+
Completed 200 OK in 7ms (Views: 7.0ms | ActiveRecord: 0.1ms)
|
|
902
|
+
|
|
903
|
+
|
|
904
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-14 00:04:09 -0700
|
|
905
|
+
|
|
906
|
+
|
|
907
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:09 -0700
|
|
908
|
+
|
|
909
|
+
|
|
910
|
+
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:09 -0700
|
|
911
|
+
|
|
912
|
+
|
|
913
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:09 -0700
|
|
914
|
+
|
|
915
|
+
|
|
916
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:09 -0700
|
|
917
|
+
|
|
918
|
+
|
|
919
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:09 -0700
|
|
920
|
+
|
|
921
|
+
|
|
922
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:09 -0700
|
|
923
|
+
|
|
924
|
+
|
|
925
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:09 -0700
|
|
926
|
+
|
|
927
|
+
|
|
928
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:09 -0700
|
|
929
|
+
|
|
930
|
+
|
|
931
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:09 -0700
|
|
932
|
+
|
|
933
|
+
|
|
934
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:09 -0700
|
|
935
|
+
|
|
936
|
+
|
|
937
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:09 -0700
|
|
938
|
+
|
|
939
|
+
|
|
940
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:09 -0700
|
|
941
|
+
|
|
942
|
+
|
|
943
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:09 -0700
|
|
944
|
+
|
|
945
|
+
|
|
946
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:09 -0700
|
|
947
|
+
|
|
948
|
+
|
|
949
|
+
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:09 -0700
|
|
950
|
+
|
|
951
|
+
|
|
952
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:09 -0700
|
|
953
|
+
|
|
954
|
+
|
|
955
|
+
Started DELETE "/images/4" for 127.0.0.1 at 2014-05-14 00:04:09 -0700
|
|
956
|
+
Processing by ImagesController#destroy as HTML
|
|
957
|
+
Parameters: {"authenticity_token"=>"0QzEKRCqGpAkw+LcC2l726k/V1PpWlKbiafoiusTU+0=", "id"=>"4"}
|
|
958
|
+
[1m[36mImage Load (0.1ms)[0m [1mSELECT "images".* FROM "images" WHERE "images"."id" = ? LIMIT 1[0m [["id", 4]]
|
|
959
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
960
|
+
[attached] destroy attached
|
|
961
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "images" WHERE "images"."id" = ?[0m [["id", 4]]
|
|
962
|
+
[1m[35m (1.0ms)[0m commit transaction
|
|
963
|
+
Redirected to http://localhost:3000/images
|
|
964
|
+
Completed 302 Found in 5ms (ActiveRecord: 1.3ms)
|
|
965
|
+
|
|
966
|
+
|
|
967
|
+
Started GET "/images" for 127.0.0.1 at 2014-05-14 00:04:09 -0700
|
|
968
|
+
Processing by ImagesController#index as HTML
|
|
969
|
+
[1m[36mImage Load (0.2ms)[0m [1mSELECT "images".* FROM "images"[0m
|
|
970
|
+
Rendered images/index.html.haml within layouts/application (0.9ms)
|
|
971
|
+
Completed 200 OK in 9ms (Views: 8.3ms | ActiveRecord: 0.2ms)
|
|
972
|
+
|
|
973
|
+
|
|
974
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-14 00:04:09 -0700
|
|
975
|
+
|
|
976
|
+
|
|
977
|
+
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:09 -0700
|
|
978
|
+
|
|
979
|
+
|
|
980
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:09 -0700
|
|
981
|
+
|
|
982
|
+
|
|
983
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:09 -0700
|
|
984
|
+
|
|
985
|
+
|
|
986
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:09 -0700
|
|
987
|
+
|
|
988
|
+
|
|
989
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:09 -0700
|
|
990
|
+
|
|
991
|
+
|
|
992
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:09 -0700
|
|
993
|
+
|
|
994
|
+
|
|
995
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:09 -0700
|
|
996
|
+
|
|
997
|
+
|
|
998
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:09 -0700
|
|
999
|
+
|
|
1000
|
+
|
|
1001
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:09 -0700
|
|
1002
|
+
|
|
1003
|
+
|
|
1004
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:09 -0700
|
|
1005
|
+
|
|
1006
|
+
|
|
1007
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:09 -0700
|
|
1008
|
+
|
|
1009
|
+
|
|
1010
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:09 -0700
|
|
1011
|
+
|
|
1012
|
+
|
|
1013
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:09 -0700
|
|
1014
|
+
|
|
1015
|
+
|
|
1016
|
+
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:09 -0700
|
|
1017
|
+
|
|
1018
|
+
|
|
1019
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:09 -0700
|
|
1020
|
+
|
|
1021
|
+
|
|
1022
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:09 -0700
|
|
1023
|
+
|
|
1024
|
+
|
|
1025
|
+
Started GET "/" for 127.0.0.1 at 2014-05-14 00:04:11 -0700
|
|
1026
|
+
Processing by MainController#index as HTML
|
|
1027
|
+
Rendered main/index.html.haml within layouts/application (0.3ms)
|
|
1028
|
+
Completed 200 OK in 6ms (Views: 6.2ms | ActiveRecord: 0.0ms)
|
|
1029
|
+
|
|
1030
|
+
|
|
1031
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-14 00:04:11 -0700
|
|
1032
|
+
|
|
1033
|
+
|
|
1034
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:11 -0700
|
|
1035
|
+
|
|
1036
|
+
|
|
1037
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:11 -0700
|
|
1038
|
+
|
|
1039
|
+
|
|
1040
|
+
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:11 -0700
|
|
1041
|
+
|
|
1042
|
+
|
|
1043
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:11 -0700
|
|
1044
|
+
|
|
1045
|
+
|
|
1046
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:11 -0700
|
|
1047
|
+
|
|
1048
|
+
|
|
1049
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:11 -0700
|
|
1050
|
+
|
|
1051
|
+
|
|
1052
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:11 -0700
|
|
1053
|
+
|
|
1054
|
+
|
|
1055
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:11 -0700
|
|
1056
|
+
|
|
1057
|
+
|
|
1058
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:11 -0700
|
|
1059
|
+
|
|
1060
|
+
|
|
1061
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:11 -0700
|
|
1062
|
+
|
|
1063
|
+
|
|
1064
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:11 -0700
|
|
1065
|
+
|
|
1066
|
+
|
|
1067
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:11 -0700
|
|
1068
|
+
|
|
1069
|
+
|
|
1070
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:11 -0700
|
|
1071
|
+
|
|
1072
|
+
|
|
1073
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:11 -0700
|
|
1074
|
+
|
|
1075
|
+
|
|
1076
|
+
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:11 -0700
|
|
1077
|
+
|
|
1078
|
+
|
|
1079
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:11 -0700
|
|
1080
|
+
|
|
1081
|
+
|
|
1082
|
+
Started GET "/images" for 127.0.0.1 at 2014-05-14 00:04:12 -0700
|
|
1083
|
+
Processing by ImagesController#index as HTML
|
|
1084
|
+
[1m[35mImage Load (0.1ms)[0m SELECT "images".* FROM "images"
|
|
1085
|
+
Rendered images/index.html.haml within layouts/application (1.0ms)
|
|
1086
|
+
Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.1ms)
|
|
1087
|
+
|
|
1088
|
+
|
|
1089
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-14 00:04:12 -0700
|
|
1090
|
+
|
|
1091
|
+
|
|
1092
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:12 -0700
|
|
1093
|
+
|
|
1094
|
+
|
|
1095
|
+
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:12 -0700
|
|
1096
|
+
|
|
1097
|
+
|
|
1098
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:12 -0700
|
|
1099
|
+
|
|
1100
|
+
|
|
1101
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:12 -0700
|
|
1102
|
+
|
|
1103
|
+
|
|
1104
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:12 -0700
|
|
1105
|
+
|
|
1106
|
+
|
|
1107
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:12 -0700
|
|
1108
|
+
|
|
1109
|
+
|
|
1110
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:12 -0700
|
|
1111
|
+
|
|
1112
|
+
|
|
1113
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:12 -0700
|
|
1114
|
+
|
|
1115
|
+
|
|
1116
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:12 -0700
|
|
1117
|
+
|
|
1118
|
+
|
|
1119
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:12 -0700
|
|
1120
|
+
|
|
1121
|
+
|
|
1122
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:12 -0700
|
|
1123
|
+
|
|
1124
|
+
|
|
1125
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:12 -0700
|
|
1126
|
+
|
|
1127
|
+
|
|
1128
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:12 -0700
|
|
1129
|
+
|
|
1130
|
+
|
|
1131
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:12 -0700
|
|
1132
|
+
|
|
1133
|
+
|
|
1134
|
+
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:12 -0700
|
|
1135
|
+
|
|
1136
|
+
|
|
1137
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:12 -0700
|
|
1138
|
+
|
|
1139
|
+
|
|
1140
|
+
Started GET "/images/new" for 127.0.0.1 at 2014-05-14 00:04:13 -0700
|
|
1141
|
+
Processing by ImagesController#new as HTML
|
|
1142
|
+
Rendered images/_form.html.haml (2.5ms)
|
|
1143
|
+
Rendered images/new.html.haml within layouts/application (4.8ms)
|
|
1144
|
+
Completed 200 OK in 12ms (Views: 11.6ms | ActiveRecord: 0.0ms)
|
|
1145
|
+
|
|
1146
|
+
|
|
1147
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-14 00:04:13 -0700
|
|
1148
|
+
|
|
1149
|
+
|
|
1150
|
+
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:13 -0700
|
|
1151
|
+
|
|
1152
|
+
|
|
1153
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:13 -0700
|
|
1154
|
+
|
|
1155
|
+
|
|
1156
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:13 -0700
|
|
1157
|
+
|
|
1158
|
+
|
|
1159
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:13 -0700
|
|
1160
|
+
|
|
1161
|
+
|
|
1162
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:13 -0700
|
|
1163
|
+
|
|
1164
|
+
|
|
1165
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:13 -0700
|
|
1166
|
+
|
|
1167
|
+
|
|
1168
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:13 -0700
|
|
1169
|
+
|
|
1170
|
+
|
|
1171
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:13 -0700
|
|
1172
|
+
|
|
1173
|
+
|
|
1174
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:13 -0700
|
|
1175
|
+
|
|
1176
|
+
|
|
1177
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:13 -0700
|
|
1178
|
+
|
|
1179
|
+
|
|
1180
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:13 -0700
|
|
1181
|
+
|
|
1182
|
+
|
|
1183
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:13 -0700
|
|
1184
|
+
|
|
1185
|
+
|
|
1186
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:13 -0700
|
|
1187
|
+
|
|
1188
|
+
|
|
1189
|
+
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:13 -0700
|
|
1190
|
+
|
|
1191
|
+
|
|
1192
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:13 -0700
|
|
1193
|
+
|
|
1194
|
+
|
|
1195
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:13 -0700
|
|
1196
|
+
|
|
1197
|
+
|
|
1198
|
+
Started POST "/images" for 127.0.0.1 at 2014-05-14 00:04:41 -0700
|
|
1199
|
+
Processing by ImagesController#create as HTML
|
|
1200
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"0QzEKRCqGpAkw+LcC2l726k/V1PpWlKbiafoiusTU+0=", "image"=>{"name"=>"Avatar", "file"=>#<ActionDispatch::Http::UploadedFile:0x007ff98d1fb880 @tempfile=#<Tempfile:/var/folders/8p/ghlgmj4s63950tbfyvh3s2d40000gn/T/RackMultipart20140514-5986-jrhkxj>, @original_filename="image.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"image[file]\"; filename=\"image.png\"\r\nContent-Type: image/png\r\n">}, "commit"=>"Submit"}
|
|
1201
|
+
WARNING: Can't mass-assign protected attributes for Image: name, file
|
|
1202
|
+
app/controllers/images_controller.rb:35:in `create'
|
|
1203
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
1204
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
1205
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1206
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
1207
|
+
Rendered shared/_error.html.haml (1.9ms)
|
|
1208
|
+
Rendered shared/_error.html.haml (0.2ms)
|
|
1209
|
+
Rendered shared/_error.html.haml (0.2ms)
|
|
1210
|
+
Rendered images/_form.html.haml (5.9ms)
|
|
1211
|
+
Rendered images/new.html.haml within layouts/application (6.7ms)
|
|
1212
|
+
Completed 200 OK in 20ms (Views: 12.3ms | ActiveRecord: 0.2ms)
|
|
1213
|
+
|
|
1214
|
+
|
|
1215
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-14 00:04:41 -0700
|
|
1216
|
+
|
|
1217
|
+
|
|
1218
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:41 -0700
|
|
1219
|
+
|
|
1220
|
+
|
|
1221
|
+
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:41 -0700
|
|
1222
|
+
|
|
1223
|
+
|
|
1224
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:41 -0700
|
|
1225
|
+
|
|
1226
|
+
|
|
1227
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:41 -0700
|
|
1228
|
+
|
|
1229
|
+
|
|
1230
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:41 -0700
|
|
1231
|
+
|
|
1232
|
+
|
|
1233
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:41 -0700
|
|
1234
|
+
|
|
1235
|
+
|
|
1236
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:41 -0700
|
|
1237
|
+
|
|
1238
|
+
|
|
1239
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:41 -0700
|
|
1240
|
+
|
|
1241
|
+
|
|
1242
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:41 -0700
|
|
1243
|
+
|
|
1244
|
+
|
|
1245
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:41 -0700
|
|
1246
|
+
|
|
1247
|
+
|
|
1248
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:41 -0700
|
|
1249
|
+
|
|
1250
|
+
|
|
1251
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:41 -0700
|
|
1252
|
+
|
|
1253
|
+
|
|
1254
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:41 -0700
|
|
1255
|
+
|
|
1256
|
+
|
|
1257
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:41 -0700
|
|
1258
|
+
|
|
1259
|
+
|
|
1260
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:41 -0700
|
|
1261
|
+
|
|
1262
|
+
|
|
1263
|
+
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2014-05-14 00:04:41 -0700
|
|
1264
|
+
|
|
1265
|
+
|
|
1266
|
+
Started POST "/images" for 127.0.0.1 at 2014-05-14 00:05:58 -0700
|
|
1267
|
+
Processing by ImagesController#create as HTML
|
|
1268
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"0QzEKRCqGpAkw+LcC2l726k/V1PpWlKbiafoiusTU+0=", "image"=>{"name"=>"Avatar", "file"=>#<ActionDispatch::Http::UploadedFile:0x007ff9943d5140 @tempfile=#<Tempfile:/var/folders/8p/ghlgmj4s63950tbfyvh3s2d40000gn/T/RackMultipart20140514-5986-12lh54k>, @original_filename="image.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"image[file]\"; filename=\"image.png\"\r\nContent-Type: image/png\r\n">}, "commit"=>"Submit"}
|
|
1269
|
+
WARNING: Can't mass-assign protected attributes for Image: name, file
|
|
1270
|
+
app/controllers/images_controller.rb:35:in `create'
|
|
1271
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
1272
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
1273
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1274
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
1275
|
+
Rendered shared/_error.html.haml (1.2ms)
|
|
1276
|
+
Rendered shared/_error.html.haml (0.1ms)
|
|
1277
|
+
Rendered shared/_error.html.haml (0.1ms)
|
|
1278
|
+
Rendered images/_form.html.haml (4.5ms)
|
|
1279
|
+
Rendered images/new.html.haml within layouts/application (5.1ms)
|
|
1280
|
+
Completed 200 OK in 18ms (Views: 11.0ms | ActiveRecord: 0.2ms)
|
|
1281
|
+
|
|
1282
|
+
|
|
1283
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-14 00:05:58 -0700
|
|
1284
|
+
|
|
1285
|
+
|
|
1286
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-14 00:05:58 -0700
|
|
1287
|
+
|
|
1288
|
+
|
|
1289
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2014-05-14 00:05:58 -0700
|
|
1290
|
+
|
|
1291
|
+
|
|
1292
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2014-05-14 00:05:58 -0700
|
|
1293
|
+
|
|
1294
|
+
|
|
1295
|
+
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2014-05-14 00:05:58 -0700
|
|
1296
|
+
|
|
1297
|
+
|
|
1298
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-14 00:05:58 -0700
|
|
1299
|
+
|
|
1300
|
+
|
|
1301
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2014-05-14 00:05:58 -0700
|
|
1302
|
+
|
|
1303
|
+
|
|
1304
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2014-05-14 00:05:58 -0700
|
|
1305
|
+
|
|
1306
|
+
|
|
1307
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2014-05-14 00:05:58 -0700
|
|
1308
|
+
|
|
1309
|
+
|
|
1310
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2014-05-14 00:05:58 -0700
|
|
1311
|
+
|
|
1312
|
+
|
|
1313
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2014-05-14 00:05:58 -0700
|
|
1314
|
+
|
|
1315
|
+
|
|
1316
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2014-05-14 00:05:58 -0700
|
|
1317
|
+
|
|
1318
|
+
|
|
1319
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2014-05-14 00:05:58 -0700
|
|
1320
|
+
|
|
1321
|
+
|
|
1322
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2014-05-14 00:05:58 -0700
|
|
1323
|
+
|
|
1324
|
+
|
|
1325
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2014-05-14 00:05:58 -0700
|
|
1326
|
+
|
|
1327
|
+
|
|
1328
|
+
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2014-05-14 00:05:58 -0700
|
|
1329
|
+
|
|
1330
|
+
|
|
1331
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-14 00:05:58 -0700
|
|
1332
|
+
|
|
1333
|
+
|
|
1334
|
+
Started POST "/images" for 127.0.0.1 at 2014-05-14 00:08:33 -0700
|
|
1335
|
+
Processing by ImagesController#create as HTML
|
|
1336
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"0QzEKRCqGpAkw+LcC2l726k/V1PpWlKbiafoiusTU+0=", "image"=>{"name"=>"Avatar", "file"=>#<ActionDispatch::Http::UploadedFile:0x007ff99479f708 @tempfile=#<Tempfile:/var/folders/8p/ghlgmj4s63950tbfyvh3s2d40000gn/T/RackMultipart20140514-5986-1xdd0sk>, @original_filename="image.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"image[file]\"; filename=\"image.png\"\r\nContent-Type: image/png\r\n">}, "commit"=>"Submit"}
|
|
1337
|
+
WARNING: Can't mass-assign protected attributes for Image: name, file
|
|
1338
|
+
app/controllers/images_controller.rb:35:in `create'
|
|
1339
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
1340
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
1341
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1342
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
1343
|
+
Rendered shared/_error.html.haml (0.2ms)
|
|
1344
|
+
Rendered shared/_error.html.haml (0.3ms)
|
|
1345
|
+
Rendered shared/_error.html.haml (0.2ms)
|
|
1346
|
+
Rendered images/_form.html.haml (3.7ms)
|
|
1347
|
+
Rendered images/new.html.haml within layouts/application (4.3ms)
|
|
1348
|
+
Completed 200 OK in 18ms (Views: 11.8ms | ActiveRecord: 0.2ms)
|
|
1349
|
+
|
|
1350
|
+
|
|
1351
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-14 00:08:33 -0700
|
|
1352
|
+
|
|
1353
|
+
|
|
1354
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-14 00:08:33 -0700
|
|
1355
|
+
|
|
1356
|
+
|
|
1357
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2014-05-14 00:08:33 -0700
|
|
1358
|
+
|
|
1359
|
+
|
|
1360
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2014-05-14 00:08:33 -0700
|
|
1361
|
+
|
|
1362
|
+
|
|
1363
|
+
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2014-05-14 00:08:33 -0700
|
|
1364
|
+
|
|
1365
|
+
|
|
1366
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2014-05-14 00:08:33 -0700
|
|
1367
|
+
|
|
1368
|
+
|
|
1369
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-14 00:08:33 -0700
|
|
1370
|
+
|
|
1371
|
+
|
|
1372
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2014-05-14 00:08:33 -0700
|
|
1373
|
+
|
|
1374
|
+
|
|
1375
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2014-05-14 00:08:33 -0700
|
|
1376
|
+
|
|
1377
|
+
|
|
1378
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2014-05-14 00:08:33 -0700
|
|
1379
|
+
|
|
1380
|
+
|
|
1381
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2014-05-14 00:08:33 -0700
|
|
1382
|
+
|
|
1383
|
+
|
|
1384
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2014-05-14 00:08:33 -0700
|
|
1385
|
+
|
|
1386
|
+
|
|
1387
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2014-05-14 00:08:33 -0700
|
|
1388
|
+
|
|
1389
|
+
|
|
1390
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2014-05-14 00:08:33 -0700
|
|
1391
|
+
|
|
1392
|
+
|
|
1393
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2014-05-14 00:08:33 -0700
|
|
1394
|
+
|
|
1395
|
+
|
|
1396
|
+
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2014-05-14 00:08:33 -0700
|
|
1397
|
+
|
|
1398
|
+
|
|
1399
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-14 00:08:33 -0700
|
|
1400
|
+
|
|
1401
|
+
|
|
1402
|
+
Started GET "/" for 127.0.0.1 at 2014-05-14 00:08:37 -0700
|
|
1403
|
+
Processing by MainController#index as HTML
|
|
1404
|
+
Rendered main/index.html.haml within layouts/application (0.3ms)
|
|
1405
|
+
Completed 200 OK in 6ms (Views: 6.3ms | ActiveRecord: 0.0ms)
|
|
1406
|
+
|
|
1407
|
+
|
|
1408
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-14 00:08:37 -0700
|
|
1409
|
+
|
|
1410
|
+
|
|
1411
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-14 00:08:37 -0700
|
|
1412
|
+
|
|
1413
|
+
|
|
1414
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-14 00:08:37 -0700
|
|
1415
|
+
|
|
1416
|
+
|
|
1417
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2014-05-14 00:08:37 -0700
|
|
1418
|
+
|
|
1419
|
+
|
|
1420
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2014-05-14 00:08:37 -0700
|
|
1421
|
+
|
|
1422
|
+
|
|
1423
|
+
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2014-05-14 00:08:37 -0700
|
|
1424
|
+
|
|
1425
|
+
|
|
1426
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2014-05-14 00:08:37 -0700
|
|
1427
|
+
|
|
1428
|
+
|
|
1429
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2014-05-14 00:08:37 -0700
|
|
1430
|
+
|
|
1431
|
+
|
|
1432
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2014-05-14 00:08:37 -0700
|
|
1433
|
+
|
|
1434
|
+
|
|
1435
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2014-05-14 00:08:37 -0700
|
|
1436
|
+
|
|
1437
|
+
|
|
1438
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2014-05-14 00:08:37 -0700
|
|
1439
|
+
|
|
1440
|
+
|
|
1441
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2014-05-14 00:08:37 -0700
|
|
1442
|
+
|
|
1443
|
+
|
|
1444
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2014-05-14 00:08:37 -0700
|
|
1445
|
+
|
|
1446
|
+
|
|
1447
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2014-05-14 00:08:37 -0700
|
|
1448
|
+
|
|
1449
|
+
|
|
1450
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2014-05-14 00:08:37 -0700
|
|
1451
|
+
|
|
1452
|
+
|
|
1453
|
+
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2014-05-14 00:08:37 -0700
|
|
1454
|
+
|
|
1455
|
+
|
|
1456
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-14 00:08:37 -0700
|
|
1457
|
+
|
|
1458
|
+
|
|
1459
|
+
Started GET "/" for 127.0.0.1 at 2014-05-14 00:09:43 -0700
|
|
1460
|
+
Processing by MainController#index as HTML
|
|
1461
|
+
Rendered main/index.html.haml within layouts/application (0.3ms)
|
|
1462
|
+
Completed 200 OK in 7ms (Views: 6.5ms | ActiveRecord: 0.0ms)
|
|
1463
|
+
|
|
1464
|
+
|
|
1465
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-14 00:09:43 -0700
|
|
1466
|
+
|
|
1467
|
+
|
|
1468
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-14 00:09:43 -0700
|
|
1469
|
+
|
|
1470
|
+
|
|
1471
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-14 00:09:43 -0700
|
|
1472
|
+
|
|
1473
|
+
|
|
1474
|
+
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2014-05-14 00:09:43 -0700
|
|
1475
|
+
|
|
1476
|
+
|
|
1477
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2014-05-14 00:09:43 -0700
|
|
1478
|
+
|
|
1479
|
+
|
|
1480
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2014-05-14 00:09:43 -0700
|
|
1481
|
+
|
|
1482
|
+
|
|
1483
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2014-05-14 00:09:43 -0700
|
|
1484
|
+
|
|
1485
|
+
|
|
1486
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2014-05-14 00:09:43 -0700
|
|
1487
|
+
|
|
1488
|
+
|
|
1489
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2014-05-14 00:09:43 -0700
|
|
1490
|
+
|
|
1491
|
+
|
|
1492
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2014-05-14 00:09:43 -0700
|
|
1493
|
+
|
|
1494
|
+
|
|
1495
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2014-05-14 00:09:43 -0700
|
|
1496
|
+
|
|
1497
|
+
|
|
1498
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2014-05-14 00:09:43 -0700
|
|
1499
|
+
|
|
1500
|
+
|
|
1501
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2014-05-14 00:09:43 -0700
|
|
1502
|
+
|
|
1503
|
+
|
|
1504
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2014-05-14 00:09:43 -0700
|
|
1505
|
+
|
|
1506
|
+
|
|
1507
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2014-05-14 00:09:43 -0700
|
|
1508
|
+
|
|
1509
|
+
|
|
1510
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-14 00:09:43 -0700
|
|
1511
|
+
|
|
1512
|
+
|
|
1513
|
+
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2014-05-14 00:09:43 -0700
|
|
1514
|
+
|
|
1515
|
+
|
|
1516
|
+
Started GET "/" for 127.0.0.1 at 2014-05-14 00:09:44 -0700
|
|
1517
|
+
Processing by MainController#index as HTML
|
|
1518
|
+
Rendered main/index.html.haml within layouts/application (0.3ms)
|
|
1519
|
+
Completed 200 OK in 7ms (Views: 6.7ms | ActiveRecord: 0.0ms)
|
|
1520
|
+
|
|
1521
|
+
|
|
1522
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-14 00:09:44 -0700
|
|
1523
|
+
|
|
1524
|
+
|
|
1525
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2014-05-14 00:09:44 -0700
|
|
1526
|
+
|
|
1527
|
+
|
|
1528
|
+
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2014-05-14 00:09:44 -0700
|
|
1529
|
+
|
|
1530
|
+
|
|
1531
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-14 00:09:44 -0700
|
|
1532
|
+
|
|
1533
|
+
|
|
1534
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-14 00:09:44 -0700
|
|
1535
|
+
|
|
1536
|
+
|
|
1537
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2014-05-14 00:09:44 -0700
|
|
1538
|
+
|
|
1539
|
+
|
|
1540
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2014-05-14 00:09:44 -0700
|
|
1541
|
+
|
|
1542
|
+
|
|
1543
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2014-05-14 00:09:44 -0700
|
|
1544
|
+
|
|
1545
|
+
|
|
1546
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2014-05-14 00:09:44 -0700
|
|
1547
|
+
|
|
1548
|
+
|
|
1549
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2014-05-14 00:09:44 -0700
|
|
1550
|
+
|
|
1551
|
+
|
|
1552
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2014-05-14 00:09:44 -0700
|
|
1553
|
+
|
|
1554
|
+
|
|
1555
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2014-05-14 00:09:44 -0700
|
|
1556
|
+
|
|
1557
|
+
|
|
1558
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2014-05-14 00:09:44 -0700
|
|
1559
|
+
|
|
1560
|
+
|
|
1561
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2014-05-14 00:09:44 -0700
|
|
1562
|
+
|
|
1563
|
+
|
|
1564
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2014-05-14 00:09:44 -0700
|
|
1565
|
+
|
|
1566
|
+
|
|
1567
|
+
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2014-05-14 00:09:44 -0700
|
|
1568
|
+
|
|
1569
|
+
|
|
1570
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-14 00:09:44 -0700
|
|
1571
|
+
|
|
1572
|
+
|
|
1573
|
+
Started GET "/" for 127.0.0.1 at 2014-05-14 00:09:49 -0700
|
|
1574
|
+
Processing by MainController#index as HTML
|
|
1575
|
+
Rendered main/index.html.haml within layouts/application (0.3ms)
|
|
1576
|
+
Completed 200 OK in 12ms (Views: 11.6ms | ActiveRecord: 0.0ms)
|
|
1577
|
+
|
|
1578
|
+
|
|
1579
|
+
Started GET "/" for 127.0.0.1 at 2014-05-14 00:09:50 -0700
|
|
1580
|
+
Processing by MainController#index as HTML
|
|
1581
|
+
Rendered main/index.html.haml within layouts/application (0.5ms)
|
|
1582
|
+
Completed 200 OK in 8ms (Views: 8.1ms | ActiveRecord: 0.0ms)
|
|
1583
|
+
|
|
1584
|
+
|
|
1585
|
+
Started GET "/" for 127.0.0.1 at 2014-05-14 00:10:02 -0700
|
|
1586
|
+
Processing by MainController#index as HTML
|
|
1587
|
+
Rendered main/index.html.haml within layouts/application (0.3ms)
|
|
1588
|
+
Completed 200 OK in 8ms (Views: 8.2ms | ActiveRecord: 0.0ms)
|
|
1589
|
+
|
|
1590
|
+
|
|
1591
|
+
Started GET "/" for 127.0.0.1 at 2014-05-14 00:10:03 -0700
|
|
1592
|
+
Processing by MainController#index as HTML
|
|
1593
|
+
Rendered main/index.html.haml within layouts/application (0.3ms)
|
|
1594
|
+
Completed 200 OK in 7ms (Views: 6.5ms | ActiveRecord: 0.0ms)
|
|
1595
|
+
|
|
1596
|
+
|
|
1597
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-14 00:10:03 -0700
|
|
1598
|
+
|
|
1599
|
+
|
|
1600
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-14 00:10:03 -0700
|
|
1601
|
+
|
|
1602
|
+
|
|
1603
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-14 00:10:03 -0700
|
|
1604
|
+
|
|
1605
|
+
|
|
1606
|
+
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2014-05-14 00:10:03 -0700
|
|
1607
|
+
|
|
1608
|
+
|
|
1609
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2014-05-14 00:10:03 -0700
|
|
1610
|
+
|
|
1611
|
+
|
|
1612
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2014-05-14 00:10:03 -0700
|
|
1613
|
+
|
|
1614
|
+
|
|
1615
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2014-05-14 00:10:03 -0700
|
|
1616
|
+
|
|
1617
|
+
|
|
1618
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2014-05-14 00:10:03 -0700
|
|
1619
|
+
|
|
1620
|
+
|
|
1621
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2014-05-14 00:10:03 -0700
|
|
1622
|
+
|
|
1623
|
+
|
|
1624
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2014-05-14 00:10:03 -0700
|
|
1625
|
+
|
|
1626
|
+
|
|
1627
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2014-05-14 00:10:03 -0700
|
|
1628
|
+
|
|
1629
|
+
|
|
1630
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2014-05-14 00:10:03 -0700
|
|
1631
|
+
|
|
1632
|
+
|
|
1633
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2014-05-14 00:10:03 -0700
|
|
1634
|
+
|
|
1635
|
+
|
|
1636
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2014-05-14 00:10:03 -0700
|
|
1637
|
+
|
|
1638
|
+
|
|
1639
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2014-05-14 00:10:03 -0700
|
|
1640
|
+
|
|
1641
|
+
|
|
1642
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-14 00:10:03 -0700
|
|
1643
|
+
|
|
1644
|
+
|
|
1645
|
+
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2014-05-14 00:10:03 -0700
|
|
1646
|
+
|
|
1647
|
+
|
|
1648
|
+
Started GET "/" for 127.0.0.1 at 2014-05-14 00:10:18 -0700
|
|
1649
|
+
Processing by MainController#index as HTML
|
|
1650
|
+
Rendered main/index.html.haml within layouts/application (0.3ms)
|
|
1651
|
+
Completed 200 OK in 562ms (Views: 561.9ms | ActiveRecord: 0.0ms)
|
|
1652
|
+
|
|
1653
|
+
|
|
1654
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-14 00:10:18 -0700
|
|
1655
|
+
|
|
1656
|
+
|
|
1657
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-14 00:10:18 -0700
|
|
1658
|
+
|
|
1659
|
+
|
|
1660
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2014-05-14 00:10:18 -0700
|
|
1661
|
+
|
|
1662
|
+
|
|
1663
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-14 00:10:18 -0700
|
|
1664
|
+
|
|
1665
|
+
|
|
1666
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2014-05-14 00:10:18 -0700
|
|
1667
|
+
|
|
1668
|
+
|
|
1669
|
+
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2014-05-14 00:10:18 -0700
|
|
1670
|
+
|
|
1671
|
+
|
|
1672
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2014-05-14 00:10:18 -0700
|
|
1673
|
+
|
|
1674
|
+
|
|
1675
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2014-05-14 00:10:18 -0700
|
|
1676
|
+
|
|
1677
|
+
|
|
1678
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2014-05-14 00:10:18 -0700
|
|
1679
|
+
|
|
1680
|
+
|
|
1681
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2014-05-14 00:10:18 -0700
|
|
1682
|
+
|
|
1683
|
+
|
|
1684
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2014-05-14 00:10:18 -0700
|
|
1685
|
+
|
|
1686
|
+
|
|
1687
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2014-05-14 00:10:18 -0700
|
|
1688
|
+
|
|
1689
|
+
|
|
1690
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2014-05-14 00:10:18 -0700
|
|
1691
|
+
|
|
1692
|
+
|
|
1693
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2014-05-14 00:10:18 -0700
|
|
1694
|
+
|
|
1695
|
+
|
|
1696
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2014-05-14 00:10:18 -0700
|
|
1697
|
+
|
|
1698
|
+
|
|
1699
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-14 00:10:18 -0700
|
|
1700
|
+
|
|
1701
|
+
|
|
1702
|
+
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2014-05-14 00:10:18 -0700
|
|
1703
|
+
|
|
1704
|
+
|
|
1705
|
+
Started GET "/" for 127.0.0.1 at 2014-05-14 00:12:50 -0700
|
|
1706
|
+
Processing by MainController#index as HTML
|
|
1707
|
+
Rendered main/index.html.haml within layouts/application (0.3ms)
|
|
1708
|
+
Completed 200 OK in 558ms (Views: 557.7ms | ActiveRecord: 0.0ms)
|
|
1709
|
+
|
|
1710
|
+
|
|
1711
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:51 -0700
|
|
1712
|
+
|
|
1713
|
+
|
|
1714
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-14 00:12:51 -0700
|
|
1715
|
+
|
|
1716
|
+
|
|
1717
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:51 -0700
|
|
1718
|
+
|
|
1719
|
+
|
|
1720
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:51 -0700
|
|
1721
|
+
|
|
1722
|
+
|
|
1723
|
+
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:51 -0700
|
|
1724
|
+
|
|
1725
|
+
|
|
1726
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:51 -0700
|
|
1727
|
+
|
|
1728
|
+
|
|
1729
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:51 -0700
|
|
1730
|
+
|
|
1731
|
+
|
|
1732
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:51 -0700
|
|
1733
|
+
|
|
1734
|
+
|
|
1735
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:51 -0700
|
|
1736
|
+
|
|
1737
|
+
|
|
1738
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:51 -0700
|
|
1739
|
+
|
|
1740
|
+
|
|
1741
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:51 -0700
|
|
1742
|
+
|
|
1743
|
+
|
|
1744
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:51 -0700
|
|
1745
|
+
|
|
1746
|
+
|
|
1747
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:51 -0700
|
|
1748
|
+
|
|
1749
|
+
|
|
1750
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:51 -0700
|
|
1751
|
+
|
|
1752
|
+
|
|
1753
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:51 -0700
|
|
1754
|
+
|
|
1755
|
+
|
|
1756
|
+
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:51 -0700
|
|
1757
|
+
|
|
1758
|
+
|
|
1759
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:51 -0700
|
|
1760
|
+
|
|
1761
|
+
|
|
1762
|
+
Started GET "/audios" for 127.0.0.1 at 2014-05-14 00:12:52 -0700
|
|
1763
|
+
Processing by AudiosController#index as HTML
|
|
1764
|
+
[1m[36mAudio Load (0.1ms)[0m [1mSELECT "audios".* FROM "audios"[0m
|
|
1765
|
+
Rendered audios/index.html.haml within layouts/application (0.8ms)
|
|
1766
|
+
Completed 200 OK in 9ms (Views: 8.2ms | ActiveRecord: 0.1ms)
|
|
1767
|
+
|
|
1768
|
+
|
|
1769
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:52 -0700
|
|
1770
|
+
|
|
1771
|
+
|
|
1772
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:52 -0700
|
|
1773
|
+
|
|
1774
|
+
|
|
1775
|
+
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:52 -0700
|
|
1776
|
+
|
|
1777
|
+
|
|
1778
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:52 -0700
|
|
1779
|
+
|
|
1780
|
+
|
|
1781
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:52 -0700
|
|
1782
|
+
|
|
1783
|
+
|
|
1784
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:52 -0700
|
|
1785
|
+
|
|
1786
|
+
|
|
1787
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:52 -0700
|
|
1788
|
+
|
|
1789
|
+
|
|
1790
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:52 -0700
|
|
1791
|
+
|
|
1792
|
+
|
|
1793
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:52 -0700
|
|
1794
|
+
|
|
1795
|
+
|
|
1796
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:52 -0700
|
|
1797
|
+
|
|
1798
|
+
|
|
1799
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:52 -0700
|
|
1800
|
+
|
|
1801
|
+
|
|
1802
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:52 -0700
|
|
1803
|
+
|
|
1804
|
+
|
|
1805
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:52 -0700
|
|
1806
|
+
|
|
1807
|
+
|
|
1808
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:52 -0700
|
|
1809
|
+
|
|
1810
|
+
|
|
1811
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:52 -0700
|
|
1812
|
+
|
|
1813
|
+
|
|
1814
|
+
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:52 -0700
|
|
1815
|
+
|
|
1816
|
+
|
|
1817
|
+
Started GET "/images" for 127.0.0.1 at 2014-05-14 00:12:53 -0700
|
|
1818
|
+
Processing by ImagesController#index as HTML
|
|
1819
|
+
[1m[35mImage Load (0.1ms)[0m SELECT "images".* FROM "images"
|
|
1820
|
+
Rendered images/index.html.haml within layouts/application (0.7ms)
|
|
1821
|
+
Completed 200 OK in 7ms (Views: 6.7ms | ActiveRecord: 0.1ms)
|
|
1822
|
+
|
|
1823
|
+
|
|
1824
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:53 -0700
|
|
1825
|
+
|
|
1826
|
+
|
|
1827
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:53 -0700
|
|
1828
|
+
|
|
1829
|
+
|
|
1830
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:53 -0700
|
|
1831
|
+
|
|
1832
|
+
|
|
1833
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:53 -0700
|
|
1834
|
+
|
|
1835
|
+
|
|
1836
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:53 -0700
|
|
1837
|
+
|
|
1838
|
+
|
|
1839
|
+
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:53 -0700
|
|
1840
|
+
|
|
1841
|
+
|
|
1842
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:53 -0700
|
|
1843
|
+
|
|
1844
|
+
|
|
1845
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:53 -0700
|
|
1846
|
+
|
|
1847
|
+
|
|
1848
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:53 -0700
|
|
1849
|
+
|
|
1850
|
+
|
|
1851
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:53 -0700
|
|
1852
|
+
|
|
1853
|
+
|
|
1854
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:53 -0700
|
|
1855
|
+
|
|
1856
|
+
|
|
1857
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:53 -0700
|
|
1858
|
+
|
|
1859
|
+
|
|
1860
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:53 -0700
|
|
1861
|
+
|
|
1862
|
+
|
|
1863
|
+
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:53 -0700
|
|
1864
|
+
|
|
1865
|
+
|
|
1866
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:53 -0700
|
|
1867
|
+
|
|
1868
|
+
|
|
1869
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:53 -0700
|
|
1870
|
+
|
|
1871
|
+
|
|
1872
|
+
Started GET "/" for 127.0.0.1 at 2014-05-14 00:12:54 -0700
|
|
1873
|
+
Processing by MainController#index as HTML
|
|
1874
|
+
Rendered main/index.html.haml within layouts/application (0.3ms)
|
|
1875
|
+
Completed 200 OK in 7ms (Views: 6.9ms | ActiveRecord: 0.0ms)
|
|
1876
|
+
|
|
1877
|
+
|
|
1878
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:54 -0700
|
|
1879
|
+
|
|
1880
|
+
|
|
1881
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:54 -0700
|
|
1882
|
+
|
|
1883
|
+
|
|
1884
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:54 -0700
|
|
1885
|
+
|
|
1886
|
+
|
|
1887
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:54 -0700
|
|
1888
|
+
|
|
1889
|
+
|
|
1890
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:54 -0700
|
|
1891
|
+
|
|
1892
|
+
|
|
1893
|
+
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:54 -0700
|
|
1894
|
+
|
|
1895
|
+
|
|
1896
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:54 -0700
|
|
1897
|
+
|
|
1898
|
+
|
|
1899
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:54 -0700
|
|
1900
|
+
|
|
1901
|
+
|
|
1902
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:54 -0700
|
|
1903
|
+
|
|
1904
|
+
|
|
1905
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:54 -0700
|
|
1906
|
+
|
|
1907
|
+
|
|
1908
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:54 -0700
|
|
1909
|
+
|
|
1910
|
+
|
|
1911
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:54 -0700
|
|
1912
|
+
|
|
1913
|
+
|
|
1914
|
+
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:54 -0700
|
|
1915
|
+
|
|
1916
|
+
|
|
1917
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:54 -0700
|
|
1918
|
+
|
|
1919
|
+
|
|
1920
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:54 -0700
|
|
1921
|
+
|
|
1922
|
+
|
|
1923
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:54 -0700
|
|
1924
|
+
|
|
1925
|
+
|
|
1926
|
+
Started GET "/audios" for 127.0.0.1 at 2014-05-14 00:12:56 -0700
|
|
1927
|
+
Processing by AudiosController#index as HTML
|
|
1928
|
+
[1m[36mAudio Load (0.1ms)[0m [1mSELECT "audios".* FROM "audios"[0m
|
|
1929
|
+
Rendered audios/index.html.haml within layouts/application (1.0ms)
|
|
1930
|
+
Completed 200 OK in 9ms (Views: 8.9ms | ActiveRecord: 0.1ms)
|
|
1931
|
+
|
|
1932
|
+
|
|
1933
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:56 -0700
|
|
1934
|
+
|
|
1935
|
+
|
|
1936
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:56 -0700
|
|
1937
|
+
|
|
1938
|
+
|
|
1939
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:56 -0700
|
|
1940
|
+
|
|
1941
|
+
|
|
1942
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:56 -0700
|
|
1943
|
+
|
|
1944
|
+
|
|
1945
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:56 -0700
|
|
1946
|
+
|
|
1947
|
+
|
|
1948
|
+
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:56 -0700
|
|
1949
|
+
|
|
1950
|
+
|
|
1951
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:56 -0700
|
|
1952
|
+
|
|
1953
|
+
|
|
1954
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:56 -0700
|
|
1955
|
+
|
|
1956
|
+
|
|
1957
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:56 -0700
|
|
1958
|
+
|
|
1959
|
+
|
|
1960
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:56 -0700
|
|
1961
|
+
|
|
1962
|
+
|
|
1963
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:56 -0700
|
|
1964
|
+
|
|
1965
|
+
|
|
1966
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:56 -0700
|
|
1967
|
+
|
|
1968
|
+
|
|
1969
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:56 -0700
|
|
1970
|
+
|
|
1971
|
+
|
|
1972
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:56 -0700
|
|
1973
|
+
|
|
1974
|
+
|
|
1975
|
+
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:56 -0700
|
|
1976
|
+
|
|
1977
|
+
|
|
1978
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:56 -0700
|
|
1979
|
+
|
|
1980
|
+
|
|
1981
|
+
Started GET "/audios/new" for 127.0.0.1 at 2014-05-14 00:12:58 -0700
|
|
1982
|
+
Processing by AudiosController#new as HTML
|
|
1983
|
+
Rendered audios/_form.html.haml (2.2ms)
|
|
1984
|
+
Rendered audios/new.html.haml within layouts/application (2.8ms)
|
|
1985
|
+
Completed 200 OK in 9ms (Views: 8.7ms | ActiveRecord: 0.0ms)
|
|
1986
|
+
|
|
1987
|
+
|
|
1988
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:58 -0700
|
|
1989
|
+
|
|
1990
|
+
|
|
1991
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:58 -0700
|
|
1992
|
+
|
|
1993
|
+
|
|
1994
|
+
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:58 -0700
|
|
1995
|
+
|
|
1996
|
+
|
|
1997
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:58 -0700
|
|
1998
|
+
|
|
1999
|
+
|
|
2000
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:58 -0700
|
|
2001
|
+
|
|
2002
|
+
|
|
2003
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:58 -0700
|
|
2004
|
+
|
|
2005
|
+
|
|
2006
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:58 -0700
|
|
2007
|
+
|
|
2008
|
+
|
|
2009
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:58 -0700
|
|
2010
|
+
|
|
2011
|
+
|
|
2012
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:58 -0700
|
|
2013
|
+
|
|
2014
|
+
|
|
2015
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:58 -0700
|
|
2016
|
+
|
|
2017
|
+
|
|
2018
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:58 -0700
|
|
2019
|
+
|
|
2020
|
+
|
|
2021
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:58 -0700
|
|
2022
|
+
|
|
2023
|
+
|
|
2024
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:58 -0700
|
|
2025
|
+
|
|
2026
|
+
|
|
2027
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:58 -0700
|
|
2028
|
+
|
|
2029
|
+
|
|
2030
|
+
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:58 -0700
|
|
2031
|
+
|
|
2032
|
+
|
|
2033
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-14 00:12:58 -0700
|
|
2034
|
+
|
|
2035
|
+
|
|
2036
|
+
Started GET "/" for 127.0.0.1 at 2014-05-14 00:14:57 -0700
|
|
2037
|
+
Processing by MainController#index as HTML
|
|
2038
|
+
Rendered main/index.html.haml within layouts/application (1.3ms)
|
|
2039
|
+
Completed 200 OK in 8ms (Views: 8.0ms | ActiveRecord: 0.0ms)
|
|
2040
|
+
|
|
2041
|
+
|
|
2042
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-14 00:14:57 -0700
|
|
2043
|
+
|
|
2044
|
+
|
|
2045
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-14 00:14:57 -0700
|
|
2046
|
+
|
|
2047
|
+
|
|
2048
|
+
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2014-05-14 00:14:57 -0700
|
|
2049
|
+
|
|
2050
|
+
|
|
2051
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-14 00:14:57 -0700
|
|
2052
|
+
|
|
2053
|
+
|
|
2054
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2014-05-14 00:14:57 -0700
|
|
2055
|
+
|
|
2056
|
+
|
|
2057
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2014-05-14 00:14:57 -0700
|
|
2058
|
+
|
|
2059
|
+
|
|
2060
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2014-05-14 00:14:57 -0700
|
|
2061
|
+
|
|
2062
|
+
|
|
2063
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2014-05-14 00:14:57 -0700
|
|
2064
|
+
|
|
2065
|
+
|
|
2066
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2014-05-14 00:14:57 -0700
|
|
2067
|
+
|
|
2068
|
+
|
|
2069
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2014-05-14 00:14:57 -0700
|
|
2070
|
+
|
|
2071
|
+
|
|
2072
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2014-05-14 00:14:57 -0700
|
|
2073
|
+
|
|
2074
|
+
|
|
2075
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2014-05-14 00:14:57 -0700
|
|
2076
|
+
|
|
2077
|
+
|
|
2078
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2014-05-14 00:14:57 -0700
|
|
2079
|
+
|
|
2080
|
+
|
|
2081
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2014-05-14 00:14:57 -0700
|
|
2082
|
+
|
|
2083
|
+
|
|
2084
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2014-05-14 00:14:57 -0700
|
|
2085
|
+
|
|
2086
|
+
|
|
2087
|
+
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2014-05-14 00:14:57 -0700
|
|
2088
|
+
|
|
2089
|
+
|
|
2090
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-14 00:14:57 -0700
|
|
2091
|
+
|
|
2092
|
+
|
|
2093
|
+
Started GET "/" for 127.0.0.1 at 2014-05-14 00:14:58 -0700
|
|
2094
|
+
Processing by MainController#index as HTML
|
|
2095
|
+
Rendered main/index.html.haml within layouts/application (0.3ms)
|
|
2096
|
+
Completed 200 OK in 6ms (Views: 5.8ms | ActiveRecord: 0.0ms)
|
|
2097
|
+
|
|
2098
|
+
|
|
2099
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-14 00:14:58 -0700
|
|
2100
|
+
|
|
2101
|
+
|
|
2102
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-14 00:14:58 -0700
|
|
2103
|
+
|
|
2104
|
+
|
|
2105
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-14 00:14:58 -0700
|
|
2106
|
+
|
|
2107
|
+
|
|
2108
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2014-05-14 00:14:58 -0700
|
|
2109
|
+
|
|
2110
|
+
|
|
2111
|
+
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2014-05-14 00:14:58 -0700
|
|
2112
|
+
|
|
2113
|
+
|
|
2114
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2014-05-14 00:14:58 -0700
|
|
2115
|
+
|
|
2116
|
+
|
|
2117
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2014-05-14 00:14:58 -0700
|
|
2118
|
+
|
|
2119
|
+
|
|
2120
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2014-05-14 00:14:58 -0700
|
|
2121
|
+
|
|
2122
|
+
|
|
2123
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2014-05-14 00:14:58 -0700
|
|
2124
|
+
|
|
2125
|
+
|
|
2126
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2014-05-14 00:14:58 -0700
|
|
2127
|
+
|
|
2128
|
+
|
|
2129
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2014-05-14 00:14:58 -0700
|
|
2130
|
+
|
|
2131
|
+
|
|
2132
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2014-05-14 00:14:58 -0700
|
|
2133
|
+
|
|
2134
|
+
|
|
2135
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2014-05-14 00:14:58 -0700
|
|
2136
|
+
|
|
2137
|
+
|
|
2138
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2014-05-14 00:14:58 -0700
|
|
2139
|
+
|
|
2140
|
+
|
|
2141
|
+
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2014-05-14 00:14:58 -0700
|
|
2142
|
+
|
|
2143
|
+
|
|
2144
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2014-05-14 00:14:58 -0700
|
|
2145
|
+
|
|
2146
|
+
|
|
2147
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-14 00:14:58 -0700
|
|
2148
|
+
|
|
2149
|
+
|
|
2150
|
+
Started GET "/audios" for 127.0.0.1 at 2014-05-14 00:15:02 -0700
|
|
2151
|
+
Processing by AudiosController#index as HTML
|
|
2152
|
+
[1m[35mAudio Load (0.1ms)[0m SELECT "audios".* FROM "audios"
|
|
2153
|
+
Rendered audios/index.html.haml within layouts/application (0.7ms)
|
|
2154
|
+
Completed 200 OK in 6ms (Views: 6.0ms | ActiveRecord: 0.1ms)
|
|
2155
|
+
|
|
2156
|
+
|
|
2157
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-14 00:15:02 -0700
|
|
2158
|
+
|
|
2159
|
+
|
|
2160
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-14 00:15:02 -0700
|
|
2161
|
+
|
|
2162
|
+
|
|
2163
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2014-05-14 00:15:02 -0700
|
|
2164
|
+
|
|
2165
|
+
|
|
2166
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2014-05-14 00:15:02 -0700
|
|
2167
|
+
|
|
2168
|
+
|
|
2169
|
+
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2014-05-14 00:15:02 -0700
|
|
2170
|
+
|
|
2171
|
+
|
|
2172
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2014-05-14 00:15:02 -0700
|
|
2173
|
+
|
|
2174
|
+
|
|
2175
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-14 00:15:02 -0700
|
|
2176
|
+
|
|
2177
|
+
|
|
2178
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2014-05-14 00:15:02 -0700
|
|
2179
|
+
|
|
2180
|
+
|
|
2181
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2014-05-14 00:15:02 -0700
|
|
2182
|
+
|
|
2183
|
+
|
|
2184
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2014-05-14 00:15:02 -0700
|
|
2185
|
+
|
|
2186
|
+
|
|
2187
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2014-05-14 00:15:02 -0700
|
|
2188
|
+
|
|
2189
|
+
|
|
2190
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2014-05-14 00:15:02 -0700
|
|
2191
|
+
|
|
2192
|
+
|
|
2193
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2014-05-14 00:15:02 -0700
|
|
2194
|
+
|
|
2195
|
+
|
|
2196
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2014-05-14 00:15:02 -0700
|
|
2197
|
+
|
|
2198
|
+
|
|
2199
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2014-05-14 00:15:02 -0700
|
|
2200
|
+
|
|
2201
|
+
|
|
2202
|
+
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2014-05-14 00:15:02 -0700
|
|
2203
|
+
|
|
2204
|
+
|
|
2205
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-14 00:15:02 -0700
|
|
2206
|
+
|
|
2207
|
+
|
|
2208
|
+
Started GET "/audios/new" for 127.0.0.1 at 2014-05-14 00:15:05 -0700
|
|
2209
|
+
Processing by AudiosController#new as HTML
|
|
2210
|
+
Rendered audios/_form.html.haml (3.1ms)
|
|
2211
|
+
Rendered audios/new.html.haml within layouts/application (3.9ms)
|
|
2212
|
+
Completed 200 OK in 11ms (Views: 10.2ms | ActiveRecord: 0.0ms)
|
|
2213
|
+
|
|
2214
|
+
|
|
2215
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-14 00:15:05 -0700
|
|
2216
|
+
|
|
2217
|
+
|
|
2218
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-14 00:15:05 -0700
|
|
2219
|
+
|
|
2220
|
+
|
|
2221
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-14 00:15:05 -0700
|
|
2222
|
+
|
|
2223
|
+
|
|
2224
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2014-05-14 00:15:05 -0700
|
|
2225
|
+
|
|
2226
|
+
|
|
2227
|
+
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2014-05-14 00:15:05 -0700
|
|
2228
|
+
|
|
2229
|
+
|
|
2230
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2014-05-14 00:15:05 -0700
|
|
2231
|
+
|
|
2232
|
+
|
|
2233
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2014-05-14 00:15:05 -0700
|
|
2234
|
+
|
|
2235
|
+
|
|
2236
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2014-05-14 00:15:05 -0700
|
|
2237
|
+
|
|
2238
|
+
|
|
2239
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2014-05-14 00:15:05 -0700
|
|
2240
|
+
|
|
2241
|
+
|
|
2242
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2014-05-14 00:15:05 -0700
|
|
2243
|
+
|
|
2244
|
+
|
|
2245
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2014-05-14 00:15:05 -0700
|
|
2246
|
+
|
|
2247
|
+
|
|
2248
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2014-05-14 00:15:05 -0700
|
|
2249
|
+
|
|
2250
|
+
|
|
2251
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2014-05-14 00:15:05 -0700
|
|
2252
|
+
|
|
2253
|
+
|
|
2254
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2014-05-14 00:15:05 -0700
|
|
2255
|
+
|
|
2256
|
+
|
|
2257
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2014-05-14 00:15:05 -0700
|
|
2258
|
+
|
|
2259
|
+
|
|
2260
|
+
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2014-05-14 00:15:05 -0700
|
|
2261
|
+
|
|
2262
|
+
|
|
2263
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-14 00:15:05 -0700
|
|
2264
|
+
|
|
2265
|
+
|
|
2266
|
+
Started GET "/audios/new" for 127.0.0.1 at 2014-05-14 00:16:52 -0700
|
|
2267
|
+
Processing by AudiosController#new as HTML
|
|
2268
|
+
Rendered audios/_form.html.haml (3.7ms)
|
|
2269
|
+
Rendered audios/new.html.haml within layouts/application (4.2ms)
|
|
2270
|
+
Completed 200 OK in 10ms (Views: 9.7ms | ActiveRecord: 0.0ms)
|
|
2271
|
+
|
|
2272
|
+
|
|
2273
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-14 00:16:52 -0700
|
|
2274
|
+
|
|
2275
|
+
|
|
2276
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-14 00:16:52 -0700
|
|
2277
|
+
|
|
2278
|
+
|
|
2279
|
+
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2014-05-14 00:16:52 -0700
|
|
2280
|
+
|
|
2281
|
+
|
|
2282
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2014-05-14 00:16:52 -0700
|
|
2283
|
+
|
|
2284
|
+
|
|
2285
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-14 00:16:52 -0700
|
|
2286
|
+
|
|
2287
|
+
|
|
2288
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2014-05-14 00:16:52 -0700
|
|
2289
|
+
|
|
2290
|
+
|
|
2291
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2014-05-14 00:16:52 -0700
|
|
2292
|
+
|
|
2293
|
+
|
|
2294
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2014-05-14 00:16:52 -0700
|
|
2295
|
+
|
|
2296
|
+
|
|
2297
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2014-05-14 00:16:52 -0700
|
|
2298
|
+
|
|
2299
|
+
|
|
2300
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2014-05-14 00:16:52 -0700
|
|
2301
|
+
|
|
2302
|
+
|
|
2303
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2014-05-14 00:16:52 -0700
|
|
2304
|
+
|
|
2305
|
+
|
|
2306
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2014-05-14 00:16:52 -0700
|
|
2307
|
+
|
|
2308
|
+
|
|
2309
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2014-05-14 00:16:52 -0700
|
|
2310
|
+
|
|
2311
|
+
|
|
2312
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2014-05-14 00:16:52 -0700
|
|
2313
|
+
|
|
2314
|
+
|
|
2315
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2014-05-14 00:16:52 -0700
|
|
2316
|
+
|
|
2317
|
+
|
|
2318
|
+
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2014-05-14 00:16:52 -0700
|
|
2319
|
+
|
|
2320
|
+
|
|
2321
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-14 00:16:52 -0700
|
|
2322
|
+
|
|
2323
|
+
|
|
2324
|
+
Started GET "/audios/new" for 127.0.0.1 at 2014-05-14 00:16:54 -0700
|
|
2325
|
+
Processing by AudiosController#new as HTML
|
|
2326
|
+
Rendered audios/_form.html.haml (1.8ms)
|
|
2327
|
+
Rendered audios/new.html.haml within layouts/application (2.6ms)
|
|
2328
|
+
Completed 200 OK in 9ms (Views: 8.4ms | ActiveRecord: 0.0ms)
|
|
2329
|
+
|
|
2330
|
+
|
|
2331
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-14 00:16:54 -0700
|
|
2332
|
+
|
|
2333
|
+
|
|
2334
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-14 00:16:54 -0700
|
|
2335
|
+
|
|
2336
|
+
|
|
2337
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2014-05-14 00:16:54 -0700
|
|
2338
|
+
|
|
2339
|
+
|
|
2340
|
+
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2014-05-14 00:16:54 -0700
|
|
2341
|
+
|
|
2342
|
+
|
|
2343
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-14 00:16:54 -0700
|
|
2344
|
+
|
|
2345
|
+
|
|
2346
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2014-05-14 00:16:54 -0700
|
|
2347
|
+
|
|
2348
|
+
|
|
2349
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2014-05-14 00:16:54 -0700
|
|
2350
|
+
|
|
2351
|
+
|
|
2352
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2014-05-14 00:16:54 -0700
|
|
2353
|
+
|
|
2354
|
+
|
|
2355
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2014-05-14 00:16:54 -0700
|
|
2356
|
+
|
|
2357
|
+
|
|
2358
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2014-05-14 00:16:54 -0700
|
|
2359
|
+
|
|
2360
|
+
|
|
2361
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2014-05-14 00:16:54 -0700
|
|
2362
|
+
|
|
2363
|
+
|
|
2364
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2014-05-14 00:16:54 -0700
|
|
2365
|
+
|
|
2366
|
+
|
|
2367
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2014-05-14 00:16:54 -0700
|
|
2368
|
+
|
|
2369
|
+
|
|
2370
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2014-05-14 00:16:54 -0700
|
|
2371
|
+
|
|
2372
|
+
|
|
2373
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2014-05-14 00:16:54 -0700
|
|
2374
|
+
|
|
2375
|
+
|
|
2376
|
+
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2014-05-14 00:16:54 -0700
|
|
2377
|
+
|
|
2378
|
+
|
|
2379
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-14 00:16:54 -0700
|
|
2380
|
+
|
|
2381
|
+
|
|
2382
|
+
Started GET "/images" for 127.0.0.1 at 2014-05-14 00:17:00 -0700
|
|
2383
|
+
Processing by ImagesController#index as HTML
|
|
2384
|
+
[1m[36mImage Load (0.1ms)[0m [1mSELECT "images".* FROM "images"[0m
|
|
2385
|
+
Rendered images/index.html.haml within layouts/application (0.8ms)
|
|
2386
|
+
Completed 200 OK in 7ms (Views: 6.6ms | ActiveRecord: 0.1ms)
|
|
2387
|
+
|
|
2388
|
+
|
|
2389
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-14 00:17:00 -0700
|
|
2390
|
+
|
|
2391
|
+
|
|
2392
|
+
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2014-05-14 00:17:00 -0700
|
|
2393
|
+
|
|
2394
|
+
|
|
2395
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-14 00:17:00 -0700
|
|
2396
|
+
|
|
2397
|
+
|
|
2398
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-14 00:17:00 -0700
|
|
2399
|
+
|
|
2400
|
+
|
|
2401
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2014-05-14 00:17:00 -0700
|
|
2402
|
+
|
|
2403
|
+
|
|
2404
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2014-05-14 00:17:00 -0700
|
|
2405
|
+
|
|
2406
|
+
|
|
2407
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2014-05-14 00:17:00 -0700
|
|
2408
|
+
|
|
2409
|
+
|
|
2410
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2014-05-14 00:17:00 -0700
|
|
2411
|
+
|
|
2412
|
+
|
|
2413
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2014-05-14 00:17:00 -0700
|
|
2414
|
+
|
|
2415
|
+
|
|
2416
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2014-05-14 00:17:00 -0700
|
|
2417
|
+
|
|
2418
|
+
|
|
2419
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2014-05-14 00:17:00 -0700
|
|
2420
|
+
|
|
2421
|
+
|
|
2422
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2014-05-14 00:17:00 -0700
|
|
2423
|
+
|
|
2424
|
+
|
|
2425
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2014-05-14 00:17:00 -0700
|
|
2426
|
+
|
|
2427
|
+
|
|
2428
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2014-05-14 00:17:00 -0700
|
|
2429
|
+
|
|
2430
|
+
|
|
2431
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2014-05-14 00:17:00 -0700
|
|
2432
|
+
|
|
2433
|
+
|
|
2434
|
+
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2014-05-14 00:17:00 -0700
|
|
2435
|
+
|
|
2436
|
+
|
|
2437
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-14 00:17:00 -0700
|
|
2438
|
+
|
|
2439
|
+
|
|
2440
|
+
Started GET "/images/new" for 127.0.0.1 at 2014-05-14 00:17:01 -0700
|
|
2441
|
+
Processing by ImagesController#new as HTML
|
|
2442
|
+
Rendered images/_form.html.haml (3.2ms)
|
|
2443
|
+
Rendered images/new.html.haml within layouts/application (3.8ms)
|
|
2444
|
+
Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.0ms)
|
|
2445
|
+
|
|
2446
|
+
|
|
2447
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-14 00:17:01 -0700
|
|
2448
|
+
|
|
2449
|
+
|
|
2450
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2014-05-14 00:17:01 -0700
|
|
2451
|
+
|
|
2452
|
+
|
|
2453
|
+
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2014-05-14 00:17:01 -0700
|
|
2454
|
+
|
|
2455
|
+
|
|
2456
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-14 00:17:01 -0700
|
|
2457
|
+
|
|
2458
|
+
|
|
2459
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-14 00:17:01 -0700
|
|
2460
|
+
|
|
2461
|
+
|
|
2462
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2014-05-14 00:17:01 -0700
|
|
2463
|
+
|
|
2464
|
+
|
|
2465
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2014-05-14 00:17:01 -0700
|
|
2466
|
+
|
|
2467
|
+
|
|
2468
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2014-05-14 00:17:01 -0700
|
|
2469
|
+
|
|
2470
|
+
|
|
2471
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2014-05-14 00:17:01 -0700
|
|
2472
|
+
|
|
2473
|
+
|
|
2474
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2014-05-14 00:17:01 -0700
|
|
2475
|
+
|
|
2476
|
+
|
|
2477
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2014-05-14 00:17:01 -0700
|
|
2478
|
+
|
|
2479
|
+
|
|
2480
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2014-05-14 00:17:01 -0700
|
|
2481
|
+
|
|
2482
|
+
|
|
2483
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2014-05-14 00:17:01 -0700
|
|
2484
|
+
|
|
2485
|
+
|
|
2486
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2014-05-14 00:17:01 -0700
|
|
2487
|
+
|
|
2488
|
+
|
|
2489
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2014-05-14 00:17:01 -0700
|
|
2490
|
+
|
|
2491
|
+
|
|
2492
|
+
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2014-05-14 00:17:01 -0700
|
|
2493
|
+
|
|
2494
|
+
|
|
2495
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-14 00:17:01 -0700
|
|
2496
|
+
|
|
2497
|
+
|
|
2498
|
+
Started GET "/images/new" for 127.0.0.1 at 2014-05-14 00:17:04 -0700
|
|
2499
|
+
Processing by ImagesController#new as HTML
|
|
2500
|
+
Rendered images/_form.html.haml (1.8ms)
|
|
2501
|
+
Rendered images/new.html.haml within layouts/application (2.5ms)
|
|
2502
|
+
Completed 200 OK in 9ms (Views: 9.1ms | ActiveRecord: 0.0ms)
|
|
2503
|
+
|
|
2504
|
+
|
|
2505
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-14 00:17:04 -0700
|
|
2506
|
+
|
|
2507
|
+
|
|
2508
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-14 00:17:04 -0700
|
|
2509
|
+
|
|
2510
|
+
|
|
2511
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2014-05-14 00:17:04 -0700
|
|
2512
|
+
|
|
2513
|
+
|
|
2514
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-14 00:17:04 -0700
|
|
2515
|
+
|
|
2516
|
+
|
|
2517
|
+
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2014-05-14 00:17:04 -0700
|
|
2518
|
+
|
|
2519
|
+
|
|
2520
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2014-05-14 00:17:04 -0700
|
|
2521
|
+
|
|
2522
|
+
|
|
2523
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2014-05-14 00:17:04 -0700
|
|
2524
|
+
|
|
2525
|
+
|
|
2526
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2014-05-14 00:17:04 -0700
|
|
2527
|
+
|
|
2528
|
+
|
|
2529
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2014-05-14 00:17:04 -0700
|
|
2530
|
+
|
|
2531
|
+
|
|
2532
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2014-05-14 00:17:04 -0700
|
|
2533
|
+
|
|
2534
|
+
|
|
2535
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2014-05-14 00:17:04 -0700
|
|
2536
|
+
|
|
2537
|
+
|
|
2538
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2014-05-14 00:17:04 -0700
|
|
2539
|
+
|
|
2540
|
+
|
|
2541
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2014-05-14 00:17:04 -0700
|
|
2542
|
+
|
|
2543
|
+
|
|
2544
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2014-05-14 00:17:04 -0700
|
|
2545
|
+
|
|
2546
|
+
|
|
2547
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2014-05-14 00:17:04 -0700
|
|
2548
|
+
|
|
2549
|
+
|
|
2550
|
+
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2014-05-14 00:17:04 -0700
|
|
2551
|
+
|
|
2552
|
+
|
|
2553
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-14 00:17:04 -0700
|
|
2554
|
+
|
|
2555
|
+
|
|
2556
|
+
Started GET "/images/new" for 127.0.0.1 at 2014-05-14 00:17:22 -0700
|
|
2557
|
+
Processing by ImagesController#new as HTML
|
|
2558
|
+
Rendered images/_form.html.haml (3.2ms)
|
|
2559
|
+
Rendered images/new.html.haml within layouts/application (3.7ms)
|
|
2560
|
+
Completed 200 OK in 10ms (Views: 9.8ms | ActiveRecord: 0.0ms)
|
|
2561
|
+
|
|
2562
|
+
|
|
2563
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-14 00:17:22 -0700
|
|
2564
|
+
|
|
2565
|
+
|
|
2566
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-14 00:17:22 -0700
|
|
2567
|
+
|
|
2568
|
+
|
|
2569
|
+
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2014-05-14 00:17:22 -0700
|
|
2570
|
+
|
|
2571
|
+
|
|
2572
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2014-05-14 00:17:22 -0700
|
|
2573
|
+
|
|
2574
|
+
|
|
2575
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2014-05-14 00:17:22 -0700
|
|
2576
|
+
|
|
2577
|
+
|
|
2578
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-14 00:17:22 -0700
|
|
2579
|
+
|
|
2580
|
+
|
|
2581
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2014-05-14 00:17:22 -0700
|
|
2582
|
+
|
|
2583
|
+
|
|
2584
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2014-05-14 00:17:22 -0700
|
|
2585
|
+
|
|
2586
|
+
|
|
2587
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2014-05-14 00:17:22 -0700
|
|
2588
|
+
|
|
2589
|
+
|
|
2590
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2014-05-14 00:17:22 -0700
|
|
2591
|
+
|
|
2592
|
+
|
|
2593
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2014-05-14 00:17:22 -0700
|
|
2594
|
+
|
|
2595
|
+
|
|
2596
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2014-05-14 00:17:22 -0700
|
|
2597
|
+
|
|
2598
|
+
|
|
2599
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2014-05-14 00:17:22 -0700
|
|
2600
|
+
|
|
2601
|
+
|
|
2602
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2014-05-14 00:17:22 -0700
|
|
2603
|
+
|
|
2604
|
+
|
|
2605
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2014-05-14 00:17:22 -0700
|
|
2606
|
+
|
|
2607
|
+
|
|
2608
|
+
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2014-05-14 00:17:22 -0700
|
|
2609
|
+
|
|
2610
|
+
|
|
2611
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-14 00:17:22 -0700
|
|
2612
|
+
|
|
2613
|
+
|
|
2614
|
+
Started GET "/images/new" for 127.0.0.1 at 2014-05-14 00:18:32 -0700
|
|
2615
|
+
Processing by ImagesController#new as HTML
|
|
2616
|
+
Rendered images/_form.html.haml (3.1ms)
|
|
2617
|
+
Rendered images/new.html.haml within layouts/application (3.6ms)
|
|
2618
|
+
Completed 200 OK in 9ms (Views: 9.2ms | ActiveRecord: 0.0ms)
|
|
2619
|
+
|
|
2620
|
+
|
|
2621
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:32 -0700
|
|
2622
|
+
|
|
2623
|
+
|
|
2624
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-14 00:18:32 -0700
|
|
2625
|
+
|
|
2626
|
+
|
|
2627
|
+
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:32 -0700
|
|
2628
|
+
|
|
2629
|
+
|
|
2630
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:32 -0700
|
|
2631
|
+
|
|
2632
|
+
|
|
2633
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:32 -0700
|
|
2634
|
+
|
|
2635
|
+
|
|
2636
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:32 -0700
|
|
2637
|
+
|
|
2638
|
+
|
|
2639
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:32 -0700
|
|
2640
|
+
|
|
2641
|
+
|
|
2642
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:32 -0700
|
|
2643
|
+
|
|
2644
|
+
|
|
2645
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:32 -0700
|
|
2646
|
+
|
|
2647
|
+
|
|
2648
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:32 -0700
|
|
2649
|
+
|
|
2650
|
+
|
|
2651
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:32 -0700
|
|
2652
|
+
|
|
2653
|
+
|
|
2654
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:32 -0700
|
|
2655
|
+
|
|
2656
|
+
|
|
2657
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:32 -0700
|
|
2658
|
+
|
|
2659
|
+
|
|
2660
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:32 -0700
|
|
2661
|
+
|
|
2662
|
+
|
|
2663
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:32 -0700
|
|
2664
|
+
|
|
2665
|
+
|
|
2666
|
+
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:32 -0700
|
|
2667
|
+
|
|
2668
|
+
|
|
2669
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:32 -0700
|
|
2670
|
+
|
|
2671
|
+
|
|
2672
|
+
Started GET "/images/new" for 127.0.0.1 at 2014-05-14 00:18:46 -0700
|
|
2673
|
+
Processing by ImagesController#new as HTML
|
|
2674
|
+
Rendered images/_form.html.haml (3.0ms)
|
|
2675
|
+
Rendered images/new.html.haml within layouts/application (3.5ms)
|
|
2676
|
+
Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.0ms)
|
|
2677
|
+
|
|
2678
|
+
|
|
2679
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-14 00:18:46 -0700
|
|
2680
|
+
|
|
2681
|
+
|
|
2682
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:46 -0700
|
|
2683
|
+
|
|
2684
|
+
|
|
2685
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:46 -0700
|
|
2686
|
+
|
|
2687
|
+
|
|
2688
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:46 -0700
|
|
2689
|
+
|
|
2690
|
+
|
|
2691
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:46 -0700
|
|
2692
|
+
|
|
2693
|
+
|
|
2694
|
+
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:46 -0700
|
|
2695
|
+
|
|
2696
|
+
|
|
2697
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:46 -0700
|
|
2698
|
+
|
|
2699
|
+
|
|
2700
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:46 -0700
|
|
2701
|
+
|
|
2702
|
+
|
|
2703
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:46 -0700
|
|
2704
|
+
|
|
2705
|
+
|
|
2706
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:46 -0700
|
|
2707
|
+
|
|
2708
|
+
|
|
2709
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:46 -0700
|
|
2710
|
+
|
|
2711
|
+
|
|
2712
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:46 -0700
|
|
2713
|
+
|
|
2714
|
+
|
|
2715
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:46 -0700
|
|
2716
|
+
|
|
2717
|
+
|
|
2718
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:46 -0700
|
|
2719
|
+
|
|
2720
|
+
|
|
2721
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:46 -0700
|
|
2722
|
+
|
|
2723
|
+
|
|
2724
|
+
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:46 -0700
|
|
2725
|
+
|
|
2726
|
+
|
|
2727
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:46 -0700
|
|
2728
|
+
|
|
2729
|
+
|
|
2730
|
+
Started GET "/images" for 127.0.0.1 at 2014-05-14 00:18:47 -0700
|
|
2731
|
+
Processing by ImagesController#index as HTML
|
|
2732
|
+
[1m[35mImage Load (0.1ms)[0m SELECT "images".* FROM "images"
|
|
2733
|
+
Rendered images/index.html.haml within layouts/application (0.6ms)
|
|
2734
|
+
Completed 200 OK in 7ms (Views: 6.3ms | ActiveRecord: 0.1ms)
|
|
2735
|
+
|
|
2736
|
+
|
|
2737
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-14 00:18:47 -0700
|
|
2738
|
+
|
|
2739
|
+
|
|
2740
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:47 -0700
|
|
2741
|
+
|
|
2742
|
+
|
|
2743
|
+
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:47 -0700
|
|
2744
|
+
|
|
2745
|
+
|
|
2746
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:47 -0700
|
|
2747
|
+
|
|
2748
|
+
|
|
2749
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:47 -0700
|
|
2750
|
+
|
|
2751
|
+
|
|
2752
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:47 -0700
|
|
2753
|
+
|
|
2754
|
+
|
|
2755
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:47 -0700
|
|
2756
|
+
|
|
2757
|
+
|
|
2758
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:47 -0700
|
|
2759
|
+
|
|
2760
|
+
|
|
2761
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:47 -0700
|
|
2762
|
+
|
|
2763
|
+
|
|
2764
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:47 -0700
|
|
2765
|
+
|
|
2766
|
+
|
|
2767
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:47 -0700
|
|
2768
|
+
|
|
2769
|
+
|
|
2770
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:47 -0700
|
|
2771
|
+
|
|
2772
|
+
|
|
2773
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:47 -0700
|
|
2774
|
+
|
|
2775
|
+
|
|
2776
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:47 -0700
|
|
2777
|
+
|
|
2778
|
+
|
|
2779
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:47 -0700
|
|
2780
|
+
|
|
2781
|
+
|
|
2782
|
+
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:47 -0700
|
|
2783
|
+
|
|
2784
|
+
|
|
2785
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:47 -0700
|
|
2786
|
+
|
|
2787
|
+
|
|
2788
|
+
Started GET "/images" for 127.0.0.1 at 2014-05-14 00:18:48 -0700
|
|
2789
|
+
Processing by ImagesController#index as HTML
|
|
2790
|
+
[1m[36mImage Load (0.1ms)[0m [1mSELECT "images".* FROM "images"[0m
|
|
2791
|
+
Rendered images/index.html.haml within layouts/application (0.7ms)
|
|
2792
|
+
Completed 200 OK in 7ms (Views: 6.9ms | ActiveRecord: 0.1ms)
|
|
2793
|
+
|
|
2794
|
+
|
|
2795
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-14 00:18:48 -0700
|
|
2796
|
+
|
|
2797
|
+
|
|
2798
|
+
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:48 -0700
|
|
2799
|
+
|
|
2800
|
+
|
|
2801
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:48 -0700
|
|
2802
|
+
|
|
2803
|
+
|
|
2804
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:48 -0700
|
|
2805
|
+
|
|
2806
|
+
|
|
2807
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:48 -0700
|
|
2808
|
+
|
|
2809
|
+
|
|
2810
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:48 -0700
|
|
2811
|
+
|
|
2812
|
+
|
|
2813
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:48 -0700
|
|
2814
|
+
|
|
2815
|
+
|
|
2816
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:48 -0700
|
|
2817
|
+
|
|
2818
|
+
|
|
2819
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:48 -0700
|
|
2820
|
+
|
|
2821
|
+
|
|
2822
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:48 -0700
|
|
2823
|
+
|
|
2824
|
+
|
|
2825
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:48 -0700
|
|
2826
|
+
|
|
2827
|
+
|
|
2828
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:48 -0700
|
|
2829
|
+
|
|
2830
|
+
|
|
2831
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:48 -0700
|
|
2832
|
+
|
|
2833
|
+
|
|
2834
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:48 -0700
|
|
2835
|
+
|
|
2836
|
+
|
|
2837
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:48 -0700
|
|
2838
|
+
|
|
2839
|
+
|
|
2840
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:48 -0700
|
|
2841
|
+
|
|
2842
|
+
|
|
2843
|
+
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:48 -0700
|
|
2844
|
+
|
|
2845
|
+
|
|
2846
|
+
Started GET "/images/new" for 127.0.0.1 at 2014-05-14 00:18:49 -0700
|
|
2847
|
+
Processing by ImagesController#new as HTML
|
|
2848
|
+
Rendered images/_form.html.haml (1.9ms)
|
|
2849
|
+
Rendered images/new.html.haml within layouts/application (2.5ms)
|
|
2850
|
+
Completed 200 OK in 10ms (Views: 10.1ms | ActiveRecord: 0.0ms)
|
|
2851
|
+
|
|
2852
|
+
|
|
2853
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-14 00:18:49 -0700
|
|
2854
|
+
|
|
2855
|
+
|
|
2856
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:49 -0700
|
|
2857
|
+
|
|
2858
|
+
|
|
2859
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:49 -0700
|
|
2860
|
+
|
|
2861
|
+
|
|
2862
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:49 -0700
|
|
2863
|
+
|
|
2864
|
+
|
|
2865
|
+
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:49 -0700
|
|
2866
|
+
|
|
2867
|
+
|
|
2868
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:49 -0700
|
|
2869
|
+
|
|
2870
|
+
|
|
2871
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:49 -0700
|
|
2872
|
+
|
|
2873
|
+
|
|
2874
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:49 -0700
|
|
2875
|
+
|
|
2876
|
+
|
|
2877
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:49 -0700
|
|
2878
|
+
|
|
2879
|
+
|
|
2880
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:49 -0700
|
|
2881
|
+
|
|
2882
|
+
|
|
2883
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:49 -0700
|
|
2884
|
+
|
|
2885
|
+
|
|
2886
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:49 -0700
|
|
2887
|
+
|
|
2888
|
+
|
|
2889
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:49 -0700
|
|
2890
|
+
|
|
2891
|
+
|
|
2892
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:49 -0700
|
|
2893
|
+
|
|
2894
|
+
|
|
2895
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:49 -0700
|
|
2896
|
+
|
|
2897
|
+
|
|
2898
|
+
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:49 -0700
|
|
2899
|
+
|
|
2900
|
+
|
|
2901
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:49 -0700
|
|
2902
|
+
|
|
2903
|
+
|
|
2904
|
+
Started GET "/images" for 127.0.0.1 at 2014-05-14 00:18:53 -0700
|
|
2905
|
+
Processing by ImagesController#index as HTML
|
|
2906
|
+
[1m[35mImage Load (0.1ms)[0m SELECT "images".* FROM "images"
|
|
2907
|
+
Rendered images/index.html.haml within layouts/application (0.7ms)
|
|
2908
|
+
Completed 200 OK in 7ms (Views: 6.5ms | ActiveRecord: 0.1ms)
|
|
2909
|
+
|
|
2910
|
+
|
|
2911
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-14 00:18:53 -0700
|
|
2912
|
+
|
|
2913
|
+
|
|
2914
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:53 -0700
|
|
2915
|
+
|
|
2916
|
+
|
|
2917
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:53 -0700
|
|
2918
|
+
|
|
2919
|
+
|
|
2920
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:53 -0700
|
|
2921
|
+
|
|
2922
|
+
|
|
2923
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:53 -0700
|
|
2924
|
+
|
|
2925
|
+
|
|
2926
|
+
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:53 -0700
|
|
2927
|
+
|
|
2928
|
+
|
|
2929
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:53 -0700
|
|
2930
|
+
|
|
2931
|
+
|
|
2932
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:53 -0700
|
|
2933
|
+
|
|
2934
|
+
|
|
2935
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:53 -0700
|
|
2936
|
+
|
|
2937
|
+
|
|
2938
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:53 -0700
|
|
2939
|
+
|
|
2940
|
+
|
|
2941
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:53 -0700
|
|
2942
|
+
|
|
2943
|
+
|
|
2944
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:53 -0700
|
|
2945
|
+
|
|
2946
|
+
|
|
2947
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:53 -0700
|
|
2948
|
+
|
|
2949
|
+
|
|
2950
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:53 -0700
|
|
2951
|
+
|
|
2952
|
+
|
|
2953
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:53 -0700
|
|
2954
|
+
|
|
2955
|
+
|
|
2956
|
+
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:53 -0700
|
|
2957
|
+
|
|
2958
|
+
|
|
2959
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:53 -0700
|
|
2960
|
+
|
|
2961
|
+
|
|
2962
|
+
Started GET "/audios" for 127.0.0.1 at 2014-05-14 00:18:54 -0700
|
|
2963
|
+
Processing by AudiosController#index as HTML
|
|
2964
|
+
[1m[36mAudio Load (0.1ms)[0m [1mSELECT "audios".* FROM "audios"[0m
|
|
2965
|
+
Rendered audios/index.html.haml within layouts/application (0.8ms)
|
|
2966
|
+
Completed 200 OK in 7ms (Views: 6.8ms | ActiveRecord: 0.1ms)
|
|
2967
|
+
|
|
2968
|
+
|
|
2969
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-14 00:18:54 -0700
|
|
2970
|
+
|
|
2971
|
+
|
|
2972
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:54 -0700
|
|
2973
|
+
|
|
2974
|
+
|
|
2975
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:54 -0700
|
|
2976
|
+
|
|
2977
|
+
|
|
2978
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:54 -0700
|
|
2979
|
+
|
|
2980
|
+
|
|
2981
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:54 -0700
|
|
2982
|
+
|
|
2983
|
+
|
|
2984
|
+
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:54 -0700
|
|
2985
|
+
|
|
2986
|
+
|
|
2987
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:54 -0700
|
|
2988
|
+
|
|
2989
|
+
|
|
2990
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:54 -0700
|
|
2991
|
+
|
|
2992
|
+
|
|
2993
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:54 -0700
|
|
2994
|
+
|
|
2995
|
+
|
|
2996
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:54 -0700
|
|
2997
|
+
|
|
2998
|
+
|
|
2999
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:54 -0700
|
|
3000
|
+
|
|
3001
|
+
|
|
3002
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:54 -0700
|
|
3003
|
+
|
|
3004
|
+
|
|
3005
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:54 -0700
|
|
3006
|
+
|
|
3007
|
+
|
|
3008
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:54 -0700
|
|
3009
|
+
|
|
3010
|
+
|
|
3011
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:54 -0700
|
|
3012
|
+
|
|
3013
|
+
|
|
3014
|
+
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:54 -0700
|
|
3015
|
+
|
|
3016
|
+
|
|
3017
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:54 -0700
|
|
3018
|
+
|
|
3019
|
+
|
|
3020
|
+
Started GET "/audios/new" for 127.0.0.1 at 2014-05-14 00:18:55 -0700
|
|
3021
|
+
Processing by AudiosController#new as HTML
|
|
3022
|
+
Rendered audios/_form.html.haml (3.9ms)
|
|
3023
|
+
Rendered audios/new.html.haml within layouts/application (4.5ms)
|
|
3024
|
+
Completed 200 OK in 11ms (Views: 10.7ms | ActiveRecord: 0.0ms)
|
|
3025
|
+
|
|
3026
|
+
|
|
3027
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-14 00:18:55 -0700
|
|
3028
|
+
|
|
3029
|
+
|
|
3030
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:55 -0700
|
|
3031
|
+
|
|
3032
|
+
|
|
3033
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:55 -0700
|
|
3034
|
+
|
|
3035
|
+
|
|
3036
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:55 -0700
|
|
3037
|
+
|
|
3038
|
+
|
|
3039
|
+
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:55 -0700
|
|
3040
|
+
|
|
3041
|
+
|
|
3042
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:55 -0700
|
|
3043
|
+
|
|
3044
|
+
|
|
3045
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:55 -0700
|
|
3046
|
+
|
|
3047
|
+
|
|
3048
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:55 -0700
|
|
3049
|
+
|
|
3050
|
+
|
|
3051
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:55 -0700
|
|
3052
|
+
|
|
3053
|
+
|
|
3054
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:55 -0700
|
|
3055
|
+
|
|
3056
|
+
|
|
3057
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:55 -0700
|
|
3058
|
+
|
|
3059
|
+
|
|
3060
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:55 -0700
|
|
3061
|
+
|
|
3062
|
+
|
|
3063
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:55 -0700
|
|
3064
|
+
|
|
3065
|
+
|
|
3066
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:55 -0700
|
|
3067
|
+
|
|
3068
|
+
|
|
3069
|
+
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:55 -0700
|
|
3070
|
+
|
|
3071
|
+
|
|
3072
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:55 -0700
|
|
3073
|
+
|
|
3074
|
+
|
|
3075
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:55 -0700
|
|
3076
|
+
|
|
3077
|
+
|
|
3078
|
+
Started POST "/audios" for 127.0.0.1 at 2014-05-14 00:18:56 -0700
|
|
3079
|
+
Processing by AudiosController#create as HTML
|
|
3080
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"0QzEKRCqGpAkw+LcC2l726k/V1PpWlKbiafoiusTU+0=", "audio"=>{"name"=>""}, "commit"=>"Submit"}
|
|
3081
|
+
WARNING: Can't mass-assign protected attributes for Audio: name
|
|
3082
|
+
app/controllers/audios_controller.rb:35:in `create'
|
|
3083
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
3084
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
3085
|
+
Rendered shared/_error.html.haml (0.2ms)
|
|
3086
|
+
Rendered shared/_error.html.haml (0.2ms)
|
|
3087
|
+
Rendered shared/_error.html.haml (0.1ms)
|
|
3088
|
+
Rendered audios/_form.html.haml (3.8ms)
|
|
3089
|
+
Rendered audios/new.html.haml within layouts/application (4.3ms)
|
|
3090
|
+
Completed 200 OK in 15ms (Views: 10.0ms | ActiveRecord: 0.1ms)
|
|
3091
|
+
|
|
3092
|
+
|
|
3093
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-14 00:18:56 -0700
|
|
3094
|
+
|
|
3095
|
+
|
|
3096
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:56 -0700
|
|
3097
|
+
|
|
3098
|
+
|
|
3099
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:56 -0700
|
|
3100
|
+
|
|
3101
|
+
|
|
3102
|
+
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:56 -0700
|
|
3103
|
+
|
|
3104
|
+
|
|
3105
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:56 -0700
|
|
3106
|
+
|
|
3107
|
+
|
|
3108
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:56 -0700
|
|
3109
|
+
|
|
3110
|
+
|
|
3111
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:56 -0700
|
|
3112
|
+
|
|
3113
|
+
|
|
3114
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:56 -0700
|
|
3115
|
+
|
|
3116
|
+
|
|
3117
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:56 -0700
|
|
3118
|
+
|
|
3119
|
+
|
|
3120
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:56 -0700
|
|
3121
|
+
|
|
3122
|
+
|
|
3123
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:56 -0700
|
|
3124
|
+
|
|
3125
|
+
|
|
3126
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:56 -0700
|
|
3127
|
+
|
|
3128
|
+
|
|
3129
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:56 -0700
|
|
3130
|
+
|
|
3131
|
+
|
|
3132
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:56 -0700
|
|
3133
|
+
|
|
3134
|
+
|
|
3135
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:56 -0700
|
|
3136
|
+
|
|
3137
|
+
|
|
3138
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:56 -0700
|
|
3139
|
+
|
|
3140
|
+
|
|
3141
|
+
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2014-05-14 00:18:56 -0700
|
|
3142
|
+
|
|
3143
|
+
|
|
3144
|
+
Started POST "/audios" for 127.0.0.1 at 2014-05-14 00:21:08 -0700
|
|
3145
|
+
Processing by AudiosController#create as HTML
|
|
3146
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"0QzEKRCqGpAkw+LcC2l726k/V1PpWlKbiafoiusTU+0=", "audio"=>{"name"=>""}, "commit"=>"Submit"}
|
|
3147
|
+
WARNING: Can't mass-assign protected attributes for Audio: name
|
|
3148
|
+
app/controllers/audios_controller.rb:35:in `create'
|
|
3149
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
3150
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
3151
|
+
Rendered shared/_error.html.haml (1.2ms)
|
|
3152
|
+
Rendered shared/_error.html.haml (0.1ms)
|
|
3153
|
+
Rendered shared/_error.html.haml (0.1ms)
|
|
3154
|
+
Rendered audios/_form.html.haml (4.8ms)
|
|
3155
|
+
Rendered audios/new.html.haml within layouts/application (5.3ms)
|
|
3156
|
+
Completed 200 OK in 16ms (Views: 11.0ms | ActiveRecord: 0.1ms)
|
|
3157
|
+
|
|
3158
|
+
|
|
3159
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-14 00:21:08 -0700
|
|
3160
|
+
|
|
3161
|
+
|
|
3162
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:08 -0700
|
|
3163
|
+
|
|
3164
|
+
|
|
3165
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:08 -0700
|
|
3166
|
+
|
|
3167
|
+
|
|
3168
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:08 -0700
|
|
3169
|
+
|
|
3170
|
+
|
|
3171
|
+
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:08 -0700
|
|
3172
|
+
|
|
3173
|
+
|
|
3174
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:08 -0700
|
|
3175
|
+
|
|
3176
|
+
|
|
3177
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:08 -0700
|
|
3178
|
+
|
|
3179
|
+
|
|
3180
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:08 -0700
|
|
3181
|
+
|
|
3182
|
+
|
|
3183
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:08 -0700
|
|
3184
|
+
|
|
3185
|
+
|
|
3186
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:08 -0700
|
|
3187
|
+
|
|
3188
|
+
|
|
3189
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:08 -0700
|
|
3190
|
+
|
|
3191
|
+
|
|
3192
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:08 -0700
|
|
3193
|
+
|
|
3194
|
+
|
|
3195
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:08 -0700
|
|
3196
|
+
|
|
3197
|
+
|
|
3198
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:08 -0700
|
|
3199
|
+
|
|
3200
|
+
|
|
3201
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:08 -0700
|
|
3202
|
+
|
|
3203
|
+
|
|
3204
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:08 -0700
|
|
3205
|
+
|
|
3206
|
+
|
|
3207
|
+
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:08 -0700
|
|
3208
|
+
|
|
3209
|
+
|
|
3210
|
+
Started GET "/audios/new" for 127.0.0.1 at 2014-05-14 00:21:17 -0700
|
|
3211
|
+
Processing by AudiosController#new as HTML
|
|
3212
|
+
Rendered audios/_form.html.haml (1.9ms)
|
|
3213
|
+
Rendered audios/new.html.haml within layouts/application (2.5ms)
|
|
3214
|
+
Completed 200 OK in 9ms (Views: 8.4ms | ActiveRecord: 0.0ms)
|
|
3215
|
+
|
|
3216
|
+
|
|
3217
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-14 00:21:17 -0700
|
|
3218
|
+
|
|
3219
|
+
|
|
3220
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:17 -0700
|
|
3221
|
+
|
|
3222
|
+
|
|
3223
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:17 -0700
|
|
3224
|
+
|
|
3225
|
+
|
|
3226
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:17 -0700
|
|
3227
|
+
|
|
3228
|
+
|
|
3229
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:17 -0700
|
|
3230
|
+
|
|
3231
|
+
|
|
3232
|
+
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:17 -0700
|
|
3233
|
+
|
|
3234
|
+
|
|
3235
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:17 -0700
|
|
3236
|
+
|
|
3237
|
+
|
|
3238
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:17 -0700
|
|
3239
|
+
|
|
3240
|
+
|
|
3241
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:17 -0700
|
|
3242
|
+
|
|
3243
|
+
|
|
3244
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:17 -0700
|
|
3245
|
+
|
|
3246
|
+
|
|
3247
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:17 -0700
|
|
3248
|
+
|
|
3249
|
+
|
|
3250
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:17 -0700
|
|
3251
|
+
|
|
3252
|
+
|
|
3253
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:17 -0700
|
|
3254
|
+
|
|
3255
|
+
|
|
3256
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:17 -0700
|
|
3257
|
+
|
|
3258
|
+
|
|
3259
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:17 -0700
|
|
3260
|
+
|
|
3261
|
+
|
|
3262
|
+
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:17 -0700
|
|
3263
|
+
|
|
3264
|
+
|
|
3265
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:17 -0700
|
|
3266
|
+
|
|
3267
|
+
|
|
3268
|
+
Started GET "/audios" for 127.0.0.1 at 2014-05-14 00:21:18 -0700
|
|
3269
|
+
Processing by AudiosController#index as HTML
|
|
3270
|
+
[1m[35mAudio Load (0.1ms)[0m SELECT "audios".* FROM "audios"
|
|
3271
|
+
Rendered audios/index.html.haml within layouts/application (0.7ms)
|
|
3272
|
+
Completed 200 OK in 7ms (Views: 6.7ms | ActiveRecord: 0.1ms)
|
|
3273
|
+
|
|
3274
|
+
|
|
3275
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-14 00:21:18 -0700
|
|
3276
|
+
|
|
3277
|
+
|
|
3278
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:18 -0700
|
|
3279
|
+
|
|
3280
|
+
|
|
3281
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:18 -0700
|
|
3282
|
+
|
|
3283
|
+
|
|
3284
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:18 -0700
|
|
3285
|
+
|
|
3286
|
+
|
|
3287
|
+
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:18 -0700
|
|
3288
|
+
|
|
3289
|
+
|
|
3290
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:18 -0700
|
|
3291
|
+
|
|
3292
|
+
|
|
3293
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:18 -0700
|
|
3294
|
+
|
|
3295
|
+
|
|
3296
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:18 -0700
|
|
3297
|
+
|
|
3298
|
+
|
|
3299
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:18 -0700
|
|
3300
|
+
|
|
3301
|
+
|
|
3302
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:18 -0700
|
|
3303
|
+
|
|
3304
|
+
|
|
3305
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:18 -0700
|
|
3306
|
+
|
|
3307
|
+
|
|
3308
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:18 -0700
|
|
3309
|
+
|
|
3310
|
+
|
|
3311
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:18 -0700
|
|
3312
|
+
|
|
3313
|
+
|
|
3314
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:18 -0700
|
|
3315
|
+
|
|
3316
|
+
|
|
3317
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:18 -0700
|
|
3318
|
+
|
|
3319
|
+
|
|
3320
|
+
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:18 -0700
|
|
3321
|
+
|
|
3322
|
+
|
|
3323
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:18 -0700
|
|
3324
|
+
|
|
3325
|
+
|
|
3326
|
+
Started GET "/images" for 127.0.0.1 at 2014-05-14 00:21:18 -0700
|
|
3327
|
+
Processing by ImagesController#index as HTML
|
|
3328
|
+
[1m[36mImage Load (0.1ms)[0m [1mSELECT "images".* FROM "images"[0m
|
|
3329
|
+
Rendered images/index.html.haml within layouts/application (0.7ms)
|
|
3330
|
+
Completed 200 OK in 7ms (Views: 6.6ms | ActiveRecord: 0.1ms)
|
|
3331
|
+
|
|
3332
|
+
|
|
3333
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-14 00:21:18 -0700
|
|
3334
|
+
|
|
3335
|
+
|
|
3336
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:18 -0700
|
|
3337
|
+
|
|
3338
|
+
|
|
3339
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:18 -0700
|
|
3340
|
+
|
|
3341
|
+
|
|
3342
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:18 -0700
|
|
3343
|
+
|
|
3344
|
+
|
|
3345
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:18 -0700
|
|
3346
|
+
|
|
3347
|
+
|
|
3348
|
+
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:18 -0700
|
|
3349
|
+
|
|
3350
|
+
|
|
3351
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:18 -0700
|
|
3352
|
+
|
|
3353
|
+
|
|
3354
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:18 -0700
|
|
3355
|
+
|
|
3356
|
+
|
|
3357
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:18 -0700
|
|
3358
|
+
|
|
3359
|
+
|
|
3360
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:18 -0700
|
|
3361
|
+
|
|
3362
|
+
|
|
3363
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:18 -0700
|
|
3364
|
+
|
|
3365
|
+
|
|
3366
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:18 -0700
|
|
3367
|
+
|
|
3368
|
+
|
|
3369
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:18 -0700
|
|
3370
|
+
|
|
3371
|
+
|
|
3372
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:18 -0700
|
|
3373
|
+
|
|
3374
|
+
|
|
3375
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:18 -0700
|
|
3376
|
+
|
|
3377
|
+
|
|
3378
|
+
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:18 -0700
|
|
3379
|
+
|
|
3380
|
+
|
|
3381
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:18 -0700
|
|
3382
|
+
|
|
3383
|
+
|
|
3384
|
+
Started GET "/audios" for 127.0.0.1 at 2014-05-14 00:21:19 -0700
|
|
3385
|
+
Processing by AudiosController#index as HTML
|
|
3386
|
+
[1m[35mAudio Load (0.1ms)[0m SELECT "audios".* FROM "audios"
|
|
3387
|
+
Rendered audios/index.html.haml within layouts/application (0.7ms)
|
|
3388
|
+
Completed 200 OK in 7ms (Views: 6.7ms | ActiveRecord: 0.1ms)
|
|
3389
|
+
|
|
3390
|
+
|
|
3391
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-14 00:21:19 -0700
|
|
3392
|
+
|
|
3393
|
+
|
|
3394
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:19 -0700
|
|
3395
|
+
|
|
3396
|
+
|
|
3397
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:19 -0700
|
|
3398
|
+
|
|
3399
|
+
|
|
3400
|
+
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:19 -0700
|
|
3401
|
+
|
|
3402
|
+
|
|
3403
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:19 -0700
|
|
3404
|
+
|
|
3405
|
+
|
|
3406
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:19 -0700
|
|
3407
|
+
|
|
3408
|
+
|
|
3409
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:19 -0700
|
|
3410
|
+
|
|
3411
|
+
|
|
3412
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:19 -0700
|
|
3413
|
+
|
|
3414
|
+
|
|
3415
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:19 -0700
|
|
3416
|
+
|
|
3417
|
+
|
|
3418
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:19 -0700
|
|
3419
|
+
|
|
3420
|
+
|
|
3421
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:19 -0700
|
|
3422
|
+
|
|
3423
|
+
|
|
3424
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:19 -0700
|
|
3425
|
+
|
|
3426
|
+
|
|
3427
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:19 -0700
|
|
3428
|
+
|
|
3429
|
+
|
|
3430
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:19 -0700
|
|
3431
|
+
|
|
3432
|
+
|
|
3433
|
+
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:19 -0700
|
|
3434
|
+
|
|
3435
|
+
|
|
3436
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:19 -0700
|
|
3437
|
+
|
|
3438
|
+
|
|
3439
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:19 -0700
|
|
3440
|
+
|
|
3441
|
+
|
|
3442
|
+
Started GET "/audios/new" for 127.0.0.1 at 2014-05-14 00:21:20 -0700
|
|
3443
|
+
Processing by AudiosController#new as HTML
|
|
3444
|
+
Rendered audios/_form.html.haml (1.8ms)
|
|
3445
|
+
Rendered audios/new.html.haml within layouts/application (2.3ms)
|
|
3446
|
+
Completed 200 OK in 8ms (Views: 7.9ms | ActiveRecord: 0.0ms)
|
|
3447
|
+
|
|
3448
|
+
|
|
3449
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-14 00:21:20 -0700
|
|
3450
|
+
|
|
3451
|
+
|
|
3452
|
+
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:20 -0700
|
|
3453
|
+
|
|
3454
|
+
|
|
3455
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:20 -0700
|
|
3456
|
+
|
|
3457
|
+
|
|
3458
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:20 -0700
|
|
3459
|
+
|
|
3460
|
+
|
|
3461
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:20 -0700
|
|
3462
|
+
|
|
3463
|
+
|
|
3464
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:20 -0700
|
|
3465
|
+
|
|
3466
|
+
|
|
3467
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:20 -0700
|
|
3468
|
+
|
|
3469
|
+
|
|
3470
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:20 -0700
|
|
3471
|
+
|
|
3472
|
+
|
|
3473
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:20 -0700
|
|
3474
|
+
|
|
3475
|
+
|
|
3476
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:20 -0700
|
|
3477
|
+
|
|
3478
|
+
|
|
3479
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:20 -0700
|
|
3480
|
+
|
|
3481
|
+
|
|
3482
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:20 -0700
|
|
3483
|
+
|
|
3484
|
+
|
|
3485
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:20 -0700
|
|
3486
|
+
|
|
3487
|
+
|
|
3488
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:20 -0700
|
|
3489
|
+
|
|
3490
|
+
|
|
3491
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:20 -0700
|
|
3492
|
+
|
|
3493
|
+
|
|
3494
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:20 -0700
|
|
3495
|
+
|
|
3496
|
+
|
|
3497
|
+
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:20 -0700
|
|
3498
|
+
|
|
3499
|
+
|
|
3500
|
+
Started GET "/audios" for 127.0.0.1 at 2014-05-14 00:21:21 -0700
|
|
3501
|
+
Processing by AudiosController#index as HTML
|
|
3502
|
+
[1m[36mAudio Load (0.1ms)[0m [1mSELECT "audios".* FROM "audios"[0m
|
|
3503
|
+
Rendered audios/index.html.haml within layouts/application (0.7ms)
|
|
3504
|
+
Completed 200 OK in 8ms (Views: 7.3ms | ActiveRecord: 0.1ms)
|
|
3505
|
+
|
|
3506
|
+
|
|
3507
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-14 00:21:21 -0700
|
|
3508
|
+
|
|
3509
|
+
|
|
3510
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:21 -0700
|
|
3511
|
+
|
|
3512
|
+
|
|
3513
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:21 -0700
|
|
3514
|
+
|
|
3515
|
+
|
|
3516
|
+
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:21 -0700
|
|
3517
|
+
|
|
3518
|
+
|
|
3519
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:21 -0700
|
|
3520
|
+
|
|
3521
|
+
|
|
3522
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:21 -0700
|
|
3523
|
+
|
|
3524
|
+
|
|
3525
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:21 -0700
|
|
3526
|
+
|
|
3527
|
+
|
|
3528
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:21 -0700
|
|
3529
|
+
|
|
3530
|
+
|
|
3531
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:21 -0700
|
|
3532
|
+
|
|
3533
|
+
|
|
3534
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:21 -0700
|
|
3535
|
+
|
|
3536
|
+
|
|
3537
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:21 -0700
|
|
3538
|
+
|
|
3539
|
+
|
|
3540
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:21 -0700
|
|
3541
|
+
|
|
3542
|
+
|
|
3543
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:21 -0700
|
|
3544
|
+
|
|
3545
|
+
|
|
3546
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:21 -0700
|
|
3547
|
+
|
|
3548
|
+
|
|
3549
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:21 -0700
|
|
3550
|
+
|
|
3551
|
+
|
|
3552
|
+
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:21 -0700
|
|
3553
|
+
|
|
3554
|
+
|
|
3555
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:21 -0700
|
|
3556
|
+
|
|
3557
|
+
|
|
3558
|
+
Started GET "/" for 127.0.0.1 at 2014-05-14 00:21:23 -0700
|
|
3559
|
+
Processing by MainController#index as HTML
|
|
3560
|
+
Rendered main/index.html.haml within layouts/application (0.3ms)
|
|
3561
|
+
Completed 200 OK in 6ms (Views: 6.3ms | ActiveRecord: 0.0ms)
|
|
3562
|
+
|
|
3563
|
+
|
|
3564
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-14 00:21:23 -0700
|
|
3565
|
+
|
|
3566
|
+
|
|
3567
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:23 -0700
|
|
3568
|
+
|
|
3569
|
+
|
|
3570
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:23 -0700
|
|
3571
|
+
|
|
3572
|
+
|
|
3573
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:23 -0700
|
|
3574
|
+
|
|
3575
|
+
|
|
3576
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:23 -0700
|
|
3577
|
+
|
|
3578
|
+
|
|
3579
|
+
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:23 -0700
|
|
3580
|
+
|
|
3581
|
+
|
|
3582
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:23 -0700
|
|
3583
|
+
|
|
3584
|
+
|
|
3585
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:23 -0700
|
|
3586
|
+
|
|
3587
|
+
|
|
3588
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:23 -0700
|
|
3589
|
+
|
|
3590
|
+
|
|
3591
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:23 -0700
|
|
3592
|
+
|
|
3593
|
+
|
|
3594
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:23 -0700
|
|
3595
|
+
|
|
3596
|
+
|
|
3597
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:23 -0700
|
|
3598
|
+
|
|
3599
|
+
|
|
3600
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:23 -0700
|
|
3601
|
+
|
|
3602
|
+
|
|
3603
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:23 -0700
|
|
3604
|
+
|
|
3605
|
+
|
|
3606
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:23 -0700
|
|
3607
|
+
|
|
3608
|
+
|
|
3609
|
+
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:23 -0700
|
|
3610
|
+
|
|
3611
|
+
|
|
3612
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:23 -0700
|
|
3613
|
+
|
|
3614
|
+
|
|
3615
|
+
Started GET "/images" for 127.0.0.1 at 2014-05-14 00:21:24 -0700
|
|
3616
|
+
Processing by ImagesController#index as HTML
|
|
3617
|
+
[1m[35mImage Load (0.1ms)[0m SELECT "images".* FROM "images"
|
|
3618
|
+
Rendered images/index.html.haml within layouts/application (0.6ms)
|
|
3619
|
+
Completed 200 OK in 7ms (Views: 7.1ms | ActiveRecord: 0.1ms)
|
|
3620
|
+
|
|
3621
|
+
|
|
3622
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-14 00:21:24 -0700
|
|
3623
|
+
|
|
3624
|
+
|
|
3625
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:24 -0700
|
|
3626
|
+
|
|
3627
|
+
|
|
3628
|
+
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:24 -0700
|
|
3629
|
+
|
|
3630
|
+
|
|
3631
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:24 -0700
|
|
3632
|
+
|
|
3633
|
+
|
|
3634
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:24 -0700
|
|
3635
|
+
|
|
3636
|
+
|
|
3637
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:24 -0700
|
|
3638
|
+
|
|
3639
|
+
|
|
3640
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:24 -0700
|
|
3641
|
+
|
|
3642
|
+
|
|
3643
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:24 -0700
|
|
3644
|
+
|
|
3645
|
+
|
|
3646
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:24 -0700
|
|
3647
|
+
|
|
3648
|
+
|
|
3649
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:24 -0700
|
|
3650
|
+
|
|
3651
|
+
|
|
3652
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:24 -0700
|
|
3653
|
+
|
|
3654
|
+
|
|
3655
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:24 -0700
|
|
3656
|
+
|
|
3657
|
+
|
|
3658
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:24 -0700
|
|
3659
|
+
|
|
3660
|
+
|
|
3661
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:24 -0700
|
|
3662
|
+
|
|
3663
|
+
|
|
3664
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:24 -0700
|
|
3665
|
+
|
|
3666
|
+
|
|
3667
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:24 -0700
|
|
3668
|
+
|
|
3669
|
+
|
|
3670
|
+
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:24 -0700
|
|
3671
|
+
|
|
3672
|
+
|
|
3673
|
+
Started GET "/images/new" for 127.0.0.1 at 2014-05-14 00:21:25 -0700
|
|
3674
|
+
Processing by ImagesController#new as HTML
|
|
3675
|
+
Rendered images/_form.html.haml (2.0ms)
|
|
3676
|
+
Rendered images/new.html.haml within layouts/application (2.6ms)
|
|
3677
|
+
Completed 200 OK in 9ms (Views: 8.4ms | ActiveRecord: 0.0ms)
|
|
3678
|
+
|
|
3679
|
+
|
|
3680
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:25 -0700
|
|
3681
|
+
|
|
3682
|
+
|
|
3683
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:25 -0700
|
|
3684
|
+
|
|
3685
|
+
|
|
3686
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-14 00:21:25 -0700
|
|
3687
|
+
|
|
3688
|
+
|
|
3689
|
+
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:25 -0700
|
|
3690
|
+
|
|
3691
|
+
|
|
3692
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:25 -0700
|
|
3693
|
+
|
|
3694
|
+
|
|
3695
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:25 -0700
|
|
3696
|
+
|
|
3697
|
+
|
|
3698
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:25 -0700
|
|
3699
|
+
|
|
3700
|
+
|
|
3701
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:25 -0700
|
|
3702
|
+
|
|
3703
|
+
|
|
3704
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:25 -0700
|
|
3705
|
+
|
|
3706
|
+
|
|
3707
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:25 -0700
|
|
3708
|
+
|
|
3709
|
+
|
|
3710
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:25 -0700
|
|
3711
|
+
|
|
3712
|
+
|
|
3713
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:25 -0700
|
|
3714
|
+
|
|
3715
|
+
|
|
3716
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:25 -0700
|
|
3717
|
+
|
|
3718
|
+
|
|
3719
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:25 -0700
|
|
3720
|
+
|
|
3721
|
+
|
|
3722
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:25 -0700
|
|
3723
|
+
|
|
3724
|
+
|
|
3725
|
+
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:25 -0700
|
|
3726
|
+
|
|
3727
|
+
|
|
3728
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:25 -0700
|
|
3729
|
+
|
|
3730
|
+
|
|
3731
|
+
Started GET "/images" for 127.0.0.1 at 2014-05-14 00:21:26 -0700
|
|
3732
|
+
Processing by ImagesController#index as HTML
|
|
3733
|
+
[1m[36mImage Load (0.1ms)[0m [1mSELECT "images".* FROM "images"[0m
|
|
3734
|
+
Rendered images/index.html.haml within layouts/application (0.7ms)
|
|
3735
|
+
Completed 200 OK in 7ms (Views: 6.7ms | ActiveRecord: 0.1ms)
|
|
3736
|
+
|
|
3737
|
+
|
|
3738
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:26 -0700
|
|
3739
|
+
|
|
3740
|
+
|
|
3741
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-14 00:21:26 -0700
|
|
3742
|
+
|
|
3743
|
+
|
|
3744
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:26 -0700
|
|
3745
|
+
|
|
3746
|
+
|
|
3747
|
+
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:26 -0700
|
|
3748
|
+
|
|
3749
|
+
|
|
3750
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:26 -0700
|
|
3751
|
+
|
|
3752
|
+
|
|
3753
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:26 -0700
|
|
3754
|
+
|
|
3755
|
+
|
|
3756
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:26 -0700
|
|
3757
|
+
|
|
3758
|
+
|
|
3759
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:26 -0700
|
|
3760
|
+
|
|
3761
|
+
|
|
3762
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:26 -0700
|
|
3763
|
+
|
|
3764
|
+
|
|
3765
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:26 -0700
|
|
3766
|
+
|
|
3767
|
+
|
|
3768
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:26 -0700
|
|
3769
|
+
|
|
3770
|
+
|
|
3771
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:26 -0700
|
|
3772
|
+
|
|
3773
|
+
|
|
3774
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:26 -0700
|
|
3775
|
+
|
|
3776
|
+
|
|
3777
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:26 -0700
|
|
3778
|
+
|
|
3779
|
+
|
|
3780
|
+
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:26 -0700
|
|
3781
|
+
|
|
3782
|
+
|
|
3783
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:26 -0700
|
|
3784
|
+
|
|
3785
|
+
|
|
3786
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:26 -0700
|
|
3787
|
+
|
|
3788
|
+
|
|
3789
|
+
Started GET "/images/new" for 127.0.0.1 at 2014-05-14 00:21:27 -0700
|
|
3790
|
+
Processing by ImagesController#new as HTML
|
|
3791
|
+
Rendered images/_form.html.haml (3.1ms)
|
|
3792
|
+
Rendered images/new.html.haml within layouts/application (3.9ms)
|
|
3793
|
+
Completed 200 OK in 11ms (Views: 10.2ms | ActiveRecord: 0.0ms)
|
|
3794
|
+
|
|
3795
|
+
|
|
3796
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-14 00:21:27 -0700
|
|
3797
|
+
|
|
3798
|
+
|
|
3799
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:27 -0700
|
|
3800
|
+
|
|
3801
|
+
|
|
3802
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:27 -0700
|
|
3803
|
+
|
|
3804
|
+
|
|
3805
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:27 -0700
|
|
3806
|
+
|
|
3807
|
+
|
|
3808
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:27 -0700
|
|
3809
|
+
|
|
3810
|
+
|
|
3811
|
+
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:27 -0700
|
|
3812
|
+
|
|
3813
|
+
|
|
3814
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:27 -0700
|
|
3815
|
+
|
|
3816
|
+
|
|
3817
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:27 -0700
|
|
3818
|
+
|
|
3819
|
+
|
|
3820
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:27 -0700
|
|
3821
|
+
|
|
3822
|
+
|
|
3823
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:27 -0700
|
|
3824
|
+
|
|
3825
|
+
|
|
3826
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:27 -0700
|
|
3827
|
+
|
|
3828
|
+
|
|
3829
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:27 -0700
|
|
3830
|
+
|
|
3831
|
+
|
|
3832
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:27 -0700
|
|
3833
|
+
|
|
3834
|
+
|
|
3835
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:27 -0700
|
|
3836
|
+
|
|
3837
|
+
|
|
3838
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:27 -0700
|
|
3839
|
+
|
|
3840
|
+
|
|
3841
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:27 -0700
|
|
3842
|
+
|
|
3843
|
+
|
|
3844
|
+
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:27 -0700
|
|
3845
|
+
|
|
3846
|
+
|
|
3847
|
+
Started POST "/images" for 127.0.0.1 at 2014-05-14 00:21:28 -0700
|
|
3848
|
+
Processing by ImagesController#create as HTML
|
|
3849
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"0QzEKRCqGpAkw+LcC2l726k/V1PpWlKbiafoiusTU+0=", "image"=>{"name"=>""}, "commit"=>"Submit"}
|
|
3850
|
+
WARNING: Can't mass-assign protected attributes for Image: name
|
|
3851
|
+
app/controllers/images_controller.rb:35:in `create'
|
|
3852
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
3853
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
3854
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
3855
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
3856
|
+
Rendered shared/_error.html.haml (0.2ms)
|
|
3857
|
+
Rendered shared/_error.html.haml (0.1ms)
|
|
3858
|
+
Rendered shared/_error.html.haml (0.1ms)
|
|
3859
|
+
Rendered images/_form.html.haml (3.3ms)
|
|
3860
|
+
Rendered images/new.html.haml within layouts/application (3.9ms)
|
|
3861
|
+
Completed 200 OK in 16ms (Views: 9.5ms | ActiveRecord: 0.2ms)
|
|
3862
|
+
|
|
3863
|
+
|
|
3864
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-14 00:21:28 -0700
|
|
3865
|
+
|
|
3866
|
+
|
|
3867
|
+
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:28 -0700
|
|
3868
|
+
|
|
3869
|
+
|
|
3870
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:28 -0700
|
|
3871
|
+
|
|
3872
|
+
|
|
3873
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:28 -0700
|
|
3874
|
+
|
|
3875
|
+
|
|
3876
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:28 -0700
|
|
3877
|
+
|
|
3878
|
+
|
|
3879
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:28 -0700
|
|
3880
|
+
|
|
3881
|
+
|
|
3882
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:28 -0700
|
|
3883
|
+
|
|
3884
|
+
|
|
3885
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:28 -0700
|
|
3886
|
+
|
|
3887
|
+
|
|
3888
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:28 -0700
|
|
3889
|
+
|
|
3890
|
+
|
|
3891
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:28 -0700
|
|
3892
|
+
|
|
3893
|
+
|
|
3894
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:28 -0700
|
|
3895
|
+
|
|
3896
|
+
|
|
3897
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:28 -0700
|
|
3898
|
+
|
|
3899
|
+
|
|
3900
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:28 -0700
|
|
3901
|
+
|
|
3902
|
+
|
|
3903
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:28 -0700
|
|
3904
|
+
|
|
3905
|
+
|
|
3906
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:28 -0700
|
|
3907
|
+
|
|
3908
|
+
|
|
3909
|
+
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:28 -0700
|
|
3910
|
+
|
|
3911
|
+
|
|
3912
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:28 -0700
|
|
3913
|
+
|
|
3914
|
+
|
|
3915
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-14 00:21:31 -0700
|
|
3916
|
+
|
|
3917
|
+
|
|
3918
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:31 -0700
|
|
3919
|
+
|
|
3920
|
+
|
|
3921
|
+
Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:31 -0700
|
|
3922
|
+
|
|
3923
|
+
|
|
3924
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:31 -0700
|
|
3925
|
+
|
|
3926
|
+
|
|
3927
|
+
Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:31 -0700
|
|
3928
|
+
|
|
3929
|
+
|
|
3930
|
+
Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:31 -0700
|
|
3931
|
+
|
|
3932
|
+
|
|
3933
|
+
Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:31 -0700
|
|
3934
|
+
|
|
3935
|
+
|
|
3936
|
+
Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:31 -0700
|
|
3937
|
+
|
|
3938
|
+
|
|
3939
|
+
Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:31 -0700
|
|
3940
|
+
|
|
3941
|
+
|
|
3942
|
+
Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:31 -0700
|
|
3943
|
+
|
|
3944
|
+
|
|
3945
|
+
Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:31 -0700
|
|
3946
|
+
|
|
3947
|
+
|
|
3948
|
+
Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:31 -0700
|
|
3949
|
+
|
|
3950
|
+
|
|
3951
|
+
Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:31 -0700
|
|
3952
|
+
|
|
3953
|
+
|
|
3954
|
+
Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:31 -0700
|
|
3955
|
+
|
|
3956
|
+
|
|
3957
|
+
Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:31 -0700
|
|
3958
|
+
|
|
3959
|
+
|
|
3960
|
+
Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:31 -0700
|
|
3961
|
+
|
|
3962
|
+
|
|
3963
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-14 00:21:31 -0700
|