jquery-spinner-rails 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/LICENSE +20 -0
- data/README.rdoc +3 -0
- data/Rakefile +38 -0
- data/lib/jquery-spinner-rails.rb +4 -0
- data/lib/jquery-spinner-rails/version.rb +3 -0
- data/test/dummy/Rakefile +7 -0
- data/test/dummy/app/assets/javascripts/application.js +5 -0
- data/test/dummy/app/assets/stylesheets/application.css +5 -0
- data/test/dummy/app/controllers/application_controller.rb +3 -0
- data/test/dummy/app/controllers/main_controller.rb +4 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/helpers/main_helper.rb +2 -0
- data/test/dummy/app/views/layouts/application.html.haml +9 -0
- data/test/dummy/app/views/main/index.html.haml +1 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/config/application.rb +56 -0
- data/test/dummy/config/boot.rb +10 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +37 -0
- data/test/dummy/config/environments/production.rb +67 -0
- data/test/dummy/config/environments/test.rb +37 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/inflections.rb +15 -0
- data/test/dummy/config/initializers/mime_types.rb +5 -0
- data/test/dummy/config/initializers/secret_token.rb +7 -0
- data/test/dummy/config/initializers/session_store.rb +8 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +5 -0
- data/test/dummy/config/routes.rb +3 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/log/development.log +864 -0
- data/test/dummy/public/404.html +26 -0
- data/test/dummy/public/422.html +26 -0
- data/test/dummy/public/500.html +25 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/script/rails +6 -0
- data/test/dummy/test/functional/main_controller_test.rb +9 -0
- data/test/dummy/test/unit/helpers/main_helper_test.rb +4 -0
- data/test/dummy/tmp/cache/assets/C6A/6C0/sprockets%2F8b024295f25829c36f099888524d56fb +0 -0
- data/test/dummy/tmp/cache/assets/C7E/3F0/sprockets%2Fc64274d3a9350b166f82ba484137926a +0 -0
- data/test/dummy/tmp/cache/assets/CAA/FB0/sprockets%2F5f584ac17066cf0073b612256eea8075 +0 -0
- data/test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
- data/test/dummy/tmp/cache/assets/CE8/660/sprockets%2Fce661bc97240723743f74f7c2516ede5 +0 -0
- data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/test/dummy/tmp/cache/assets/D3E/340/sprockets%2F4bc6aa24a8fbb71308023e3676ee399f +0 -0
- data/test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/test/dummy/tmp/cache/assets/D72/D90/sprockets%2F7124584263fd4be4bdcfdc6345bc76d5 +0 -0
- data/test/dummy/tmp/cache/assets/D98/BF0/sprockets%2F694cacf10e703fc804f2db22a9e924eb +0 -0
- data/test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/test/dummy/tmp/cache/assets/E08/EA0/sprockets%2Fd50e3dcbe569d2c40c89e6f35ab4eee9 +0 -0
- data/test/dummy/tmp/pids/server.pid +1 -0
- data/test/jquery-spinner-rails_test.rb +7 -0
- data/test/test_helper.rb +15 -0
- data/vendor/assets/javascripts/jquery.spinner.js +72 -0
- data/vendor/assets/stylesheets/jquery.spinner.css +133 -0
- metadata +192 -0
| @@ -0,0 +1,14 @@ | |
| 1 | 
            +
            # Be sure to restart your server when you modify this file.
         | 
| 2 | 
            +
            #
         | 
| 3 | 
            +
            # This file contains settings for ActionController::ParamsWrapper which
         | 
| 4 | 
            +
            # is enabled by default.
         | 
| 5 | 
            +
             | 
| 6 | 
            +
            # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
         | 
| 7 | 
            +
            ActiveSupport.on_load(:action_controller) do
         | 
| 8 | 
            +
              wrap_parameters format: [:json]
         | 
| 9 | 
            +
            end
         | 
| 10 | 
            +
             | 
| 11 | 
            +
            # Disable root element in JSON by default.
         | 
| 12 | 
            +
            ActiveSupport.on_load(:active_record) do
         | 
| 13 | 
            +
              self.include_root_in_json = false
         | 
| 14 | 
            +
            end
         | 
| 
            File without changes
         | 
| @@ -0,0 +1,864 @@ | |
| 1 | 
            +
             | 
| 2 | 
            +
             | 
| 3 | 
            +
            Started GET "/" for 127.0.0.1 at 2012-04-28 01:43:09 -0700
         | 
| 4 | 
            +
            Processing by MainController#index as HTML
         | 
| 5 | 
            +
            Completed 500 Internal Server Error in 12ms
         | 
| 6 | 
            +
             | 
| 7 | 
            +
            ActionView::MissingTemplate (Missing template main/index, application/index with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in:
         | 
| 8 | 
            +
              * "/Users/kevin/Frameworks/jquery-spinner-rails/test/dummy/app/views"
         | 
| 9 | 
            +
            ):
         | 
| 10 | 
            +
              actionpack (3.2.3) lib/action_view/path_set.rb:58:in `find'
         | 
| 11 | 
            +
              actionpack (3.2.3) lib/action_view/lookup_context.rb:109:in `find'
         | 
| 12 | 
            +
              actionpack (3.2.3) lib/action_view/renderer/abstract_renderer.rb:3:in `find_template'
         | 
| 13 | 
            +
              actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:34:in `determine_template'
         | 
| 14 | 
            +
              actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:10:in `render'
         | 
| 15 | 
            +
              actionpack (3.2.3) lib/action_view/renderer/renderer.rb:36:in `render_template'
         | 
| 16 | 
            +
              actionpack (3.2.3) lib/action_view/renderer/renderer.rb:17:in `render'
         | 
| 17 | 
            +
              actionpack (3.2.3) lib/abstract_controller/rendering.rb:110:in `_render_template'
         | 
| 18 | 
            +
              actionpack (3.2.3) lib/action_controller/metal/streaming.rb:225:in `_render_template'
         | 
| 19 | 
            +
              actionpack (3.2.3) lib/abstract_controller/rendering.rb:103:in `render_to_body'
         | 
| 20 | 
            +
              actionpack (3.2.3) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
         | 
| 21 | 
            +
              actionpack (3.2.3) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
         | 
| 22 | 
            +
              actionpack (3.2.3) lib/abstract_controller/rendering.rb:88:in `render'
         | 
| 23 | 
            +
              actionpack (3.2.3) lib/action_controller/metal/rendering.rb:16:in `render'
         | 
| 24 | 
            +
              actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
         | 
| 25 | 
            +
              activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
         | 
| 26 | 
            +
              /Users/kevin/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
         | 
| 27 | 
            +
              activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `ms'
         | 
| 28 | 
            +
              actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
         | 
| 29 | 
            +
              actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
         | 
| 30 | 
            +
              activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
         | 
| 31 | 
            +
              actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:39:in `render'
         | 
| 32 | 
            +
              actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
         | 
| 33 | 
            +
              actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
         | 
| 34 | 
            +
              actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action'
         | 
| 35 | 
            +
              actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action'
         | 
| 36 | 
            +
              actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
         | 
| 37 | 
            +
              activesupport (3.2.3) lib/active_support/callbacks.rb:414:in `_run__2507624907117925800__process_action__1298028240418637238__callbacks'
         | 
| 38 | 
            +
              activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
         | 
| 39 | 
            +
              activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
         | 
| 40 | 
            +
              activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
         | 
| 41 | 
            +
              actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action'
         | 
| 42 | 
            +
              actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action'
         | 
| 43 | 
            +
              actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
         | 
| 44 | 
            +
              activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument'
         | 
| 45 | 
            +
              activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
         | 
| 46 | 
            +
              activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument'
         | 
| 47 | 
            +
              actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
         | 
| 48 | 
            +
              actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action'
         | 
| 49 | 
            +
              activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
         | 
| 50 | 
            +
              actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process'
         | 
| 51 | 
            +
              actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process'
         | 
| 52 | 
            +
              actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch'
         | 
| 53 | 
            +
              actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
         | 
| 54 | 
            +
              actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action'
         | 
| 55 | 
            +
              actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call'
         | 
| 56 | 
            +
              actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
         | 
| 57 | 
            +
              actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call'
         | 
| 58 | 
            +
              journey (1.0.3) lib/journey/router.rb:68:in `block in call'
         | 
| 59 | 
            +
              journey (1.0.3) lib/journey/router.rb:56:in `each'
         | 
| 60 | 
            +
              journey (1.0.3) lib/journey/router.rb:56:in `call'
         | 
| 61 | 
            +
              actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
         | 
| 62 | 
            +
              actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
         | 
