astrochimp 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (66) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.rdoc +3 -0
  3. data/Rakefile +39 -0
  4. data/app/assets/images/astrochimp/bg-noise.png +0 -0
  5. data/app/assets/javascripts/astrochimp/application.js +9 -0
  6. data/app/assets/javascripts/astrochimp/dashboard.js +2 -0
  7. data/app/assets/stylesheets/astrochimp/application.css +7 -0
  8. data/app/assets/stylesheets/astrochimp/dashboard.css.sass +115 -0
  9. data/app/assets/stylesheets/astrochimp/reset.css.sass +151 -0
  10. data/app/controllers/astrochimp/application_controller.rb +4 -0
  11. data/app/controllers/astrochimp/dashboard_controller.rb +6 -0
  12. data/app/helpers/astrochimp/application_helper.rb +4 -0
  13. data/app/helpers/astrochimp/dashboard_helper.rb +4 -0
  14. data/app/views/astrochimp/dashboard/index.html.erb +23 -0
  15. data/app/views/layouts/astrochimp/application.html.erb +53 -0
  16. data/config/routes.rb +8 -0
  17. data/lib/astrochimp.rb +4 -0
  18. data/lib/astrochimp/engine.rb +5 -0
  19. data/lib/astrochimp/version.rb +3 -0
  20. data/lib/tasks/astrochimp_tasks.rake +4 -0
  21. data/test/astrochimp_test.rb +7 -0
  22. data/test/dummy/Rakefile +7 -0
  23. data/test/dummy/app/assets/javascripts/application.js +9 -0
  24. data/test/dummy/app/assets/stylesheets/application.css +7 -0
  25. data/test/dummy/app/controllers/application_controller.rb +3 -0
  26. data/test/dummy/app/helpers/application_helper.rb +2 -0
  27. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  28. data/test/dummy/config.ru +4 -0
  29. data/test/dummy/config/application.rb +42 -0
  30. data/test/dummy/config/boot.rb +10 -0
  31. data/test/dummy/config/database.yml +25 -0
  32. data/test/dummy/config/environment.rb +5 -0
  33. data/test/dummy/config/environments/development.rb +27 -0
  34. data/test/dummy/config/environments/production.rb +51 -0
  35. data/test/dummy/config/environments/test.rb +39 -0
  36. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  37. data/test/dummy/config/initializers/inflections.rb +10 -0
  38. data/test/dummy/config/initializers/mime_types.rb +5 -0
  39. data/test/dummy/config/initializers/secret_token.rb +7 -0
  40. data/test/dummy/config/initializers/session_store.rb +8 -0
  41. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  42. data/test/dummy/config/locales/en.yml +5 -0
  43. data/test/dummy/config/routes.rb +4 -0
  44. data/test/dummy/db/development.sqlite3 +0 -0
  45. data/test/dummy/log/development.log +785 -0
  46. data/test/dummy/log/test.log +0 -0
  47. data/test/dummy/public/404.html +26 -0
  48. data/test/dummy/public/422.html +26 -0
  49. data/test/dummy/public/500.html +26 -0
  50. data/test/dummy/public/favicon.ico +0 -0
  51. data/test/dummy/script/rails +6 -0
  52. data/test/dummy/tmp/cache/assets/CCC/B30/sprockets%2F9e0547875983624fecd47c38f443d5d5 +0 -0
  53. data/test/dummy/tmp/cache/assets/CDF/260/sprockets%2Fb437014d51952f4ed168dfa5eb506835 +0 -0
  54. data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  55. data/test/dummy/tmp/cache/assets/D54/ED0/sprockets%2F71c9fa01091d432b131da3bb73faf3d4 +10 -0
  56. data/test/dummy/tmp/cache/assets/D69/F30/sprockets%2F09f88f56ab157162d1e807c2d3ebcb2a +0 -0
  57. data/test/dummy/tmp/cache/assets/D7A/130/sprockets%2Fba2928fecee85859a262dbf147f436a4 +0 -0
  58. data/test/dummy/tmp/cache/assets/D82/E10/sprockets%2F954cbb70b65145f917df4749ee4fcb7f +14 -0
  59. data/test/dummy/tmp/cache/assets/DA1/DC0/sprockets%2F342dfdb79e3d2fe720bd5da829049c6a +0 -0
  60. data/test/dummy/tmp/cache/assets/DBF/880/sprockets%2F1f847fc47d1bbdc315e0ae1ec196a02e +262 -0
  61. data/test/dummy/tmp/cache/assets/E31/100/sprockets%2Fbb6c7450fa3629bb1fe9efaf6a5ec76a +15 -0
  62. data/test/functional/astrochimp/dashboard_controller_test.rb +9 -0
  63. data/test/integration/navigation_test.rb +10 -0
  64. data/test/test_helper.rb +10 -0
  65. data/test/unit/helpers/astrochimp/dashboard_helper_test.rb +6 -0
  66. metadata +229 -0