| 63 | 
            +
              rack (1.4.1) lib/rack/etag.rb:23:in `call'
         | 
| 64 | 
            +
              rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
         | 
| 65 | 
            +
              actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call'
         | 
| 66 | 
            +
              actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
         | 
| 67 | 
            +
              actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call'
         | 
| 68 | 
            +
              rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
         | 
| 69 | 
            +
              rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
         | 
| 70 | 
            +
              actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call'
         | 
| 71 | 
            +
              activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call'
         | 
| 72 | 
            +
              activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call'
         | 
| 73 | 
            +
              actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
         | 
| 74 | 
            +
              activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__105100172863290469__call__531766487594177042__callbacks'
         | 
| 75 | 
            +
              activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
         | 
| 76 | 
            +
              activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
         | 
| 77 | 
            +
              activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
         | 
| 78 | 
            +
              actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
         | 
| 79 | 
            +
              actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call'
         | 
| 80 | 
            +
              actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
         | 
| 81 | 
            +
              actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
         | 
| 82 | 
            +
              actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
         | 
| 83 | 
            +
              railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
         | 
| 84 | 
            +
              railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
         | 
| 85 | 
            +
              actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
         | 
| 86 | 
            +
              rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
         | 
| 87 | 
            +
              rack (1.4.1) lib/rack/runtime.rb:17:in `call'
         | 
| 88 | 
            +
              activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
         | 
| 89 | 
            +
              rack (1.4.1) lib/rack/lock.rb:15:in `call'
         | 
| 90 | 
            +
              actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
         | 
| 91 | 
            +
              railties (3.2.3) lib/rails/engine.rb:479:in `call'
         | 
| 92 | 
            +
              railties (3.2.3) lib/rails/application.rb:220:in `call'
         | 
| 93 | 
            +
              rack (1.4.1) lib/rack/content_length.rb:14:in `call'
         | 
| 94 | 
            +
              railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
         | 
| 95 | 
            +
              rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
         | 
| 96 | 
            +
              /Users/kevin/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
         | 
| 97 | 
            +
              /Users/kevin/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
         | 
| 98 | 
            +
              /Users/kevin/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
         | 
| 99 | 
            +
             | 
| 100 | 
            +
             | 
| 101 | 
            +
              Rendered /Users/kevin/.rvm/gems/ruby-1.9.3-p125/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (2.3ms)
         | 
| 102 | 
            +
             | 
| 103 | 
            +
             | 
| 104 | 
            +
            Started GET "/" for 127.0.0.1 at 2012-04-28 01:45:33 -0700
         | 
| 105 | 
            +
            Processing by MainController#index as HTML
         | 
| 106 | 
            +
            Completed 500 Internal Server Error in 1ms
         | 
| 107 | 
            +
             | 
| 108 | 
            +
            ActionView::MissingTemplate (Missing template main/index, application/index with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in:
         | 
| 109 | 
            +
              * "/Users/kevin/Frameworks/jquery-spinner-rails/test/dummy/app/views"
         | 
| 110 | 
            +
            ):
         | 
| 111 | 
            +
              actionpack (3.2.3) lib/action_view/path_set.rb:58:in `find'
         | 
| 112 | 
            +
              actionpack (3.2.3) lib/action_view/lookup_context.rb:109:in `find'
         | 
| 113 | 
            +
              actionpack (3.2.3) lib/action_view/renderer/abstract_renderer.rb:3:in `find_template'
         | 
| 114 | 
            +
              actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:34:in `determine_template'
         | 
| 115 | 
            +
              actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:10:in `render'
         | 
| 116 | 
            +
              actionpack (3.2.3) lib/action_view/renderer/renderer.rb:36:in `render_template'
         | 
| 117 | 
            +
              actionpack (3.2.3) lib/action_view/renderer/renderer.rb:17:in `render'
         | 
| 118 | 
            +
              actionpack (3.2.3) lib/abstract_controller/rendering.rb:110:in `_render_template'
         | 
| 119 | 
            +
              actionpack (3.2.3) lib/action_controller/metal/streaming.rb:225:in `_render_template'
         | 
| 120 | 
            +
              actionpack (3.2.3) lib/abstract_controller/rendering.rb:103:in `render_to_body'
         | 
| 121 | 
            +
              actionpack (3.2.3) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
         | 
| 122 | 
            +
              actionpack (3.2.3) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
         | 
| 123 | 
            +
              actionpack (3.2.3) lib/abstract_controller/rendering.rb:88:in `render'
         | 
| 124 | 
            +
              actionpack (3.2.3) lib/action_controller/metal/rendering.rb:16:in `render'
         | 
| 125 | 
            +
              actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
         | 
| 126 | 
            +
              activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
         | 
| 127 | 
            +
              /Users/kevin/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
         | 
| 128 | 
            +
              activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `ms'
         | 
| 129 | 
            +
              actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
         | 
| 130 | 
            +
              actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
         | 
| 131 | 
            +
              activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
         | 
| 132 | 
            +
              actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:39:in `render'
         | 
| 133 | 
            +
              actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
         | 
| 134 | 
            +
              actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
         | 
| 135 | 
            +
              actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action'
         | 
| 136 | 
            +
              actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action'
         | 
| 137 | 
            +
              actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
         | 
| 138 | 
            +
              activesupport (3.2.3) lib/active_support/callbacks.rb:414:in `_run__2507624907117925800__process_action__1298028240418637238__callbacks'
         | 
| 139 | 
            +
              activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
         | 
| 140 | 
            +
              activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
         | 
| 141 | 
            +
              activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
         | 
| 142 | 
            +
              actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action'
         | 
| 143 | 
            +
              actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action'
         | 
| 144 | 
            +
              actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
         | 
| 145 | 
            +
              activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument'
         | 
| 146 | 
            +
              activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
         | 
| 147 | 
            +
              activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument'
         | 
| 148 | 
            +
              actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
         | 
| 149 | 
            +
              actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action'
         | 
| 150 | 
            +
              activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
         | 
| 151 | 
            +
              actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process'
         | 
| 152 | 
            +
              actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process'
         | 
| 153 | 
            +
              actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch'
         | 
| 154 | 
            +
              actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
         | 
| 155 | 
            +
              actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action'
         | 
| 156 | 
            +
              actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call'
         | 
| 157 | 
            +
              actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
         | 
| 158 | 
            +
              actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call'
         | 
| 159 | 
            +
              journey (1.0.3) lib/journey/router.rb:68:in `block in call'
         | 
| 160 | 
            +
              journey (1.0.3) lib/journey/router.rb:56:in `each'
         | 
| 161 | 
            +
              journey (1.0.3) lib/journey/router.rb:56:in `call'
         | 
| 162 | 
            +
              actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
         | 
| 163 | 
            +
              actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
         | 
| 164 | 
            +
              rack (1.4.1) lib/rack/etag.rb:23:in `call'
         | 
| 165 | 
            +
              rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
         | 
| 166 | 
            +
              actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call'
         | 
| 167 | 
            +
              actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
         | 
| 168 | 
            +
              actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call'
         | 
| 169 | 
            +
              rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
         | 
| 170 | 
            +
              rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
         | 
| 171 | 
            +
              actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call'
         | 
| 172 | 
            +
              activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call'
         | 
| 173 | 
            +
              activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call'
         | 
| 174 | 
            +
              actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
         | 
| 175 | 
            +
              activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__105100172863290469__call__531766487594177042__callbacks'
         | 
| 176 | 
            +
              activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
         | 
| 177 | 
            +
              activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
         | 
| 178 | 
            +
              activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
         | 
| 179 | 
            +
              actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
         | 
| 180 | 
            +
              actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call'
         | 
| 181 | 
            +
              actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
         | 
| 182 | 
            +
              actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
         | 
| 183 | 
            +
              actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
         | 
| 184 | 
            +
              railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
         | 
| 185 | 
            +
              railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
         | 
| 186 | 
            +
              actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
         | 
| 187 | 
            +
              rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
         | 
| 188 | 
            +
              rack (1.4.1) lib/rack/runtime.rb:17:in `call'
         | 
| 189 | 
            +
              activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
         | 
| 190 | 
            +
              rack (1.4.1) lib/rack/lock.rb:15:in `call'
         | 
| 191 | 
            +
              actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
         | 
| 192 | 
            +
              railties (3.2.3) lib/rails/engine.rb:479:in `call'
         | 
| 193 | 
            +
              railties (3.2.3) lib/rails/application.rb:220:in `call'
         | 
| 194 | 
            +
              rack (1.4.1) lib/rack/content_length.rb:14:in `call'
         | 
| 195 | 
            +
              railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
         | 
| 196 | 
            +
              rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
         | 
| 197 | 
            +
              /Users/kevin/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
         | 
| 198 | 
            +
              /Users/kevin/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
         | 
| 199 | 
            +
              /Users/kevin/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
         | 
| 200 | 
            +
             | 
| 201 | 
            +
             | 
| 202 | 
            +
              Rendered /Users/kevin/.rvm/gems/ruby-1.9.3-p125/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.5ms)
         | 
| 203 | 
            +
             | 
| 204 | 
            +
             | 
| 205 | 
            +
            Started GET "/" for 127.0.0.1 at 2012-04-28 01:45:34 -0700
         | 
| 206 | 
            +
            Processing by MainController#index as HTML
         | 
| 207 | 
            +
            Completed 500 Internal Server Error in 1ms
         | 
| 208 | 
            +
             | 
| 209 | 
            +
            ActionView::MissingTemplate (Missing template main/index, application/index with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in:
         | 
| 210 | 
            +
              * "/Users/kevin/Frameworks/jquery-spinner-rails/test/dummy/app/views"
         | 
| 211 | 
            +
            ):
         | 
| 212 | 
            +
              actionpack (3.2.3) lib/action_view/path_set.rb:58:in `find'
         | 
| 213 | 
            +
              actionpack (3.2.3) lib/action_view/lookup_context.rb:109:in `find'
         | 
| 214 | 
            +
              actionpack (3.2.3) lib/action_view/renderer/abstract_renderer.rb:3:in `find_template'
         | 
| 215 | 
            +
              actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:34:in `determine_template'
         | 
| 216 | 
            +
              actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:10:in `render'
         | 
| 217 | 
            +
              actionpack (3.2.3) lib/action_view/renderer/renderer.rb:36:in `render_template'
         | 
| 218 | 
            +
              actionpack (3.2.3) lib/action_view/renderer/renderer.rb:17:in `render'
         | 
| 219 | 
            +
              actionpack (3.2.3) lib/abstract_controller/rendering.rb:110:in `_render_template'
         | 
| 220 | 
            +
              actionpack (3.2.3) lib/action_controller/metal/streaming.rb:225:in `_render_template'
         | 
| 221 | 
            +
              actionpack (3.2.3) lib/abstract_controller/rendering.rb:103:in `render_to_body'
         | 
| 222 | 
            +
              actionpack (3.2.3) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
         | 
| 223 | 
            +
              actionpack (3.2.3) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
         | 
| 224 | 
            +
              actionpack (3.2.3) lib/abstract_controller/rendering.rb:88:in `render'
         | 
| 225 | 
            +
              actionpack (3.2.3) lib/action_controller/metal/rendering.rb:16:in `render'
         | 
| 226 | 
            +
              actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
         | 
| 227 | 
            +
              activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
         | 
| 228 | 
            +
              /Users/kevin/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
         | 
| 229 | 
            +
              activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `ms'
         | 
| 230 | 
            +
              actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
         | 
| 231 | 
            +
              actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
         | 
| 232 | 
            +
              activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
         | 
| 233 | 
            +
              actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:39:in `render'
         | 
| 234 | 
            +
              actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
         | 
| 235 | 
            +
              actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
         | 
| 236 | 
            +
              actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action'
         | 
| 237 | 
            +
              actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action'
         | 
| 238 | 
            +
              actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
         | 
| 239 | 
            +
              activesupport (3.2.3) lib/active_support/callbacks.rb:414:in `_run__2507624907117925800__process_action__1298028240418637238__callbacks'
         | 
| 240 | 
            +
              activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
         | 
| 241 | 
            +
              activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
         | 
| 242 | 
            +
              activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
         | 
| 243 | 
            +
              actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action'
         | 
| 244 | 
            +
              actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action'
         | 
| 245 | 
            +
              actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
         | 
| 246 | 
            +
              activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument'
         | 
| 247 | 
            +
              activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
         | 
| 248 | 
            +
              activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument'
         | 
| 249 | 
            +
              actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
         | 
| 250 | 
            +
              actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action'
         | 
| 251 | 
            +
              activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
         | 
| 252 | 
            +
              actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process'
         | 
| 253 | 
            +
              actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process'
         | 
| 254 | 
            +
              actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch'
         | 
| 255 | 
            +
              actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
         | 
| 256 | 
            +
              actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action'
         | 
| 257 | 
            +
              actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call'
         | 
| 258 | 
            +
              actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
         | 
| 259 | 
            +
              actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call'
         | 
| 260 | 
            +
              journey (1.0.3) lib/journey/router.rb:68:in `block in call'
         | 
| 261 | 
            +
              journey (1.0.3) lib/journey/router.rb:56:in `each'
         | 
| 262 | 
            +
              journey (1.0.3) lib/journey/router.rb:56:in `call'
         | 
| 263 | 
            +
              actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
         | 
| 264 | 
            +
              actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
         | 
| 265 | 
            +
              rack (1.4.1) lib/rack/etag.rb:23:in `call'
         | 
| 266 | 
            +
              rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
         | 
| 267 | 
            +
              actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call'
         | 
| 268 | 
            +
              actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
         | 
| 269 | 
            +
              actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call'
         | 
| 270 | 
            +
              rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
         | 
| 271 | 
            +
              rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
         | 
| 272 | 
            +
              actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call'
         | 
| 273 | 
            +
              activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call'
         | 
| 274 | 
            +
              activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call'
         | 
| 275 | 
            +
              actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
         | 
| 276 | 
            +
              activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__105100172863290469__call__531766487594177042__callbacks'
         | 
| 277 | 
            +
              activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
         | 
| 278 | 
            +
              activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
         | 
| 279 | 
            +
              activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
         | 
| 280 | 
            +
              actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
         | 
| 281 | 
            +
              actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call'
         | 
| 282 | 
            +
              actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
         | 
| 283 | 
            +
              actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
         | 
| 284 | 
            +
              actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
         | 
| 285 | 
            +
              railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
         | 
| 286 | 
            +
              railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
         | 
| 287 | 
            +
              actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
         | 
| 288 | 
            +
              rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
         | 
| 289 | 
            +
              rack (1.4.1) lib/rack/runtime.rb:17:in `call'
         | 
| 290 | 
            +
              activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
         | 
| 291 | 
            +
              rack (1.4.1) lib/rack/lock.rb:15:in `call'
         | 
| 292 | 
            +
              actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
         | 
| 293 | 
            +
              railties (3.2.3) lib/rails/engine.rb:479:in `call'
         | 
| 294 | 
            +
              railties (3.2.3) lib/rails/application.rb:220:in `call'
         | 
| 295 | 
            +
              rack (1.4.1) lib/rack/content_length.rb:14:in `call'
         | 
| 296 | 
            +
              railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
         | 
| 297 | 
            +
              rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
         | 
| 298 | 
            +
              /Users/kevin/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
         | 
| 299 | 
            +
              /Users/kevin/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
         | 
| 300 | 
            +
              /Users/kevin/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
         | 
| 301 | 
            +
             | 
| 302 | 
            +
             | 
| 303 | 
            +
              Rendered /Users/kevin/.rvm/gems/ruby-1.9.3-p125/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.5ms)
         | 
| 304 | 
            +
             | 
| 305 | 
            +
             | 
| 306 | 
            +
            Started GET "/" for 127.0.0.1 at 2012-04-28 01:45:48 -0700
         | 
| 307 | 
            +
            Processing by MainController#index as HTML
         | 
| 308 | 
            +
              Rendered main/index.html.haml within layouts/application (0.6ms)
         | 
| 309 | 
            +
            Completed 500 Internal Server Error in 8ms
         | 
| 310 | 
            +
             | 
| 311 | 
            +
            ActionView::Template::Error (Unbalanced brackets.):
         | 
| 312 | 
            +
                1: .spinner{ data: { spinner: true }
         | 
| 313 | 
            +
              app/views/main/index.html.haml:1
         | 
| 314 | 
            +
             | 
| 315 | 
            +
             | 
| 316 | 
            +
              Rendered /Users/kevin/.rvm/gems/ruby-1.9.3-p125/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.0ms)
         | 
| 317 | 
            +
              Rendered /Users/kevin/.rvm/gems/ruby-1.9.3-p125/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
         | 
| 318 | 
            +
              Rendered /Users/kevin/.rvm/gems/ruby-1.9.3-p125/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.4ms)
         | 
| 319 | 
            +
             | 
| 320 | 
            +
             | 
| 321 | 
            +
            Started GET "/" for 127.0.0.1 at 2012-04-28 01:45:49 -0700
         | 
| 322 | 
            +
            Processing by MainController#index as HTML
         | 
| 323 | 
            +
              Rendered main/index.html.haml within layouts/application (0.5ms)
         | 