data/config/routes.rb ADDED
@@ -0,0 +1,8 @@
1
+ Astrochimp::Engine.routes.draw do
2
+ root :to => 'dashboard#index'
3
+
4
+ match "login", :to => "dashboard#login"
5
+ match "dashboard", :to => "dashboard#index"
6
+ match "list", :to => "dashboard#list"
7
+ match "settings", :to => "dashboard#settings"
8
+ end
data/lib/astrochimp.rb ADDED
@@ -0,0 +1,4 @@
1
+ require "astrochimp/engine"
2
+
3
+ module Astrochimp
4
+ end
@@ -0,0 +1,5 @@
1
+ module Astrochimp
2
+ class Engine < Rails::Engine
3
+ isolate_namespace Astrochimp
4
+ end
5
+ end
@@ -0,0 +1,3 @@
1
+ module Astrochimp
2
+ VERSION = "0.0.1"
3
+ end
@@ -0,0 +1,4 @@
1
+ # desc "Explaining what the task does"
2
+ # task :astrochimp do
3
+ # # Task goes here
4
+ # end
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class AstrochimpTest < ActiveSupport::TestCase
4
+ test "truth" do
5
+ assert_kind_of Module, Astrochimp
6
+ end
7
+ end
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env rake
2
+ # Add your own tasks in files placed in lib/tasks ending in .rake,
3
+ # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
4
+
5
+ require File.expand_path('../config/application', __FILE__)
6
+
7
+ Dummy::Application.load_tasks
@@ -0,0 +1,9 @@
1
+ // This is a manifest file that'll be compiled into including all the files listed below.
2
+ // Add new JavaScript/Coffee code in separate files in this directory and they'll automatically
3
+ // be included in the compiled file accessible from http://example.com/assets/application.js
4
+ // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
5
+ // the compiled file.
6
+ //
7
+ //= require jquery
8
+ //= require jquery_ujs
9
+ //= require_tree .
@@ -0,0 +1,7 @@
1
+ /*
2
+ * This is a manifest file that'll automatically include all the stylesheets available in this directory
3
+ * and any sub-directories. You're free to add application-wide styles to this file and they'll appear at
4
+ * the top of the compiled file, but it's generally better to create a new file per style scope.
5
+ *= require_self
6
+ *= require_tree .
7
+ */
@@ -0,0 +1,3 @@
1
+ class ApplicationController < ActionController::Base
2
+ protect_from_forgery
3
+ end
@@ -0,0 +1,2 @@
1
+ module ApplicationHelper
2
+ end
@@ -0,0 +1,14 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Dummy</title>
5
+ <%= stylesheet_link_tag "application" %>
6
+ <%= javascript_include_tag "application" %>
7
+ <%= csrf_meta_tags %>
8
+ </head>
9
+ <body>
10
+
11
+ <%= yield %>
12
+
13
+ </body>
14
+ </html>
@@ -0,0 +1,4 @@
1
+ # This file is used by Rack-based servers to start the application.
2
+
3
+ require ::File.expand_path('../config/environment', __FILE__)
4
+ run Dummy::Application
@@ -0,0 +1,42 @@
1
+ require File.expand_path('../boot', __FILE__)
2
+
3
+ require 'rails/all'
4
+
5
+ Bundler.require
6
+ require "astrochimp"
7
+
8
+ module Dummy
9
+ class Application < Rails::Application
10
+ # Settings in config/environments/* take precedence over those specified here.
11
+ # Application configuration should go into files in config/initializers
12
+ # -- all .rb files in that directory are automatically loaded.
13
+
14
+ # Custom directories with classes and modules you want to be autoloadable.
15
+ # config.autoload_paths += %W(#{config.root}/extras)
16
+
17
+ # Only load the plugins named here, in the order given (default is alphabetical).
18
+ # :all can be used as a placeholder for all plugins not explicitly named.
19
+ # config.plugins = [ :exception_notification, :ssl_requirement, :all ]
20
+
21
+ # Activate observers that should always be running.
22
+ # config.active_record.observers = :cacher, :garbage_collector, :forum_observer
23
+
24
+ # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
25
+ # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
26
+ # config.time_zone = 'Central Time (US & Canada)'
27
+
28
+ # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
29
+ # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
30
+ # config.i18n.default_locale = :de
31
+
32
+ # Configure the default encoding used in templates for Ruby 1.9.
33
+ config.encoding = "utf-8"
34
+
35
+ # Configure sensitive parameters which will be filtered from the log file.
36
+ config.filter_parameters += [:password]
37
+
38
+ # Enable the asset pipeline
39
+ config.assets.enabled = true
40
+ end
41
+ end
42
+
@@ -0,0 +1,10 @@
1
+ require 'rubygems'
2
+ gemfile = File.expand_path('../../../../Gemfile', __FILE__)
3
+
4
+ if File.exist?(gemfile)
5
+ ENV['BUNDLE_GEMFILE'] = gemfile
6
+ require 'bundler'
7
+ Bundler.setup
8
+ end
9
+
10
+ $:.unshift File.expand_path('../../../../lib', __FILE__)
@@ -0,0 +1,25 @@
1
+ # SQLite version 3.x
2
+ # gem install sqlite3
3
+ #
4
+ # Ensure the SQLite 3 gem is defined in your Gemfile
5
+ # gem 'sqlite3'
6
+ development:
7
+ adapter: sqlite3
8
+ database: db/development.sqlite3
9
+ pool: 5
10
+ timeout: 5000
11
+
12
+ # Warning: The database defined as "test" will be erased and
13
+ # re-generated from your development database when you run "rake".
14
+ # Do not set this db to the same as development or production.
15
+ test:
16
+ adapter: sqlite3
17
+ database: db/test.sqlite3
18
+ pool: 5
19
+ timeout: 5000
20
+
21
+ production:
22
+ adapter: sqlite3
23
+ database: db/production.sqlite3
24
+ pool: 5
25
+ timeout: 5000
@@ -0,0 +1,5 @@
1
+ # Load the rails application
2
+ require File.expand_path('../application', __FILE__)
3
+
4
+ # Initialize the rails application
5
+ Dummy::Application.initialize!
@@ -0,0 +1,27 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # In the development environment your application's code is reloaded on
5
+ # every request. This slows down response time but is perfect for development
6
+ # since you don't have to restart the web server when you make code changes.
7
+ config.cache_classes = false
8
+
9
+ # Log error messages when you accidentally call methods on nil.
10
+ config.whiny_nils = true
11
+
12
+ # Show full error reports and disable caching
13
+ config.consider_all_requests_local = true
14
+ config.action_controller.perform_caching = false
15
+
16
+ # Don't care if the mailer can't send
17
+ config.action_mailer.raise_delivery_errors = false
18
+
19
+ # Print deprecation notices to the Rails logger
20
+ config.active_support.deprecation = :log
21
+
22
+ # Only use best-standards-support built into browsers
23
+ config.action_dispatch.best_standards_support = :builtin
24
+
25
+ # Do not compress assets
26
+ config.assets.compress = false
27
+ end
@@ -0,0 +1,51 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # Code is not reloaded between requests
5
+ config.cache_classes = true
6
+
7
+ # Full error reports are disabled and caching is turned on
8
+ config.consider_all_requests_local = false
9
+ config.action_controller.perform_caching = true
10
+
11
+ # Disable Rails's static asset server (Apache or nginx will already do this)
12
+ config.serve_static_assets = false
13
+
14
+ # Compress JavaScripts and CSS
15
+ config.assets.compress = true
16
+
17
+ # Specifies the header that your server uses for sending files
18
+ # config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
19
+ # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
20
+
21
+ # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
22
+ # config.force_ssl = true
23
+
24
+ # See everything in the log (default is :info)
25
+ # config.log_level = :debug
26
+
27
+ # Use a different logger for distributed setups
28
+ # config.logger = SyslogLogger.new
29
+
30
+ # Use a different cache store in production
31
+ # config.cache_store = :mem_cache_store
32
+
33
+ # Enable serving of images, stylesheets, and JavaScripts from an asset server
34
+ # config.action_controller.asset_host = "http://assets.example.com"
35
+
36
+ # Precompile additional assets (application.js, application.css, and all non-JS/CSS are already added)
37
+ # config.assets.precompile += %w( search.js )
38
+
39
+ # Disable delivery errors, bad email addresses will be ignored
40
+ # config.action_mailer.raise_delivery_errors = false
41
+
42
+ # Enable threaded mode
43
+ # config.threadsafe!
44
+
45
+ # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
46
+ # the I18n.default_locale when a translation can not be found)
47
+ config.i18n.fallbacks = true
48
+
49
+ # Send deprecation notices to registered listeners
50
+ config.active_support.deprecation = :notify
51
+ end
@@ -0,0 +1,39 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # The test environment is used exclusively to run your application's
5
+ # test suite. You never need to work with it otherwise. Remember that
6
+ # your test database is "scratch space" for the test suite and is wiped
7
+ # and recreated between test runs. Don't rely on the data there!
8
+ config.cache_classes = true
9
+
10
+ # Configure static asset server for tests with Cache-Control for performance
11
+ config.serve_static_assets = true
12
+ config.static_cache_control = "public, max-age=3600"
13
+
14
+ # Log error messages when you accidentally call methods on nil
15
+ config.whiny_nils = true
16
+
17
+ # Show full error reports and disable caching
18
+ config.consider_all_requests_local = true
19
+ config.action_controller.perform_caching = false
20
+
21
+ # Raise exceptions instead of rendering exception templates
22
+ config.action_dispatch.show_exceptions = false
23
+
24
+ # Disable request forgery protection in test environment
25
+ config.action_controller.allow_forgery_protection = false
26
+
27
+ # Tell Action Mailer not to deliver emails to the real world.
28
+ # The :test delivery method accumulates sent emails in the
29
+ # ActionMailer::Base.deliveries array.
30
+ config.action_mailer.delivery_method = :test
31
+
32
+ # Use SQL instead of Active Record's schema dumper when creating the test database.
33
+ # This is necessary if your schema can't be completely dumped by the schema dumper,
34
+ # like if you have constraints or database-specific column types
35
+ # config.active_record.schema_format = :sql
36
+
37
+ # Print deprecation notices to the stderr
38
+ config.active_support.deprecation = :stderr
39
+ end
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
+
6
+ # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,10 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format
4
+ # (all these examples are active by default):
5
+ # ActiveSupport::Inflector.inflections do |inflect|
6
+ # inflect.plural /^(ox)$/i, '\1en'
7
+ # inflect.singular /^(ox)en/i, '\1'
8
+ # inflect.irregular 'person', 'people'
9
+ # inflect.uncountable %w( fish sheep )
10
+ # end
@@ -0,0 +1,5 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
5
+ # Mime::Type.register_alias "text/html", :iphone
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+ # Make sure the secret is at least 30 characters and all random,
6
+ # no regular words or you'll be exposed to dictionary attacks.
7
+ Dummy::Application.config.secret_token = '20e6f2d91d27d7746c53112ad8f90100b49b0891e3bd44b0308f9854e4911896cae32ec8ce35e77f5f6d4e793d8c514b0df0e4363cfd42497a77d143a4f03b11'
@@ -0,0 +1,8 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Dummy::Application.config.session_store :cookie_store, key: '_dummy_session'
4
+
5
+ # Use the database for sessions instead of the cookie-based default,
6
+ # which shouldn't be used to store highly confidential information
7
+ # (create the session table with "rails generate session_migration")
8
+ # Dummy::Application.config.session_store :active_record_store
@@ -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
@@ -0,0 +1,5 @@
1
+ # Sample localization file for English. Add more files in this directory for other locales.
2
+ # See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
3
+
4
+ en:
5
+ hello: "Hello world"
@@ -0,0 +1,4 @@
1
+ Rails.application.routes.draw do
2
+
3
+ mount Astrochimp::Engine => "/astrochimp"
4
+ end
File without changes
@@ -0,0 +1,785 @@
1
+
2
+
3
+ Started GET "/" for 127.0.0.1 at 2011-08-25 13:18:36 -0500
4
+
5
+ ActionController::RoutingError (No route matches [GET] "/"):
6
+
7
+
8
+ Rendered /Users/ericboehs/.rvm/gems/ruby-1.9.3-preview1@astochimp/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (6.0ms)
9
+
10
+
11
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-08-25 13:18:47 -0500
12
+ Compiled app/assets/stylesheets/application.css (1ms) (pid 47977)
13
+ Compiled app/assets/stylesheets/application.css (0ms) (pid 47977)
14
+ Served asset /application.css - 200 OK (20ms)
15
+
16
+
17
+ Started GET "/astrochimp/assets/application.css" for 127.0.0.1 at 2011-08-25 13:18:57 -0500
18
+
19
+ ActionController::RoutingError (No route matches [GET] "/astrochimp/assets/application.css"):
20
+
21
+
22
+ Rendered /Users/ericboehs/.rvm/gems/ruby-1.9.3-preview1@astochimp/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
23
+
24
+
25
+ Started GET "/assets/astrochimp/application.css" for 127.0.0.1 at 2011-08-25 13:19:02 -0500
26
+ Error compiling asset astrochimp/application.css:
27
+ LoadError: cannot load such file -- sass
28
+ (in /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/application.sass)
29
+ Served asset /astrochimp/application.css - 500 Internal Server Error
30
+
31
+
32
+
33
+ Started GET "/" for 127.0.0.1 at 2011-08-25 13:29:30 -0500
34
+
35
+ ActionController::RoutingError (No route matches [GET] "/"):
36
+
37
+
38
+ Rendered /Users/ericboehs/.rvm/gems/ruby-1.9.3-preview1@astochimp/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (4.3ms)
39
+
40
+
41
+ Started GET "/" for 127.0.0.1 at 2011-08-25 13:29:34 -0500
42
+
43
+ ActionController::RoutingError (No route matches [GET] "/"):
44
+
45
+
46
+ Rendered /Users/ericboehs/.rvm/gems/ruby-1.9.3-preview1@astochimp/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
47
+
48
+
49
+ Started GET "/astrochimp" for 127.0.0.1 at 2011-08-25 13:29:39 -0500
50
+ Processing by Astrochimp::DashboardController#index as HTML
51
+ Completed 500 Internal Server Error in 54ms
52
+
53
+ ActionView::MissingTemplate (Missing template astrochimp/dashboard/index, astrochimp/application/index with {:handlers=>[:erb, :builder], :formats=>[:html], :locale=>[:en, :en]}. Searched in:
54
+ * "/Volumes/Dropbox/Dropbox/Code/astrochimp/test/dummy/app/views"
55
+ * "/Volumes/Dropbox/Dropbox/Code/astrochimp/app/views"
56
+ ):
57
+
58
+
59
+ Rendered /Users/ericboehs/.rvm/gems/ruby-1.9.3-preview1@astochimp/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.8ms)
60
+
61
+
62
+ Started GET "/astrochimp" for 127.0.0.1 at 2011-08-25 13:31:44 -0500
63
+ Processing by Astrochimp::DashboardController#index as HTML
64
+ Rendered /Volumes/Dropbox/Dropbox/Code/astrochimp/app/views/astrochimp/dashboard/index.html.erb within layouts/astrochimp/application (6.8ms)
65
+ Completed 500 Internal Server Error in 49ms
66
+
67
+ ActionView::Template::Error (No route matches {:controller=>"astrochimp/astrochimp", :action=>"dashboard"}):
68
+ 24: <nav>
69
+ 25: <ul class="nav-main">
70
+ 26: <li class="nav-main-dashboard">
71
+ 27: <%= link_to "Dashboard", :controller => "astrochimp", :action => "dashboard" %>
72
+ 28: </li>
73
+ 29: <li class="nav-main-list">
74
+ 30: <span class="unsent-count">22</span>
75
+
76
+
77
+ Rendered /Users/ericboehs/.rvm/gems/ruby-1.9.3-preview1@astochimp/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
78
+
79
+
80
+ Started GET "/" for 127.0.0.1 at 2011-08-25 13:31:48 -0500
81
+
82
+ ActionController::RoutingError (No route matches [GET] "/"):
83
+
84
+
85
+ Rendered /Users/ericboehs/.rvm/gems/ruby-1.9.3-preview1@astochimp/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
86
+
87
+
88
+ Started GET "/dashboar" for 127.0.0.1 at 2011-08-25 13:31:52 -0500
89
+
90
+ ActionController::RoutingError (No route matches [GET] "/dashboar"):
91
+
92
+
93
+ Rendered /Users/ericboehs/.rvm/gems/ruby-1.9.3-preview1@astochimp/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.1ms)
94
+
95
+
96
+ Started GET "/dashboard" for 127.0.0.1 at 2011-08-25 13:31:54 -0500
97
+
98
+ ActionController::RoutingError (No route matches [GET] "/dashboard"):
99
+
100
+
101
+ Rendered /Users/ericboehs/.rvm/gems/ruby-1.9.3-preview1@astochimp/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.5ms)
102
+
103
+
104
+ Started GET "/" for 127.0.0.1 at 2011-08-25 13:31:56 -0500
105
+
106
+ ActionController::RoutingError (No route matches [GET] "/"):
107
+
108
+
109
+ Rendered /Users/ericboehs/.rvm/gems/ruby-1.9.3-preview1@astochimp/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
110
+
111
+
112
+ Started GET "/astrochimp" for 127.0.0.1 at 2011-08-25 13:32:09 -0500
113
+ Processing by Astrochimp::DashboardController#index as HTML
114
+ Rendered /Volumes/Dropbox/Dropbox/Code/astrochimp/app/views/astrochimp/dashboard/index.html.erb within layouts/astrochimp/application (0.1ms)
115
+ Completed 500 Internal Server Error in 22ms
116
+
117
+ ActionView::Template::Error (No route matches {:controller=>"astrochimp/astrochimp", :action=>"dashboard"}):
118
+ 24: <nav>
119
+ 25: <ul class="nav-main">
120
+ 26: <li class="nav-main-dashboard">
121
+ 27: <%= link_to "Dashboard", :controller => "astrochimp", :action => "dashboard" %>
122
+ 28: </li>
123
+ 29: <li class="nav-main-list">
124
+ 30: <span class="unsent-count">22</span>
125
+
126
+
127
+ Rendered /Users/ericboehs/.rvm/gems/ruby-1.9.3-preview1@astochimp/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.1ms)
128
+
129
+
130
+ Started GET "/astrochimp" for 127.0.0.1 at 2011-08-25 13:32:31 -0500
131
+ Processing by Astrochimp::DashboardController#index as HTML
132
+ Rendered /Volumes/Dropbox/Dropbox/Code/astrochimp/app/views/astrochimp/dashboard/index.html.erb within layouts/astrochimp/application (0.1ms)
133
+ Completed 200 OK in 154ms (Views: 153.8ms | ActiveRecord: 0.0ms)
134
+
135
+
136
+ Started GET "/assets/astrochimp/application.css" for 127.0.0.1 at 2011-08-25 13:32:32 -0500
137
+ Error compiling asset astrochimp/application.css:
138
+ LoadError: cannot load such file -- sass
139
+ (in /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/application.sass)
140
+ Served asset /astrochimp/application.css - 500 Internal Server Error
141
+
142
+
143
+
144
+ Started GET "/assets/astrochimp/application.js" for 127.0.0.1 at 2011-08-25 13:32:32 -0500
145
+ Error compiling asset astrochimp/application.js:
146
+ Sprockets::FileNotFound: couldn't find file 'jquery'
147
+ (in /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/javascripts/astrochimp/application.js:7)
148
+ Served asset /astrochimp/application.js - 500 Internal Server Error
149
+
150
+
151
+
152
+ Started GET "/astrochimp" for 127.0.0.1 at 2011-08-25 13:33:15 -0500
153
+ Processing by Astrochimp::DashboardController#index as HTML
154
+ Rendered /Volumes/Dropbox/Dropbox/Code/astrochimp/app/views/astrochimp/dashboard/index.html.erb within layouts/astrochimp/application (0.1ms)
155
+ Completed 200 OK in 28ms (Views: 27.8ms | ActiveRecord: 0.0ms)
156
+
157
+
158
+ Started GET "/assets/astrochimp/application.js" for 127.0.0.1 at 2011-08-25 13:33:15 -0500
159
+ Error compiling asset astrochimp/application.js:
160
+ Sprockets::FileNotFound: couldn't find file 'jquery'
161
+ (in /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/javascripts/astrochimp/application.js:7)
162
+ Served asset /astrochimp/application.js - 500 Internal Server Error
163
+
164
+
165
+
166
+ Started GET "/assets/astrochimp/application.css" for 127.0.0.1 at 2011-08-25 13:33:15 -0500
167
+ Error compiling asset astrochimp/application.css:
168
+ LoadError: cannot load such file -- sass
169
+ (in /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/application.scss)
170
+ Served asset /astrochimp/application.css - 500 Internal Server Error
171
+
172
+
173
+
174
+ Started GET "/astrochimp" for 127.0.0.1 at 2011-08-25 13:34:17 -0500
175
+ Processing by Astrochimp::DashboardController#index as HTML
176
+ Rendered /Volumes/Dropbox/Dropbox/Code/astrochimp/app/views/astrochimp/dashboard/index.html.erb within layouts/astrochimp/application (0.1ms)
177
+ Completed 200 OK in 41ms (Views: 40.9ms | ActiveRecord: 0.0ms)
178
+
179
+
180
+ Started GET "/assets/astrochimp/application.js" for 127.0.0.1 at 2011-08-25 13:34:17 -0500
181
+ Error compiling asset astrochimp/application.js:
182
+ Sprockets::FileNotFound: couldn't find file 'jquery'
183
+ (in /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/javascripts/astrochimp/application.js:7)
184
+ Served asset /astrochimp/application.js - 500 Internal Server Error
185
+
186
+
187
+
188
+ Started GET "/assets/astrochimp/application.css" for 127.0.0.1 at 2011-08-25 13:34:17 -0500
189
+ Error compiling asset astrochimp/application.css:
190
+ LoadError: cannot load such file -- sass
191
+ (in /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/application.scss)
192
+ Served asset /astrochimp/application.css - 500 Internal Server Error
193
+
194
+
195
+
196
+ Started GET "/astrochimp" for 127.0.0.1 at 2011-08-25 13:34:26 -0500
197
+ Processing by Astrochimp::DashboardController#index as HTML
198
+ Rendered /Volumes/Dropbox/Dropbox/Code/astrochimp/app/views/astrochimp/dashboard/index.html.erb within layouts/astrochimp/application (0.1ms)
199
+ Completed 200 OK in 74ms (Views: 73.2ms | ActiveRecord: 0.0ms)
200
+
201
+
202
+ Started GET "/assets/astrochimp/application.css" for 127.0.0.1 at 2011-08-25 13:34:26 -0500
203
+ Compiled /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/application.css (1ms) (pid 48264)
204
+ Error compiling asset astrochimp/application.css:
205
+ LoadError: cannot load such file -- sass
206
+ (in /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/_reset.css.sass)
207
+ Served asset /astrochimp/application.css - 500 Internal Server Error
208
+
209
+
210
+
211
+ Started GET "/assets/astrochimp/application.js" for 127.0.0.1 at 2011-08-25 13:34:26 -0500
212
+ Error compiling asset astrochimp/application.js:
213
+ Sprockets::FileNotFound: couldn't find file 'jquery'
214
+ (in /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/javascripts/astrochimp/application.js:7)
215
+ Served asset /astrochimp/application.js - 500 Internal Server Error
216
+
217
+
218
+
219
+ Started GET "/astrochimp" for 127.0.0.1 at 2011-08-25 13:34:38 -0500
220
+ Processing by Astrochimp::DashboardController#index as HTML
221
+ Rendered /Volumes/Dropbox/Dropbox/Code/astrochimp/app/views/astrochimp/dashboard/index.html.erb within layouts/astrochimp/application (0.1ms)
222
+ Completed 200 OK in 65ms (Views: 64.4ms | ActiveRecord: 0.0ms)
223
+
224
+
225
+ Started GET "/assets/astrochimp/application.js" for 127.0.0.1 at 2011-08-25 13:34:39 -0500
226
+ Error compiling asset astrochimp/application.js:
227
+ Sprockets::FileNotFound: couldn't find file 'jquery'
228
+ (in /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/javascripts/astrochimp/application.js:7)
229
+ Served asset /astrochimp/application.js - 500 Internal Server Error
230
+
231
+
232
+
233
+ Started GET "/assets/astrochimp/application.css" for 127.0.0.1 at 2011-08-25 13:34:39 -0500
234
+ Compiled /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/application.css (1ms) (pid 48264)
235
+ Error compiling asset astrochimp/application.css:
236
+ LoadError: cannot load such file -- sass
237
+ (in /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/dashboard.css.sass)
238
+ Served asset /astrochimp/application.css - 500 Internal Server Error
239
+
240
+
241
+
242
+ Started GET "/astrochimp" for 127.0.0.1 at 2011-08-25 13:34:46 -0500
243
+ Processing by Astrochimp::DashboardController#index as HTML
244
+ Rendered /Volumes/Dropbox/Dropbox/Code/astrochimp/app/views/astrochimp/dashboard/index.html.erb within layouts/astrochimp/application (0.1ms)
245
+ Completed 200 OK in 38ms (Views: 29.3ms | ActiveRecord: 0.0ms)
246
+
247
+
248
+ Started GET "/assets/astrochimp/application.css" for 127.0.0.1 at 2011-08-25 13:34:47 -0500
249
+ Compiled /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/application.css (1ms) (pid 48264)
250
+ Error compiling asset astrochimp/application.css:
251
+ LoadError: cannot load such file -- sass
252
+ (in /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/dashboard.css.sass)
253
+ Served asset /astrochimp/application.css - 500 Internal Server Error
254
+
255
+
256
+
257
+ Started GET "/assets/astrochimp/application.js" for 127.0.0.1 at 2011-08-25 13:34:47 -0500
258
+ Error compiling asset astrochimp/application.js:
259
+ Sprockets::FileNotFound: couldn't find file 'jquery'
260
+ (in /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/javascripts/astrochimp/application.js:7)
261
+ Served asset /astrochimp/application.js - 500 Internal Server Error
262
+
263
+
264
+
265
+ Started GET "/astrochimp" for 127.0.0.1 at 2011-08-25 13:34:48 -0500
266
+ Processing by Astrochimp::DashboardController#index as HTML
267
+ Rendered /Volumes/Dropbox/Dropbox/Code/astrochimp/app/views/astrochimp/dashboard/index.html.erb within layouts/astrochimp/application (0.1ms)
268
+ Completed 200 OK in 42ms (Views: 41.8ms | ActiveRecord: 0.0ms)
269
+
270
+
271
+ Started GET "/assets/astrochimp/application.css" for 127.0.0.1 at 2011-08-25 13:34:48 -0500
272
+ Compiled /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/application.css (1ms) (pid 48264)
273
+ Error compiling asset astrochimp/application.css:
274
+ LoadError: cannot load such file -- sass
275
+ (in /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/dashboard.css.sass)
276
+ Served asset /astrochimp/application.css - 500 Internal Server Error
277
+
278
+
279
+
280
+ Started GET "/assets/astrochimp/application.js" for 127.0.0.1 at 2011-08-25 13:34:48 -0500
281
+ Error compiling asset astrochimp/application.js:
282
+ Sprockets::FileNotFound: couldn't find file 'jquery'
283
+ (in /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/javascripts/astrochimp/application.js:7)
284
+ Served asset /astrochimp/application.js - 500 Internal Server Error
285
+
286
+
287
+
288
+ Started GET "/astrochimp" for 127.0.0.1 at 2011-08-25 13:34:57 -0500
289
+ Processing by Astrochimp::DashboardController#index as HTML
290
+ Rendered /Volumes/Dropbox/Dropbox/Code/astrochimp/app/views/astrochimp/dashboard/index.html.erb within layouts/astrochimp/application (0.1ms)
291
+ Completed 200 OK in 71ms (Views: 70.3ms | ActiveRecord: 0.0ms)
292
+
293
+
294
+ Started GET "/assets/astrochimp/application.css" for 127.0.0.1 at 2011-08-25 13:34:57 -0500
295
+ Compiled /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/application.css (0ms) (pid 48264)
296
+ Compiled /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/application.css (0ms) (pid 48264)
297
+ Served asset /astrochimp/application.css - 200 OK (19ms)
298
+
299
+
300
+ Started GET "/assets/astrochimp/application.js" for 127.0.0.1 at 2011-08-25 13:34:57 -0500
301
+ Error compiling asset astrochimp/application.js:
302
+ Sprockets::FileNotFound: couldn't find file 'jquery'
303
+ (in /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/javascripts/astrochimp/application.js:7)
304
+ Served asset /astrochimp/application.js - 500 Internal Server Error
305
+
306
+
307
+
308
+ Started GET "/astrochimp" for 127.0.0.1 at 2011-08-25 13:35:14 -0500
309
+ Processing by Astrochimp::DashboardController#index as HTML
310
+ Rendered /Volumes/Dropbox/Dropbox/Code/astrochimp/app/views/astrochimp/dashboard/index.html.erb within layouts/astrochimp/application (0.1ms)
311
+ Completed 200 OK in 76ms (Views: 75.5ms | ActiveRecord: 0.0ms)
312
+
313
+
314
+ Started GET "/assets/astrochimp/application.js" for 127.0.0.1 at 2011-08-25 13:35:15 -0500
315
+ Error compiling asset astrochimp/application.js:
316
+ Sprockets::FileNotFound: couldn't find file 'jquery'
317
+ (in /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/javascripts/astrochimp/application.js:7)
318
+ Served asset /astrochimp/application.js - 500 Internal Server Error
319
+
320
+
321
+
322
+ Started GET "/assets/astrochimp/application.css" for 127.0.0.1 at 2011-08-25 13:35:15 -0500
323
+ Compiled /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/application.css (1ms) (pid 48264)
324
+ Error compiling asset astrochimp/application.css:
325
+ LoadError: cannot load such file -- sass
326
+ (in /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/dashboard.css.sass)
327
+ Served asset /astrochimp/application.css - 500 Internal Server Error
328
+
329
+
330
+
331
+ Started GET "/astrochimp" for 127.0.0.1 at 2011-08-25 13:35:23 -0500
332
+ Processing by Astrochimp::DashboardController#index as HTML
333
+ Rendered /Volumes/Dropbox/Dropbox/Code/astrochimp/app/views/astrochimp/dashboard/index.html.erb within layouts/astrochimp/application (0.1ms)
334
+ Completed 200 OK in 35ms (Views: 34.6ms | ActiveRecord: 0.0ms)
335
+
336
+
337
+ Started GET "/assets/astrochimp/application.css" for 127.0.0.1 at 2011-08-25 13:35:23 -0500
338
+ Compiled /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/application.css (1ms) (pid 48264)
339
+ Error compiling asset astrochimp/application.css:
340
+ LoadError: cannot load such file -- sass
341
+ (in /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/dashboard.sass)
342
+ Served asset /astrochimp/application.css - 500 Internal Server Error
343
+
344
+
345
+
346
+ Started GET "/assets/astrochimp/application.js" for 127.0.0.1 at 2011-08-25 13:35:23 -0500
347
+ Error compiling asset astrochimp/application.js:
348
+ Sprockets::FileNotFound: couldn't find file 'jquery'
349
+ (in /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/javascripts/astrochimp/application.js:7)
350
+ Served asset /astrochimp/application.js - 500 Internal Server Error
351
+
352
+
353
+
354
+ Started GET "/astrochimp" for 127.0.0.1 at 2011-08-25 13:35:48 -0500
355
+ Processing by Astrochimp::DashboardController#index as HTML
356
+ Rendered /Volumes/Dropbox/Dropbox/Code/astrochimp/app/views/astrochimp/dashboard/index.html.erb within layouts/astrochimp/application (4.6ms)
357
+ Completed 200 OK in 45ms (Views: 44.7ms | ActiveRecord: 0.0ms)
358
+
359
+
360
+ Started GET "/assets/astrochimp/application.css" for 127.0.0.1 at 2011-08-25 13:35:49 -0500
361
+ Compiled /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/application.css (1ms) (pid 48435)
362
+ Error compiling asset astrochimp/application.css:
363
+ LoadError: cannot load such file -- sass
364
+ (in /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/dashboard.sass)
365
+ Served asset /astrochimp/application.css - 500 Internal Server Error
366
+
367
+
368
+
369
+ Started GET "/assets/astrochimp/application.js" for 127.0.0.1 at 2011-08-25 13:35:49 -0500
370
+ Error compiling asset astrochimp/application.js:
371
+ Sprockets::FileNotFound: couldn't find file 'jquery'
372
+ (in /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/javascripts/astrochimp/application.js:7)
373
+ Served asset /astrochimp/application.js - 500 Internal Server Error
374
+
375
+
376
+
377
+ Started GET "/astrochimp" for 127.0.0.1 at 2011-08-25 13:37:16 -0500
378
+ Processing by Astrochimp::DashboardController#index as HTML
379
+ Rendered /Volumes/Dropbox/Dropbox/Code/astrochimp/app/views/astrochimp/dashboard/index.html.erb within layouts/astrochimp/application (0.1ms)
380
+ Completed 500 Internal Server Error in 60ms
381
+
382
+ ActionView::Template::Error (No route matches {:controller=>"astrochimp/astrochimp", :action=>"dashboard"}):
383
+ 24: <nav>
384
+ 25: <ul class="nav-main">
385
+ 26: <li class="nav-main-dashboard">
386
+ 27: <%= link_to "Dashboard", :controller => "astrochimp", :action => "dashboard" %>
387
+ 28: </li>
388
+ 29: <li class="nav-main-list">
389
+ 30: <span class="unsent-count">22</span>
390
+
391
+
392
+ Rendered /Users/ericboehs/.rvm/gems/ruby-1.9.3-preview1@astochimp/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (8.0ms)
393
+
394
+
395
+ Started GET "/astrochimp" for 127.0.0.1 at 2011-08-25 13:37:20 -0500
396
+ Processing by Astrochimp::DashboardController#index as HTML
397
+ Rendered /Volumes/Dropbox/Dropbox/Code/astrochimp/app/views/astrochimp/dashboard/index.html.erb within layouts/astrochimp/application (0.1ms)
398
+ Completed 200 OK in 88ms (Views: 30.1ms | ActiveRecord: 0.0ms)
399
+
400
+
401
+ Started GET "/assets/astrochimp/application.css" for 127.0.0.1 at 2011-08-25 13:37:21 -0500
402
+ Compiled /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/application.css (1ms) (pid 48435)
403
+ Error compiling asset astrochimp/application.css:
404
+ LoadError: cannot load such file -- sass
405
+ (in /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/dashboard.css.sass)
406
+ Served asset /astrochimp/application.css - 500 Internal Server Error
407
+
408
+
409
+
410
+ Started GET "/assets/astrochimp/application.js" for 127.0.0.1 at 2011-08-25 13:37:21 -0500
411
+ Error compiling asset astrochimp/application.js:
412
+ Sprockets::FileNotFound: couldn't find file 'jquery'
413
+ (in /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/javascripts/astrochimp/application.js:7)
414
+ Served asset /astrochimp/application.js - 500 Internal Server Error
415
+
416
+
417
+
418
+ Started GET "/astrochimp" for 127.0.0.1 at 2011-08-25 13:39:21 -0500
419
+ Processing by Astrochimp::DashboardController#index as HTML
420
+ Rendered /Volumes/Dropbox/Dropbox/Code/astrochimp/app/views/astrochimp/dashboard/index.html.erb within layouts/astrochimp/application (3.8ms)
421
+ Completed 200 OK in 101ms (Views: 101.0ms | ActiveRecord: 0.0ms)
422
+
423
+
424
+ Started GET "/assets/astrochimp/application.js" for 127.0.0.1 at 2011-08-25 13:39:22 -0500
425
+ Error compiling asset astrochimp/application.js:
426
+ Sprockets::FileNotFound: couldn't find file 'jquery'
427
+ (in /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/javascripts/astrochimp/application.js:7)
428
+ Served asset /astrochimp/application.js - 500 Internal Server Error
429
+
430
+
431
+
432
+ Started GET "/assets/astrochimp/application.css" for 127.0.0.1 at 2011-08-25 13:39:22 -0500
433
+ Compiled /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/application.css (2ms) (pid 48788)
434
+ Compiled /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/dashboard.css.sass (903ms) (pid 48788)
435
+ Compiled /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/reset.css.sass (218ms) (pid 48788)
436
+ Compiled /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/application.css (0ms) (pid 48788)
437
+ Served asset /astrochimp/application.css - 200 OK (1273ms)
438
+
439
+
440
+ Started GET "/assets/astrochimp/application.css" for 127.0.0.1 at 2011-08-25 13:42:52 -0500
441
+ Compiled /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/dashboard.css.sass (217ms) (pid 48788)
442
+ Compiled /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/application.css (4ms) (pid 48788)
443
+ Compiled /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/application.css (0ms) (pid 48788)
444
+ Served asset /astrochimp/application.css - 200 OK (243ms)
445
+
446
+
447
+ Started GET "/astrochimp" for 127.0.0.1 at 2011-08-25 13:42:57 -0500
448
+ Processing by Astrochimp::DashboardController#index as HTML
449
+ Rendered /Volumes/Dropbox/Dropbox/Code/astrochimp/app/views/astrochimp/dashboard/index.html.erb within layouts/astrochimp/application (0.1ms)
450
+ Completed 200 OK in 29ms (Views: 28.2ms | ActiveRecord: 0.0ms)
451
+
452
+
453
+ Started GET "/assets/astrochimp/application.css" for 127.0.0.1 at 2011-08-25 13:42:57 -0500
454
+ Served asset /astrochimp/application.css - 200 OK (0ms)
455
+
456
+
457
+ Started GET "/assets/astrochimp/application.js" for 127.0.0.1 at 2011-08-25 13:42:57 -0500
458
+ Error compiling asset astrochimp/application.js:
459
+ Sprockets::FileNotFound: couldn't find file 'jquery'
460
+ (in /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/javascripts/astrochimp/application.js:7)
461
+ Served asset /astrochimp/application.js - 500 Internal Server Error
462
+
463
+
464
+
465
+ Started GET "/astrochimp" for 127.0.0.1 at 2011-08-25 13:43:06 -0500
466
+ Processing by Astrochimp::DashboardController#index as HTML
467
+ Rendered /Volumes/Dropbox/Dropbox/Code/astrochimp/app/views/astrochimp/dashboard/index.html.erb within layouts/astrochimp/application (0.1ms)
468
+ Completed 200 OK in 32ms (Views: 31.7ms | ActiveRecord: 0.0ms)
469
+
470
+
471
+ Started GET "/assets/astrochimp/application.js" for 127.0.0.1 at 2011-08-25 13:43:07 -0500
472
+ Error compiling asset astrochimp/application.js:
473
+ Sprockets::FileNotFound: couldn't find file 'jquery'
474
+ (in /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/javascripts/astrochimp/application.js:7)
475
+ Served asset /astrochimp/application.js - 500 Internal Server Error
476
+
477
+
478
+
479
+ Started GET "/assets/astrochimp/application.css" for 127.0.0.1 at 2011-08-25 13:43:07 -0500
480
+ Compiled /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/application.css (1ms) (pid 48788)
481
+ Compiled /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/dashboard.sass (69ms) (pid 48788)
482
+ Compiled /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/application.css (0ms) (pid 48788)
483
+ Served asset /astrochimp/application.css - 304 Not Modified (109ms)
484
+
485
+
486
+ Started GET "/assets/astrochimp/application.css" for 127.0.0.1 at 2011-08-25 13:43:52 -0500
487
+ Compiled /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/application.css (1ms) (pid 48788)
488
+ Compiled /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/dashboard.css.sass (207ms) (pid 48788)
489
+ Compiled /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/application.css (0ms) (pid 48788)
490
+ Served asset /astrochimp/application.css - 200 OK (290ms)
491
+
492
+
493
+ Started GET "/assets/astrochimp/application.css" for 127.0.0.1 at 2011-08-25 13:44:06 -0500
494
+ Compiled /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/application.css (1ms) (pid 48788)
495
+ Error compiling asset astrochimp/application.css:
496
+ Sass::SyntaxError: Invalid CSS after " background:": expected pseudoclass or pseudoelement, was " #e9e8e5 image-..."
497
+ (in /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/dashboard.css.scss)
498
+ Served asset /astrochimp/application.css - 500 Internal Server Error
499
+
500
+
501
+
502
+ Started GET "/assets/astrochimp/application.css" for 127.0.0.1 at 2011-08-25 13:44:24 -0500
503
+ Compiled /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/application.css (1ms) (pid 48788)
504
+ Error compiling asset astrochimp/application.css:
505
+ Sass::SyntaxError: Invalid CSS after " height": expected ";", was ": 100%"
506
+ (in /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/dashboard.css.scss)
507
+ Served asset /astrochimp/application.css - 500 Internal Server Error
508
+
509
+
510
+
511
+ Started GET "/assets/astrochimp/application.css" for 127.0.0.1 at 2011-08-25 13:44:30 -0500
512
+ Compiled /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/application.css (1ms) (pid 48788)
513
+ Error compiling asset astrochimp/application.css:
514
+ Sass::SyntaxError: Invalid CSS after " height": expected ";", was ": 100%"
515
+ (in /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/dashboard.css.scss)
516
+ Served asset /astrochimp/application.css - 500 Internal Server Error
517
+
518
+
519
+
520
+ Started GET "/assets/astrochimp/application.css" for 127.0.0.1 at 2011-08-25 13:45:15 -0500
521
+ Compiled /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/application.css (2ms) (pid 48788)
522
+ Error compiling asset astrochimp/application.css:
523
+ Sass::SyntaxError: Invalid CSS after " height": expected ";", was ": 100%"
524
+ (in /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/dashboard.css.scss)
525
+ Served asset /astrochimp/application.css - 500 Internal Server Error
526
+
527
+
528
+
529
+ Started GET "/assets/astrochimp/application.css" for 127.0.0.1 at 2011-08-25 13:45:19 -0500
530
+ Compiled /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/application.css (1ms) (pid 48788)
531
+ Compiled /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/dashboard.css.scss (2ms) (pid 48788)
532
+ Compiled /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/application.css (0ms) (pid 48788)
533
+ Served asset /astrochimp/application.css - 200 OK (61ms)
534
+
535
+
536
+ Started GET "/assets/astrochimp/application.css" for 127.0.0.1 at 2011-08-25 13:45:31 -0500
537
+ Error compiling asset astrochimp/application.css:
538
+ Sass::SyntaxError: Invalid CSS after " height": expected ";", was ": 100%"
539
+ (in /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/dashboard.css.scss)
540
+ Served asset /astrochimp/application.css - 500 Internal Server Error
541
+
542
+
543
+
544
+ Started GET "/assets/astrochimp/application.css" for 127.0.0.1 at 2011-08-25 13:45:46 -0500
545
+ Compiled /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/dashboard.css.scss (6ms) (pid 48788)
546
+ Compiled /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/application.css (1ms) (pid 48788)
547
+ Compiled /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/application.css (0ms) (pid 48788)
548
+ Served asset /astrochimp/application.css - 200 OK (22ms)
549
+
550
+
551
+ Started GET "/assets/astrochimp/application.css" for 127.0.0.1 at 2011-08-25 13:45:52 -0500
552
+ Compiled /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/dashboard.css.scss (8ms) (pid 48788)
553
+ Compiled /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/application.css (1ms) (pid 48788)
554
+ Compiled /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/application.css (0ms) (pid 48788)
555
+ Served asset /astrochimp/application.css - 200 OK (62ms)
556
+
557
+
558
+ Started GET "/assets/astrochimp/application.css" for 127.0.0.1 at 2011-08-25 13:45:55 -0500
559
+ Compiled /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/dashboard.css.scss (6ms) (pid 48788)
560
+ Compiled /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/application.css (2ms) (pid 48788)
561
+ Compiled /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/application.css (0ms) (pid 48788)
562
+ Served asset /astrochimp/application.css - 200 OK (110ms)
563
+
564
+
565
+ Started GET "/assets/astrochimp/application.css" for 127.0.0.1 at 2011-08-25 13:47:42 -0500
566
+ Compiled /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/dashboard.css.scss (88ms) (pid 48788)
567
+ Compiled /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/application.css (11ms) (pid 48788)
568
+ Compiled /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/application.css (0ms) (pid 48788)
569
+ Served asset /astrochimp/application.css - 200 OK (159ms)
570
+
571
+
572
+ Started GET "/assets/astrochimp/application.css" for 127.0.0.1 at 2011-08-25 13:47:43 -0500
573
+ Served asset /astrochimp/application.css - 200 OK (0ms)
574
+
575
+
576
+ Started GET "/assets/astrochimp/assets/application.css" for 127.0.0.1 at 2011-08-25 13:47:55 -0500
577
+ Served asset /astrochimp/assets/application.css - 404 Not Found (37ms)
578
+
579
+ ActionController::RoutingError (No route matches [GET] "/assets/astrochimp/assets/application.css"):
580
+
581
+
582
+ Rendered /Users/ericboehs/.rvm/gems/ruby-1.9.3-preview1@astochimp/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.1ms)
583
+
584
+
585
+ Started GET "/assets/astrochimp/dashboard.css" for 127.0.0.1 at 2011-08-25 13:48:08 -0500
586
+ Compiled /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/dashboard.css.scss (0ms) (pid 48788)
587
+ Served asset /astrochimp/dashboard.css - 200 OK (10ms)
588
+
589
+
590
+ Started GET "/assets/astrochimp/dashboard.scss" for 127.0.0.1 at 2011-08-25 13:48:18 -0500
591
+ Served asset /astrochimp/dashboard.scss - 404 Not Found (4ms)
592
+
593
+ ActionController::RoutingError (No route matches [GET] "/assets/astrochimp/dashboard.scss"):
594
+
595
+
596
+ Rendered /Users/ericboehs/.rvm/gems/ruby-1.9.3-preview1@astochimp/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.7ms)
597
+
598
+
599
+ Started GET "/assets/astrochimp/dashboard.css" for 127.0.0.1 at 2011-08-25 13:49:25 -0500
600
+ Served asset /astrochimp/dashboard.css - 200 OK (8ms)
601
+
602
+
603
+ Started GET "/assets/astrochimp/dashboard.css" for 127.0.0.1 at 2011-08-25 13:50:31 -0500
604
+ Compiled /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/dashboard.css.scss (553ms) (pid 49268)
605
+ Compiled /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/dashboard.css.scss (0ms) (pid 49268)
606
+ Served asset /astrochimp/dashboard.css - 200 OK (569ms)
607
+
608
+
609
+ Started GET "/" for 127.0.0.1 at 2011-08-25 13:50:38 -0500
610
+
611
+ ActionController::RoutingError (No route matches [GET] "/"):
612
+
613
+
614
+ Rendered /Users/ericboehs/.rvm/gems/ruby-1.9.3-preview1@astochimp/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (5.8ms)
615
+
616
+
617
+ Started GET "/astrochimp" for 127.0.0.1 at 2011-08-25 13:50:41 -0500
618
+ Processing by Astrochimp::DashboardController#index as HTML
619
+ Rendered /Volumes/Dropbox/Dropbox/Code/astrochimp/app/views/astrochimp/dashboard/index.html.erb within layouts/astrochimp/application (0.6ms)
620
+ Completed 200 OK in 48ms (Views: 47.1ms | ActiveRecord: 0.0ms)
621
+
622
+
623
+ Started GET "/assets/astrochimp/application.css" for 127.0.0.1 at 2011-08-25 13:50:42 -0500
624
+ Compiled /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/application.css (1ms) (pid 49268)
625
+ Compiled /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/application.css (0ms) (pid 49268)
626
+ Served asset /astrochimp/application.css - 200 OK (17ms)
627
+
628
+
629
+ Started GET "/assets/astrochimp/application.js" for 127.0.0.1 at 2011-08-25 13:50:42 -0500
630
+ Error compiling asset astrochimp/application.js:
631
+ Sprockets::FileNotFound: couldn't find file 'jquery'
632
+ (in /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/javascripts/astrochimp/application.js:7)
633
+ Served asset /astrochimp/application.js - 500 Internal Server Error
634
+
635
+
636
+
637
+ Started GET "/astrochimp" for 127.0.0.1 at 2011-08-25 13:51:16 -0500
638
+ Processing by Astrochimp::DashboardController#index as HTML
639
+ Rendered /Volumes/Dropbox/Dropbox/Code/astrochimp/app/views/astrochimp/dashboard/index.html.erb within layouts/astrochimp/application (0.1ms)
640
+ Completed 200 OK in 131ms (Views: 130.6ms | ActiveRecord: 0.0ms)
641
+
642
+
643
+ Started GET "/assets/astrochimp/application.css" for 127.0.0.1 at 2011-08-25 13:51:17 -0500
644
+ Compiled /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/application.css (2ms) (pid 49268)
645
+ Compiled /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/dashboard.css.sass (151ms) (pid 49268)
646
+ Compiled /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/application.css (0ms) (pid 49268)
647
+ Served asset /astrochimp/application.css - 200 OK (201ms)
648
+
649
+
650
+ Started GET "/assets/astrochimp/application.js" for 127.0.0.1 at 2011-08-25 13:51:17 -0500
651
+ Error compiling asset astrochimp/application.js:
652
+ Sprockets::FileNotFound: couldn't find file 'jquery'
653
+ (in /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/javascripts/astrochimp/application.js:7)
654
+ Served asset /astrochimp/application.js - 500 Internal Server Error
655
+
656
+
657
+
658
+ Started GET "/assets/astrochimp/assets/astrochimp/bg-noise.png" for 127.0.0.1 at 2011-08-25 13:51:17 -0500
659
+ Served asset /astrochimp/assets/astrochimp/bg-noise.png - 404 Not Found (5ms)
660
+
661
+ ActionController::RoutingError (No route matches [GET] "/assets/astrochimp/assets/astrochimp/bg-noise.png"):
662
+
663
+
664
+ Rendered /Users/ericboehs/.rvm/gems/ruby-1.9.3-preview1@astochimp/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
665
+
666
+
667
+ Started GET "/assets/astrochimp/application.css" for 127.0.0.1 at 2011-08-25 13:51:34 -0500
668
+ Served asset /astrochimp/application.css - 304 Not Modified (0ms)
669
+
670
+
671
+ Started GET "/assets/astrochimp/bg-noise.png" for 127.0.0.1 at 2011-08-25 13:51:42 -0500
672
+ Served asset /astrochimp/bg-noise.png - 200 OK (37ms)
673
+
674
+
675
+ Started GET "/" for 127.0.0.1 at 2011-08-25 13:58:01 -0500
676
+
677
+ ActionController::RoutingError (No route matches [GET] "/"):
678
+
679
+
680
+ Rendered /Users/ericboehs/.rvm/gems/ruby-1.9.3-preview1@astochimp/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (36.4ms)
681
+
682
+
683
+ Started GET "/astrochimp" for 127.0.0.1 at 2011-08-25 13:58:04 -0500
684
+ Processing by Astrochimp::DashboardController#index as HTML
685
+ Rendered /Volumes/Dropbox/Dropbox/Code/astrochimp/app/views/astrochimp/dashboard/index.html.erb within layouts/astrochimp/application (0.7ms)
686
+ Completed 200 OK in 33ms (Views: 32.6ms | ActiveRecord: 0.0ms)
687
+
688
+
689
+ Started GET "/assets/astrochimp/application.css" for 127.0.0.1 at 2011-08-25 13:58:05 -0500
690
+ Compiled /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/dashboard.css.sass (726ms) (pid 50221)
691
+ Compiled /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/application.css (1ms) (pid 50221)
692
+ Compiled /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/stylesheets/astrochimp/application.css (0ms) (pid 50221)
693
+ Served asset /astrochimp/application.css - 200 OK (890ms)
694
+
695
+
696
+ Started GET "/assets/astrochimp/application.js" for 127.0.0.1 at 2011-08-25 13:58:06 -0500
697
+ Error compiling asset astrochimp/application.js:
698
+ Sprockets::FileNotFound: couldn't find file 'jquery'
699
+ (in /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/javascripts/astrochimp/application.js:7)
700
+ Served asset /astrochimp/application.js - 500 Internal Server Error
701
+
702
+
703
+
704
+ Started GET "/assets/astrochimp/bg-noise.png" for 127.0.0.1 at 2011-08-25 13:58:06 -0500
705
+ Served asset /astrochimp/bg-noise.png - 200 OK (16ms)
706
+
707
+
708
+ Started GET "/" for 127.0.0.1 at 2011-08-25 13:59:17 -0500
709
+
710
+ ActionController::RoutingError (No route matches [GET] "/"):
711
+
712
+
713
+ Rendered /Users/ericboehs/.rvm/gems/ruby-1.9.3-preview1@astochimp/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
714
+
715
+
716
+ Started GET "/astrochimp" for 127.0.0.1 at 2011-08-25 13:59:19 -0500
717
+ Processing by Astrochimp::DashboardController#index as HTML
718
+ Rendered /Volumes/Dropbox/Dropbox/Code/astrochimp/app/views/astrochimp/dashboard/index.html.erb within layouts/astrochimp/application (0.1ms)
719
+ Completed 200 OK in 25ms (Views: 24.6ms | ActiveRecord: 0.0ms)
720
+
721
+
722
+ Started GET "/assets/astrochimp/application.css" for 127.0.0.1 at 2011-08-25 13:59:21 -0500
723
+ Served asset /astrochimp/application.css - 304 Not Modified (0ms)
724
+
725
+
726
+ Started GET "/assets/astrochimp/application.js" for 127.0.0.1 at 2011-08-25 13:59:21 -0500
727
+ Error compiling asset astrochimp/application.js:
728
+ Sprockets::FileNotFound: couldn't find file 'jquery'
729
+ (in /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/javascripts/astrochimp/application.js:7)
730
+ Served asset /astrochimp/application.js - 500 Internal Server Error
731
+
732
+
733
+
734
+ Started GET "/astrochimp/" for 127.0.0.1 at 2011-08-25 13:59:26 -0500
735
+ Processing by Astrochimp::DashboardController#index as HTML
736
+ Rendered /Volumes/Dropbox/Dropbox/Code/astrochimp/app/views/astrochimp/dashboard/index.html.erb within layouts/astrochimp/application (0.1ms)
737
+ Completed 200 OK in 43ms (Views: 42.4ms | ActiveRecord: 0.0ms)
738
+
739
+
740
+ Started GET "/assets/astrochimp/application.css" for 127.0.0.1 at 2011-08-25 13:59:26 -0500
741
+ Served asset /astrochimp/application.css - 304 Not Modified (0ms)
742
+
743
+
744
+ Started GET "/assets/astrochimp/application.js" for 127.0.0.1 at 2011-08-25 13:59:26 -0500
745
+ Error compiling asset astrochimp/application.js:
746
+ Sprockets::FileNotFound: couldn't find file 'jquery'
747
+ (in /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/javascripts/astrochimp/application.js:7)
748
+ Served asset /astrochimp/application.js - 500 Internal Server Error
749
+
750
+
751
+
752
+ Started GET "/astrochimp/" for 127.0.0.1 at 2011-08-25 13:59:27 -0500
753
+ Processing by Astrochimp::DashboardController#index as HTML
754
+ Rendered /Volumes/Dropbox/Dropbox/Code/astrochimp/app/views/astrochimp/dashboard/index.html.erb within layouts/astrochimp/application (0.1ms)
755
+ Completed 200 OK in 38ms (Views: 37.7ms | ActiveRecord: 0.0ms)
756
+
757
+
758
+ Started GET "/assets/astrochimp/application.js" for 127.0.0.1 at 2011-08-25 13:59:28 -0500
759
+ Error compiling asset astrochimp/application.js:
760
+ Sprockets::FileNotFound: couldn't find file 'jquery'
761
+ (in /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/javascripts/astrochimp/application.js:7)
762
+ Served asset /astrochimp/application.js - 500 Internal Server Error
763
+
764
+
765
+
766
+ Started GET "/assets/astrochimp/application.css" for 127.0.0.1 at 2011-08-25 13:59:28 -0500
767
+ Served asset /astrochimp/application.css - 304 Not Modified (0ms)
768
+
769
+
770
+ Started GET "/astrochimp/" for 127.0.0.1 at 2011-08-25 13:59:29 -0500
771
+ Processing by Astrochimp::DashboardController#index as HTML
772
+ Rendered /Volumes/Dropbox/Dropbox/Code/astrochimp/app/views/astrochimp/dashboard/index.html.erb within layouts/astrochimp/application (0.1ms)
773
+ Completed 200 OK in 23ms (Views: 22.1ms | ActiveRecord: 0.0ms)
774
+
775
+
776
+ Started GET "/assets/astrochimp/application.css" for 127.0.0.1 at 2011-08-25 13:59:29 -0500
777
+ Served asset /astrochimp/application.css - 304 Not Modified (0ms)
778
+
779
+
780
+ Started GET "/assets/astrochimp/application.js" for 127.0.0.1 at 2011-08-25 13:59:29 -0500
781
+ Error compiling asset astrochimp/application.js:
782
+ Sprockets::FileNotFound: couldn't find file 'jquery'
783
+ (in /Volumes/Dropbox/Dropbox/Code/astrochimp/app/assets/javascripts/astrochimp/application.js:7)
784
+ Served asset /astrochimp/application.js - 500 Internal Server Error
785
+