| 324 | 
            +
            Completed 500 Internal Server Error in 2ms
         | 
| 325 | 
            +
             | 
| 326 | 
            +
            ActionView::Template::Error (Unbalanced brackets.):
         | 
| 327 | 
            +
                1: .spinner{ data: { spinner: true }
         | 
| 328 | 
            +
              app/views/main/index.html.haml:1
         | 
| 329 | 
            +
             | 
| 330 | 
            +
             | 
| 331 | 
            +
              Rendered /Users/kevin/.rvm/gems/ruby-1.9.3-p125/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.6ms)
         | 
| 332 | 
            +
              Rendered /Users/kevin/.rvm/gems/ruby-1.9.3-p125/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
         | 
| 333 | 
            +
              Rendered /Users/kevin/.rvm/gems/ruby-1.9.3-p125/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (10.8ms)
         | 
| 334 | 
            +
             | 
| 335 | 
            +
             | 
| 336 | 
            +
            Started GET "/" for 127.0.0.1 at 2012-04-28 01:46:03 -0700
         | 
| 337 | 
            +
            Processing by MainController#index as HTML
         | 
| 338 | 
            +
              Rendered main/index.html.haml within layouts/application (1.3ms)
         | 
| 339 | 
            +
            Completed 500 Internal Server Error in 10ms
         | 
| 340 | 
            +
             | 
| 341 | 
            +
            ActionView::Template::Error (couldn't find file 'jquery.spinner'
         | 
| 342 | 
            +
              (in /Users/kevin/Frameworks/jquery-spinner-rails/test/dummy/app/assets/stylesheets/application.css:2)):
         | 
| 343 | 
            +
                2: %html
         | 
| 344 | 
            +
                3:   %head
         | 
| 345 | 
            +
                4:     %title Dummy
         | 
| 346 | 
            +
                5:     = stylesheet_link_tag "application"
         | 
| 347 | 
            +
                6:     = javascript_include_tag "application"
         | 
| 348 | 
            +
                7:     = csrf_meta_tags
         | 
| 349 | 
            +
                8: %body
         | 
| 350 | 
            +
              app/views/layouts/application.html.haml:5:in `_app_views_layouts_application_html_haml__84184145818059820_70285898332160'
         | 
| 351 | 
            +
             | 
| 352 | 
            +
             | 
| 353 | 
            +
              Rendered /Users/kevin/.rvm/gems/ruby-1.9.3-p125/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.2ms)
         | 
| 354 | 
            +
              Rendered /Users/kevin/.rvm/gems/ruby-1.9.3-p125/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
         | 
| 355 | 
            +
              Rendered /Users/kevin/.rvm/gems/ruby-1.9.3-p125/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.3ms)
         | 
| 356 | 
            +
             | 
| 357 | 
            +
             | 
| 358 | 
            +
            Started GET "/" for 127.0.0.1 at 2012-04-28 01:46:31 -0700
         | 
| 359 | 
            +
            Processing by MainController#index as HTML
         | 
| 360 | 
            +
              Rendered main/index.html.haml within layouts/application (0.3ms)
         | 
| 361 | 
            +
            Completed 500 Internal Server Error in 8ms
         | 
| 362 | 
            +
             | 
| 363 | 
            +
            ActionView::Template::Error (couldn't find file 'jquery.spinner'
         | 
| 364 | 
            +
              (in /Users/kevin/Frameworks/jquery-spinner-rails/test/dummy/app/assets/stylesheets/application.css:2)):
         | 
| 365 | 
            +
                2: %html
         | 
| 366 | 
            +
                3:   %head
         | 
| 367 | 
            +
                4:     %title Dummy
         | 
| 368 | 
            +
                5:     = stylesheet_link_tag "application"
         | 
| 369 | 
            +
                6:     = javascript_include_tag "application"
         | 
| 370 | 
            +
                7:     = csrf_meta_tags
         | 
| 371 | 
            +
                8: %body
         | 
| 372 | 
            +
              app/views/layouts/application.html.haml:5:in `_app_views_layouts_application_html_haml__84184145818059820_70285898332160'
         | 
| 373 | 
            +
             | 
| 374 | 
            +
             | 
| 375 | 
            +
              Rendered /Users/kevin/.rvm/gems/ruby-1.9.3-p125/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.4ms)
         | 
| 376 | 
            +
              Rendered /Users/kevin/.rvm/gems/ruby-1.9.3-p125/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
         | 
| 377 | 
            +
              Rendered /Users/kevin/.rvm/gems/ruby-1.9.3-p125/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.6ms)
         | 
| 378 | 
            +
             | 
| 379 | 
            +
             | 
| 380 | 
            +
            Started GET "/" for 127.0.0.1 at 2012-04-28 01:46:47 -0700
         | 
| 381 | 
            +
            Processing by MainController#index as HTML
         | 
| 382 | 
            +
              Rendered main/index.html.haml within layouts/application (0.2ms)
         | 
| 383 | 
            +
            Completed 500 Internal Server Error in 7ms
         | 
| 384 | 
            +
             | 
| 385 | 
            +
            ActionView::Template::Error (couldn't find file 'jquery.spinner'
         | 
| 386 | 
            +
              (in /Users/kevin/Frameworks/jquery-spinner-rails/test/dummy/app/assets/stylesheets/application.css:2)):
         | 
| 387 | 
            +
                2: %html
         | 
| 388 | 
            +
                3:   %head
         | 
| 389 | 
            +
                4:     %title Dummy
         | 
| 390 | 
            +
                5:     = stylesheet_link_tag "application"
         | 
| 391 | 
            +
                6:     = javascript_include_tag "application"
         | 
| 392 | 
            +
                7:     = csrf_meta_tags
         | 
| 393 | 
            +
                8: %body
         | 
| 394 | 
            +
              app/views/layouts/application.html.haml:5:in `_app_views_layouts_application_html_haml__84184145818059820_70285898332160'
         | 
| 395 | 
            +
             | 
| 396 | 
            +
             | 
| 397 | 
            +
              Rendered /Users/kevin/.rvm/gems/ruby-1.9.3-p125/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.4ms)
         | 
| 398 | 
            +
              Rendered /Users/kevin/.rvm/gems/ruby-1.9.3-p125/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
         | 
| 399 | 
            +
              Rendered /Users/kevin/.rvm/gems/ruby-1.9.3-p125/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (10.1ms)
         | 
| 400 | 
            +
             | 
| 401 | 
            +
             | 
| 402 | 
            +
            Started GET "/" for 127.0.0.1 at 2012-04-28 01:46:52 -0700
         | 
| 403 | 
            +
            Processing by MainController#index as HTML
         | 
| 404 | 
            +
              Rendered main/index.html.haml within layouts/application (1.2ms)
         | 
| 405 | 
            +
            Completed 500 Internal Server Error in 18ms
         | 
| 406 | 
            +
             | 
| 407 | 
            +
            ActionView::Template::Error (couldn't find file 'jquery.spinner'
         | 
| 408 | 
            +
              (in /Users/kevin/Frameworks/jquery-spinner-rails/test/dummy/app/assets/stylesheets/application.css:2)):
         | 
| 409 | 
            +
                2: %html
         | 
| 410 | 
            +
                3:   %head
         | 
| 411 | 
            +
                4:     %title Dummy
         | 
| 412 | 
            +
                5:     = stylesheet_link_tag "application"
         | 
| 413 | 
            +
                6:     = javascript_include_tag "application"
         | 
| 414 | 
            +
                7:     = csrf_meta_tags
         | 
| 415 | 
            +
                8: %body
         | 
| 416 | 
            +
              app/views/layouts/application.html.haml:5:in `_app_views_layouts_application_html_haml___4079435814706994861_70155514962420'
         | 
| 417 | 
            +
             | 
| 418 | 
            +
             | 
| 419 | 
            +
              Rendered /Users/kevin/.rvm/gems/ruby-1.9.3-p125/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (25.8ms)
         | 
| 420 | 
            +
              Rendered /Users/kevin/.rvm/gems/ruby-1.9.3-p125/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
         | 
| 421 | 
            +
              Rendered /Users/kevin/.rvm/gems/ruby-1.9.3-p125/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (32.5ms)
         | 
| 422 | 
            +
             | 
| 423 | 
            +
             | 
| 424 | 
            +
            Started GET "/" for 127.0.0.1 at 2012-04-28 01:47:39 -0700
         | 
| 425 | 
            +
            Processing by MainController#index as HTML
         | 
| 426 | 
            +
              Rendered main/index.html.haml within layouts/application (0.2ms)
         | 
| 427 | 
            +
            Completed 500 Internal Server Error in 7ms
         | 
| 428 | 
            +
             | 
| 429 | 
            +
            ActionView::Template::Error (couldn't find file 'jquery.spinner'
         | 
| 430 | 
            +
              (in /Users/kevin/Frameworks/jquery-spinner-rails/test/dummy/app/assets/stylesheets/application.css:2)):
         | 
| 431 | 
            +
                2: %html
         | 
| 432 | 
            +
                3:   %head
         | 
| 433 | 
            +
                4:     %title Dummy
         | 
| 434 | 
            +
                5:     = stylesheet_link_tag "application"
         | 
| 435 | 
            +
                6:     = javascript_include_tag "application"
         | 
| 436 | 
            +
                7:     = csrf_meta_tags
         | 
| 437 | 
            +
                8: %body
         | 
| 438 | 
            +
              app/views/layouts/application.html.haml:5:in `_app_views_layouts_application_html_haml___4079435814706994861_70155514962420'
         | 
| 439 | 
            +
             | 
| 440 | 
            +
             | 
| 441 | 
            +
              Rendered /Users/kevin/.rvm/gems/ruby-1.9.3-p125/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.1ms)
         | 
| 442 | 
            +
              Rendered /Users/kevin/.rvm/gems/ruby-1.9.3-p125/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
         | 
| 443 | 
            +
              Rendered /Users/kevin/.rvm/gems/ruby-1.9.3-p125/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.4ms)
         | 
| 444 | 
            +
             | 
| 445 | 
            +
             | 
| 446 | 
            +
            Started GET "/" for 127.0.0.1 at 2012-04-28 01:47:45 -0700
         | 
| 447 | 
            +
            Processing by MainController#index as HTML
         | 
| 448 | 
            +
              Rendered main/index.html.haml within layouts/application (1.0ms)
         | 
| 449 | 
            +
            Completed 500 Internal Server Error in 14ms
         | 
| 450 | 
            +
             | 
| 451 | 
            +
            ActionView::Template::Error (couldn't find file 'jquery.spinner'
         | 
| 452 | 
            +
              (in /Users/kevin/Frameworks/jquery-spinner-rails/test/dummy/app/assets/stylesheets/application.css:2)):
         | 
| 453 | 
            +
                2: %html
         | 
| 454 | 
            +
                3:   %head
         | 
| 455 | 
            +
                4:     %title Dummy
         | 
| 456 | 
            +
                5:     = stylesheet_link_tag "application"
         | 
| 457 | 
            +
                6:     = javascript_include_tag "application"
         | 
| 458 | 
            +
                7:     = csrf_meta_tags
         | 
| 459 | 
            +
                8: %body
         | 
| 460 | 
            +
              app/views/layouts/application.html.haml:5:in `_app_views_layouts_application_html_haml__1609937308317618054_70216093600920'
         | 
| 461 | 
            +
             | 
| 462 | 
            +
             | 
| 463 | 
            +
              Rendered /Users/kevin/.rvm/gems/ruby-1.9.3-p125/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.2ms)
         | 
| 464 | 
            +
              Rendered /Users/kevin/.rvm/gems/ruby-1.9.3-p125/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
         | 
| 465 | 
            +
              Rendered /Users/kevin/.rvm/gems/ruby-1.9.3-p125/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.5ms)
         | 
| 466 | 
            +
             | 
| 467 | 
            +
             | 
| 468 | 
            +
            Started GET "/" for 127.0.0.1 at 2012-04-28 01:47:46 -0700
         | 
| 469 | 
            +
            Processing by MainController#index as HTML
         | 
| 470 | 
            +
              Rendered main/index.html.haml within layouts/application (0.2ms)
         | 
| 471 | 
            +
            Completed 500 Internal Server Error in 7ms
         | 
| 472 | 
            +
             | 
| 473 | 
            +
            ActionView::Template::Error (couldn't find file 'jquery.spinner'
         | 
| 474 | 
            +
              (in /Users/kevin/Frameworks/jquery-spinner-rails/test/dummy/app/assets/stylesheets/application.css:2)):
         | 
| 475 | 
            +
                2: %html
         | 
| 476 | 
            +
                3:   %head
         | 
| 477 | 
            +
                4:     %title Dummy
         | 
| 478 | 
            +
                5:     = stylesheet_link_tag "application"
         | 
| 479 | 
            +
                6:     = javascript_include_tag "application"
         | 
| 480 | 
            +
                7:     = csrf_meta_tags
         | 
| 481 | 
            +
                8: %body
         | 
| 482 | 
            +
              app/views/layouts/application.html.haml:5:in `_app_views_layouts_application_html_haml__1609937308317618054_70216093600920'
         | 
| 483 | 
            +
             | 
| 484 | 
            +
             | 
| 485 | 
            +
              Rendered /Users/kevin/.rvm/gems/ruby-1.9.3-p125/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.7ms)
         | 
| 486 | 
            +
              Rendered /Users/kevin/.rvm/gems/ruby-1.9.3-p125/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
         | 
| 487 | 
            +
              Rendered /Users/kevin/.rvm/gems/ruby-1.9.3-p125/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (10.3ms)
         | 
| 488 | 
            +
             | 
| 489 | 
            +
             | 
| 490 | 
            +
            Started GET "/" for 127.0.0.1 at 2012-04-28 01:48:50 -0700
         | 
| 491 | 
            +
            Processing by MainController#index as HTML
         | 
| 492 | 
            +
              Rendered main/index.html.haml within layouts/application (0.2ms)
         | 
| 493 | 
            +
            Completed 500 Internal Server Error in 6ms
         | 
| 494 | 
            +
             | 
| 495 | 
            +
            ActionView::Template::Error (couldn't find file 'jquery.spinner'
         | 
| 496 | 
            +
              (in /Users/kevin/Frameworks/jquery-spinner-rails/test/dummy/app/assets/stylesheets/application.css:2)):
         | 
| 497 | 
            +
                2: %html
         | 
| 498 | 
            +
                3:   %head
         | 
| 499 | 
            +
                4:     %title Dummy
         | 
| 500 | 
            +
                5:     = stylesheet_link_tag "application"
         | 
| 501 | 
            +
                6:     = javascript_include_tag "application"
         | 
| 502 | 
            +
                7:     = csrf_meta_tags
         | 
| 503 | 
            +
                8: %body
         | 
| 504 | 
            +
              app/views/layouts/application.html.haml:5:in `_app_views_layouts_application_html_haml__1609937308317618054_70216093600920'
         | 
| 505 | 
            +
             | 
| 506 | 
            +
             | 
| 507 | 
            +
              Rendered /Users/kevin/.rvm/gems/ruby-1.9.3-p125/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.1ms)
         | 
| 508 | 
            +
              Rendered /Users/kevin/.rvm/gems/ruby-1.9.3-p125/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
         | 
| 509 | 
            +
              Rendered /Users/kevin/.rvm/gems/ruby-1.9.3-p125/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.2ms)
         | 
| 510 | 
            +
             | 
| 511 | 
            +
             | 
| 512 | 
            +
            Started GET "/" for 127.0.0.1 at 2012-04-28 01:48:51 -0700
         | 
| 513 | 
            +
            Processing by MainController#index as HTML
         | 
| 514 | 
            +
              Rendered main/index.html.haml within layouts/application (0.2ms)
         | 
| 515 | 
            +
            Completed 500 Internal Server Error in 7ms
         | 
| 516 | 
            +
             | 
| 517 | 
            +
            ActionView::Template::Error (couldn't find file 'jquery.spinner'
         | 
| 518 | 
            +
              (in /Users/kevin/Frameworks/jquery-spinner-rails/test/dummy/app/assets/stylesheets/application.css:2)):
         | 
| 519 | 
            +
                2: %html
         | 
| 520 | 
            +
                3:   %head
         | 
| 521 | 
            +
                4:     %title Dummy
         | 
| 522 | 
            +
                5:     = stylesheet_link_tag "application"
         | 
| 523 | 
            +
                6:     = javascript_include_tag "application"
         | 
| 524 | 
            +
                7:     = csrf_meta_tags
         | 
| 525 | 
            +
                8: %body
         | 
| 526 | 
            +
              app/views/layouts/application.html.haml:5:in `_app_views_layouts_application_html_haml__1609937308317618054_70216093600920'
         | 
| 527 | 
            +
             | 
| 528 | 
            +
             | 
| 529 | 
            +
              Rendered /Users/kevin/.rvm/gems/ruby-1.9.3-p125/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.1ms)
         | 
| 530 | 
            +
              Rendered /Users/kevin/.rvm/gems/ruby-1.9.3-p125/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
         | 
| 531 | 
            +
              Rendered /Users/kevin/.rvm/gems/ruby-1.9.3-p125/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.4ms)
         | 
| 532 | 
            +
             | 
| 533 | 
            +
             | 
| 534 | 
            +
            Started GET "/" for 127.0.0.1 at 2012-04-28 01:49:28 -0700
         | 
| 535 | 
            +
            Processing by MainController#index as HTML
         | 
| 536 | 
            +
              Rendered main/index.html.haml within layouts/application (0.2ms)
         | 
| 537 | 
            +
            Completed 500 Internal Server Error in 7ms
         | 
| 538 | 
            +
             | 
| 539 | 
            +
            ActionView::Template::Error (couldn't find file 'jquery.spinner'
         | 
| 540 | 
            +
              (in /Users/kevin/Frameworks/jquery-spinner-rails/test/dummy/app/assets/stylesheets/application.css:2)):
         | 
| 541 | 
            +
                2: %html
         | 
| 542 | 
            +
                3:   %head
         | 
| 543 | 
            +
                4:     %title Dummy
         | 
| 544 | 
            +
                5:     = stylesheet_link_tag "application"
         | 
| 545 | 
            +
                6:     = javascript_include_tag "application"
         | 
| 546 | 
            +
                7:     = csrf_meta_tags
         | 
| 547 | 
            +
                8: %body
         | 
| 548 | 
            +
              app/views/layouts/application.html.haml:5:in `_app_views_layouts_application_html_haml__1609937308317618054_70216093600920'
         | 
| 549 | 
            +
             | 
| 550 | 
            +
             | 
| 551 | 
            +
              Rendered /Users/kevin/.rvm/gems/ruby-1.9.3-p125/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.4ms)
         | 
| 552 | 
            +
              Rendered /Users/kevin/.rvm/gems/ruby-1.9.3-p125/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
         | 
| 553 | 
            +
              Rendered /Users/kevin/.rvm/gems/ruby-1.9.3-p125/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.7ms)
         | 
| 554 | 
            +
             | 
| 555 | 
            +
             | 
| 556 | 
            +
            Started GET "/" for 127.0.0.1 at 2012-04-28 01:49:59 -0700
         | 
| 557 | 
            +
            Processing by MainController#index as HTML
         | 
| 558 | 
            +
              Rendered main/index.html.haml within layouts/application (0.2ms)
         | 
| 559 | 
            +
            Completed 500 Internal Server Error in 34ms
         | 
| 560 | 
            +
             | 
| 561 | 
            +
            ActionView::Template::Error (couldn't find file 'jquery.spinner'
         | 
| 562 | 
            +
              (in /Users/kevin/Frameworks/jquery-spinner-rails/test/dummy/app/assets/stylesheets/application.css:2)):
         | 
| 563 | 
            +
                2: %html
         | 
| 564 | 
            +
                3:   %head
         | 
| 565 | 
            +
                4:     %title Dummy
         | 
| 566 | 
            +
                5:     = stylesheet_link_tag "application"
         | 
| 567 | 
            +
                6:     = javascript_include_tag "application"
         | 
| 568 | 
            +
                7:     = csrf_meta_tags
         | 
| 569 | 
            +
                8: %body
         | 
| 570 | 
            +
              app/views/layouts/application.html.haml:5:in `_app_views_layouts_application_html_haml__1609937308317618054_70216093600920'
         | 
| 571 | 
            +
             | 
| 572 | 
            +
             | 
| 573 | 
            +
              Rendered /Users/kevin/.rvm/gems/ruby-1.9.3-p125/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.2ms)
         | 
| 574 | 
            +
              Rendered /Users/kevin/.rvm/gems/ruby-1.9.3-p125/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
         | 
| 575 | 
            +
              Rendered /Users/kevin/.rvm/gems/ruby-1.9.3-p125/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.2ms)
         | 
| 576 | 
            +
             | 
| 577 | 
            +
             | 
| 578 | 
            +
            Started GET "/" for 127.0.0.1 at 2012-04-28 01:50:00 -0700
         | 
| 579 | 
            +
            Processing by MainController#index as HTML
         | 
| 580 | 
            +
              Rendered main/index.html.haml within layouts/application (0.2ms)
         | 
| 581 | 
            +
            Completed 500 Internal Server Error in 7ms
         | 
| 582 | 
            +
             | 
| 583 | 
            +
            ActionView::Template::Error (couldn't find file 'jquery.spinner'
         | 
| 584 | 
            +
              (in /Users/kevin/Frameworks/jquery-spinner-rails/test/dummy/app/assets/stylesheets/application.css:2)):
         | 
| 585 | 
            +
                2: %html
         | 
| 586 | 
            +
                3:   %head
         | 
| 587 | 
            +
                4:     %title Dummy
         | 
| 588 | 
            +
                5:     = stylesheet_link_tag "application"
         | 
| 589 | 
            +
                6:     = javascript_include_tag "application"
         | 
| 590 | 
            +
                7:     = csrf_meta_tags
         | 
| 591 | 
            +
                8: %body
         | 
| 592 | 
            +
              app/views/layouts/application.html.haml:5:in `_app_views_layouts_application_html_haml__1609937308317618054_70216093600920'
         | 
| 593 | 
            +
             | 
| 594 | 
            +
             | 
| 595 | 
            +
              Rendered /Users/kevin/.rvm/gems/ruby-1.9.3-p125/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.2ms)
         | 
| 596 | 
            +
              Rendered /Users/kevin/.rvm/gems/ruby-1.9.3-p125/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
         | 
| 597 | 
            +
              Rendered /Users/kevin/.rvm/gems/ruby-1.9.3-p125/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.1ms)
         | 
| 598 | 
            +
             | 
| 599 | 
            +
             | 
| 600 | 
            +
            Started GET "/" for 127.0.0.1 at 2012-04-28 01:50:01 -0700
         | 
| 601 | 
            +
            Processing by MainController#index as HTML
         | 
| 602 | 
            +
              Rendered main/index.html.haml within layouts/application (0.2ms)
         | 
| 603 | 
            +
            Completed 500 Internal Server Error in 7ms
         | 
| 604 | 
            +
             | 
| 605 | 
            +
            ActionView::Template::Error (couldn't find file 'jquery.spinner'
         | 
| 606 | 
            +
              (in /Users/kevin/Frameworks/jquery-spinner-rails/test/dummy/app/assets/stylesheets/application.css:2)):
         | 
| 607 | 
            +
                2: %html
         | 
| 608 | 
            +
                3:   %head
         | 
| 609 | 
            +
                4:     %title Dummy
         | 
| 610 | 
            +
                5:     = stylesheet_link_tag "application"
         | 
| 611 | 
            +
                6:     = javascript_include_tag "application"
         | 
| 612 | 
            +
                7:     = csrf_meta_tags
         | 
| 613 | 
            +
                8: %body
         | 
| 614 | 
            +
              app/views/layouts/application.html.haml:5:in `_app_views_layouts_application_html_haml__1609937308317618054_70216093600920'
         | 
| 615 | 
            +
             | 
| 616 | 
            +
             | 
| 617 | 
            +
              Rendered /Users/kevin/.rvm/gems/ruby-1.9.3-p125/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.2ms)
         | 
| 618 | 
            +
              Rendered /Users/kevin/.rvm/gems/ruby-1.9.3-p125/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
         | 
| 619 | 
            +
              Rendered /Users/kevin/.rvm/gems/ruby-1.9.3-p125/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.2ms)
         | 
| 620 | 
            +
             | 
| 621 | 
            +
             | 
| 622 | 
            +
            Started GET "/" for 127.0.0.1 at 2012-04-28 01:50:07 -0700
         | 
| 623 | 
            +
            Processing by MainController#index as HTML
         | 
| 624 | 
            +
              Rendered main/index.html.haml within layouts/application (1.0ms)
         | 
| 625 | 
            +
            Completed 500 Internal Server Error in 15ms
         | 
| 626 | 
            +
             | 
| 627 | 
            +
            ActionView::Template::Error (couldn't find file 'jquery.spinner'
         | 
| 628 | 
            +
              (in /Users/kevin/Frameworks/jquery-spinner-rails/test/dummy/app/assets/stylesheets/application.css:2)):
         | 
| 629 | 
            +
                2: %html
         | 
| 630 | 
            +
                3:   %head
         | 
| 631 | 
            +
                4:     %title Dummy
         | 
| 632 | 
            +
                5:     = stylesheet_link_tag "application"
         | 
| 633 | 
            +
                6:     = javascript_include_tag "application"
         | 
| 634 | 
            +
                7:     = csrf_meta_tags
         | 
| 635 | 
            +
                8: %body
         | 
| 636 | 
            +
              app/views/layouts/application.html.haml:5:in `_app_views_layouts_application_html_haml___2437829461799136862_70166692048760'
         | 
| 637 | 
            +
             | 
| 638 | 
            +
             | 
| 639 | 
            +
              Rendered /Users/kevin/.rvm/gems/ruby-1.9.3-p125/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (24.8ms)
         | 
| 640 | 
            +
              Rendered /Users/kevin/.rvm/gems/ruby-1.9.3-p125/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
         | 
| 641 | 
            +
              Rendered /Users/kevin/.rvm/gems/ruby-1.9.3-p125/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (31.3ms)
         | 
| 642 | 
            +
             | 
| 643 | 
            +
             | 
| 644 | 
            +
            Started GET "/" for 127.0.0.1 at 2012-04-28 01:50:08 -0700
         | 
| 645 | 
            +
            Processing by MainController#index as HTML
         | 
| 646 | 
            +
              Rendered main/index.html.haml within layouts/application (0.2ms)
         | 
| 647 | 
            +
            Completed 500 Internal Server Error in 6ms
         | 
| 648 | 
            +
             | 
| 649 | 
            +
            ActionView::Template::Error (couldn't find file 'jquery.spinner'
         | 
| 650 | 
            +
              (in /Users/kevin/Frameworks/jquery-spinner-rails/test/dummy/app/assets/stylesheets/application.css:2)):
         | 
| 651 | 
            +
                2: %html
         | 
| 652 | 
            +
                3:   %head
         | 
| 653 | 
            +
                4:     %title Dummy
         | 
| 654 | 
            +
                5:     = stylesheet_link_tag "application"
         | 
| 655 | 
            +
                6:     = javascript_include_tag "application"
         | 
| 656 | 
            +
                7:     = csrf_meta_tags
         | 
| 657 | 
            +
                8: %body
         | 
| 658 | 
            +
              app/views/layouts/application.html.haml:5:in `_app_views_layouts_application_html_haml___2437829461799136862_70166692048760'
         | 
| 659 | 
            +
             | 
| 660 | 
            +
             | 
| 661 | 
            +
              Rendered /Users/kevin/.rvm/gems/ruby-1.9.3-p125/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.1ms)
         | 
| 662 | 
            +
              Rendered /Users/kevin/.rvm/gems/ruby-1.9.3-p125/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
         | 
| 663 | 
            +
              Rendered /Users/kevin/.rvm/gems/ruby-1.9.3-p125/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.9ms)
         | 
| 664 | 
            +
             | 
| 665 | 
            +
             | 
| 666 | 
            +
            Started GET "/" for 127.0.0.1 at 2012-04-28 01:50:10 -0700
         | 
| 667 | 
            +
            Processing by MainController#index as HTML
         | 
| 668 | 
            +
              Rendered main/index.html.haml within layouts/application (0.2ms)
         | 
| 669 | 
            +
            Completed 500 Internal Server Error in 8ms
         | 
| 670 | 
            +
             | 
| 671 | 
            +
            ActionView::Template::Error (couldn't find file 'jquery.spinner'
         | 
| 672 | 
            +
              (in /Users/kevin/Frameworks/jquery-spinner-rails/test/dummy/app/assets/stylesheets/application.css:2)):
         | 
| 673 | 
            +
                2: %html
         | 
| 674 | 
            +
                3:   %head
         | 
| 675 | 
            +
                4:     %title Dummy
         | 
| 676 | 
            +
                5:     = stylesheet_link_tag "application"
         | 
| 677 | 
            +
                6:     = javascript_include_tag "application"
         | 
| 678 | 
            +
                7:     = csrf_meta_tags
         | 
| 679 | 
            +
                8: %body
         | 
| 680 | 
            +
              app/views/layouts/application.html.haml:5:in `_app_views_layouts_application_html_haml___2437829461799136862_70166692048760'
         | 
| 681 | 
            +
             | 
| 682 | 
            +
             | 
| 683 | 
            +
              Rendered /Users/kevin/.rvm/gems/ruby-1.9.3-p125/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.7ms)
         | 
| 684 | 
            +
              Rendered /Users/kevin/.rvm/gems/ruby-1.9.3-p125/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
         | 
| 685 | 
            +
              Rendered /Users/kevin/.rvm/gems/ruby-1.9.3-p125/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (12.1ms)
         | 
| 686 | 
            +
             | 
| 687 | 
            +
             | 
| 688 | 
            +
            Started GET "/" for 127.0.0.1 at 2012-04-28 02:03:48 -0700
         | 
| 689 | 
            +
            Processing by MainController#index as HTML
         | 
| 690 | 
            +
              Rendered main/index.html.haml within layouts/application (2.8ms)
         | 
| 691 | 
            +
            Compiled jquery.spinner.css  (0ms)  (pid 95208)
         | 
| 692 | 
            +
            Compiled application.css  (133ms)  (pid 95208)
         | 
| 693 | 
            +
            Compiled jquery.js  (5ms)  (pid 95208)
         | 
| 694 | 
            +
            Compiled jquery_ujs.js  (1ms)  (pid 95208)
         | 
| 695 | 
            +
            Completed 500 Internal Server Error in 454ms
         | 
| 696 | 
            +
             | 
| 697 | 
            +
            ActionView::Template::Error (/Users/kevin/Frameworks/jquery-spinner-rails/vendor/assets/javascripts/jquery.spinner.js has a invalid UTF-8 byte sequence):
         | 
| 698 | 
            +
                3:   %head
         | 
| 699 | 
            +
                4:     %title Dummy
         | 
| 700 | 
            +
                5:     = stylesheet_link_tag "application"
         | 
| 701 | 
            +
                6:     = javascript_include_tag "application"
         | 
| 702 | 
            +
                7:     = csrf_meta_tags
         | 
| 703 | 
            +
                8: %body
         | 
| 704 | 
            +
                9:   = yield
         | 
| 705 | 
            +
              app/views/layouts/application.html.haml:6:in `_app_views_layouts_application_html_haml___1662121125194552719_70333128336360'
         | 
| 706 | 
            +
             | 
| 707 | 
            +
             | 
| 708 | 
            +
              Rendered /Users/kevin/.rvm/gems/ruby-1.9.3-p125/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (12.2ms)
         | 
| 709 | 
            +
              Rendered /Users/kevin/.rvm/gems/ruby-1.9.3-p125/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.8ms)
         | 
| 710 | 
            +
              Rendered /Users/kevin/.rvm/gems/ruby-1.9.3-p125/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (40.5ms)
         | 
| 711 | 
            +
             | 
| 712 | 
            +
             | 
| 713 | 
            +
            Started GET "/" for 127.0.0.1 at 2012-04-28 02:04:43 -0700
         | 
| 714 | 
            +
            Processing by MainController#index as HTML
         | 
| 715 | 
            +
              Rendered main/index.html.haml within layouts/application (0.5ms)
         | 
| 716 | 
            +
            Compiled jquery.spinner.js  (0ms)  (pid 95208)
         | 
| 717 | 
            +
            Compiled application.js  (67ms)  (pid 95208)
         | 
| 718 | 
            +
            Completed 200 OK in 227ms (Views: 226.9ms | ActiveRecord: 0.0ms)
         | 
| 719 | 
            +
             | 
| 720 | 
            +
             | 
| 721 | 
            +
            Started GET "/assets/jquery.spinner.css?body=1" for 127.0.0.1 at 2012-04-28 02:04:43 -0700
         | 
| 722 | 
            +
            Served asset /jquery.spinner.css - 200 OK (11ms)
         | 
| 723 | 
            +
             | 
| 724 | 
            +
             | 
| 725 | 
            +
            Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-04-28 02:04:43 -0700
         | 
| 726 | 
            +
            Served asset /application.css - 200 OK (9ms)
         | 
| 727 | 
            +
             | 
| 728 | 
            +
             | 
| 729 | 
            +
            Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-04-28 02:04:43 -0700
         | 
| 730 | 
            +
            Served asset /jquery_ujs.js - 200 OK (9ms)
         | 
| 731 | 
            +
             | 
| 732 | 
            +
             | 
| 733 | 
            +
            Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-04-28 02:04:43 -0700
         | 
| 734 | 
            +
            Served asset /application.js - 200 OK (18ms)
         | 
| 735 | 
            +
             | 
| 736 | 
            +
             | 
| 737 | 
            +
            Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-04-28 02:04:43 -0700
         | 
| 738 | 
            +
            Served asset /jquery.js - 200 OK (5ms)
         | 
| 739 | 
            +
             | 
| 740 | 
            +
             | 
| 741 | 
            +
            Started GET "/assets/jquery.spinner.js?body=1" for 127.0.0.1 at 2012-04-28 02:04:44 -0700
         | 
| 742 | 
            +
            Served asset /jquery.spinner.js - 200 OK (5ms)
         | 
| 743 | 
            +
             | 
| 744 | 
            +
             | 
| 745 | 
            +
            Started GET "/" for 127.0.0.1 at 2012-04-28 02:04:45 -0700
         | 
| 746 | 
            +
            Processing by MainController#index as HTML
         | 
| 747 | 
            +
              Rendered main/index.html.haml within layouts/application (0.5ms)
         | 
| 748 | 
            +
            Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.0ms)
         | 
| 749 | 
            +
             | 
| 750 | 
            +
             | 
| 751 | 
            +
            Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-04-28 02:04:45 -0700
         | 
| 752 | 
            +
            Served asset /jquery_ujs.js - 200 OK (0ms)
         | 
| 753 | 
            +
             | 
| 754 | 
            +
             | 
| 755 | 
            +
            Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-04-28 02:04:45 -0700
         | 
| 756 | 
            +
            Served asset /jquery.js - 200 OK (0ms)
         | 
| 757 | 
            +
             | 
| 758 | 
            +
             | 
| 759 | 
            +
            Started GET "/assets/jquery.spinner.js?body=1" for 127.0.0.1 at 2012-04-28 02:04:45 -0700
         | 
| 760 | 
            +
            Served asset /jquery.spinner.js - 200 OK (0ms)
         | 
| 761 | 
            +
             | 
| 762 | 
            +
             | 
| 763 | 
            +
            Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-04-28 02:04:45 -0700
         | 
| 764 | 
            +
            Served asset /application.css - 200 OK (0ms)
         | 
| 765 | 
            +
             | 
| 766 | 
            +
             | 
| 767 | 
            +
            Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-04-28 02:04:45 -0700
         | 
| 768 | 
            +
            Served asset /application.js - 200 OK (0ms)
         | 
| 769 | 
            +
             | 
| 770 | 
            +
             | 
| 771 | 
            +
            Started GET "/assets/jquery.spinner.css?body=1" for 127.0.0.1 at 2012-04-28 02:04:45 -0700
         | 
| 772 | 
            +
            Served asset /jquery.spinner.css - 200 OK (0ms)
         | 
| 773 | 
            +
             | 
| 774 | 
            +
             | 
| 775 | 
            +
            Started GET "/" for 127.0.0.1 at 2012-04-28 02:05:55 -0700
         | 
| 776 | 
            +
            Processing by MainController#index as HTML
         | 
| 777 | 
            +
              Rendered main/index.html.haml within layouts/application (0.8ms)
         | 
| 778 | 
            +
            Completed 200 OK in 35ms (Views: 34.4ms | ActiveRecord: 0.0ms)
         | 
| 779 | 
            +
             | 
| 780 | 
            +
             | 
| 781 | 
            +
            Started GET "/assets/jquery.spinner.css?body=1" for 127.0.0.1 at 2012-04-28 02:05:55 -0700
         | 
| 782 | 
            +
            Served asset /jquery.spinner.css - 200 OK (0ms)
         | 
| 783 | 
            +
             | 
| 784 | 
            +
             | 
| 785 | 
            +
            Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-04-28 02:05:55 -0700
         | 
| 786 | 
            +
            Served asset /application.js - 200 OK (0ms)
         | 
| 787 | 
            +
             | 
| 788 | 
            +
             | 
| 789 | 
            +
            Started GET "/assets/jquery.spinner.js?body=1" for 127.0.0.1 at 2012-04-28 02:05:55 -0700
         | 
| 790 | 
            +
            Served asset /jquery.spinner.js - 200 OK (0ms)
         | 
| 791 | 
            +
             | 
| 792 | 
            +
             | 
| 793 | 
            +
            Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-04-28 02:05:55 -0700
         | 
| 794 | 
            +
            Served asset /application.css - 200 OK (0ms)
         | 
| 795 | 
            +
             | 
| 796 | 
            +
             | 
| 797 | 
            +
            Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-04-28 02:05:55 -0700
         | 
| 798 | 
            +
            Served asset /jquery.js - 200 OK (0ms)
         | 
| 799 | 
            +
             | 
| 800 | 
            +
             | 
| 801 | 
            +
            Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-04-28 02:05:55 -0700
         | 
| 802 | 
            +
            Served asset /jquery_ujs.js - 200 OK (0ms)
         | 
| 803 | 
            +
             | 
| 804 | 
            +
             | 
| 805 | 
            +
            Started GET "/" for 127.0.0.1 at 2012-04-28 02:07:08 -0700
         | 
| 806 | 
            +
            Processing by MainController#index as HTML
         | 
| 807 | 
            +
              Rendered main/index.html.haml within layouts/application (5.3ms)
         | 
| 808 | 
            +
            Completed 200 OK in 20ms (Views: 20.0ms | ActiveRecord: 0.0ms)
         | 
| 809 | 
            +
             | 
| 810 | 
            +
             | 
| 811 | 
            +
            Started GET "/assets/jquery.spinner.css?body=1" for 127.0.0.1 at 2012-04-28 02:07:08 -0700
         | 
| 812 | 
            +
            Served asset /jquery.spinner.css - 304 Not Modified (0ms)
         | 
| 813 | 
            +
             | 
| 814 | 
            +
             | 
| 815 | 
            +
            Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-04-28 02:07:08 -0700
         | 
| 816 | 
            +
            Served asset /jquery.js - 304 Not Modified (0ms)
         | 
| 817 | 
            +
             | 
| 818 | 
            +
             | 
| 819 | 
            +
            Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-04-28 02:07:08 -0700
         | 
| 820 | 
            +
            Served asset /application.js - 304 Not Modified (0ms)
         | 
| 821 | 
            +
             | 
| 822 | 
            +
             | 
| 823 | 
            +
            Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-04-28 02:07:08 -0700
         | 
| 824 | 
            +
            Served asset /jquery_ujs.js - 304 Not Modified (0ms)
         | 
| 825 | 
            +
             | 
| 826 | 
            +
             | 
| 827 | 
            +
            Started GET "/assets/jquery.spinner.js?body=1" for 127.0.0.1 at 2012-04-28 02:07:08 -0700
         | 
| 828 | 
            +
            Served asset /jquery.spinner.js - 304 Not Modified (1ms)
         | 
| 829 | 
            +
             | 
| 830 | 
            +
             | 
| 831 | 
            +
            Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-04-28 02:07:08 -0700
         | 
| 832 | 
            +
            Served asset /application.css - 304 Not Modified (0ms)
         | 
| 833 | 
            +
             | 
| 834 | 
            +
             | 
| 835 | 
            +
            Started GET "/" for 127.0.0.1 at 2012-05-20 19:27:04 -0700
         | 
| 836 | 
            +
            Processing by MainController#index as HTML
         | 
| 837 | 
            +
              Rendered main/index.html.haml within layouts/application (1.1ms)
         | 
| 838 | 
            +
            Compiled jquery.spinner.css  (0ms)  (pid 98918)
         | 
| 839 | 
            +
            Compiled application.css  (2ms)  (pid 98918)
         | 
| 840 | 
            +
            Completed 200 OK in 79ms (Views: 78.2ms | ActiveRecord: 0.0ms)
         | 
| 841 | 
            +
             | 
| 842 | 
            +
             | 
| 843 | 
            +
            Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-20 19:27:05 -0700
         | 
| 844 | 
            +
            Served asset /application.css - 200 OK (10ms)
         | 
| 845 | 
            +
             | 
| 846 | 
            +
             | 
| 847 | 
            +
            Started GET "/assets/jquery.spinner.css?body=1" for 127.0.0.1 at 2012-05-20 19:27:05 -0700
         | 
| 848 | 
            +
            Served asset /jquery.spinner.css - 200 OK (2ms)
         | 
| 849 | 
            +
             | 
| 850 | 
            +
             | 
| 851 | 
            +
            Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-20 19:27:05 -0700
         | 
| 852 | 
            +
            Served asset /jquery_ujs.js - 200 OK (2ms)
         | 
| 853 | 
            +
             | 
| 854 | 
            +
             | 
| 855 | 
            +
            Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-20 19:27:05 -0700
         | 
| 856 | 
            +
            Served asset /jquery.js - 200 OK (2ms)
         | 
| 857 | 
            +
             | 
| 858 | 
            +
             | 
| 859 | 
            +
            Started GET "/assets/jquery.spinner.js?body=1" for 127.0.0.1 at 2012-05-20 19:27:05 -0700
         | 
| 860 | 
            +
            Served asset /jquery.spinner.js - 200 OK (2ms)
         | 
| 861 | 
            +
             | 
| 862 | 
            +
             | 
| 863 | 
            +
            Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-20 19:27:05 -0700
         | 
| 864 | 
            +
            Served asset /application.js - 200 OK (8ms)
         |