joyride-rails 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (89) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.rdoc +3 -0
  3. data/Rakefile +40 -0
  4. data/app/assets/javascripts/joyride/joyride.js +15 -0
  5. data/app/assets/javascripts/joyride/jquery.joyride-1.0.3.js +329 -0
  6. data/app/assets/stylesheets/joyride/joyride-1.0.3.css.sass +132 -0
  7. data/app/assets/stylesheets/joyride/joyride.css +14 -0
  8. data/app/assets/stylesheets/joyride/variables.sass +14 -0
  9. data/app/controllers/joyride/application_controller.rb +4 -0
  10. data/app/helpers/joyride/application_helper.rb +4 -0
  11. data/app/views/layouts/joyride/application.html.erb +14 -0
  12. data/config/routes.rb +2 -0
  13. data/lib/joyride.rb +4 -0
  14. data/lib/joyride/engine.rb +5 -0
  15. data/lib/joyride/version.rb +3 -0
  16. data/lib/tasks/joyride_tasks.rake +4 -0
  17. data/test/dummy/README.rdoc +261 -0
  18. data/test/dummy/Rakefile +7 -0
  19. data/test/dummy/app/assets/javascripts/application.js +13 -0
  20. data/test/dummy/app/assets/javascripts/pages.js +2 -0
  21. data/test/dummy/app/assets/stylesheets/application.css.sass +3 -0
  22. data/test/dummy/app/assets/stylesheets/pages.css +4 -0
  23. data/test/dummy/app/controllers/application_controller.rb +3 -0
  24. data/test/dummy/app/controllers/pages_controller.rb +7 -0
  25. data/test/dummy/app/helpers/application_helper.rb +2 -0
  26. data/test/dummy/app/helpers/pages_helper.rb +2 -0
  27. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  28. data/test/dummy/app/views/pages/index.html.haml +7 -0
  29. data/test/dummy/app/views/pages/simple_test.html.haml +21 -0
  30. data/test/dummy/config.ru +4 -0
  31. data/test/dummy/config/application.rb +64 -0
  32. data/test/dummy/config/boot.rb +12 -0
  33. data/test/dummy/config/database.yml +25 -0
  34. data/test/dummy/config/environment.rb +5 -0
  35. data/test/dummy/config/environments/development.rb +37 -0
  36. data/test/dummy/config/environments/production.rb +67 -0
  37. data/test/dummy/config/environments/test.rb +37 -0
  38. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  39. data/test/dummy/config/initializers/inflections.rb +15 -0
  40. data/test/dummy/config/initializers/mime_types.rb +5 -0
  41. data/test/dummy/config/initializers/secret_token.rb +7 -0
  42. data/test/dummy/config/initializers/session_store.rb +8 -0
  43. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  44. data/test/dummy/config/locales/en.yml +5 -0
  45. data/test/dummy/config/routes.rb +8 -0
  46. data/test/dummy/log/development.log +3940 -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 +25 -0
  50. data/test/dummy/public/favicon.ico +0 -0
  51. data/test/dummy/script/rails +6 -0
  52. data/test/dummy/test/functional/pages_controller_test.rb +14 -0
  53. data/test/dummy/test/unit/helpers/pages_helper_test.rb +4 -0
  54. data/test/dummy/tmp/cache/assets/C4A/570/sprockets%2F15a04a49f19710781329a870b8d1f352 +0 -0
  55. data/test/dummy/tmp/cache/assets/C5A/BD0/sprockets%2F6e8287461f7b19335a41a29ed9195620 +0 -0
  56. data/test/dummy/tmp/cache/assets/C77/D30/sprockets%2Fca3a855423436369a12f4245be3c5545 +0 -0
  57. data/test/dummy/tmp/cache/assets/C91/E40/sprockets%2F880d46ff1082976e0eb68c528641b089 +0 -0
  58. data/test/dummy/tmp/cache/assets/CAC/040/sprockets%2F0b7d050189881e4fd2073328d92e1b2f +0 -0
  59. data/test/dummy/tmp/cache/assets/CCA/0C0/sprockets%2F6c3e053393afe303432ca73f1b41490b +0 -0
  60. data/test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
  61. data/test/dummy/tmp/cache/assets/CDE/440/sprockets%2Fb555f0d8c0d1671bc81430837d84dc92 +0 -0
  62. data/test/dummy/tmp/cache/assets/CE1/1C0/sprockets%2Fe704f02989daa684b32c3f72a4513f83 +0 -0
  63. data/test/dummy/tmp/cache/assets/D18/840/sprockets%2F50c1885539f61359c48af74fcae1df31 +0 -0
  64. data/test/dummy/tmp/cache/assets/D1E/2A0/sprockets%2F8d5d60255600aa010a32e1d1a9bc6db6 +0 -0
  65. data/test/dummy/tmp/cache/assets/D2A/450/sprockets%2F58e369b37e5157ea746a485eea17e9f7 +0 -0
  66. data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  67. data/test/dummy/tmp/cache/assets/D3F/A90/sprockets%2Ff6e315f67f26b1665d870ba3fb8050db +0 -0
  68. data/test/dummy/tmp/cache/assets/D4B/720/sprockets%2Fe16c199f91934eaff7bf97321504da2f +0 -0
  69. data/test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
  70. data/test/dummy/tmp/cache/assets/D57/E70/sprockets%2Ff3d85fee7084763c5a76a1ea676f962f +0 -0
  71. data/test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
  72. data/test/dummy/tmp/cache/assets/D65/BA0/sprockets%2F2713bd3b713d71801af63fadc3b6dc89 +0 -0
  73. data/test/dummy/tmp/cache/assets/D6E/BC0/sprockets%2Fad954413ca960fe041e137d4cd7afd69 +0 -0
  74. data/test/dummy/tmp/cache/assets/D79/8D0/sprockets%2F9a557ef8b2aceee46711709937c44acc +0 -0
  75. data/test/dummy/tmp/cache/assets/D9D/5B0/sprockets%2Ff66dd1c082fb7b7730090dbfbff961b2 +0 -0
  76. data/test/dummy/tmp/cache/assets/DA1/950/sprockets%2F9eba13b549b22c3d8ea4aad8489ba893 +0 -0
  77. data/test/dummy/tmp/cache/assets/DA6/120/sprockets%2Fc5880aca76ccbb51f9388362e8afc1e6 +0 -0
  78. data/test/dummy/tmp/cache/assets/DA7/230/sprockets%2F7ae10239eda2588a95fdcc7d871bef52 +0 -0
  79. data/test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
  80. data/test/dummy/tmp/cache/assets/DE0/690/sprockets%2F2827893fa90fd9a8521fdddcef63a8be +0 -0
  81. data/test/dummy/tmp/cache/assets/E00/660/sprockets%2F6dfe5f0c215cba9cb22b3e08dc7f5f88 +0 -0
  82. data/test/dummy/tmp/cache/assets/E02/6C0/sprockets%2Ff206e49edc9afcd023989d53a4dafbe1 +0 -0
  83. data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  84. data/test/dummy/tmp/cache/assets/E05/F10/sprockets%2Fb3d9b0e88cdded276ebdce333e338a85 +0 -0
  85. data/test/dummy/tmp/cache/sass/b6a29b56c31fc2a931d217c92dbad0128a12584a/application.css.sassc +0 -0
  86. data/test/integration/navigation_test.rb +10 -0
  87. data/test/joyride_test.rb +7 -0
  88. data/test/test_helper.rb +10 -0
  89. metadata +307 -0
@@ -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,64 @@
1
+ require File.expand_path('../boot', __FILE__)
2
+
3
+ #require 'rails/all'
4
+
5
+ require File.expand_path('../boot', __FILE__)
6
+
7
+ require "action_controller/railtie"
8
+ require "action_mailer/railtie"
9
+ require "active_resource/railtie"
10
+ require "rails/test_unit/railtie"
11
+ require "sprockets/railtie"
12
+
13
+ Bundler.require
14
+ require "joyride"
15
+
16
+ module Dummy
17
+ class Application < Rails::Application
18
+ # Settings in config/environments/* take precedence over those specified here.
19
+ # Application configuration should go into files in config/initializers
20
+ # -- all .rb files in that directory are automatically loaded.
21
+
22
+ # Custom directories with classes and modules you want to be autoloadable.
23
+ # config.autoload_paths += %W(#{config.root}/extras)
24
+
25
+ # Only load the plugins named here, in the order given (default is alphabetical).
26
+ # :all can be used as a placeholder for all plugins not explicitly named.
27
+ # config.plugins = [ :exception_notification, :ssl_requirement, :all ]
28
+
29
+ # Activate observers that should always be running.
30
+ # config.active_record.observers = :cacher, :garbage_collector, :forum_observer
31
+
32
+ # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
33
+ # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
34
+ # config.time_zone = 'Central Time (US & Canada)'
35
+
36
+ # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
37
+ # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
38
+ # config.i18n.default_locale = :de
39
+
40
+ # Configure the default encoding used in templates for Ruby 1.9.
41
+ config.encoding = "utf-8"
42
+
43
+ # Configure sensitive parameters which will be filtered from the log file.
44
+ config.filter_parameters += [:password]
45
+
46
+ # Use SQL instead of Active Record's schema dumper when creating the database.
47
+ # This is necessary if your schema can't be completely dumped by the schema dumper,
48
+ # like if you have constraints or database-specific column types
49
+ # config.active_record.schema_format = :sql
50
+
51
+ # Enforce whitelist mode for mass assignment.
52
+ # This will create an empty whitelist of attributes available for mass-assignment for all models
53
+ # in your app. As such, your models will need to explicitly whitelist or blacklist accessible
54
+ # parameters by using an attr_accessible or attr_protected declaration.
55
+ # config.active_record.whitelist_attributes = true
56
+
57
+ # Enable the asset pipeline
58
+ config.assets.enabled = true
59
+
60
+ # Version of your assets, change this if you want to expire all your assets
61
+ config.assets.version = '1.0'
62
+ end
63
+ end
64
+
@@ -0,0 +1,12 @@
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
+ require "haml-rails"
8
+ require "sass-rails"
9
+ Bundler.setup
10
+ end
11
+
12
+ $:.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,37 @@
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
+ # Raise exception on mass assignment protection for Active Record models
26
+ # config.active_record.mass_assignment_sanitizer = :strict
27
+
28
+ # Log the query plan for queries taking more than this (works
29
+ # with SQLite, MySQL, and PostgreSQL)
30
+ #config.active_record.auto_explain_threshold_in_seconds = 0.5
31
+
32
+ # Do not compress assets
33
+ config.assets.compress = false
34
+
35
+ # Expands the lines which load the assets
36
+ config.assets.debug = true
37
+ end
@@ -0,0 +1,67 @@
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
+ # Don't fallback to assets pipeline if a precompiled asset is missed
18
+ config.assets.compile = false
19
+
20
+ # Generate digests for assets URLs
21
+ config.assets.digest = true
22
+
23
+ # Defaults to Rails.root.join("public/assets")
24
+ # config.assets.manifest = YOUR_PATH
25
+
26
+ # Specifies the header that your server uses for sending files
27
+ # config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
28
+ # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
29
+
30
+ # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
31
+ # config.force_ssl = true
32
+
33
+ # See everything in the log (default is :info)
34
+ # config.log_level = :debug
35
+
36
+ # Prepend all log lines with the following tags
37
+ # config.log_tags = [ :subdomain, :uuid ]
38
+
39
+ # Use a different logger for distributed setups
40
+ # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
41
+
42
+ # Use a different cache store in production
43
+ # config.cache_store = :mem_cache_store
44
+
45
+ # Enable serving of images, stylesheets, and JavaScripts from an asset server
46
+ # config.action_controller.asset_host = "http://assets.example.com"
47
+
48
+ # Precompile additional assets (application.js, application.css, and all non-JS/CSS are already added)
49
+ # config.assets.precompile += %w( search.js )
50
+
51
+ # Disable delivery errors, bad email addresses will be ignored
52
+ # config.action_mailer.raise_delivery_errors = false
53
+
54
+ # Enable threaded mode
55
+ # config.threadsafe!
56
+
57
+ # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
58
+ # the I18n.default_locale when a translation can not be found)
59
+ config.i18n.fallbacks = true
60
+
61
+ # Send deprecation notices to registered listeners
62
+ config.active_support.deprecation = :notify
63
+
64
+ # Log the query plan for queries taking more than this (works
65
+ # with SQLite, MySQL, and PostgreSQL)
66
+ # config.active_record.auto_explain_threshold_in_seconds = 0.5
67
+ end
@@ -0,0 +1,37 @@
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
+ # Raise exception on mass assignment protection for Active Record models
33
+ config.active_record.mass_assignment_sanitizer = :strict
34
+
35
+ # Print deprecation notices to the stderr
36
+ config.active_support.deprecation = :stderr
37
+ 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,15 @@
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
11
+ #
12
+ # These inflection rules are supported but not enabled by default:
13
+ # ActiveSupport::Inflector.inflections do |inflect|
14
+ # inflect.acronym 'RESTful'
15
+ # 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 = '2ef92153c5e15d9613b1a45034dd1b0316eed2865329306c95010a2d6b3374908fc80ab0e04102d2c350a442fb0d55231a50822d4e368cfa0b99cc75060841ca'
@@ -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,8 @@
1
+ Rails.application.routes.draw do
2
+
3
+
4
+ get "pages/simple_test", :to => "pages#simple_test", :as => :simple_test
5
+
6
+ #mount Joyride::Engine => "/joyride"
7
+ root :to => "pages#index"
8
+ end
@@ -0,0 +1,3940 @@
1
+
2
+
3
+ Started GET "/" for 127.0.0.1 at 2012-05-30 02:49:33 -0400
4
+
5
+ NoMethodError (undefined method `clear_active_connections!' for ActiveRecord::Base:Class):
6
+ activerecord (3.2.3) lib/active_record/dynamic_matchers.rb:50:in `method_missing'
7
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:471:in `rescue in call'
8
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:465:in `call'
9
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
10
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__4596491100760285546__call__2977880036333241905__callbacks'
11
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
12
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
13
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
14
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
15
+ actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call'
16
+ actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
17
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
18
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
19
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
20
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
21
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
22
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
23
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
24
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
25
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
26
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
27
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
28
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
29
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
30
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
31
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
32
+ /Users/michaelnorth/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
33
+ /Users/michaelnorth/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
34
+ /Users/michaelnorth/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
35
+
36
+
37
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.1ms)
38
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.8ms)
39
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (14.2ms)
40
+
41
+
42
+ Started GET "/" for 127.0.0.1 at 2012-05-30 02:55:38 -0400
43
+
44
+ ActionController::RoutingError (No route matches [GET] "/"):
45
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
46
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
47
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
48
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
49
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
50
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
51
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
52
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
53
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
54
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
55
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
56
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
57
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
58
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
59
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
60
+ /Users/michaelnorth/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
61
+ /Users/michaelnorth/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
62
+ /Users/michaelnorth/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
63
+
64
+
65
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.0ms)
66
+
67
+
68
+ Started GET "/" for 127.0.0.1 at 2012-05-30 03:05:30 -0400
69
+ Processing by PagesController#index as HTML
70
+ Rendered pages/index.html.haml within layouts/application (1.1ms)
71
+ Compiled pages.css (0ms) (pid 28841)
72
+ Compiled application.css (25ms) (pid 28841)
73
+ Compiled jquery.js (2ms) (pid 28841)
74
+ Compiled jquery_ujs.js (0ms) (pid 28841)
75
+ Compiled pages.js (0ms) (pid 28841)
76
+ Compiled application.js (61ms) (pid 28841)
77
+ Completed 200 OK in 181ms (Views: 181.1ms)
78
+
79
+
80
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 03:05:30 -0400
81
+ Served asset /application.css - 200 OK (8ms)
82
+
83
+
84
+ Started GET "/assets/pages.css?body=1" for 127.0.0.1 at 2012-05-30 03:05:30 -0400
85
+ Served asset /pages.css - 200 OK (2ms)
86
+
87
+
88
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 03:05:30 -0400
89
+ Served asset /application.js - 200 OK (5ms)
90
+
91
+
92
+ Started GET "/assets/pages.js?body=1" for 127.0.0.1 at 2012-05-30 03:05:30 -0400
93
+ Served asset /pages.js - 200 OK (1ms)
94
+
95
+
96
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 03:05:30 -0400
97
+ Served asset /jquery.js - 200 OK (3ms)
98
+
99
+
100
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 03:05:30 -0400
101
+ Served asset /jquery_ujs.js - 200 OK (2ms)
102
+
103
+
104
+ Started GET "/" for 127.0.0.1 at 2012-05-30 03:07:53 -0400
105
+ Processing by PagesController#index as HTML
106
+ Rendered pages/index.html.haml within layouts/application (1.8ms)
107
+ Completed 200 OK in 6ms (Views: 6.0ms)
108
+
109
+
110
+ Started GET "/assets/pages.css?body=1" for 127.0.0.1 at 2012-05-30 03:07:53 -0400
111
+ Served asset /pages.css - 304 Not Modified (0ms)
112
+
113
+
114
+ Started GET "/assets/pages.js?body=1" for 127.0.0.1 at 2012-05-30 03:07:53 -0400
115
+ Served asset /pages.js - 304 Not Modified (0ms)
116
+
117
+
118
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:07:55 -0400
119
+ Processing by PagesController#simple_test as HTML
120
+ Rendered pages/simple_test.html.haml within layouts/application (0.9ms)
121
+ Completed 200 OK in 6ms (Views: 6.0ms)
122
+
123
+
124
+ Started GET "/assets/pages.css?body=1" for 127.0.0.1 at 2012-05-30 03:07:55 -0400
125
+ Served asset /pages.css - 304 Not Modified (0ms)
126
+
127
+
128
+ Started GET "/assets/pages.js?body=1" for 127.0.0.1 at 2012-05-30 03:07:55 -0400
129
+ Served asset /pages.js - 304 Not Modified (0ms)
130
+
131
+
132
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:15:04 -0400
133
+ Processing by PagesController#simple_test as HTML
134
+ Rendered pages/simple_test.html.haml within layouts/application (1.0ms)
135
+ Completed 200 OK in 41ms (Views: 41.0ms)
136
+
137
+
138
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 03:15:04 -0400
139
+ Served asset /application.css - 304 Not Modified (4ms)
140
+
141
+
142
+ Started GET "/assets/pages.js?body=1" for 127.0.0.1 at 2012-05-30 03:15:04 -0400
143
+ Served asset /pages.js - 304 Not Modified (1ms)
144
+
145
+
146
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 03:15:04 -0400
147
+ Served asset /application.js - 304 Not Modified (4ms)
148
+
149
+
150
+ Started GET "/assets/pages.css?body=1" for 127.0.0.1 at 2012-05-30 03:15:04 -0400
151
+ Served asset /pages.css - 304 Not Modified (1ms)
152
+
153
+
154
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:15:39 -0400
155
+ Processing by PagesController#simple_test as HTML
156
+ Rendered pages/simple_test.html.haml within layouts/application (0.2ms)
157
+ Completed 500 Internal Server Error in 14ms
158
+
159
+ ActionView::Template::Error (couldn't find file 'variables'
160
+ (in /Users/michaelnorth/dev/projects/KidzArt6/joyride-rails/app/assets/stylesheets/joyride/joyride.less.css:12)):
161
+ 2: <html>
162
+ 3: <head>
163
+ 4: <title>Dummy</title>
164
+ 5: <%= stylesheet_link_tag "application", :media => "all" %>
165
+ 6: <%= javascript_include_tag "application" %>
166
+ 7: <%= csrf_meta_tags %>
167
+ 8: </head>
168
+ app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__316022591623355880_70365015579120'
169
+
170
+
171
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.7ms)
172
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
173
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (13.8ms)
174
+
175
+
176
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:16:57 -0400
177
+ Processing by PagesController#simple_test as HTML
178
+ Rendered pages/simple_test.html.haml within layouts/application (0.1ms)
179
+ Completed 500 Internal Server Error in 13ms
180
+
181
+ ActionView::Template::Error (couldn't find file 'variables'
182
+ (in /Users/michaelnorth/dev/projects/KidzArt6/joyride-rails/app/assets/stylesheets/joyride/joyride.less.css:12)):
183
+ 2: <html>
184
+ 3: <head>
185
+ 4: <title>Dummy</title>
186
+ 5: <%= stylesheet_link_tag "application", :media => "all" %>
187
+ 6: <%= javascript_include_tag "application" %>
188
+ 7: <%= csrf_meta_tags %>
189
+ 8: </head>
190
+ app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__316022591623355880_70365015579120'
191
+
192
+
193
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (22.3ms)
194
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
195
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (29.5ms)
196
+
197
+
198
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:17:14 -0400
199
+ Processing by PagesController#simple_test as HTML
200
+ Rendered pages/simple_test.html.haml within layouts/application (3.5ms)
201
+ Completed 500 Internal Server Error in 25ms
202
+
203
+ ActionView::Template::Error (couldn't find file 'variables'
204
+ (in /Users/michaelnorth/dev/projects/KidzArt6/joyride-rails/app/assets/stylesheets/joyride/joyride.less.css:12)):
205
+ 2: <html>
206
+ 3: <head>
207
+ 4: <title>Dummy</title>
208
+ 5: <%= stylesheet_link_tag "application", :media => "all" %>
209
+ 6: <%= javascript_include_tag "application" %>
210
+ 7: <%= csrf_meta_tags %>
211
+ 8: </head>
212
+ app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__3337910462292116645_70154877239640'
213
+
214
+
215
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.8ms)
216
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
217
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (15.5ms)
218
+
219
+
220
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:18:09 -0400
221
+ Processing by PagesController#simple_test as HTML
222
+ Rendered pages/simple_test.html.haml within layouts/application (0.1ms)
223
+ Completed 500 Internal Server Error in 28ms
224
+
225
+ ActionView::Template::Error (couldn't find file 'variables'
226
+ (in /Users/michaelnorth/dev/projects/KidzArt6/joyride-rails/app/assets/stylesheets/joyride/joyride.less.css:12)):
227
+ 2: <html>
228
+ 3: <head>
229
+ 4: <title>Dummy</title>
230
+ 5: <%= stylesheet_link_tag "application", :media => "all" %>
231
+ 6: <%= javascript_include_tag "application" %>
232
+ 7: <%= csrf_meta_tags %>
233
+ 8: </head>
234
+ app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__3337910462292116645_70154877239640'
235
+
236
+
237
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.7ms)
238
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
239
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.1ms)
240
+
241
+
242
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:18:23 -0400
243
+ Processing by PagesController#simple_test as HTML
244
+ Rendered pages/simple_test.html.haml within layouts/application (0.9ms)
245
+ Completed 500 Internal Server Error in 20ms
246
+
247
+ ActionView::Template::Error (couldn't find file 'variables'
248
+ (in /Users/michaelnorth/dev/projects/KidzArt6/joyride-rails/app/assets/stylesheets/joyride/joyride.less.css:12)):
249
+ 2: <html>
250
+ 3: <head>
251
+ 4: <title>Dummy</title>
252
+ 5: <%= stylesheet_link_tag "application", :media => "all" %>
253
+ 6: <%= javascript_include_tag "application" %>
254
+ 7: <%= csrf_meta_tags %>
255
+ 8: </head>
256
+ app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__30877781724594471_70193934241960'
257
+
258
+
259
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.7ms)
260
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
261
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (12.4ms)
262
+
263
+
264
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:18:51 -0400
265
+ Processing by PagesController#simple_test as HTML
266
+ Rendered pages/simple_test.html.haml within layouts/application (0.1ms)
267
+ Completed 500 Internal Server Error in 12ms
268
+
269
+ ActionView::Template::Error (couldn't find file 'joyride-1.0.3'
270
+ (in /Users/michaelnorth/dev/projects/KidzArt6/joyride-rails/app/assets/stylesheets/joyride/joyride.less.css:12)):
271
+ 2: <html>
272
+ 3: <head>
273
+ 4: <title>Dummy</title>
274
+ 5: <%= stylesheet_link_tag "application", :media => "all" %>
275
+ 6: <%= javascript_include_tag "application" %>
276
+ 7: <%= csrf_meta_tags %>
277
+ 8: </head>
278
+ app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__30877781724594471_70193934241960'
279
+
280
+
281
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.8ms)
282
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
283
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.5ms)
284
+
285
+
286
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:18:57 -0400
287
+ Processing by PagesController#simple_test as HTML
288
+ Rendered pages/simple_test.html.haml within layouts/application (0.1ms)
289
+ Completed 500 Internal Server Error in 31ms
290
+
291
+ ActionView::Template::Error (couldn't find file 'joyride-1.0.3.less'
292
+ (in /Users/michaelnorth/dev/projects/KidzArt6/joyride-rails/app/assets/stylesheets/joyride/joyride.less.css:12)):
293
+ 2: <html>
294
+ 3: <head>
295
+ 4: <title>Dummy</title>
296
+ 5: <%= stylesheet_link_tag "application", :media => "all" %>
297
+ 6: <%= javascript_include_tag "application" %>
298
+ 7: <%= csrf_meta_tags %>
299
+ 8: </head>
300
+ app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__30877781724594471_70193934241960'
301
+
302
+
303
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.7ms)
304
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
305
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (10.4ms)
306
+
307
+
308
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:19:01 -0400
309
+ Processing by PagesController#simple_test as HTML
310
+ Rendered pages/simple_test.html.haml within layouts/application (0.1ms)
311
+ Completed 500 Internal Server Error in 21ms
312
+
313
+ ActionView::Template::Error (cannot load such file -- v8
314
+ (in /Users/michaelnorth/dev/projects/KidzArt6/joyride-rails/app/assets/stylesheets/joyride/joyride-1.0.3.less)):
315
+ 2: <html>
316
+ 3: <head>
317
+ 4: <title>Dummy</title>
318
+ 5: <%= stylesheet_link_tag "application", :media => "all" %>
319
+ 6: <%= javascript_include_tag "application" %>
320
+ 7: <%= csrf_meta_tags %>
321
+ 8: </head>
322
+ app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__30877781724594471_70193934241960'
323
+
324
+
325
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.4ms)
326
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.9ms)
327
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (12.9ms)
328
+
329
+
330
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:19:14 -0400
331
+ Processing by PagesController#simple_test as HTML
332
+ Rendered pages/simple_test.html.haml within layouts/application (0.1ms)
333
+ Completed 500 Internal Server Error in 14ms
334
+
335
+ ActionView::Template::Error (cannot load such file -- v8
336
+ (in /Users/michaelnorth/dev/projects/KidzArt6/joyride-rails/app/assets/stylesheets/joyride/joyride-1.0.3.less)):
337
+ 2: <html>
338
+ 3: <head>
339
+ 4: <title>Dummy</title>
340
+ 5: <%= stylesheet_link_tag "application", :media => "all" %>
341
+ 6: <%= javascript_include_tag "application" %>
342
+ 7: <%= csrf_meta_tags %>
343
+ 8: </head>
344
+ app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__30877781724594471_70193934241960'
345
+
346
+
347
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.1ms)
348
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
349
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.5ms)
350
+
351
+
352
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:19:37 -0400
353
+ Processing by PagesController#simple_test as HTML
354
+ Rendered pages/simple_test.html.haml within layouts/application (0.1ms)
355
+ Compiled joyride/joyride-1.0.3.less.css (0ms) (pid 29215)
356
+ Compiled joyride/joyride.less.css (9ms) (pid 29215)
357
+ Compiled application.css (53ms) (pid 29215)
358
+ Completed 500 Internal Server Error in 86ms
359
+
360
+ ActionView::Template::Error (couldn't find file 'jquery.joyride-1.0.3'
361
+ (in /Users/michaelnorth/dev/projects/KidzArt6/joyride-rails/app/assets/javascripts/joyride/joyride.js:15)):
362
+ 3: <head>
363
+ 4: <title>Dummy</title>
364
+ 5: <%= stylesheet_link_tag "application", :media => "all" %>
365
+ 6: <%= javascript_include_tag "application" %>
366
+ 7: <%= csrf_meta_tags %>
367
+ 8: </head>
368
+ 9: <body>
369
+ app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb__30877781724594471_70193934241960'
370
+
371
+
372
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.0ms)
373
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
374
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.6ms)
375
+
376
+
377
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:19:52 -0400
378
+ Processing by PagesController#simple_test as HTML
379
+ Rendered pages/simple_test.html.haml within layouts/application (0.1ms)
380
+ Completed 500 Internal Server Error in 32ms
381
+
382
+ ActionView::Template::Error (cannot load such file -- v8
383
+ (in /Users/michaelnorth/dev/projects/KidzArt6/joyride-rails/app/assets/stylesheets/joyride/joyride-1.0.3.less)):
384
+ 2: <html>
385
+ 3: <head>
386
+ 4: <title>Dummy</title>
387
+ 5: <%= stylesheet_link_tag "application", :media => "all" %>
388
+ 6: <%= javascript_include_tag "application" %>
389
+ 7: <%= csrf_meta_tags %>
390
+ 8: </head>
391
+ app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__30877781724594471_70193934241960'
392
+
393
+
394
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.3ms)
395
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
396
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.8ms)
397
+
398
+
399
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:20:06 -0400
400
+ Processing by PagesController#simple_test as HTML
401
+ Rendered pages/simple_test.html.haml within layouts/application (0.1ms)
402
+ Completed 500 Internal Server Error in 10ms
403
+
404
+ ActionView::Template::Error (cannot load such file -- v8
405
+ (in /Users/michaelnorth/dev/projects/KidzArt6/joyride-rails/app/assets/stylesheets/joyride/joyride-1.0.3.less)):
406
+ 2: <html>
407
+ 3: <head>
408
+ 4: <title>Dummy</title>
409
+ 5: <%= stylesheet_link_tag "application", :media => "all" %>
410
+ 6: <%= javascript_include_tag "application" %>
411
+ 7: <%= csrf_meta_tags %>
412
+ 8: </head>
413
+ app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__30877781724594471_70193934241960'
414
+
415
+
416
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.7ms)
417
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
418
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.7ms)
419
+
420
+
421
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:20:13 -0400
422
+ Processing by PagesController#simple_test as HTML
423
+ Rendered pages/simple_test.html.haml within layouts/application (0.1ms)
424
+ Completed 500 Internal Server Error in 10ms
425
+
426
+ ActionView::Template::Error (couldn't find file 'joyride-1.0.3'
427
+ (in /Users/michaelnorth/dev/projects/KidzArt6/joyride-rails/app/assets/stylesheets/joyride/joyride.less.css:12)):
428
+ 2: <html>
429
+ 3: <head>
430
+ 4: <title>Dummy</title>
431
+ 5: <%= stylesheet_link_tag "application", :media => "all" %>
432
+ 6: <%= javascript_include_tag "application" %>
433
+ 7: <%= csrf_meta_tags %>
434
+ 8: </head>
435
+ app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__30877781724594471_70193934241960'
436
+
437
+
438
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.3ms)
439
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
440
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.7ms)
441
+
442
+
443
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:20:20 -0400
444
+ Processing by PagesController#simple_test as HTML
445
+ Rendered pages/simple_test.html.haml within layouts/application (0.1ms)
446
+ Completed 500 Internal Server Error in 14ms
447
+
448
+ ActionView::Template::Error (cannot load such file -- v8
449
+ (in /Users/michaelnorth/dev/projects/KidzArt6/joyride-rails/app/assets/stylesheets/joyride/joyride-1.0.3.less)):
450
+ 2: <html>
451
+ 3: <head>
452
+ 4: <title>Dummy</title>
453
+ 5: <%= stylesheet_link_tag "application", :media => "all" %>
454
+ 6: <%= javascript_include_tag "application" %>
455
+ 7: <%= csrf_meta_tags %>
456
+ 8: </head>
457
+ app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__30877781724594471_70193934241960'
458
+
459
+
460
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (17.9ms)
461
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (20.3ms)
462
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (46.3ms)
463
+
464
+
465
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:20:29 -0400
466
+ Processing by PagesController#simple_test as HTML
467
+ Rendered pages/simple_test.html.haml within layouts/application (0.1ms)
468
+ Completed 500 Internal Server Error in 13ms
469
+
470
+ ActionView::Template::Error (cannot load such file -- v8
471
+ (in /Users/michaelnorth/dev/projects/KidzArt6/joyride-rails/app/assets/stylesheets/joyride/joyride-1.0.3.less)):
472
+ 2: <html>
473
+ 3: <head>
474
+ 4: <title>Dummy</title>
475
+ 5: <%= stylesheet_link_tag "application", :media => "all" %>
476
+ 6: <%= javascript_include_tag "application" %>
477
+ 7: <%= csrf_meta_tags %>
478
+ 8: </head>
479
+ app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__30877781724594471_70193934241960'
480
+
481
+
482
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (5.3ms)
483
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
484
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (13.2ms)
485
+
486
+
487
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:20:36 -0400
488
+ Processing by PagesController#simple_test as HTML
489
+ Rendered pages/simple_test.html.haml within layouts/application (0.1ms)
490
+ Compiled joyride/joyride-1.0.3.less.css (0ms) (pid 29215)
491
+ Compiled joyride/joyride.less.css (1ms) (pid 29215)
492
+ Compiled application.css (2ms) (pid 29215)
493
+ Completed 500 Internal Server Error in 34ms
494
+
495
+ ActionView::Template::Error (couldn't find file 'jquery.joyride-1.0.3'
496
+ (in /Users/michaelnorth/dev/projects/KidzArt6/joyride-rails/app/assets/javascripts/joyride/joyride.js:15)):
497
+ 3: <head>
498
+ 4: <title>Dummy</title>
499
+ 5: <%= stylesheet_link_tag "application", :media => "all" %>
500
+ 6: <%= javascript_include_tag "application" %>
501
+ 7: <%= csrf_meta_tags %>
502
+ 8: </head>
503
+ 9: <body>
504
+ app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb__30877781724594471_70193934241960'
505
+
506
+
507
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.7ms)
508
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
509
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.2ms)
510
+
511
+
512
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:20:45 -0400
513
+ Processing by PagesController#simple_test as HTML
514
+ Rendered pages/simple_test.html.haml within layouts/application (0.1ms)
515
+ Compiled joyride/jquery.joyride-1.0.3.js (0ms) (pid 29215)
516
+ Compiled joyride/joyride.js (10ms) (pid 29215)
517
+ Compiled application.js (21ms) (pid 29215)
518
+ Completed 200 OK in 61ms (Views: 60.8ms)
519
+
520
+
521
+ Started GET "/assets/joyride/joyride.less.css?body=1" for 127.0.0.1 at 2012-05-30 03:20:45 -0400
522
+ Served asset /joyride/joyride.less.css - 200 OK (28ms)
523
+
524
+
525
+ Started GET "/assets/joyride/joyride-1.0.3.less.css?body=1" for 127.0.0.1 at 2012-05-30 03:20:45 -0400
526
+ Served asset /joyride/joyride-1.0.3.less.css - 200 OK (5ms)
527
+
528
+
529
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 03:20:45 -0400
530
+ Served asset /joyride/jquery.joyride-1.0.3.js - 200 OK (3ms)
531
+
532
+
533
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 03:20:45 -0400
534
+ Served asset /jquery_ujs.js - 304 Not Modified (4ms)
535
+
536
+
537
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 03:20:45 -0400
538
+ Served asset /jquery.js - 304 Not Modified (3ms)
539
+
540
+
541
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 03:20:45 -0400
542
+ Served asset /application.css - 200 OK (4ms)
543
+
544
+
545
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 03:20:45 -0400
546
+ Served asset /joyride/joyride.js - 200 OK (9ms)
547
+
548
+
549
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 03:20:45 -0400
550
+ Served asset /application.js - 200 OK (29ms)
551
+
552
+
553
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:22:09 -0400
554
+ Processing by PagesController#simple_test as HTML
555
+ Rendered pages/simple_test.html.haml within layouts/application (0.1ms)
556
+ Completed 200 OK in 8ms (Views: 7.7ms)
557
+
558
+
559
+ Started GET "/assets/joyride/joyride.less.css?body=1" for 127.0.0.1 at 2012-05-30 03:22:10 -0400
560
+ Served asset /joyride/joyride.less.css - 304 Not Modified (0ms)
561
+
562
+
563
+ Started GET "/assets/joyride/joyride-1.0.3.less.css?body=1" for 127.0.0.1 at 2012-05-30 03:22:10 -0400
564
+ Served asset /joyride/joyride-1.0.3.less.css - 304 Not Modified (0ms)
565
+
566
+
567
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 03:22:10 -0400
568
+ Served asset /application.css - 304 Not Modified (0ms)
569
+
570
+
571
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 03:22:10 -0400
572
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
573
+
574
+
575
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 03:22:10 -0400
576
+ Served asset /jquery.js - 304 Not Modified (0ms)
577
+
578
+
579
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 03:22:10 -0400
580
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
581
+
582
+
583
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 03:22:10 -0400
584
+ Served asset /application.js - 304 Not Modified (0ms)
585
+
586
+
587
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:24:35 -0400
588
+ Processing by PagesController#simple_test as HTML
589
+ Rendered pages/simple_test.html.haml within layouts/application (3.0ms)
590
+ Completed 200 OK in 11ms (Views: 11.2ms)
591
+
592
+
593
+ Started GET "/assets/joyride/joyride-1.0.3.less.css?body=1" for 127.0.0.1 at 2012-05-30 03:24:35 -0400
594
+ Served asset /joyride/joyride-1.0.3.less.css - 304 Not Modified (0ms)
595
+
596
+
597
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 03:24:35 -0400
598
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
599
+
600
+
601
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 03:24:35 -0400
602
+ Served asset /jquery.js - 304 Not Modified (0ms)
603
+
604
+
605
+ Started GET "/assets/joyride/joyride.less.css?body=1" for 127.0.0.1 at 2012-05-30 03:24:35 -0400
606
+ Served asset /joyride/joyride.less.css - 304 Not Modified (0ms)
607
+
608
+
609
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 03:24:35 -0400
610
+ Served asset /application.css - 304 Not Modified (0ms)
611
+
612
+
613
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 03:24:36 -0400
614
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
615
+
616
+
617
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 03:24:36 -0400
618
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
619
+
620
+
621
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 03:24:36 -0400
622
+ Served asset /application.js - 304 Not Modified (0ms)
623
+
624
+
625
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:24:45 -0400
626
+ Processing by PagesController#simple_test as HTML
627
+ Rendered pages/simple_test.html.haml within layouts/application (2.0ms)
628
+ Completed 200 OK in 7ms (Views: 7.1ms)
629
+
630
+
631
+ Started GET "/assets/joyride/joyride.less.css?body=1" for 127.0.0.1 at 2012-05-30 03:24:45 -0400
632
+ Served asset /joyride/joyride.less.css - 304 Not Modified (0ms)
633
+
634
+
635
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 03:24:45 -0400
636
+ Served asset /application.css - 304 Not Modified (0ms)
637
+
638
+
639
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 03:24:45 -0400
640
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
641
+
642
+
643
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 03:24:45 -0400
644
+ Served asset /jquery.js - 304 Not Modified (0ms)
645
+
646
+
647
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 03:24:45 -0400
648
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
649
+
650
+
651
+ Started GET "/assets/joyride/joyride-1.0.3.less.css?body=1" for 127.0.0.1 at 2012-05-30 03:24:45 -0400
652
+ Served asset /joyride/joyride-1.0.3.less.css - 304 Not Modified (0ms)
653
+
654
+
655
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 03:24:45 -0400
656
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
657
+
658
+
659
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 03:24:45 -0400
660
+ Served asset /application.js - 304 Not Modified (0ms)
661
+
662
+
663
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:25:31 -0400
664
+ Processing by PagesController#simple_test as HTML
665
+ Rendered pages/simple_test.html.haml within layouts/application (2.3ms)
666
+ Completed 200 OK in 7ms (Views: 7.3ms)
667
+
668
+
669
+ Started GET "/assets/joyride/joyride.less.css?body=1" for 127.0.0.1 at 2012-05-30 03:25:31 -0400
670
+ Served asset /joyride/joyride.less.css - 304 Not Modified (0ms)
671
+
672
+
673
+ Started GET "/assets/joyride/joyride-1.0.3.less.css?body=1" for 127.0.0.1 at 2012-05-30 03:25:31 -0400
674
+ Served asset /joyride/joyride-1.0.3.less.css - 304 Not Modified (0ms)
675
+
676
+
677
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 03:25:31 -0400
678
+ Served asset /application.css - 304 Not Modified (0ms)
679
+
680
+
681
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 03:25:31 -0400
682
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
683
+
684
+
685
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 03:25:31 -0400
686
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
687
+
688
+
689
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 03:25:31 -0400
690
+ Served asset /jquery.js - 304 Not Modified (0ms)
691
+
692
+
693
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 03:25:31 -0400
694
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
695
+
696
+
697
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 03:25:31 -0400
698
+ Served asset /application.js - 304 Not Modified (0ms)
699
+
700
+
701
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:25:55 -0400
702
+ Processing by PagesController#simple_test as HTML
703
+ Rendered pages/simple_test.html.haml within layouts/application (2.1ms)
704
+ Completed 200 OK in 8ms (Views: 7.4ms)
705
+
706
+
707
+ Started GET "/assets/joyride/joyride-1.0.3.less.css?body=1" for 127.0.0.1 at 2012-05-30 03:25:55 -0400
708
+ Served asset /joyride/joyride-1.0.3.less.css - 304 Not Modified (0ms)
709
+
710
+
711
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 03:25:55 -0400
712
+ Served asset /application.css - 304 Not Modified (0ms)
713
+
714
+
715
+ Started GET "/assets/joyride/joyride.less.css?body=1" for 127.0.0.1 at 2012-05-30 03:25:55 -0400
716
+ Served asset /joyride/joyride.less.css - 304 Not Modified (0ms)
717
+
718
+
719
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 03:25:55 -0400
720
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
721
+
722
+
723
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 03:25:55 -0400
724
+ Served asset /jquery.js - 304 Not Modified (0ms)
725
+
726
+
727
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 03:25:55 -0400
728
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
729
+
730
+
731
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 03:25:55 -0400
732
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
733
+
734
+
735
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 03:25:55 -0400
736
+ Served asset /application.js - 304 Not Modified (0ms)
737
+
738
+
739
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:26:01 -0400
740
+ Processing by PagesController#simple_test as HTML
741
+ Rendered pages/simple_test.html.haml within layouts/application (2.1ms)
742
+ Completed 200 OK in 7ms (Views: 7.0ms)
743
+
744
+
745
+ Started GET "/assets/joyride/joyride.less.css?body=1" for 127.0.0.1 at 2012-05-30 03:26:02 -0400
746
+ Served asset /joyride/joyride.less.css - 304 Not Modified (0ms)
747
+
748
+
749
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 03:26:02 -0400
750
+ Served asset /application.css - 304 Not Modified (0ms)
751
+
752
+
753
+ Started GET "/assets/joyride/joyride-1.0.3.less.css?body=1" for 127.0.0.1 at 2012-05-30 03:26:02 -0400
754
+ Served asset /joyride/joyride-1.0.3.less.css - 304 Not Modified (0ms)
755
+
756
+
757
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 03:26:02 -0400
758
+ Served asset /jquery.js - 304 Not Modified (0ms)
759
+
760
+
761
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 03:26:02 -0400
762
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
763
+
764
+
765
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 03:26:02 -0400
766
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
767
+
768
+
769
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 03:26:02 -0400
770
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
771
+
772
+
773
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 03:26:02 -0400
774
+ Served asset /application.js - 304 Not Modified (0ms)
775
+
776
+
777
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:26:35 -0400
778
+ Processing by PagesController#simple_test as HTML
779
+ Rendered pages/simple_test.html.haml within layouts/application (2.4ms)
780
+ Completed 200 OK in 7ms (Views: 7.3ms)
781
+
782
+
783
+ Started GET "/assets/joyride/joyride.less.css?body=1" for 127.0.0.1 at 2012-05-30 03:26:35 -0400
784
+ Served asset /joyride/joyride.less.css - 304 Not Modified (0ms)
785
+
786
+
787
+ Started GET "/assets/joyride/joyride-1.0.3.less.css?body=1" for 127.0.0.1 at 2012-05-30 03:26:35 -0400
788
+ Served asset /joyride/joyride-1.0.3.less.css - 304 Not Modified (0ms)
789
+
790
+
791
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 03:26:35 -0400
792
+ Served asset /application.css - 304 Not Modified (0ms)
793
+
794
+
795
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 03:26:35 -0400
796
+ Served asset /jquery.js - 304 Not Modified (0ms)
797
+
798
+
799
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 03:26:35 -0400
800
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
801
+
802
+
803
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 03:26:35 -0400
804
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
805
+
806
+
807
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 03:26:35 -0400
808
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
809
+
810
+
811
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 03:26:35 -0400
812
+ Served asset /application.js - 304 Not Modified (0ms)
813
+
814
+
815
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:26:57 -0400
816
+ Processing by PagesController#simple_test as HTML
817
+ Rendered pages/simple_test.html.haml within layouts/application (2.3ms)
818
+ Completed 200 OK in 7ms (Views: 7.0ms)
819
+
820
+
821
+ Started GET "/assets/joyride/joyride-1.0.3.less.css?body=1" for 127.0.0.1 at 2012-05-30 03:26:57 -0400
822
+ Served asset /joyride/joyride-1.0.3.less.css - 304 Not Modified (0ms)
823
+
824
+
825
+ Started GET "/assets/joyride/joyride.less.css?body=1" for 127.0.0.1 at 2012-05-30 03:26:57 -0400
826
+ Served asset /joyride/joyride.less.css - 304 Not Modified (0ms)
827
+
828
+
829
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 03:26:57 -0400
830
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
831
+
832
+
833
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 03:26:57 -0400
834
+ Served asset /jquery.js - 304 Not Modified (0ms)
835
+
836
+
837
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 03:26:57 -0400
838
+ Served asset /application.css - 304 Not Modified (0ms)
839
+
840
+
841
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 03:26:57 -0400
842
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
843
+
844
+
845
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 03:26:57 -0400
846
+ Served asset /application.js - 304 Not Modified (0ms)
847
+
848
+
849
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 03:26:57 -0400
850
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
851
+
852
+
853
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:27:53 -0400
854
+ Processing by PagesController#simple_test as HTML
855
+ Rendered pages/simple_test.html.haml within layouts/application (0.2ms)
856
+ Compiled joyride/joyride-1.0.3.css (0ms) (pid 29215)
857
+ Compiled joyride/joyride.less.css (11ms) (pid 29215)
858
+ Compiled application.css (2ms) (pid 29215)
859
+ Completed 200 OK in 48ms (Views: 47.6ms)
860
+
861
+
862
+ Started GET "/assets/joyride/joyride-1.0.3.css?body=1" for 127.0.0.1 at 2012-05-30 03:27:54 -0400
863
+ Served asset /joyride/joyride-1.0.3.css - 200 OK (3ms)
864
+
865
+
866
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 03:27:54 -0400
867
+ Served asset /application.css - 304 Not Modified (10ms)
868
+
869
+
870
+ Started GET "/assets/joyride/joyride.less.css?body=1" for 127.0.0.1 at 2012-05-30 03:27:54 -0400
871
+ Served asset /joyride/joyride.less.css - 304 Not Modified (3ms)
872
+
873
+
874
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 03:27:54 -0400
875
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
876
+
877
+
878
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 03:27:54 -0400
879
+ Served asset /jquery.js - 304 Not Modified (0ms)
880
+
881
+
882
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 03:27:54 -0400
883
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
884
+
885
+
886
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 03:27:54 -0400
887
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
888
+
889
+
890
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 03:27:54 -0400
891
+ Served asset /application.js - 304 Not Modified (0ms)
892
+
893
+
894
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:28:19 -0400
895
+ Processing by PagesController#simple_test as HTML
896
+ Rendered pages/simple_test.html.haml within layouts/application (0.2ms)
897
+ Compiled joyride/joyride-1.0.3.less.css (0ms) (pid 29215)
898
+ Compiled joyride/joyride.less.css (4ms) (pid 29215)
899
+ Compiled application.css (2ms) (pid 29215)
900
+ Completed 200 OK in 45ms (Views: 45.3ms)
901
+
902
+
903
+ Started GET "/assets/joyride/joyride.less.css?body=1" for 127.0.0.1 at 2012-05-30 03:28:19 -0400
904
+ Served asset /joyride/joyride.less.css - 304 Not Modified (6ms)
905
+
906
+
907
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 03:28:19 -0400
908
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
909
+
910
+
911
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 03:28:19 -0400
912
+ Served asset /application.css - 304 Not Modified (4ms)
913
+
914
+
915
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 03:28:19 -0400
916
+ Served asset /jquery.js - 304 Not Modified (0ms)
917
+
918
+
919
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 03:28:19 -0400
920
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
921
+
922
+
923
+ Started GET "/assets/joyride/joyride-1.0.3.less.css?body=1" for 127.0.0.1 at 2012-05-30 03:28:19 -0400
924
+ Served asset /joyride/joyride-1.0.3.less.css - 200 OK (2ms)
925
+
926
+
927
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 03:28:19 -0400
928
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
929
+
930
+
931
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 03:28:19 -0400
932
+ Served asset /application.js - 304 Not Modified (0ms)
933
+
934
+
935
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:29:37 -0400
936
+ Processing by PagesController#simple_test as HTML
937
+ Rendered pages/simple_test.html.haml within layouts/application (0.2ms)
938
+ Completed 500 Internal Server Error in 13ms
939
+
940
+ ActionView::Template::Error (cannot load such file -- v8
941
+ (in /Users/michaelnorth/dev/projects/KidzArt6/joyride-rails/app/assets/stylesheets/joyride/joyride-1.0.3.css.less)):
942
+ 2: <html>
943
+ 3: <head>
944
+ 4: <title>Dummy</title>
945
+ 5: <%= stylesheet_link_tag "application", :media => "all" %>
946
+ 6: <%= javascript_include_tag "application" %>
947
+ 7: <%= csrf_meta_tags %>
948
+ 8: </head>
949
+ app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__30877781724594471_70193934241960'
950
+
951
+
952
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.1ms)
953
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
954
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.4ms)
955
+
956
+
957
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:30:01 -0400
958
+ Processing by PagesController#simple_test as HTML
959
+ Rendered pages/simple_test.html.haml within layouts/application (0.2ms)
960
+ Completed 500 Internal Server Error in 14ms
961
+
962
+ ActionView::Template::Error (cannot load such file -- v8
963
+ (in /Users/michaelnorth/dev/projects/KidzArt6/joyride-rails/app/assets/stylesheets/joyride/joyride.css.less)):
964
+ 2: <html>
965
+ 3: <head>
966
+ 4: <title>Dummy</title>
967
+ 5: <%= stylesheet_link_tag "application", :media => "all" %>
968
+ 6: <%= javascript_include_tag "application" %>
969
+ 7: <%= csrf_meta_tags %>
970
+ 8: </head>
971
+ app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__30877781724594471_70193934241960'
972
+
973
+
974
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.0ms)
975
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
976
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.7ms)
977
+
978
+
979
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:31:11 -0400
980
+ Processing by PagesController#simple_test as HTML
981
+ Rendered pages/simple_test.html.haml within layouts/application (0.3ms)
982
+ Completed 500 Internal Server Error in 19ms
983
+
984
+ ActionView::Template::Error (cannot load such file -- v8
985
+ (in /Users/michaelnorth/dev/projects/KidzArt6/joyride-rails/app/assets/stylesheets/joyride/joyride.less)):
986
+ 2: <html>
987
+ 3: <head>
988
+ 4: <title>Dummy</title>
989
+ 5: <%= stylesheet_link_tag "application", :media => "all" %>
990
+ 6: <%= javascript_include_tag "application" %>
991
+ 7: <%= csrf_meta_tags %>
992
+ 8: </head>
993
+ app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__30877781724594471_70193934241960'
994
+
995
+
996
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.4ms)
997
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
998
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (13.7ms)
999
+
1000
+
1001
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:32:14 -0400
1002
+ Processing by PagesController#simple_test as HTML
1003
+ Rendered pages/simple_test.html.haml within layouts/application (0.2ms)
1004
+ Compiled joyride/joyride.less.css (0ms) (pid 29215)
1005
+ Compiled application.css (2ms) (pid 29215)
1006
+ Completed 200 OK in 23ms (Views: 22.5ms)
1007
+
1008
+
1009
+ Started GET "/assets/joyride/joyride.less.css?body=1" for 127.0.0.1 at 2012-05-30 03:32:14 -0400
1010
+ Served asset /joyride/joyride.less.css - 200 OK (4ms)
1011
+
1012
+
1013
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 03:32:14 -0400
1014
+ Served asset /application.css - 304 Not Modified (4ms)
1015
+
1016
+
1017
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 03:32:14 -0400
1018
+ Served asset /jquery.js - 304 Not Modified (0ms)
1019
+
1020
+
1021
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 03:32:14 -0400
1022
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1023
+
1024
+
1025
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 03:32:14 -0400
1026
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
1027
+
1028
+
1029
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 03:32:14 -0400
1030
+ Served asset /application.js - 304 Not Modified (0ms)
1031
+
1032
+
1033
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 03:32:14 -0400
1034
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
1035
+
1036
+
1037
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:33:20 -0400
1038
+ Processing by PagesController#simple_test as HTML
1039
+ Rendered pages/simple_test.html.haml within layouts/application (0.3ms)
1040
+ Completed 500 Internal Server Error in 12ms
1041
+
1042
+ ActionView::Template::Error (cannot load such file -- v8
1043
+ (in /Users/michaelnorth/dev/projects/KidzArt6/joyride-rails/app/assets/stylesheets/joyride/joyride-1.0.3.css.less)):
1044
+ 2: <html>
1045
+ 3: <head>
1046
+ 4: <title>Dummy</title>
1047
+ 5: <%= stylesheet_link_tag "application", :media => "all" %>
1048
+ 6: <%= javascript_include_tag "application" %>
1049
+ 7: <%= csrf_meta_tags %>
1050
+ 8: </head>
1051
+ app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__30877781724594471_70193934241960'
1052
+
1053
+
1054
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.1ms)
1055
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
1056
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.4ms)
1057
+
1058
+
1059
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:33:35 -0400
1060
+ Processing by PagesController#simple_test as HTML
1061
+ Rendered pages/simple_test.html.haml within layouts/application (0.2ms)
1062
+ Completed 500 Internal Server Error in 16ms
1063
+
1064
+ ActionView::Template::Error (cannot load such file -- v8
1065
+ (in /Users/michaelnorth/dev/projects/KidzArt6/joyride-rails/app/assets/stylesheets/joyride/joyride-1.0.3.css.less)):
1066
+ 2: <html>
1067
+ 3: <head>
1068
+ 4: <title>Dummy</title>
1069
+ 5: <%= stylesheet_link_tag "application", :media => "all" %>
1070
+ 6: <%= javascript_include_tag "application" %>
1071
+ 7: <%= csrf_meta_tags %>
1072
+ 8: </head>
1073
+ app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__30877781724594471_70193934241960'
1074
+
1075
+
1076
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (6.8ms)
1077
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
1078
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (15.5ms)
1079
+
1080
+
1081
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:33:38 -0400
1082
+ Processing by PagesController#simple_test as HTML
1083
+ Rendered pages/simple_test.html.haml within layouts/application (0.2ms)
1084
+ Completed 500 Internal Server Error in 38ms
1085
+
1086
+ ActionView::Template::Error (cannot load such file -- v8
1087
+ (in /Users/michaelnorth/dev/projects/KidzArt6/joyride-rails/app/assets/stylesheets/joyride/joyride-1.0.3.css.less)):
1088
+ 2: <html>
1089
+ 3: <head>
1090
+ 4: <title>Dummy</title>
1091
+ 5: <%= stylesheet_link_tag "application", :media => "all" %>
1092
+ 6: <%= javascript_include_tag "application" %>
1093
+ 7: <%= csrf_meta_tags %>
1094
+ 8: </head>
1095
+ app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__30877781724594471_70193934241960'
1096
+
1097
+
1098
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (5.4ms)
1099
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
1100
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (13.2ms)
1101
+
1102
+
1103
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:33:55 -0400
1104
+ Processing by PagesController#simple_test as HTML
1105
+ Rendered pages/simple_test.html.haml within layouts/application (0.3ms)
1106
+ Completed 500 Internal Server Error in 223ms
1107
+
1108
+ ActionView::Template::Error (Invalid CSS after "relative": expected expression (e.g. 1px, bold), was ";"
1109
+ (in /Users/michaelnorth/dev/projects/KidzArt6/joyride-rails/app/assets/stylesheets/joyride/joyride-1.0.3.css.sass)):
1110
+ 2: <html>
1111
+ 3: <head>
1112
+ 4: <title>Dummy</title>
1113
+ 5: <%= stylesheet_link_tag "application", :media => "all" %>
1114
+ 6: <%= javascript_include_tag "application" %>
1115
+ 7: <%= csrf_meta_tags %>
1116
+ 8: </head>
1117
+ app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__30877781724594471_70193934241960'
1118
+
1119
+
1120
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (24.6ms)
1121
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
1122
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (33.5ms)
1123
+
1124
+
1125
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:35:14 -0400
1126
+ Processing by PagesController#simple_test as HTML
1127
+ Rendered pages/simple_test.html.haml within layouts/application (0.3ms)
1128
+ Completed 500 Internal Server Error in 15ms
1129
+
1130
+ ActionView::Template::Error (cannot load such file -- v8
1131
+ (in /Users/michaelnorth/dev/projects/KidzArt6/joyride-rails/app/assets/stylesheets/joyride/joyride-1.0.3.css.less)):
1132
+ 2: <html>
1133
+ 3: <head>
1134
+ 4: <title>Dummy</title>
1135
+ 5: <%= stylesheet_link_tag "application", :media => "all" %>
1136
+ 6: <%= javascript_include_tag "application" %>
1137
+ 7: <%= csrf_meta_tags %>
1138
+ 8: </head>
1139
+ app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__30877781724594471_70193934241960'
1140
+
1141
+
1142
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (5.6ms)
1143
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.9ms)
1144
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (15.7ms)
1145
+
1146
+
1147
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:36:26 -0400
1148
+ Processing by PagesController#simple_test as HTML
1149
+ Rendered pages/simple_test.html.haml within layouts/application (3.3ms)
1150
+ Completed 500 Internal Server Error in 43ms
1151
+
1152
+ ActionView::Template::Error (cannot load such file -- v8
1153
+ (in /Users/michaelnorth/dev/projects/KidzArt6/joyride-rails/app/assets/stylesheets/joyride/joyride-1.0.3.css.less)):
1154
+ 2: <html>
1155
+ 3: <head>
1156
+ 4: <title>Dummy</title>
1157
+ 5: <%= stylesheet_link_tag "application", :media => "all" %>
1158
+ 6: <%= javascript_include_tag "application" %>
1159
+ 7: <%= csrf_meta_tags %>
1160
+ 8: </head>
1161
+ app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb___1867545626185074030_70125248369880'
1162
+
1163
+
1164
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (7.4ms)
1165
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
1166
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (18.2ms)
1167
+
1168
+
1169
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:36:50 -0400
1170
+ Processing by PagesController#simple_test as HTML
1171
+ Rendered pages/simple_test.html.haml within layouts/application (0.3ms)
1172
+ Completed 500 Internal Server Error in 19ms
1173
+
1174
+ ActionView::Template::Error (cannot load such file -- v8
1175
+ (in /Users/michaelnorth/dev/projects/KidzArt6/joyride-rails/app/assets/stylesheets/joyride/joyride-1.0.3.css.less)):
1176
+ 2: <html>
1177
+ 3: <head>
1178
+ 4: <title>Dummy</title>
1179
+ 5: <%= stylesheet_link_tag "application", :media => "all" %>
1180
+ 6: <%= javascript_include_tag "application" %>
1181
+ 7: <%= csrf_meta_tags %>
1182
+ 8: </head>
1183
+ app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb___1867545626185074030_70125248369880'
1184
+
1185
+
1186
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (6.3ms)
1187
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
1188
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (33.6ms)
1189
+
1190
+
1191
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:38:16 -0400
1192
+ Processing by PagesController#simple_test as HTML
1193
+ Rendered pages/simple_test.html.haml within layouts/application (0.3ms)
1194
+ Completed 500 Internal Server Error in 19ms
1195
+
1196
+ ActionView::Template::Error (cannot load such file -- v8
1197
+ (in /Users/michaelnorth/dev/projects/KidzArt6/joyride-rails/app/assets/stylesheets/joyride/joyride-1.0.3.css.less)):
1198
+ 2: <html>
1199
+ 3: <head>
1200
+ 4: <title>Dummy</title>
1201
+ 5: <%= stylesheet_link_tag "application", :media => "all" %>
1202
+ 6: <%= javascript_include_tag "application" %>
1203
+ 7: <%= csrf_meta_tags %>
1204
+ 8: </head>
1205
+ app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb___1867545626185074030_70125248369880'
1206
+
1207
+
1208
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.2ms)
1209
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
1210
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (12.9ms)
1211
+
1212
+
1213
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:38:31 -0400
1214
+ Processing by PagesController#simple_test as HTML
1215
+ Rendered pages/simple_test.html.haml within layouts/application (0.2ms)
1216
+ Completed 500 Internal Server Error in 12ms
1217
+
1218
+ ActionView::Template::Error (couldn't find file './joyride-1.0.3.css.less'
1219
+ (in /Users/michaelnorth/dev/projects/KidzArt6/joyride-rails/app/assets/stylesheets/joyride/joyride.css:12)):
1220
+ 2: <html>
1221
+ 3: <head>
1222
+ 4: <title>Dummy</title>
1223
+ 5: <%= stylesheet_link_tag "application", :media => "all" %>
1224
+ 6: <%= javascript_include_tag "application" %>
1225
+ 7: <%= csrf_meta_tags %>
1226
+ 8: </head>
1227
+ app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb___1867545626185074030_70125248369880'
1228
+
1229
+
1230
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (5.1ms)
1231
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
1232
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (13.0ms)
1233
+
1234
+
1235
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:38:45 -0400
1236
+ Processing by PagesController#simple_test as HTML
1237
+ Rendered pages/simple_test.html.haml within layouts/application (0.2ms)
1238
+ Completed 500 Internal Server Error in 15ms
1239
+
1240
+ ActionView::Template::Error (cannot load such file -- v8
1241
+ (in /Users/michaelnorth/dev/projects/KidzArt6/joyride-rails/app/assets/stylesheets/joyride/joyride-1.0.3.css.less)):
1242
+ 2: <html>
1243
+ 3: <head>
1244
+ 4: <title>Dummy</title>
1245
+ 5: <%= stylesheet_link_tag "application", :media => "all" %>
1246
+ 6: <%= javascript_include_tag "application" %>
1247
+ 7: <%= csrf_meta_tags %>
1248
+ 8: </head>
1249
+ app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb___1867545626185074030_70125248369880'
1250
+
1251
+
1252
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (5.7ms)
1253
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
1254
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (14.0ms)
1255
+
1256
+
1257
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:39:08 -0400
1258
+ Processing by PagesController#simple_test as HTML
1259
+ Rendered pages/simple_test.html.haml within layouts/application (0.2ms)
1260
+ Completed 500 Internal Server Error in 267ms
1261
+
1262
+ ActionView::Template::Error (Invalid CSS after "relative": expected expression (e.g. 1px, bold), was ";"
1263
+ (in /Users/michaelnorth/dev/projects/KidzArt6/joyride-rails/app/assets/stylesheets/joyride/joyride-1.0.3.css.sass)):
1264
+ 2: <html>
1265
+ 3: <head>
1266
+ 4: <title>Dummy</title>
1267
+ 5: <%= stylesheet_link_tag "application", :media => "all" %>
1268
+ 6: <%= javascript_include_tag "application" %>
1269
+ 7: <%= csrf_meta_tags %>
1270
+ 8: </head>
1271
+ app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb___1867545626185074030_70125248369880'
1272
+
1273
+
1274
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.8ms)
1275
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
1276
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (12.9ms)
1277
+
1278
+
1279
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:39:21 -0400
1280
+ Processing by PagesController#simple_test as HTML
1281
+ Rendered pages/simple_test.html.haml within layouts/application (0.4ms)
1282
+ Completed 500 Internal Server Error in 19ms
1283
+
1284
+ ActionView::Template::Error (Invalid CSS after "relative": expected expression (e.g. 1px, bold), was ";"
1285
+ (in /Users/michaelnorth/dev/projects/KidzArt6/joyride-rails/app/assets/stylesheets/joyride/joyride-1.0.3.css.sass)):
1286
+ 2: <html>
1287
+ 3: <head>
1288
+ 4: <title>Dummy</title>
1289
+ 5: <%= stylesheet_link_tag "application", :media => "all" %>
1290
+ 6: <%= javascript_include_tag "application" %>
1291
+ 7: <%= csrf_meta_tags %>
1292
+ 8: </head>
1293
+ app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb___1867545626185074030_70125248369880'
1294
+
1295
+
1296
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (5.6ms)
1297
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
1298
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (14.0ms)
1299
+
1300
+
1301
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:40:05 -0400
1302
+ Processing by PagesController#simple_test as HTML
1303
+ Rendered pages/simple_test.html.haml within layouts/application (0.3ms)
1304
+ Completed 500 Internal Server Error in 37ms
1305
+
1306
+ ActionView::Template::Error (Invalid CSS after "relative": expected expression (e.g. 1px, bold), was ";"
1307
+ (in /Users/michaelnorth/dev/projects/KidzArt6/joyride-rails/app/assets/stylesheets/joyride/joyride-1.0.3.css.sass)):
1308
+ 2: <html>
1309
+ 3: <head>
1310
+ 4: <title>Dummy</title>
1311
+ 5: <%= stylesheet_link_tag "application", :media => "all" %>
1312
+ 6: <%= javascript_include_tag "application" %>
1313
+ 7: <%= csrf_meta_tags %>
1314
+ 8: </head>
1315
+ app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb___1867545626185074030_70125248369880'
1316
+
1317
+
1318
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (5.9ms)
1319
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
1320
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (14.0ms)
1321
+
1322
+
1323
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:40:09 -0400
1324
+ Processing by PagesController#simple_test as HTML
1325
+ Rendered pages/simple_test.html.haml within layouts/application (0.2ms)
1326
+ Completed 500 Internal Server Error in 16ms
1327
+
1328
+ ActionView::Template::Error (Invalid CSS after "relative": expected expression (e.g. 1px, bold), was ";"
1329
+ (in /Users/michaelnorth/dev/projects/KidzArt6/joyride-rails/app/assets/stylesheets/joyride/joyride-1.0.3.css.sass)):
1330
+ 2: <html>
1331
+ 3: <head>
1332
+ 4: <title>Dummy</title>
1333
+ 5: <%= stylesheet_link_tag "application", :media => "all" %>
1334
+ 6: <%= javascript_include_tag "application" %>
1335
+ 7: <%= csrf_meta_tags %>
1336
+ 8: </head>
1337
+ app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb___1867545626185074030_70125248369880'
1338
+
1339
+
1340
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.7ms)
1341
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
1342
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (12.0ms)
1343
+
1344
+
1345
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:40:25 -0400
1346
+ Processing by PagesController#simple_test as HTML
1347
+ Rendered pages/simple_test.html.haml within layouts/application (3.3ms)
1348
+ Completed 500 Internal Server Error in 259ms
1349
+
1350
+ ActionView::Template::Error (Invalid CSS after "relative": expected expression (e.g. 1px, bold), was ";"
1351
+ (in /Users/michaelnorth/dev/projects/KidzArt6/joyride-rails/app/assets/stylesheets/joyride/joyride-1.0.3.css.sass)):
1352
+ 2: <html>
1353
+ 3: <head>
1354
+ 4: <title>Dummy</title>
1355
+ 5: <%= stylesheet_link_tag "application", :media => "all" %>
1356
+ 6: <%= javascript_include_tag "application" %>
1357
+ 7: <%= csrf_meta_tags %>
1358
+ 8: </head>
1359
+ app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb___2334615056204790435_70144168646680'
1360
+
1361
+
1362
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (5.8ms)
1363
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
1364
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (16.9ms)
1365
+
1366
+
1367
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:41:39 -0400
1368
+ Processing by PagesController#simple_test as HTML
1369
+ Rendered pages/simple_test.html.haml within layouts/application (0.4ms)
1370
+ Compiled joyride/joyride-1.0.3.css (106ms) (pid 29823)
1371
+ Compiled joyride/joyride.css (117ms) (pid 29823)
1372
+ Compiled application.css (130ms) (pid 29823)
1373
+ Completed 200 OK in 173ms (Views: 172.7ms)
1374
+
1375
+
1376
+ Started GET "/assets/joyride/joyride.css?body=1" for 127.0.0.1 at 2012-05-30 03:41:39 -0400
1377
+ Served asset /joyride/joyride.css - 200 OK (3ms)
1378
+
1379
+
1380
+ Started GET "/assets/joyride/joyride-1.0.3.css?body=1" for 127.0.0.1 at 2012-05-30 03:41:39 -0400
1381
+ Served asset /joyride/joyride-1.0.3.css - 200 OK (3ms)
1382
+
1383
+
1384
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 03:41:39 -0400
1385
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (2ms)
1386
+
1387
+
1388
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 03:41:39 -0400
1389
+ Served asset /jquery.js - 304 Not Modified (3ms)
1390
+
1391
+
1392
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 03:41:39 -0400
1393
+ Served asset /application.css - 304 Not Modified (4ms)
1394
+
1395
+
1396
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 03:41:39 -0400
1397
+ Served asset /joyride/joyride.js - 304 Not Modified (9ms)
1398
+
1399
+
1400
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 03:41:39 -0400
1401
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
1402
+
1403
+
1404
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 03:41:39 -0400
1405
+ Served asset /application.js - 304 Not Modified (6ms)
1406
+
1407
+
1408
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:42:08 -0400
1409
+ Processing by PagesController#simple_test as HTML
1410
+ Rendered pages/simple_test.html.haml within layouts/application (0.3ms)
1411
+ Compiled joyride/joyride-1.0.3.css (85ms) (pid 29823)
1412
+ Compiled joyride/joyride.css (1ms) (pid 29823)
1413
+ Compiled application.css (1ms) (pid 29823)
1414
+ Completed 200 OK in 111ms (Views: 110.7ms)
1415
+
1416
+
1417
+ Started GET "/assets/joyride/joyride-1.0.3.css?body=1" for 127.0.0.1 at 2012-05-30 03:42:08 -0400
1418
+ Served asset /joyride/joyride-1.0.3.css - 200 OK (6ms)
1419
+
1420
+
1421
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 03:42:08 -0400
1422
+ Served asset /application.css - 304 Not Modified (5ms)
1423
+
1424
+
1425
+ Started GET "/assets/joyride/joyride.css?body=1" for 127.0.0.1 at 2012-05-30 03:42:08 -0400
1426
+ Served asset /joyride/joyride.css - 304 Not Modified (4ms)
1427
+
1428
+
1429
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 03:42:08 -0400
1430
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
1431
+
1432
+
1433
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 03:42:08 -0400
1434
+ Served asset /jquery_ujs.js - 304 Not Modified (17ms)
1435
+
1436
+
1437
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 03:42:08 -0400
1438
+ Served asset /jquery.js - 304 Not Modified (0ms)
1439
+
1440
+
1441
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 03:42:08 -0400
1442
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
1443
+
1444
+
1445
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 03:42:09 -0400
1446
+ Served asset /application.js - 304 Not Modified (0ms)
1447
+
1448
+
1449
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:42:30 -0400
1450
+ Processing by PagesController#simple_test as HTML
1451
+ Rendered pages/simple_test.html.haml within layouts/application (0.2ms)
1452
+ Compiled joyride/joyride-1.0.3.css (70ms) (pid 29823)
1453
+ Compiled joyride/joyride.css (1ms) (pid 29823)
1454
+ Compiled application.css (2ms) (pid 29823)
1455
+ Completed 200 OK in 97ms (Views: 96.4ms)
1456
+
1457
+
1458
+ Started GET "/assets/joyride/joyride.css?body=1" for 127.0.0.1 at 2012-05-30 03:42:30 -0400
1459
+ Served asset /joyride/joyride.css - 304 Not Modified (6ms)
1460
+
1461
+
1462
+ Started GET "/assets/joyride/joyride-1.0.3.css?body=1" for 127.0.0.1 at 2012-05-30 03:42:30 -0400
1463
+ Served asset /joyride/joyride-1.0.3.css - 304 Not Modified (4ms)
1464
+
1465
+
1466
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 03:42:30 -0400
1467
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1468
+
1469
+
1470
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 03:42:30 -0400
1471
+ Served asset /application.css - 304 Not Modified (6ms)
1472
+
1473
+
1474
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 03:42:30 -0400
1475
+ Served asset /jquery.js - 304 Not Modified (0ms)
1476
+
1477
+
1478
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 03:42:30 -0400
1479
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
1480
+
1481
+
1482
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 03:42:30 -0400
1483
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
1484
+
1485
+
1486
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 03:42:30 -0400
1487
+ Served asset /application.js - 304 Not Modified (0ms)
1488
+
1489
+
1490
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:46:18 -0400
1491
+ Processing by PagesController#simple_test as HTML
1492
+ Rendered pages/simple_test.html.haml within layouts/application (0.2ms)
1493
+ Completed 500 Internal Server Error in 15ms
1494
+
1495
+ ActionView::Template::Error (Invalid mixin include "@include "variables.sass"".
1496
+ (in /Users/michaelnorth/dev/projects/KidzArt6/joyride-rails/app/assets/stylesheets/joyride/joyride-1.0.3.css.sass)):
1497
+ 2: <html>
1498
+ 3: <head>
1499
+ 4: <title>Dummy</title>
1500
+ 5: <%= stylesheet_link_tag "application", :media => "all" %>
1501
+ 6: <%= javascript_include_tag "application" %>
1502
+ 7: <%= csrf_meta_tags %>
1503
+ 8: </head>
1504
+ app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb___2334615056204790435_70144168646680'
1505
+
1506
+
1507
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.3ms)
1508
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
1509
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (13.4ms)
1510
+
1511
+
1512
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:46:25 -0400
1513
+ Processing by PagesController#simple_test as HTML
1514
+ Rendered pages/simple_test.html.haml within layouts/application (0.2ms)
1515
+ Compiled joyride/joyride-1.0.3.css (56ms) (pid 29823)
1516
+ Compiled joyride/joyride.css (1ms) (pid 29823)
1517
+ Compiled application.css (17ms) (pid 29823)
1518
+ Completed 200 OK in 94ms (Views: 93.5ms)
1519
+
1520
+
1521
+ Started GET "/assets/joyride/joyride-1.0.3.css?body=1" for 127.0.0.1 at 2012-05-30 03:46:25 -0400
1522
+ Served asset /joyride/joyride-1.0.3.css - 304 Not Modified (9ms)
1523
+
1524
+
1525
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 03:46:25 -0400
1526
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1527
+
1528
+
1529
+ Started GET "/assets/joyride/joyride.css?body=1" for 127.0.0.1 at 2012-05-30 03:46:25 -0400
1530
+ Served asset /joyride/joyride.css - 304 Not Modified (4ms)
1531
+
1532
+
1533
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 03:46:25 -0400
1534
+ Served asset /jquery.js - 304 Not Modified (0ms)
1535
+
1536
+
1537
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 03:46:25 -0400
1538
+ Served asset /application.css - 304 Not Modified (9ms)
1539
+
1540
+
1541
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 03:46:25 -0400
1542
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
1543
+
1544
+
1545
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 03:46:25 -0400
1546
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
1547
+
1548
+
1549
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 03:46:25 -0400
1550
+ Served asset /application.js - 304 Not Modified (0ms)
1551
+
1552
+
1553
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:46:32 -0400
1554
+ Processing by PagesController#simple_test as HTML
1555
+ Rendered pages/simple_test.html.haml within layouts/application (0.4ms)
1556
+ Completed 200 OK in 11ms (Views: 10.6ms)
1557
+
1558
+
1559
+ Started GET "/assets/joyride/joyride.css?body=1" for 127.0.0.1 at 2012-05-30 03:46:32 -0400
1560
+ Served asset /joyride/joyride.css - 304 Not Modified (0ms)
1561
+
1562
+
1563
+ Started GET "/assets/joyride/joyride-1.0.3.css?body=1" for 127.0.0.1 at 2012-05-30 03:46:32 -0400
1564
+ Served asset /joyride/joyride-1.0.3.css - 304 Not Modified (0ms)
1565
+
1566
+
1567
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 03:46:32 -0400
1568
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1569
+
1570
+
1571
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 03:46:32 -0400
1572
+ Served asset /application.css - 304 Not Modified (0ms)
1573
+
1574
+
1575
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 03:46:32 -0400
1576
+ Served asset /jquery.js - 304 Not Modified (0ms)
1577
+
1578
+
1579
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 03:46:32 -0400
1580
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
1581
+
1582
+
1583
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 03:46:32 -0400
1584
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
1585
+
1586
+
1587
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 03:46:32 -0400
1588
+ Served asset /application.js - 304 Not Modified (0ms)
1589
+
1590
+
1591
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:46:37 -0400
1592
+ Processing by PagesController#simple_test as HTML
1593
+ Rendered pages/simple_test.html.haml within layouts/application (0.2ms)
1594
+ Completed 200 OK in 6ms (Views: 5.6ms)
1595
+
1596
+
1597
+ Started GET "/assets/joyride/joyride.css?body=1" for 127.0.0.1 at 2012-05-30 03:46:37 -0400
1598
+ Served asset /joyride/joyride.css - 304 Not Modified (0ms)
1599
+
1600
+
1601
+ Started GET "/assets/joyride/joyride-1.0.3.css?body=1" for 127.0.0.1 at 2012-05-30 03:46:37 -0400
1602
+ Served asset /joyride/joyride-1.0.3.css - 304 Not Modified (0ms)
1603
+
1604
+
1605
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 03:46:37 -0400
1606
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1607
+
1608
+
1609
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 03:46:37 -0400
1610
+ Served asset /jquery.js - 304 Not Modified (0ms)
1611
+
1612
+
1613
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 03:46:37 -0400
1614
+ Served asset /application.css - 304 Not Modified (0ms)
1615
+
1616
+
1617
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 03:46:37 -0400
1618
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
1619
+
1620
+
1621
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 03:46:38 -0400
1622
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
1623
+
1624
+
1625
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 03:46:38 -0400
1626
+ Served asset /application.js - 304 Not Modified (0ms)
1627
+
1628
+
1629
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:46:42 -0400
1630
+ Processing by PagesController#simple_test as HTML
1631
+ Rendered pages/simple_test.html.haml within layouts/application (0.3ms)
1632
+ Completed 200 OK in 31ms (Views: 30.6ms)
1633
+
1634
+
1635
+ Started GET "/assets/joyride/joyride.css?body=1" for 127.0.0.1 at 2012-05-30 03:46:42 -0400
1636
+ Served asset /joyride/joyride.css - 304 Not Modified (0ms)
1637
+
1638
+
1639
+ Started GET "/assets/joyride/joyride-1.0.3.css?body=1" for 127.0.0.1 at 2012-05-30 03:46:42 -0400
1640
+ Served asset /joyride/joyride-1.0.3.css - 304 Not Modified (0ms)
1641
+
1642
+
1643
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 03:46:42 -0400
1644
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1645
+
1646
+
1647
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 03:46:42 -0400
1648
+ Served asset /jquery.js - 304 Not Modified (0ms)
1649
+
1650
+
1651
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 03:46:42 -0400
1652
+ Served asset /application.css - 304 Not Modified (0ms)
1653
+
1654
+
1655
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 03:46:42 -0400
1656
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
1657
+
1658
+
1659
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 03:46:42 -0400
1660
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
1661
+
1662
+
1663
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 03:46:42 -0400
1664
+ Served asset /application.js - 304 Not Modified (0ms)
1665
+
1666
+
1667
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:46:44 -0400
1668
+ Processing by PagesController#simple_test as HTML
1669
+ Rendered pages/simple_test.html.haml within layouts/application (0.2ms)
1670
+ Completed 200 OK in 6ms (Views: 5.7ms)
1671
+
1672
+
1673
+ Started GET "/assets/joyride/joyride.css?body=1" for 127.0.0.1 at 2012-05-30 03:46:44 -0400
1674
+ Served asset /joyride/joyride.css - 304 Not Modified (0ms)
1675
+
1676
+
1677
+ Started GET "/assets/joyride/joyride-1.0.3.css?body=1" for 127.0.0.1 at 2012-05-30 03:46:44 -0400
1678
+ Served asset /joyride/joyride-1.0.3.css - 304 Not Modified (0ms)
1679
+
1680
+
1681
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 03:46:44 -0400
1682
+ Served asset /application.css - 304 Not Modified (0ms)
1683
+
1684
+
1685
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 03:46:44 -0400
1686
+ Served asset /jquery.js - 304 Not Modified (0ms)
1687
+
1688
+
1689
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 03:46:44 -0400
1690
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1691
+
1692
+
1693
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 03:46:44 -0400
1694
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
1695
+
1696
+
1697
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 03:46:44 -0400
1698
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
1699
+
1700
+
1701
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 03:46:44 -0400
1702
+ Served asset /application.js - 304 Not Modified (0ms)
1703
+
1704
+
1705
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:47:17 -0400
1706
+ Processing by PagesController#simple_test as HTML
1707
+ Rendered pages/simple_test.html.haml within layouts/application (0.2ms)
1708
+ Compiled joyride/joyride-1.0.3.css (79ms) (pid 29823)
1709
+ Compiled joyride/joyride.css (1ms) (pid 29823)
1710
+ Compiled application.css (2ms) (pid 29823)
1711
+ Completed 200 OK in 106ms (Views: 105.7ms)
1712
+
1713
+
1714
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 03:47:17 -0400
1715
+ Served asset /application.css - 304 Not Modified (10ms)
1716
+
1717
+
1718
+ Started GET "/assets/joyride/joyride-1.0.3.css?body=1" for 127.0.0.1 at 2012-05-30 03:47:17 -0400
1719
+ Served asset /joyride/joyride-1.0.3.css - 200 OK (3ms)
1720
+
1721
+
1722
+ Started GET "/assets/joyride/joyride.css?body=1" for 127.0.0.1 at 2012-05-30 03:47:17 -0400
1723
+ Served asset /joyride/joyride.css - 304 Not Modified (5ms)
1724
+
1725
+
1726
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 03:47:17 -0400
1727
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1728
+
1729
+
1730
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 03:47:17 -0400
1731
+ Served asset /jquery.js - 304 Not Modified (0ms)
1732
+
1733
+
1734
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 03:47:17 -0400
1735
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
1736
+
1737
+
1738
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 03:47:17 -0400
1739
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
1740
+
1741
+
1742
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 03:47:17 -0400
1743
+ Served asset /application.js - 304 Not Modified (0ms)
1744
+
1745
+
1746
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:47:28 -0400
1747
+ Processing by PagesController#simple_test as HTML
1748
+ Rendered pages/simple_test.html.haml within layouts/application (0.2ms)
1749
+ Compiled joyride/joyride-1.0.3.css (79ms) (pid 29823)
1750
+ Compiled joyride/joyride.css (1ms) (pid 29823)
1751
+ Compiled application.css (2ms) (pid 29823)
1752
+ Completed 200 OK in 123ms (Views: 123.1ms)
1753
+
1754
+
1755
+ Started GET "/assets/joyride/joyride-1.0.3.css?body=1" for 127.0.0.1 at 2012-05-30 03:47:28 -0400
1756
+ Served asset /joyride/joyride-1.0.3.css - 200 OK (5ms)
1757
+
1758
+
1759
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 03:47:28 -0400
1760
+ Served asset /jquery.js - 304 Not Modified (0ms)
1761
+
1762
+
1763
+ Started GET "/assets/joyride/joyride.css?body=1" for 127.0.0.1 at 2012-05-30 03:47:28 -0400
1764
+ Served asset /joyride/joyride.css - 304 Not Modified (4ms)
1765
+
1766
+
1767
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 03:47:28 -0400
1768
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1769
+
1770
+
1771
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 03:47:28 -0400
1772
+ Served asset /application.css - 304 Not Modified (4ms)
1773
+
1774
+
1775
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 03:47:28 -0400
1776
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
1777
+
1778
+
1779
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 03:47:28 -0400
1780
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
1781
+
1782
+
1783
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 03:47:28 -0400
1784
+ Served asset /application.js - 304 Not Modified (0ms)
1785
+
1786
+
1787
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:47:37 -0400
1788
+ Processing by PagesController#simple_test as HTML
1789
+ Rendered pages/simple_test.html.haml within layouts/application (0.2ms)
1790
+ Compiled joyride/joyride-1.0.3.css (74ms) (pid 29823)
1791
+ Compiled joyride/joyride.css (1ms) (pid 29823)
1792
+ Compiled application.css (2ms) (pid 29823)
1793
+ Completed 200 OK in 101ms (Views: 101.4ms)
1794
+
1795
+
1796
+ Started GET "/assets/joyride/joyride.css?body=1" for 127.0.0.1 at 2012-05-30 03:47:37 -0400
1797
+ Served asset /joyride/joyride.css - 304 Not Modified (3ms)
1798
+
1799
+
1800
+ Started GET "/assets/joyride/joyride-1.0.3.css?body=1" for 127.0.0.1 at 2012-05-30 03:47:37 -0400
1801
+ Served asset /joyride/joyride-1.0.3.css - 200 OK (3ms)
1802
+
1803
+
1804
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 03:47:37 -0400
1805
+ Served asset /application.css - 304 Not Modified (6ms)
1806
+
1807
+
1808
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 03:47:37 -0400
1809
+ Served asset /jquery.js - 304 Not Modified (0ms)
1810
+
1811
+
1812
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 03:47:37 -0400
1813
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1814
+
1815
+
1816
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 03:47:37 -0400
1817
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
1818
+
1819
+
1820
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 03:47:37 -0400
1821
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
1822
+
1823
+
1824
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 03:47:37 -0400
1825
+ Served asset /application.js - 304 Not Modified (0ms)
1826
+
1827
+
1828
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:48:33 -0400
1829
+ Processing by PagesController#simple_test as HTML
1830
+ Rendered pages/simple_test.html.haml within layouts/application (0.4ms)
1831
+ Completed 500 Internal Server Error in 110ms
1832
+
1833
+ ActionView::Template::Error (Undefined variable: "$joyride_tip_background_transparency".
1834
+ (in /Users/michaelnorth/dev/projects/KidzArt6/joyride-rails/app/assets/stylesheets/joyride/joyride-1.0.3.css.sass)):
1835
+ 2: <html>
1836
+ 3: <head>
1837
+ 4: <title>Dummy</title>
1838
+ 5: <%= stylesheet_link_tag "application", :media => "all" %>
1839
+ 6: <%= javascript_include_tag "application" %>
1840
+ 7: <%= csrf_meta_tags %>
1841
+ 8: </head>
1842
+ app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb___2334615056204790435_70144168646680'
1843
+
1844
+
1845
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (5.8ms)
1846
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
1847
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (15.8ms)
1848
+
1849
+
1850
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:49:08 -0400
1851
+ Processing by PagesController#simple_test as HTML
1852
+ Rendered pages/simple_test.html.haml within layouts/application (0.2ms)
1853
+ Compiled joyride/joyride-1.0.3.css (70ms) (pid 29823)
1854
+ Compiled joyride/joyride.css (1ms) (pid 29823)
1855
+ Compiled application.css (2ms) (pid 29823)
1856
+ Completed 200 OK in 93ms (Views: 93.3ms)
1857
+
1858
+
1859
+ Started GET "/assets/joyride/joyride-1.0.3.css?body=1" for 127.0.0.1 at 2012-05-30 03:49:09 -0400
1860
+ Served asset /joyride/joyride-1.0.3.css - 200 OK (4ms)
1861
+
1862
+
1863
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 03:49:09 -0400
1864
+ Served asset /application.css - 304 Not Modified (5ms)
1865
+
1866
+
1867
+ Started GET "/assets/joyride/joyride.css?body=1" for 127.0.0.1 at 2012-05-30 03:49:09 -0400
1868
+ Served asset /joyride/joyride.css - 304 Not Modified (4ms)
1869
+
1870
+
1871
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 03:49:09 -0400
1872
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
1873
+
1874
+
1875
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 03:49:09 -0400
1876
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1877
+
1878
+
1879
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 03:49:09 -0400
1880
+ Served asset /jquery.js - 304 Not Modified (0ms)
1881
+
1882
+
1883
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 03:49:09 -0400
1884
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
1885
+
1886
+
1887
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 03:49:09 -0400
1888
+ Served asset /application.js - 304 Not Modified (0ms)
1889
+
1890
+
1891
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:49:28 -0400
1892
+ Processing by PagesController#simple_test as HTML
1893
+ Rendered pages/simple_test.html.haml within layouts/application (0.2ms)
1894
+ Compiled joyride/joyride-1.0.3.css (76ms) (pid 29823)
1895
+ Compiled joyride/joyride.css (1ms) (pid 29823)
1896
+ Compiled application.css (3ms) (pid 29823)
1897
+ Completed 200 OK in 121ms (Views: 121.1ms)
1898
+
1899
+
1900
+ Started GET "/assets/joyride/joyride.css?body=1" for 127.0.0.1 at 2012-05-30 03:49:28 -0400
1901
+ Served asset /joyride/joyride.css - 304 Not Modified (6ms)
1902
+
1903
+
1904
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 03:49:28 -0400
1905
+ Served asset /application.css - 304 Not Modified (5ms)
1906
+
1907
+
1908
+ Started GET "/assets/joyride/joyride-1.0.3.css?body=1" for 127.0.0.1 at 2012-05-30 03:49:28 -0400
1909
+ Served asset /joyride/joyride-1.0.3.css - 200 OK (2ms)
1910
+
1911
+
1912
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 03:49:28 -0400
1913
+ Served asset /jquery.js - 304 Not Modified (0ms)
1914
+
1915
+
1916
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 03:49:28 -0400
1917
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1918
+
1919
+
1920
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 03:49:28 -0400
1921
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
1922
+
1923
+
1924
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 03:49:28 -0400
1925
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
1926
+
1927
+
1928
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 03:49:28 -0400
1929
+ Served asset /application.js - 304 Not Modified (0ms)
1930
+
1931
+
1932
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:49:36 -0400
1933
+ Processing by PagesController#simple_test as HTML
1934
+ Rendered pages/simple_test.html.haml within layouts/application (0.2ms)
1935
+ Completed 200 OK in 5ms (Views: 4.7ms)
1936
+
1937
+
1938
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 03:49:36 -0400
1939
+ Served asset /application.css - 304 Not Modified (0ms)
1940
+
1941
+
1942
+ Started GET "/assets/joyride/joyride.css?body=1" for 127.0.0.1 at 2012-05-30 03:49:36 -0400
1943
+ Served asset /joyride/joyride.css - 304 Not Modified (0ms)
1944
+
1945
+
1946
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 03:49:36 -0400
1947
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1948
+
1949
+
1950
+ Started GET "/assets/joyride/joyride-1.0.3.css?body=1" for 127.0.0.1 at 2012-05-30 03:49:36 -0400
1951
+ Served asset /joyride/joyride-1.0.3.css - 304 Not Modified (0ms)
1952
+
1953
+
1954
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 03:49:36 -0400
1955
+ Served asset /jquery.js - 304 Not Modified (0ms)
1956
+
1957
+
1958
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 03:49:36 -0400
1959
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
1960
+
1961
+
1962
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 03:49:36 -0400
1963
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
1964
+
1965
+
1966
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 03:49:36 -0400
1967
+ Served asset /application.js - 304 Not Modified (0ms)
1968
+
1969
+
1970
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:49:41 -0400
1971
+ Processing by PagesController#simple_test as HTML
1972
+ Rendered pages/simple_test.html.haml within layouts/application (0.2ms)
1973
+ Completed 200 OK in 6ms (Views: 5.9ms)
1974
+
1975
+
1976
+ Started GET "/assets/joyride/joyride.css?body=1" for 127.0.0.1 at 2012-05-30 03:49:41 -0400
1977
+ Served asset /joyride/joyride.css - 304 Not Modified (0ms)
1978
+
1979
+
1980
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 03:49:41 -0400
1981
+ Served asset /jquery.js - 304 Not Modified (0ms)
1982
+
1983
+
1984
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 03:49:41 -0400
1985
+ Served asset /application.css - 304 Not Modified (0ms)
1986
+
1987
+
1988
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 03:49:41 -0400
1989
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1990
+
1991
+
1992
+ Started GET "/assets/joyride/joyride-1.0.3.css?body=1" for 127.0.0.1 at 2012-05-30 03:49:41 -0400
1993
+ Served asset /joyride/joyride-1.0.3.css - 304 Not Modified (0ms)
1994
+
1995
+
1996
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 03:49:41 -0400
1997
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
1998
+
1999
+
2000
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 03:49:41 -0400
2001
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
2002
+
2003
+
2004
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 03:49:41 -0400
2005
+ Served asset /application.js - 304 Not Modified (0ms)
2006
+
2007
+
2008
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:50:11 -0400
2009
+ Processing by PagesController#simple_test as HTML
2010
+ Rendered pages/simple_test.html.haml within layouts/application (0.3ms)
2011
+ Compiled joyride/joyride-1.0.3.css (64ms) (pid 29823)
2012
+ Compiled joyride/joyride.css (1ms) (pid 29823)
2013
+ Compiled application.css (3ms) (pid 29823)
2014
+ Completed 200 OK in 121ms (Views: 121.2ms)
2015
+
2016
+
2017
+ Started GET "/assets/joyride/joyride.css?body=1" for 127.0.0.1 at 2012-05-30 03:50:11 -0400
2018
+ Served asset /joyride/joyride.css - 304 Not Modified (8ms)
2019
+
2020
+
2021
+ Started GET "/assets/joyride/joyride-1.0.3.css?body=1" for 127.0.0.1 at 2012-05-30 03:50:11 -0400
2022
+ Served asset /joyride/joyride-1.0.3.css - 200 OK (4ms)
2023
+
2024
+
2025
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 03:50:12 -0400
2026
+ Served asset /application.css - 304 Not Modified (5ms)
2027
+
2028
+
2029
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 03:50:12 -0400
2030
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2031
+
2032
+
2033
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 03:50:12 -0400
2034
+ Served asset /jquery.js - 304 Not Modified (0ms)
2035
+
2036
+
2037
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 03:50:12 -0400
2038
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
2039
+
2040
+
2041
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 03:50:12 -0400
2042
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
2043
+
2044
+
2045
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 03:50:12 -0400
2046
+ Served asset /application.js - 304 Not Modified (0ms)
2047
+
2048
+
2049
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:50:25 -0400
2050
+ Processing by PagesController#simple_test as HTML
2051
+ Rendered pages/simple_test.html.haml within layouts/application (0.2ms)
2052
+ Completed 200 OK in 5ms (Views: 5.1ms)
2053
+
2054
+
2055
+ Started GET "/assets/joyride/joyride.css?body=1" for 127.0.0.1 at 2012-05-30 03:50:25 -0400
2056
+ Served asset /joyride/joyride.css - 304 Not Modified (0ms)
2057
+
2058
+
2059
+ Started GET "/assets/joyride/joyride-1.0.3.css?body=1" for 127.0.0.1 at 2012-05-30 03:50:25 -0400
2060
+ Served asset /joyride/joyride-1.0.3.css - 304 Not Modified (0ms)
2061
+
2062
+
2063
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 03:50:25 -0400
2064
+ Served asset /jquery.js - 304 Not Modified (0ms)
2065
+
2066
+
2067
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 03:50:25 -0400
2068
+ Served asset /application.css - 304 Not Modified (0ms)
2069
+
2070
+
2071
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 03:50:25 -0400
2072
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2073
+
2074
+
2075
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 03:50:25 -0400
2076
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
2077
+
2078
+
2079
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 03:50:25 -0400
2080
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
2081
+
2082
+
2083
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 03:50:25 -0400
2084
+ Served asset /application.js - 304 Not Modified (0ms)
2085
+
2086
+
2087
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:50:30 -0400
2088
+ Processing by PagesController#simple_test as HTML
2089
+ Rendered pages/simple_test.html.haml within layouts/application (0.2ms)
2090
+ Compiled joyride/joyride.css (1ms) (pid 29823)
2091
+ Compiled application.css (2ms) (pid 29823)
2092
+ Completed 200 OK in 21ms (Views: 21.1ms)
2093
+
2094
+
2095
+ Started GET "/assets/joyride/joyride.css?body=1" for 127.0.0.1 at 2012-05-30 03:50:30 -0400
2096
+ Served asset /joyride/joyride.css - 200 OK (3ms)
2097
+
2098
+
2099
+ Started GET "/assets/joyride/joyride-1.0.3.css?body=1" for 127.0.0.1 at 2012-05-30 03:50:30 -0400
2100
+ Served asset /joyride/joyride-1.0.3.css - 304 Not Modified (0ms)
2101
+
2102
+
2103
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 03:50:30 -0400
2104
+ Served asset /jquery.js - 304 Not Modified (0ms)
2105
+
2106
+
2107
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 03:50:30 -0400
2108
+ Served asset /application.css - 304 Not Modified (8ms)
2109
+
2110
+
2111
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 03:50:30 -0400
2112
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
2113
+
2114
+
2115
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 03:50:30 -0400
2116
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2117
+
2118
+
2119
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 03:50:30 -0400
2120
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
2121
+
2122
+
2123
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 03:50:30 -0400
2124
+ Served asset /application.js - 304 Not Modified (0ms)
2125
+
2126
+
2127
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:50:37 -0400
2128
+ Processing by PagesController#simple_test as HTML
2129
+ Rendered pages/simple_test.html.haml within layouts/application (0.2ms)
2130
+ Compiled joyride/joyride-1.0.3.css (66ms) (pid 29823)
2131
+ Compiled joyride/joyride.css (1ms) (pid 29823)
2132
+ Compiled application.css (15ms) (pid 29823)
2133
+ Completed 200 OK in 103ms (Views: 102.9ms)
2134
+
2135
+
2136
+ Started GET "/assets/joyride/joyride-1.0.3.css?body=1" for 127.0.0.1 at 2012-05-30 03:50:38 -0400
2137
+ Served asset /joyride/joyride-1.0.3.css - 200 OK (7ms)
2138
+
2139
+
2140
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 03:50:38 -0400
2141
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2142
+
2143
+
2144
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 03:50:38 -0400
2145
+ Served asset /jquery.js - 304 Not Modified (0ms)
2146
+
2147
+
2148
+ Started GET "/assets/joyride/joyride.css?body=1" for 127.0.0.1 at 2012-05-30 03:50:38 -0400
2149
+ Served asset /joyride/joyride.css - 200 OK (4ms)
2150
+
2151
+
2152
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 03:50:38 -0400
2153
+ Served asset /application.css - 304 Not Modified (4ms)
2154
+
2155
+
2156
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 03:50:38 -0400
2157
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
2158
+
2159
+
2160
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 03:50:38 -0400
2161
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
2162
+
2163
+
2164
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 03:50:38 -0400
2165
+ Served asset /application.js - 304 Not Modified (0ms)
2166
+
2167
+
2168
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:51:10 -0400
2169
+ Processing by PagesController#simple_test as HTML
2170
+ Rendered pages/simple_test.html.haml within layouts/application (0.3ms)
2171
+ Compiled joyride/joyride-1.0.3.css (73ms) (pid 29823)
2172
+ Compiled joyride/joyride.css (1ms) (pid 29823)
2173
+ Compiled application.css (2ms) (pid 29823)
2174
+ Completed 200 OK in 98ms (Views: 97.7ms)
2175
+
2176
+
2177
+ Started GET "/assets/joyride/joyride.css?body=1" for 127.0.0.1 at 2012-05-30 03:51:10 -0400
2178
+ Served asset /joyride/joyride.css - 304 Not Modified (7ms)
2179
+
2180
+
2181
+ Started GET "/assets/joyride/joyride-1.0.3.css?body=1" for 127.0.0.1 at 2012-05-30 03:51:10 -0400
2182
+ Served asset /joyride/joyride-1.0.3.css - 304 Not Modified (2ms)
2183
+
2184
+
2185
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 03:51:10 -0400
2186
+ Served asset /application.css - 304 Not Modified (5ms)
2187
+
2188
+
2189
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 03:51:10 -0400
2190
+ Served asset /jquery.js - 304 Not Modified (0ms)
2191
+
2192
+
2193
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 03:51:10 -0400
2194
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
2195
+
2196
+
2197
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 03:51:10 -0400
2198
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2199
+
2200
+
2201
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 03:51:10 -0400
2202
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
2203
+
2204
+
2205
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 03:51:10 -0400
2206
+ Served asset /application.js - 304 Not Modified (0ms)
2207
+
2208
+
2209
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:51:46 -0400
2210
+ Processing by PagesController#simple_test as HTML
2211
+ Rendered pages/simple_test.html.haml within layouts/application (0.2ms)
2212
+ Compiled joyride/joyride-1.0.3.css (78ms) (pid 29823)
2213
+ Compiled joyride/joyride.css (1ms) (pid 29823)
2214
+ Compiled application.css (2ms) (pid 29823)
2215
+ Completed 200 OK in 100ms (Views: 99.7ms)
2216
+
2217
+
2218
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 03:51:46 -0400
2219
+ Served asset /application.css - 304 Not Modified (31ms)
2220
+
2221
+
2222
+ Started GET "/assets/joyride/joyride-1.0.3.css?body=1" for 127.0.0.1 at 2012-05-30 03:51:46 -0400
2223
+ Served asset /joyride/joyride-1.0.3.css - 304 Not Modified (3ms)
2224
+
2225
+
2226
+ Started GET "/assets/joyride/joyride.css?body=1" for 127.0.0.1 at 2012-05-30 03:51:46 -0400
2227
+ Served asset /joyride/joyride.css - 304 Not Modified (5ms)
2228
+
2229
+
2230
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 03:51:47 -0400
2231
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2232
+
2233
+
2234
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 03:51:47 -0400
2235
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
2236
+
2237
+
2238
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 03:51:47 -0400
2239
+ Served asset /jquery.js - 304 Not Modified (0ms)
2240
+
2241
+
2242
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 03:51:47 -0400
2243
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
2244
+
2245
+
2246
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 03:51:47 -0400
2247
+ Served asset /application.js - 304 Not Modified (0ms)
2248
+
2249
+
2250
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:52:00 -0400
2251
+ Processing by PagesController#simple_test as HTML
2252
+ Rendered pages/simple_test.html.haml within layouts/application (0.2ms)
2253
+ Compiled joyride/joyride-1.0.3.css (69ms) (pid 29823)
2254
+ Compiled joyride/joyride.css (1ms) (pid 29823)
2255
+ Compiled application.css (2ms) (pid 29823)
2256
+ Completed 200 OK in 91ms (Views: 91.1ms)
2257
+
2258
+
2259
+ Started GET "/assets/joyride/joyride-1.0.3.css?body=1" for 127.0.0.1 at 2012-05-30 03:52:00 -0400
2260
+ Served asset /joyride/joyride-1.0.3.css - 200 OK (4ms)
2261
+
2262
+
2263
+ Started GET "/assets/joyride/joyride.css?body=1" for 127.0.0.1 at 2012-05-30 03:52:00 -0400
2264
+ Served asset /joyride/joyride.css - 304 Not Modified (4ms)
2265
+
2266
+
2267
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 03:52:00 -0400
2268
+ Served asset /jquery.js - 304 Not Modified (0ms)
2269
+
2270
+
2271
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 03:52:00 -0400
2272
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
2273
+
2274
+
2275
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 03:52:00 -0400
2276
+ Served asset /application.css - 304 Not Modified (5ms)
2277
+
2278
+
2279
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 03:52:01 -0400
2280
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2281
+
2282
+
2283
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 03:52:01 -0400
2284
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
2285
+
2286
+
2287
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 03:52:01 -0400
2288
+ Served asset /application.js - 304 Not Modified (0ms)
2289
+
2290
+
2291
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:52:27 -0400
2292
+ Processing by PagesController#simple_test as HTML
2293
+ Rendered pages/simple_test.html.haml within layouts/application (0.2ms)
2294
+ Compiled joyride/joyride-1.0.3.css (81ms) (pid 29823)
2295
+ Compiled joyride/joyride.css (1ms) (pid 29823)
2296
+ Compiled application.css (2ms) (pid 29823)
2297
+ Completed 200 OK in 105ms (Views: 104.5ms)
2298
+
2299
+
2300
+ Started GET "/assets/joyride/joyride-1.0.3.css?body=1" for 127.0.0.1 at 2012-05-30 03:52:27 -0400
2301
+ Served asset /joyride/joyride-1.0.3.css - 200 OK (25ms)
2302
+
2303
+
2304
+ Started GET "/assets/joyride/joyride.css?body=1" for 127.0.0.1 at 2012-05-30 03:52:27 -0400
2305
+ Served asset /joyride/joyride.css - 304 Not Modified (6ms)
2306
+
2307
+
2308
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 03:52:27 -0400
2309
+ Served asset /application.css - 304 Not Modified (5ms)
2310
+
2311
+
2312
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 03:52:27 -0400
2313
+ Served asset /jquery.js - 304 Not Modified (0ms)
2314
+
2315
+
2316
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 03:52:27 -0400
2317
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2318
+
2319
+
2320
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 03:52:27 -0400
2321
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
2322
+
2323
+
2324
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 03:52:27 -0400
2325
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
2326
+
2327
+
2328
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 03:52:27 -0400
2329
+ Served asset /application.js - 304 Not Modified (0ms)
2330
+
2331
+
2332
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:52:39 -0400
2333
+ Processing by PagesController#simple_test as HTML
2334
+ Rendered pages/simple_test.html.haml within layouts/application (0.2ms)
2335
+ Compiled joyride/joyride-1.0.3.css (69ms) (pid 29823)
2336
+ Compiled joyride/joyride.css (1ms) (pid 29823)
2337
+ Compiled application.css (2ms) (pid 29823)
2338
+ Completed 200 OK in 93ms (Views: 93.0ms)
2339
+
2340
+
2341
+ Started GET "/assets/joyride/joyride.css?body=1" for 127.0.0.1 at 2012-05-30 03:52:40 -0400
2342
+ Served asset /joyride/joyride.css - 304 Not Modified (5ms)
2343
+
2344
+
2345
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 03:52:40 -0400
2346
+ Served asset /application.css - 304 Not Modified (6ms)
2347
+
2348
+
2349
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 03:52:40 -0400
2350
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2351
+
2352
+
2353
+ Started GET "/assets/joyride/joyride-1.0.3.css?body=1" for 127.0.0.1 at 2012-05-30 03:52:40 -0400
2354
+ Served asset /joyride/joyride-1.0.3.css - 200 OK (3ms)
2355
+
2356
+
2357
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 03:52:40 -0400
2358
+ Served asset /jquery.js - 304 Not Modified (0ms)
2359
+
2360
+
2361
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 03:52:40 -0400
2362
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
2363
+
2364
+
2365
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 03:52:40 -0400
2366
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
2367
+
2368
+
2369
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 03:52:40 -0400
2370
+ Served asset /application.js - 304 Not Modified (0ms)
2371
+
2372
+
2373
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:53:38 -0400
2374
+ Processing by PagesController#simple_test as HTML
2375
+ Rendered pages/simple_test.html.haml within layouts/application (0.3ms)
2376
+ Compiled joyride/joyride-1.0.3.css (91ms) (pid 29823)
2377
+ Compiled joyride/joyride.css (1ms) (pid 29823)
2378
+ Compiled application.css (2ms) (pid 29823)
2379
+ Completed 200 OK in 114ms (Views: 113.7ms)
2380
+
2381
+
2382
+ Started GET "/assets/joyride/joyride.css?body=1" for 127.0.0.1 at 2012-05-30 03:53:38 -0400
2383
+ Served asset /joyride/joyride.css - 304 Not Modified (9ms)
2384
+
2385
+
2386
+ Started GET "/assets/joyride/joyride-1.0.3.css?body=1" for 127.0.0.1 at 2012-05-30 03:53:38 -0400
2387
+ Served asset /joyride/joyride-1.0.3.css - 304 Not Modified (4ms)
2388
+
2389
+
2390
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 03:53:38 -0400
2391
+ Served asset /application.css - 304 Not Modified (6ms)
2392
+
2393
+
2394
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 03:53:38 -0400
2395
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2396
+
2397
+
2398
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 03:53:38 -0400
2399
+ Served asset /jquery.js - 304 Not Modified (0ms)
2400
+
2401
+
2402
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 03:53:38 -0400
2403
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
2404
+
2405
+
2406
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 03:53:38 -0400
2407
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
2408
+
2409
+
2410
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 03:53:38 -0400
2411
+ Served asset /application.js - 304 Not Modified (0ms)
2412
+
2413
+
2414
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:53:47 -0400
2415
+ Processing by PagesController#simple_test as HTML
2416
+ Rendered pages/simple_test.html.haml within layouts/application (0.2ms)
2417
+ Completed 200 OK in 5ms (Views: 4.7ms)
2418
+
2419
+
2420
+ Started GET "/assets/joyride/joyride.css?body=1" for 127.0.0.1 at 2012-05-30 03:53:47 -0400
2421
+ Served asset /joyride/joyride.css - 304 Not Modified (0ms)
2422
+
2423
+
2424
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 03:53:47 -0400
2425
+ Served asset /application.css - 304 Not Modified (0ms)
2426
+
2427
+
2428
+ Started GET "/assets/joyride/joyride-1.0.3.css?body=1" for 127.0.0.1 at 2012-05-30 03:53:47 -0400
2429
+ Served asset /joyride/joyride-1.0.3.css - 304 Not Modified (0ms)
2430
+
2431
+
2432
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 03:53:47 -0400
2433
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2434
+
2435
+
2436
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 03:53:47 -0400
2437
+ Served asset /jquery.js - 304 Not Modified (0ms)
2438
+
2439
+
2440
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 03:53:47 -0400
2441
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
2442
+
2443
+
2444
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 03:53:47 -0400
2445
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
2446
+
2447
+
2448
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 03:53:47 -0400
2449
+ Served asset /application.js - 304 Not Modified (0ms)
2450
+
2451
+
2452
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:53:52 -0400
2453
+ Processing by PagesController#simple_test as HTML
2454
+ Rendered pages/simple_test.html.haml within layouts/application (0.2ms)
2455
+ Compiled joyride/joyride-1.0.3.css (79ms) (pid 29823)
2456
+ Compiled joyride/joyride.css (1ms) (pid 29823)
2457
+ Compiled application.css (2ms) (pid 29823)
2458
+ Completed 200 OK in 105ms (Views: 105.2ms)
2459
+
2460
+
2461
+ Started GET "/assets/joyride/joyride.css?body=1" for 127.0.0.1 at 2012-05-30 03:53:53 -0400
2462
+ Served asset /joyride/joyride.css - 304 Not Modified (4ms)
2463
+
2464
+
2465
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 03:53:53 -0400
2466
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2467
+
2468
+
2469
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 03:53:53 -0400
2470
+ Served asset /jquery.js - 304 Not Modified (0ms)
2471
+
2472
+
2473
+ Started GET "/assets/joyride/joyride-1.0.3.css?body=1" for 127.0.0.1 at 2012-05-30 03:53:53 -0400
2474
+ Served asset /joyride/joyride-1.0.3.css - 200 OK (3ms)
2475
+
2476
+
2477
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 03:53:53 -0400
2478
+ Served asset /application.css - 304 Not Modified (7ms)
2479
+
2480
+
2481
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 03:53:53 -0400
2482
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
2483
+
2484
+
2485
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 03:53:53 -0400
2486
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
2487
+
2488
+
2489
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 03:53:53 -0400
2490
+ Served asset /application.js - 304 Not Modified (0ms)
2491
+
2492
+
2493
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:54:24 -0400
2494
+ Processing by PagesController#simple_test as HTML
2495
+ Rendered pages/simple_test.html.haml within layouts/application (0.3ms)
2496
+ Compiled joyride/joyride-1.0.3.css (94ms) (pid 29823)
2497
+ Compiled joyride/joyride.css (1ms) (pid 29823)
2498
+ Compiled application.css (2ms) (pid 29823)
2499
+ Completed 200 OK in 120ms (Views: 119.5ms)
2500
+
2501
+
2502
+ Started GET "/assets/joyride/joyride.css?body=1" for 127.0.0.1 at 2012-05-30 03:54:24 -0400
2503
+ Served asset /joyride/joyride.css - 304 Not Modified (5ms)
2504
+
2505
+
2506
+ Started GET "/assets/joyride/joyride-1.0.3.css?body=1" for 127.0.0.1 at 2012-05-30 03:54:24 -0400
2507
+ Served asset /joyride/joyride-1.0.3.css - 304 Not Modified (3ms)
2508
+
2509
+
2510
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 03:54:24 -0400
2511
+ Served asset /jquery.js - 304 Not Modified (0ms)
2512
+
2513
+
2514
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 03:54:24 -0400
2515
+ Served asset /application.css - 304 Not Modified (5ms)
2516
+
2517
+
2518
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 03:54:24 -0400
2519
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2520
+
2521
+
2522
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 03:54:24 -0400
2523
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
2524
+
2525
+
2526
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 03:54:24 -0400
2527
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
2528
+
2529
+
2530
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 03:54:24 -0400
2531
+ Served asset /application.js - 304 Not Modified (0ms)
2532
+
2533
+
2534
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:55:52 -0400
2535
+ Processing by PagesController#simple_test as HTML
2536
+ Rendered pages/simple_test.html.haml within layouts/application (0.2ms)
2537
+ Compiled joyride/joyride-1.0.3.css (75ms) (pid 29823)
2538
+ Compiled joyride/joyride.css (1ms) (pid 29823)
2539
+ Compiled application.css (2ms) (pid 29823)
2540
+ Completed 200 OK in 95ms (Views: 95.2ms)
2541
+
2542
+
2543
+ Started GET "/assets/joyride/joyride.css?body=1" for 127.0.0.1 at 2012-05-30 03:55:52 -0400
2544
+ Served asset /joyride/joyride.css - 304 Not Modified (9ms)
2545
+
2546
+
2547
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 03:55:52 -0400
2548
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2549
+
2550
+
2551
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 03:55:52 -0400
2552
+ Served asset /application.css - 304 Not Modified (4ms)
2553
+
2554
+
2555
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 03:55:52 -0400
2556
+ Served asset /jquery.js - 304 Not Modified (0ms)
2557
+
2558
+
2559
+ Started GET "/assets/joyride/joyride-1.0.3.css?body=1" for 127.0.0.1 at 2012-05-30 03:55:52 -0400
2560
+ Served asset /joyride/joyride-1.0.3.css - 304 Not Modified (4ms)
2561
+
2562
+
2563
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 03:55:52 -0400
2564
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
2565
+
2566
+
2567
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 03:55:52 -0400
2568
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
2569
+
2570
+
2571
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 03:55:52 -0400
2572
+ Served asset /application.js - 304 Not Modified (0ms)
2573
+
2574
+
2575
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:56:21 -0400
2576
+ Processing by PagesController#simple_test as HTML
2577
+ Rendered pages/simple_test.html.haml within layouts/application (0.2ms)
2578
+ Compiled joyride/joyride-1.0.3.css (78ms) (pid 29823)
2579
+ Compiled joyride/joyride.css (1ms) (pid 29823)
2580
+ Compiled application.css (2ms) (pid 29823)
2581
+ Completed 200 OK in 114ms (Views: 113.5ms)
2582
+
2583
+
2584
+ Started GET "/assets/joyride/joyride-1.0.3.css?body=1" for 127.0.0.1 at 2012-05-30 03:56:21 -0400
2585
+ Served asset /joyride/joyride-1.0.3.css - 200 OK (7ms)
2586
+
2587
+
2588
+ Started GET "/assets/joyride/joyride.css?body=1" for 127.0.0.1 at 2012-05-30 03:56:21 -0400
2589
+ Served asset /joyride/joyride.css - 304 Not Modified (5ms)
2590
+
2591
+
2592
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 03:56:21 -0400
2593
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2594
+
2595
+
2596
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 03:56:21 -0400
2597
+ Served asset /jquery.js - 304 Not Modified (0ms)
2598
+
2599
+
2600
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 03:56:21 -0400
2601
+ Served asset /application.css - 304 Not Modified (3ms)
2602
+
2603
+
2604
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 03:56:21 -0400
2605
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
2606
+
2607
+
2608
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 03:56:21 -0400
2609
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
2610
+
2611
+
2612
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 03:56:21 -0400
2613
+ Served asset /application.js - 304 Not Modified (0ms)
2614
+
2615
+
2616
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:56:49 -0400
2617
+ Processing by PagesController#simple_test as HTML
2618
+ Rendered pages/simple_test.html.haml within layouts/application (0.2ms)
2619
+ Compiled joyride/joyride-1.0.3.css (70ms) (pid 29823)
2620
+ Compiled joyride/joyride.css (1ms) (pid 29823)
2621
+ Compiled application.css (2ms) (pid 29823)
2622
+ Completed 200 OK in 93ms (Views: 93.3ms)
2623
+
2624
+
2625
+ Started GET "/assets/joyride/joyride.css?body=1" for 127.0.0.1 at 2012-05-30 03:56:49 -0400
2626
+ Served asset /joyride/joyride.css - 304 Not Modified (6ms)
2627
+
2628
+
2629
+ Started GET "/assets/joyride/joyride-1.0.3.css?body=1" for 127.0.0.1 at 2012-05-30 03:56:49 -0400
2630
+ Served asset /joyride/joyride-1.0.3.css - 200 OK (2ms)
2631
+
2632
+
2633
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 03:56:49 -0400
2634
+ Served asset /application.css - 304 Not Modified (6ms)
2635
+
2636
+
2637
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 03:56:49 -0400
2638
+ Served asset /jquery.js - 304 Not Modified (0ms)
2639
+
2640
+
2641
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 03:56:49 -0400
2642
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2643
+
2644
+
2645
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 03:56:49 -0400
2646
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
2647
+
2648
+
2649
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 03:56:49 -0400
2650
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
2651
+
2652
+
2653
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 03:56:49 -0400
2654
+ Served asset /application.js - 304 Not Modified (0ms)
2655
+
2656
+
2657
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:57:57 -0400
2658
+ Processing by PagesController#simple_test as HTML
2659
+ Rendered pages/simple_test.html.haml within layouts/application (0.2ms)
2660
+ Compiled joyride/joyride-1.0.3.css (97ms) (pid 29823)
2661
+ Compiled joyride/joyride.css (1ms) (pid 29823)
2662
+ Compiled application.css (2ms) (pid 29823)
2663
+ Completed 200 OK in 120ms (Views: 119.9ms)
2664
+
2665
+
2666
+ Started GET "/assets/joyride/joyride.css?body=1" for 127.0.0.1 at 2012-05-30 03:57:57 -0400
2667
+ Served asset /joyride/joyride.css - 304 Not Modified (6ms)
2668
+
2669
+
2670
+ Started GET "/assets/joyride/joyride-1.0.3.css?body=1" for 127.0.0.1 at 2012-05-30 03:57:57 -0400
2671
+ Served asset /joyride/joyride-1.0.3.css - 200 OK (4ms)
2672
+
2673
+
2674
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 03:57:57 -0400
2675
+ Served asset /jquery.js - 304 Not Modified (0ms)
2676
+
2677
+
2678
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 03:57:57 -0400
2679
+ Served asset /application.css - 304 Not Modified (9ms)
2680
+
2681
+
2682
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 03:57:57 -0400
2683
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2684
+
2685
+
2686
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 03:57:57 -0400
2687
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
2688
+
2689
+
2690
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 03:57:57 -0400
2691
+ Served asset /application.js - 304 Not Modified (0ms)
2692
+
2693
+
2694
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 03:57:57 -0400
2695
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
2696
+
2697
+
2698
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:58:04 -0400
2699
+ Processing by PagesController#simple_test as HTML
2700
+ Rendered pages/simple_test.html.haml within layouts/application (0.2ms)
2701
+ Compiled joyride/joyride-1.0.3.css (69ms) (pid 29823)
2702
+ Compiled joyride/joyride.css (1ms) (pid 29823)
2703
+ Compiled application.css (2ms) (pid 29823)
2704
+ Completed 200 OK in 92ms (Views: 92.3ms)
2705
+
2706
+
2707
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 03:58:05 -0400
2708
+ Served asset /application.css - 304 Not Modified (7ms)
2709
+
2710
+
2711
+ Started GET "/assets/joyride/joyride-1.0.3.css?body=1" for 127.0.0.1 at 2012-05-30 03:58:05 -0400
2712
+ Served asset /joyride/joyride-1.0.3.css - 304 Not Modified (3ms)
2713
+
2714
+
2715
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 03:58:05 -0400
2716
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2717
+
2718
+
2719
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 03:58:05 -0400
2720
+ Served asset /jquery.js - 304 Not Modified (0ms)
2721
+
2722
+
2723
+ Started GET "/assets/joyride/joyride.css?body=1" for 127.0.0.1 at 2012-05-30 03:58:05 -0400
2724
+ Served asset /joyride/joyride.css - 304 Not Modified (6ms)
2725
+
2726
+
2727
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 03:58:05 -0400
2728
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
2729
+
2730
+
2731
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 03:58:05 -0400
2732
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
2733
+
2734
+
2735
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 03:58:05 -0400
2736
+ Served asset /application.js - 304 Not Modified (0ms)
2737
+
2738
+
2739
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:58:09 -0400
2740
+ Processing by PagesController#simple_test as HTML
2741
+ Rendered pages/simple_test.html.haml within layouts/application (0.2ms)
2742
+ Compiled joyride/joyride-1.0.3.css (97ms) (pid 29823)
2743
+ Compiled joyride/joyride.css (1ms) (pid 29823)
2744
+ Compiled application.css (2ms) (pid 29823)
2745
+ Completed 200 OK in 121ms (Views: 121.0ms)
2746
+
2747
+
2748
+ Started GET "/assets/joyride/joyride.css?body=1" for 127.0.0.1 at 2012-05-30 03:58:09 -0400
2749
+ Served asset /joyride/joyride.css - 304 Not Modified (5ms)
2750
+
2751
+
2752
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 03:58:09 -0400
2753
+ Served asset /application.css - 304 Not Modified (9ms)
2754
+
2755
+
2756
+ Started GET "/assets/joyride/joyride-1.0.3.css?body=1" for 127.0.0.1 at 2012-05-30 03:58:09 -0400
2757
+ Served asset /joyride/joyride-1.0.3.css - 200 OK (4ms)
2758
+
2759
+
2760
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 03:58:09 -0400
2761
+ Served asset /jquery.js - 304 Not Modified (0ms)
2762
+
2763
+
2764
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 03:58:09 -0400
2765
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2766
+
2767
+
2768
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 03:58:09 -0400
2769
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
2770
+
2771
+
2772
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 03:58:09 -0400
2773
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
2774
+
2775
+
2776
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 03:58:09 -0400
2777
+ Served asset /application.js - 304 Not Modified (0ms)
2778
+
2779
+
2780
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:58:23 -0400
2781
+ Processing by PagesController#simple_test as HTML
2782
+ Rendered pages/simple_test.html.haml within layouts/application (0.2ms)
2783
+ Compiled joyride/joyride-1.0.3.css (69ms) (pid 29823)
2784
+ Compiled joyride/joyride.css (1ms) (pid 29823)
2785
+ Compiled application.css (2ms) (pid 29823)
2786
+ Completed 200 OK in 94ms (Views: 93.6ms)
2787
+
2788
+
2789
+ Started GET "/assets/joyride/joyride.css?body=1" for 127.0.0.1 at 2012-05-30 03:58:24 -0400
2790
+ Served asset /joyride/joyride.css - 304 Not Modified (5ms)
2791
+
2792
+
2793
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 03:58:24 -0400
2794
+ Served asset /jquery.js - 304 Not Modified (0ms)
2795
+
2796
+
2797
+ Started GET "/assets/joyride/joyride-1.0.3.css?body=1" for 127.0.0.1 at 2012-05-30 03:58:24 -0400
2798
+ Served asset /joyride/joyride-1.0.3.css - 200 OK (5ms)
2799
+
2800
+
2801
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 03:58:24 -0400
2802
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2803
+
2804
+
2805
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 03:58:24 -0400
2806
+ Served asset /application.css - 304 Not Modified (5ms)
2807
+
2808
+
2809
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 03:58:24 -0400
2810
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
2811
+
2812
+
2813
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 03:58:24 -0400
2814
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
2815
+
2816
+
2817
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 03:58:24 -0400
2818
+ Served asset /application.js - 304 Not Modified (0ms)
2819
+
2820
+
2821
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:58:28 -0400
2822
+ Processing by PagesController#simple_test as HTML
2823
+ Rendered pages/simple_test.html.haml within layouts/application (0.2ms)
2824
+ Compiled joyride/joyride-1.0.3.css (93ms) (pid 29823)
2825
+ Compiled joyride/joyride.css (1ms) (pid 29823)
2826
+ Compiled application.css (2ms) (pid 29823)
2827
+ Completed 200 OK in 115ms (Views: 114.6ms)
2828
+
2829
+
2830
+ Started GET "/assets/joyride/joyride.css?body=1" for 127.0.0.1 at 2012-05-30 03:58:29 -0400
2831
+ Served asset /joyride/joyride.css - 304 Not Modified (4ms)
2832
+
2833
+
2834
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 03:58:29 -0400
2835
+ Served asset /application.css - 304 Not Modified (5ms)
2836
+
2837
+
2838
+ Started GET "/assets/joyride/joyride-1.0.3.css?body=1" for 127.0.0.1 at 2012-05-30 03:58:29 -0400
2839
+ Served asset /joyride/joyride-1.0.3.css - 304 Not Modified (3ms)
2840
+
2841
+
2842
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 03:58:29 -0400
2843
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2844
+
2845
+
2846
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 03:58:29 -0400
2847
+ Served asset /jquery.js - 304 Not Modified (0ms)
2848
+
2849
+
2850
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 03:58:29 -0400
2851
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
2852
+
2853
+
2854
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 03:58:29 -0400
2855
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
2856
+
2857
+
2858
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 03:58:29 -0400
2859
+ Served asset /application.js - 304 Not Modified (0ms)
2860
+
2861
+
2862
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:58:42 -0400
2863
+ Processing by PagesController#simple_test as HTML
2864
+ Rendered pages/simple_test.html.haml within layouts/application (0.2ms)
2865
+ Compiled joyride/joyride-1.0.3.css (70ms) (pid 29823)
2866
+ Compiled joyride/joyride.css (1ms) (pid 29823)
2867
+ Compiled application.css (2ms) (pid 29823)
2868
+ Completed 200 OK in 95ms (Views: 94.9ms)
2869
+
2870
+
2871
+ Started GET "/assets/joyride/joyride.css?body=1" for 127.0.0.1 at 2012-05-30 03:58:42 -0400
2872
+ Served asset /joyride/joyride.css - 304 Not Modified (9ms)
2873
+
2874
+
2875
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 03:58:42 -0400
2876
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2877
+
2878
+
2879
+ Started GET "/assets/joyride/joyride-1.0.3.css?body=1" for 127.0.0.1 at 2012-05-30 03:58:42 -0400
2880
+ Served asset /joyride/joyride-1.0.3.css - 200 OK (3ms)
2881
+
2882
+
2883
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 03:58:42 -0400
2884
+ Served asset /application.css - 304 Not Modified (9ms)
2885
+
2886
+
2887
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 03:58:42 -0400
2888
+ Served asset /jquery.js - 304 Not Modified (0ms)
2889
+
2890
+
2891
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 03:58:42 -0400
2892
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
2893
+
2894
+
2895
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 03:58:42 -0400
2896
+ Served asset /application.js - 304 Not Modified (0ms)
2897
+
2898
+
2899
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 03:58:42 -0400
2900
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
2901
+
2902
+
2903
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:58:49 -0400
2904
+ Processing by PagesController#simple_test as HTML
2905
+ Rendered pages/simple_test.html.haml within layouts/application (0.2ms)
2906
+ Compiled joyride/joyride-1.0.3.css (91ms) (pid 29823)
2907
+ Compiled joyride/joyride.css (1ms) (pid 29823)
2908
+ Compiled application.css (2ms) (pid 29823)
2909
+ Completed 200 OK in 114ms (Views: 113.8ms)
2910
+
2911
+
2912
+ Started GET "/assets/joyride/joyride.css?body=1" for 127.0.0.1 at 2012-05-30 03:58:49 -0400
2913
+ Served asset /joyride/joyride.css - 304 Not Modified (5ms)
2914
+
2915
+
2916
+ Started GET "/assets/joyride/joyride-1.0.3.css?body=1" for 127.0.0.1 at 2012-05-30 03:58:49 -0400
2917
+ Served asset /joyride/joyride-1.0.3.css - 200 OK (10ms)
2918
+
2919
+
2920
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 03:58:49 -0400
2921
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2922
+
2923
+
2924
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 03:58:49 -0400
2925
+ Served asset /jquery.js - 304 Not Modified (0ms)
2926
+
2927
+
2928
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 03:58:49 -0400
2929
+ Served asset /application.css - 304 Not Modified (5ms)
2930
+
2931
+
2932
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 03:58:49 -0400
2933
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
2934
+
2935
+
2936
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 03:58:49 -0400
2937
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
2938
+
2939
+
2940
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 03:58:49 -0400
2941
+ Served asset /application.js - 304 Not Modified (0ms)
2942
+
2943
+
2944
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:58:57 -0400
2945
+ Processing by PagesController#simple_test as HTML
2946
+ Rendered pages/simple_test.html.haml within layouts/application (0.2ms)
2947
+ Compiled joyride/joyride-1.0.3.css (73ms) (pid 29823)
2948
+ Compiled joyride/joyride.css (2ms) (pid 29823)
2949
+ Compiled application.css (2ms) (pid 29823)
2950
+ Completed 200 OK in 95ms (Views: 94.9ms)
2951
+
2952
+
2953
+ Started GET "/assets/joyride/joyride.css?body=1" for 127.0.0.1 at 2012-05-30 03:58:57 -0400
2954
+ Served asset /joyride/joyride.css - 304 Not Modified (8ms)
2955
+
2956
+
2957
+ Started GET "/assets/joyride/joyride-1.0.3.css?body=1" for 127.0.0.1 at 2012-05-30 03:58:57 -0400
2958
+ Served asset /joyride/joyride-1.0.3.css - 304 Not Modified (8ms)
2959
+
2960
+
2961
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 03:58:57 -0400
2962
+ Served asset /application.css - 304 Not Modified (6ms)
2963
+
2964
+
2965
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 03:58:57 -0400
2966
+ Served asset /jquery.js - 304 Not Modified (0ms)
2967
+
2968
+
2969
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 03:58:57 -0400
2970
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2971
+
2972
+
2973
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 03:58:57 -0400
2974
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
2975
+
2976
+
2977
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 03:58:57 -0400
2978
+ Served asset /application.js - 304 Not Modified (0ms)
2979
+
2980
+
2981
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 03:58:57 -0400
2982
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
2983
+
2984
+
2985
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:59:03 -0400
2986
+ Processing by PagesController#simple_test as HTML
2987
+ Rendered pages/simple_test.html.haml within layouts/application (0.2ms)
2988
+ Completed 500 Internal Server Error in 99ms
2989
+
2990
+ ActionView::Template::Error (Amount -0.5 must be between 0% and 100% for `desaturate'
2991
+ (in /Users/michaelnorth/dev/projects/KidzArt6/joyride-rails/app/assets/stylesheets/joyride/joyride-1.0.3.css.sass)):
2992
+ 2: <html>
2993
+ 3: <head>
2994
+ 4: <title>Dummy</title>
2995
+ 5: <%= stylesheet_link_tag "application", :media => "all" %>
2996
+ 6: <%= javascript_include_tag "application" %>
2997
+ 7: <%= csrf_meta_tags %>
2998
+ 8: </head>
2999
+ app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb___2334615056204790435_70144168646680'
3000
+
3001
+
3002
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (5.5ms)
3003
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
3004
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (14.5ms)
3005
+
3006
+
3007
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:59:09 -0400
3008
+ Processing by PagesController#simple_test as HTML
3009
+ Rendered pages/simple_test.html.haml within layouts/application (0.2ms)
3010
+ Compiled joyride/joyride-1.0.3.css (70ms) (pid 29823)
3011
+ Compiled joyride/joyride.css (1ms) (pid 29823)
3012
+ Compiled application.css (3ms) (pid 29823)
3013
+ Completed 200 OK in 94ms (Views: 94.3ms)
3014
+
3015
+
3016
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 03:59:09 -0400
3017
+ Served asset /application.css - 304 Not Modified (8ms)
3018
+
3019
+
3020
+ Started GET "/assets/joyride/joyride.css?body=1" for 127.0.0.1 at 2012-05-30 03:59:09 -0400
3021
+ Served asset /joyride/joyride.css - 304 Not Modified (4ms)
3022
+
3023
+
3024
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 03:59:09 -0400
3025
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3026
+
3027
+
3028
+ Started GET "/assets/joyride/joyride-1.0.3.css?body=1" for 127.0.0.1 at 2012-05-30 03:59:09 -0400
3029
+ Served asset /joyride/joyride-1.0.3.css - 200 OK (3ms)
3030
+
3031
+
3032
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 03:59:09 -0400
3033
+ Served asset /jquery.js - 304 Not Modified (0ms)
3034
+
3035
+
3036
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 03:59:09 -0400
3037
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
3038
+
3039
+
3040
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 03:59:09 -0400
3041
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
3042
+
3043
+
3044
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 03:59:09 -0400
3045
+ Served asset /application.js - 304 Not Modified (0ms)
3046
+
3047
+
3048
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:59:15 -0400
3049
+ Processing by PagesController#simple_test as HTML
3050
+ Rendered pages/simple_test.html.haml within layouts/application (0.3ms)
3051
+ Compiled joyride/joyride-1.0.3.css (111ms) (pid 29823)
3052
+ Compiled joyride/joyride.css (2ms) (pid 29823)
3053
+ Compiled application.css (2ms) (pid 29823)
3054
+ Completed 200 OK in 161ms (Views: 160.7ms)
3055
+
3056
+
3057
+ Started GET "/assets/joyride/joyride-1.0.3.css?body=1" for 127.0.0.1 at 2012-05-30 03:59:15 -0400
3058
+ Served asset /joyride/joyride-1.0.3.css - 200 OK (4ms)
3059
+
3060
+
3061
+ Started GET "/assets/joyride/joyride.css?body=1" for 127.0.0.1 at 2012-05-30 03:59:15 -0400
3062
+ Served asset /joyride/joyride.css - 304 Not Modified (5ms)
3063
+
3064
+
3065
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 03:59:15 -0400
3066
+ Served asset /jquery.js - 304 Not Modified (0ms)
3067
+
3068
+
3069
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 03:59:15 -0400
3070
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3071
+
3072
+
3073
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 03:59:15 -0400
3074
+ Served asset /application.css - 304 Not Modified (6ms)
3075
+
3076
+
3077
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 03:59:15 -0400
3078
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
3079
+
3080
+
3081
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 03:59:15 -0400
3082
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
3083
+
3084
+
3085
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 03:59:15 -0400
3086
+ Served asset /application.js - 304 Not Modified (0ms)
3087
+
3088
+
3089
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:59:23 -0400
3090
+ Processing by PagesController#simple_test as HTML
3091
+ Rendered pages/simple_test.html.haml within layouts/application (0.2ms)
3092
+ Compiled joyride/joyride-1.0.3.css (68ms) (pid 29823)
3093
+ Compiled joyride/joyride.css (1ms) (pid 29823)
3094
+ Compiled application.css (3ms) (pid 29823)
3095
+ Completed 200 OK in 92ms (Views: 91.9ms)
3096
+
3097
+
3098
+ Started GET "/assets/joyride/joyride.css?body=1" for 127.0.0.1 at 2012-05-30 03:59:24 -0400
3099
+ Served asset /joyride/joyride.css - 304 Not Modified (3ms)
3100
+
3101
+
3102
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 03:59:24 -0400
3103
+ Served asset /application.css - 304 Not Modified (9ms)
3104
+
3105
+
3106
+ Started GET "/assets/joyride/joyride-1.0.3.css?body=1" for 127.0.0.1 at 2012-05-30 03:59:24 -0400
3107
+ Served asset /joyride/joyride-1.0.3.css - 200 OK (4ms)
3108
+
3109
+
3110
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 03:59:24 -0400
3111
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3112
+
3113
+
3114
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 03:59:24 -0400
3115
+ Served asset /jquery.js - 304 Not Modified (0ms)
3116
+
3117
+
3118
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 03:59:24 -0400
3119
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
3120
+
3121
+
3122
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 03:59:24 -0400
3123
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
3124
+
3125
+
3126
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 03:59:24 -0400
3127
+ Served asset /application.js - 304 Not Modified (0ms)
3128
+
3129
+
3130
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:59:28 -0400
3131
+ Processing by PagesController#simple_test as HTML
3132
+ Rendered pages/simple_test.html.haml within layouts/application (0.2ms)
3133
+ Compiled joyride/joyride-1.0.3.css (78ms) (pid 29823)
3134
+ Compiled joyride/joyride.css (21ms) (pid 29823)
3135
+ Compiled application.css (2ms) (pid 29823)
3136
+ Completed 200 OK in 124ms (Views: 123.7ms)
3137
+
3138
+
3139
+ Started GET "/assets/joyride/joyride.css?body=1" for 127.0.0.1 at 2012-05-30 03:59:29 -0400
3140
+ Served asset /joyride/joyride.css - 304 Not Modified (6ms)
3141
+
3142
+
3143
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 03:59:29 -0400
3144
+ Served asset /jquery.js - 304 Not Modified (0ms)
3145
+
3146
+
3147
+ Started GET "/assets/joyride/joyride-1.0.3.css?body=1" for 127.0.0.1 at 2012-05-30 03:59:29 -0400
3148
+ Served asset /joyride/joyride-1.0.3.css - 200 OK (3ms)
3149
+
3150
+
3151
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 03:59:29 -0400
3152
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3153
+
3154
+
3155
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 03:59:29 -0400
3156
+ Served asset /application.css - 304 Not Modified (6ms)
3157
+
3158
+
3159
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 03:59:29 -0400
3160
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
3161
+
3162
+
3163
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 03:59:29 -0400
3164
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
3165
+
3166
+
3167
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 03:59:29 -0400
3168
+ Served asset /application.js - 304 Not Modified (0ms)
3169
+
3170
+
3171
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:59:33 -0400
3172
+ Processing by PagesController#simple_test as HTML
3173
+ Rendered pages/simple_test.html.haml within layouts/application (0.2ms)
3174
+ Compiled joyride/joyride-1.0.3.css (70ms) (pid 29823)
3175
+ Compiled joyride/joyride.css (1ms) (pid 29823)
3176
+ Compiled application.css (2ms) (pid 29823)
3177
+ Completed 200 OK in 92ms (Views: 91.4ms)
3178
+
3179
+
3180
+ Started GET "/assets/joyride/joyride-1.0.3.css?body=1" for 127.0.0.1 at 2012-05-30 03:59:33 -0400
3181
+ Served asset /joyride/joyride-1.0.3.css - 200 OK (7ms)
3182
+
3183
+
3184
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 03:59:33 -0400
3185
+ Served asset /application.css - 304 Not Modified (6ms)
3186
+
3187
+
3188
+ Started GET "/assets/joyride/joyride.css?body=1" for 127.0.0.1 at 2012-05-30 03:59:33 -0400
3189
+ Served asset /joyride/joyride.css - 304 Not Modified (4ms)
3190
+
3191
+
3192
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 03:59:33 -0400
3193
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3194
+
3195
+
3196
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 03:59:33 -0400
3197
+ Served asset /jquery.js - 304 Not Modified (0ms)
3198
+
3199
+
3200
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 03:59:33 -0400
3201
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
3202
+
3203
+
3204
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 03:59:33 -0400
3205
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
3206
+
3207
+
3208
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 03:59:33 -0400
3209
+ Served asset /application.js - 304 Not Modified (0ms)
3210
+
3211
+
3212
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 03:59:38 -0400
3213
+ Processing by PagesController#simple_test as HTML
3214
+ Rendered pages/simple_test.html.haml within layouts/application (0.2ms)
3215
+ Compiled joyride/joyride-1.0.3.css (117ms) (pid 29823)
3216
+ Compiled joyride/joyride.css (1ms) (pid 29823)
3217
+ Compiled application.css (2ms) (pid 29823)
3218
+ Completed 200 OK in 144ms (Views: 143.4ms)
3219
+
3220
+
3221
+ Started GET "/assets/joyride/joyride-1.0.3.css?body=1" for 127.0.0.1 at 2012-05-30 03:59:38 -0400
3222
+ Served asset /joyride/joyride-1.0.3.css - 200 OK (4ms)
3223
+
3224
+
3225
+ Started GET "/assets/joyride/joyride.css?body=1" for 127.0.0.1 at 2012-05-30 03:59:38 -0400
3226
+ Served asset /joyride/joyride.css - 304 Not Modified (3ms)
3227
+
3228
+
3229
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 03:59:38 -0400
3230
+ Served asset /application.css - 304 Not Modified (6ms)
3231
+
3232
+
3233
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 03:59:38 -0400
3234
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
3235
+
3236
+
3237
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 03:59:38 -0400
3238
+ Served asset /jquery.js - 304 Not Modified (0ms)
3239
+
3240
+
3241
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 03:59:38 -0400
3242
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3243
+
3244
+
3245
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 03:59:38 -0400
3246
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
3247
+
3248
+
3249
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 03:59:38 -0400
3250
+ Served asset /application.js - 304 Not Modified (0ms)
3251
+
3252
+
3253
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 04:02:07 -0400
3254
+ Processing by PagesController#simple_test as HTML
3255
+ Rendered pages/simple_test.html.haml within layouts/application (0.2ms)
3256
+ Compiled joyride/joyride-1.0.3.css (72ms) (pid 29823)
3257
+ Compiled joyride/joyride.css (1ms) (pid 29823)
3258
+ Compiled application.css (2ms) (pid 29823)
3259
+ Completed 200 OK in 96ms (Views: 95.6ms)
3260
+
3261
+
3262
+ Started GET "/assets/joyride/joyride.css?body=1" for 127.0.0.1 at 2012-05-30 04:02:07 -0400
3263
+ Served asset /joyride/joyride.css - 304 Not Modified (8ms)
3264
+
3265
+
3266
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 04:02:07 -0400
3267
+ Served asset /application.css - 304 Not Modified (9ms)
3268
+
3269
+
3270
+ Started GET "/assets/joyride/joyride-1.0.3.css?body=1" for 127.0.0.1 at 2012-05-30 04:02:07 -0400
3271
+ Served asset /joyride/joyride-1.0.3.css - 200 OK (4ms)
3272
+
3273
+
3274
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 04:02:07 -0400
3275
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3276
+
3277
+
3278
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 04:02:07 -0400
3279
+ Served asset /jquery.js - 304 Not Modified (0ms)
3280
+
3281
+
3282
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 04:02:07 -0400
3283
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
3284
+
3285
+
3286
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 04:02:07 -0400
3287
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
3288
+
3289
+
3290
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 04:02:07 -0400
3291
+ Served asset /application.js - 304 Not Modified (0ms)
3292
+
3293
+
3294
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 04:02:25 -0400
3295
+ Processing by PagesController#simple_test as HTML
3296
+ Rendered pages/simple_test.html.haml within layouts/application (0.2ms)
3297
+ Compiled joyride/joyride-1.0.3.css (80ms) (pid 29823)
3298
+ Compiled joyride/joyride.css (1ms) (pid 29823)
3299
+ Compiled application.css (2ms) (pid 29823)
3300
+ Completed 200 OK in 120ms (Views: 119.6ms)
3301
+
3302
+
3303
+ Started GET "/assets/joyride/joyride-1.0.3.css?body=1" for 127.0.0.1 at 2012-05-30 04:02:26 -0400
3304
+ Served asset /joyride/joyride-1.0.3.css - 200 OK (5ms)
3305
+
3306
+
3307
+ Started GET "/assets/joyride/joyride.css?body=1" for 127.0.0.1 at 2012-05-30 04:02:26 -0400
3308
+ Served asset /joyride/joyride.css - 304 Not Modified (5ms)
3309
+
3310
+
3311
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 04:02:26 -0400
3312
+ Served asset /jquery.js - 304 Not Modified (0ms)
3313
+
3314
+
3315
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 04:02:26 -0400
3316
+ Served asset /application.css - 304 Not Modified (4ms)
3317
+
3318
+
3319
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 04:02:26 -0400
3320
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3321
+
3322
+
3323
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 04:02:26 -0400
3324
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
3325
+
3326
+
3327
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 04:02:26 -0400
3328
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
3329
+
3330
+
3331
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 04:02:26 -0400
3332
+ Served asset /application.js - 304 Not Modified (0ms)
3333
+
3334
+
3335
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 04:02:41 -0400
3336
+ Processing by PagesController#simple_test as HTML
3337
+ Rendered pages/simple_test.html.haml within layouts/application (0.2ms)
3338
+ Completed 200 OK in 6ms (Views: 5.7ms)
3339
+
3340
+
3341
+ Started GET "/assets/joyride/joyride.css?body=1" for 127.0.0.1 at 2012-05-30 04:02:41 -0400
3342
+ Served asset /joyride/joyride.css - 304 Not Modified (2ms)
3343
+
3344
+
3345
+ Started GET "/assets/joyride/joyride-1.0.3.css?body=1" for 127.0.0.1 at 2012-05-30 04:02:41 -0400
3346
+ Served asset /joyride/joyride-1.0.3.css - 304 Not Modified (0ms)
3347
+
3348
+
3349
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 04:02:41 -0400
3350
+ Served asset /jquery.js - 304 Not Modified (0ms)
3351
+
3352
+
3353
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 04:02:41 -0400
3354
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3355
+
3356
+
3357
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 04:02:41 -0400
3358
+ Served asset /application.css - 304 Not Modified (0ms)
3359
+
3360
+
3361
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 04:02:41 -0400
3362
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
3363
+
3364
+
3365
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 04:02:41 -0400
3366
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
3367
+
3368
+
3369
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 04:02:41 -0400
3370
+ Served asset /application.js - 304 Not Modified (0ms)
3371
+
3372
+
3373
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 04:02:45 -0400
3374
+ Processing by PagesController#simple_test as HTML
3375
+ Rendered pages/simple_test.html.haml within layouts/application (13.1ms)
3376
+ Completed 200 OK in 18ms (Views: 18.1ms)
3377
+
3378
+
3379
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 04:02:45 -0400
3380
+ Served asset /jquery.js - 304 Not Modified (0ms)
3381
+
3382
+
3383
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 04:02:45 -0400
3384
+ Served asset /application.css - 304 Not Modified (0ms)
3385
+
3386
+
3387
+ Started GET "/assets/joyride/joyride.css?body=1" for 127.0.0.1 at 2012-05-30 04:02:45 -0400
3388
+ Served asset /joyride/joyride.css - 304 Not Modified (1ms)
3389
+
3390
+
3391
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 04:02:45 -0400
3392
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3393
+
3394
+
3395
+ Started GET "/assets/joyride/joyride-1.0.3.css?body=1" for 127.0.0.1 at 2012-05-30 04:02:45 -0400
3396
+ Served asset /joyride/joyride-1.0.3.css - 304 Not Modified (3ms)
3397
+
3398
+
3399
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 04:02:45 -0400
3400
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
3401
+
3402
+
3403
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 04:02:45 -0400
3404
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
3405
+
3406
+
3407
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 04:02:45 -0400
3408
+ Served asset /application.js - 304 Not Modified (0ms)
3409
+
3410
+
3411
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 04:03:01 -0400
3412
+ Processing by PagesController#simple_test as HTML
3413
+ Rendered pages/simple_test.html.haml within layouts/application (0.2ms)
3414
+ Compiled joyride/joyride-1.0.3.css (75ms) (pid 29823)
3415
+ Compiled joyride/joyride.css (1ms) (pid 29823)
3416
+ Compiled application.css (22ms) (pid 29823)
3417
+ Completed 200 OK in 119ms (Views: 119.0ms)
3418
+
3419
+
3420
+ Started GET "/assets/joyride/joyride.css?body=1" for 127.0.0.1 at 2012-05-30 04:03:01 -0400
3421
+ Served asset /joyride/joyride.css - 304 Not Modified (7ms)
3422
+
3423
+
3424
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 04:03:01 -0400
3425
+ Served asset /application.css - 304 Not Modified (4ms)
3426
+
3427
+
3428
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 04:03:01 -0400
3429
+ Served asset /jquery.js - 304 Not Modified (0ms)
3430
+
3431
+
3432
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 04:03:01 -0400
3433
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3434
+
3435
+
3436
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 04:03:01 -0400
3437
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
3438
+
3439
+
3440
+ Started GET "/assets/joyride/joyride-1.0.3.css?body=1" for 127.0.0.1 at 2012-05-30 04:03:01 -0400
3441
+ Served asset /joyride/joyride-1.0.3.css - 200 OK (4ms)
3442
+
3443
+
3444
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 04:03:02 -0400
3445
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
3446
+
3447
+
3448
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 04:03:02 -0400
3449
+ Served asset /application.js - 304 Not Modified (0ms)
3450
+
3451
+
3452
+ Started GET "/assets/joyride/joyride.css?body=1&cssReloader=1338365008541" for 127.0.0.1 at 2012-05-30 04:03:28 -0400
3453
+ Compiled joyride/joyride-1.0.3.css (62ms) (pid 29823)
3454
+ Compiled joyride/joyride.css (1ms) (pid 29823)
3455
+ Served asset /joyride/joyride.css - 200 OK (72ms)
3456
+
3457
+
3458
+ Started GET "/assets/joyride/joyride-1.0.3.css?body=1&cssReloader=1338365008542" for 127.0.0.1 at 2012-05-30 04:03:28 -0400
3459
+ Served asset /joyride/joyride-1.0.3.css - 200 OK (2ms)
3460
+
3461
+
3462
+ Started GET "/assets/application.css?body=1&cssReloader=1338365008542" for 127.0.0.1 at 2012-05-30 04:03:28 -0400
3463
+ Compiled application.css (2ms) (pid 29823)
3464
+ Served asset /application.css - 200 OK (7ms)
3465
+
3466
+
3467
+ Started GET "/assets/joyride/joyride.css?body=1&cssReloader=1338365017126" for 127.0.0.1 at 2012-05-30 04:03:37 -0400
3468
+ Compiled joyride/joyride-1.0.3.css (86ms) (pid 29823)
3469
+ Compiled joyride/joyride.css (1ms) (pid 29823)
3470
+ Served asset /joyride/joyride.css - 200 OK (99ms)
3471
+
3472
+
3473
+ Started GET "/assets/joyride/joyride-1.0.3.css?body=1&cssReloader=1338365017127" for 127.0.0.1 at 2012-05-30 04:03:37 -0400
3474
+ Served asset /joyride/joyride-1.0.3.css - 200 OK (3ms)
3475
+
3476
+
3477
+ Started GET "/assets/application.css?body=1&cssReloader=1338365017128" for 127.0.0.1 at 2012-05-30 04:03:37 -0400
3478
+ Compiled application.css (2ms) (pid 29823)
3479
+ Served asset /application.css - 200 OK (10ms)
3480
+
3481
+
3482
+ Started GET "/assets/joyride/joyride.css?body=1&cssReloader=1338365023198" for 127.0.0.1 at 2012-05-30 04:03:43 -0400
3483
+ Compiled joyride/joyride-1.0.3.css (74ms) (pid 29823)
3484
+ Compiled joyride/joyride.css (1ms) (pid 29823)
3485
+ Served asset /joyride/joyride.css - 200 OK (86ms)
3486
+
3487
+
3488
+ Started GET "/assets/application.css?body=1&cssReloader=1338365023200" for 127.0.0.1 at 2012-05-30 04:03:43 -0400
3489
+ Compiled application.css (2ms) (pid 29823)
3490
+ Served asset /application.css - 200 OK (8ms)
3491
+
3492
+
3493
+ Started GET "/assets/joyride/joyride-1.0.3.css?body=1&cssReloader=1338365023199" for 127.0.0.1 at 2012-05-30 04:03:43 -0400
3494
+ Served asset /joyride/joyride-1.0.3.css - 200 OK (2ms)
3495
+
3496
+
3497
+ Started GET "/assets/joyride/joyride.css?body=1&cssReloader=1338365031384" for 127.0.0.1 at 2012-05-30 04:03:51 -0400
3498
+ Compiled joyride/joyride-1.0.3.css (69ms) (pid 29823)
3499
+ Compiled joyride/joyride.css (1ms) (pid 29823)
3500
+ Served asset /joyride/joyride.css - 200 OK (82ms)
3501
+
3502
+
3503
+ Started GET "/assets/joyride/joyride-1.0.3.css?body=1&cssReloader=1338365031385" for 127.0.0.1 at 2012-05-30 04:03:51 -0400
3504
+ Served asset /joyride/joyride-1.0.3.css - 200 OK (4ms)
3505
+
3506
+
3507
+ Started GET "/assets/application.css?body=1&cssReloader=1338365031386" for 127.0.0.1 at 2012-05-30 04:03:51 -0400
3508
+ Compiled application.css (2ms) (pid 29823)
3509
+ Served asset /application.css - 200 OK (10ms)
3510
+
3511
+
3512
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 04:04:25 -0400
3513
+ Processing by PagesController#simple_test as HTML
3514
+ Rendered pages/simple_test.html.haml within layouts/application (0.4ms)
3515
+ Compiled joyride/joyride-1.0.3.css (73ms) (pid 29823)
3516
+ Compiled joyride/joyride.css (1ms) (pid 29823)
3517
+ Compiled application.css (2ms) (pid 29823)
3518
+ Completed 200 OK in 104ms (Views: 104.3ms)
3519
+
3520
+
3521
+ Started GET "/assets/joyride/joyride.css?body=1" for 127.0.0.1 at 2012-05-30 04:04:25 -0400
3522
+ Served asset /joyride/joyride.css - 304 Not Modified (6ms)
3523
+
3524
+
3525
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 04:04:25 -0400
3526
+ Served asset /application.css - 304 Not Modified (9ms)
3527
+
3528
+
3529
+ Started GET "/assets/joyride/joyride-1.0.3.css?body=1" for 127.0.0.1 at 2012-05-30 04:04:25 -0400
3530
+ Served asset /joyride/joyride-1.0.3.css - 200 OK (28ms)
3531
+
3532
+
3533
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 04:04:25 -0400
3534
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3535
+
3536
+
3537
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 04:04:25 -0400
3538
+ Served asset /jquery.js - 304 Not Modified (0ms)
3539
+
3540
+
3541
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 04:04:25 -0400
3542
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
3543
+
3544
+
3545
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 04:04:25 -0400
3546
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
3547
+
3548
+
3549
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 04:04:25 -0400
3550
+ Served asset /application.js - 304 Not Modified (0ms)
3551
+
3552
+
3553
+ Started GET "/assets/joyride/joyride.css?body=1&cssReloader=1338365070129" for 127.0.0.1 at 2012-05-30 04:04:30 -0400
3554
+ Served asset /joyride/joyride.css - 200 OK (0ms)
3555
+
3556
+
3557
+ Started GET "/assets/joyride/joyride-1.0.3.css?body=1&cssReloader=1338365070129" for 127.0.0.1 at 2012-05-30 04:04:30 -0400
3558
+ Served asset /joyride/joyride-1.0.3.css - 200 OK (0ms)
3559
+
3560
+
3561
+ Started GET "/assets/application.css?body=1&cssReloader=1338365070130" for 127.0.0.1 at 2012-05-30 04:04:30 -0400
3562
+ Served asset /application.css - 200 OK (0ms)
3563
+
3564
+
3565
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 04:06:20 -0400
3566
+ Processing by PagesController#simple_test as HTML
3567
+ Rendered pages/simple_test.html.haml within layouts/application (0.2ms)
3568
+ Compiled joyride/joyride-1.0.3.css (53ms) (pid 29823)
3569
+ Compiled joyride/joyride.css (1ms) (pid 29823)
3570
+ Compiled application.css (15ms) (pid 29823)
3571
+ Completed 200 OK in 89ms (Views: 88.6ms)
3572
+
3573
+
3574
+ Started GET "/assets/joyride/joyride.css?body=1" for 127.0.0.1 at 2012-05-30 04:06:20 -0400
3575
+ Served asset /joyride/joyride.css - 304 Not Modified (7ms)
3576
+
3577
+
3578
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 04:06:20 -0400
3579
+ Served asset /application.css - 304 Not Modified (7ms)
3580
+
3581
+
3582
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 04:06:20 -0400
3583
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3584
+
3585
+
3586
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 04:06:20 -0400
3587
+ Served asset /jquery.js - 304 Not Modified (0ms)
3588
+
3589
+
3590
+ Started GET "/assets/joyride/joyride-1.0.3.css?body=1" for 127.0.0.1 at 2012-05-30 04:06:20 -0400
3591
+ Served asset /joyride/joyride-1.0.3.css - 200 OK (4ms)
3592
+
3593
+
3594
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 04:06:20 -0400
3595
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
3596
+
3597
+
3598
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 04:06:20 -0400
3599
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
3600
+
3601
+
3602
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 04:06:20 -0400
3603
+ Served asset /application.js - 304 Not Modified (0ms)
3604
+
3605
+
3606
+ Started GET "/assets/joyride/joyride.css?body=1&cssReloader=1338365195013" for 127.0.0.1 at 2012-05-30 04:06:35 -0400
3607
+ Served asset /joyride/joyride.css - 200 OK (0ms)
3608
+
3609
+
3610
+ Started GET "/assets/joyride/joyride-1.0.3.css?body=1&cssReloader=1338365195014" for 127.0.0.1 at 2012-05-30 04:06:35 -0400
3611
+ Served asset /joyride/joyride-1.0.3.css - 200 OK (0ms)
3612
+
3613
+
3614
+ Started GET "/assets/application.css?body=1&cssReloader=1338365195014" for 127.0.0.1 at 2012-05-30 04:06:35 -0400
3615
+ Served asset /application.css - 200 OK (0ms)
3616
+
3617
+
3618
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 04:06:42 -0400
3619
+ Processing by PagesController#simple_test as HTML
3620
+ Rendered pages/simple_test.html.haml within layouts/application (0.3ms)
3621
+ Compiled joyride/joyride-1.0.3.css (82ms) (pid 29823)
3622
+ Compiled joyride/joyride.css (1ms) (pid 29823)
3623
+ Compiled application.css (2ms) (pid 29823)
3624
+ Completed 200 OK in 108ms (Views: 107.8ms)
3625
+
3626
+
3627
+ Started GET "/assets/joyride/joyride.css?body=1" for 127.0.0.1 at 2012-05-30 04:06:43 -0400
3628
+ Served asset /joyride/joyride.css - 304 Not Modified (26ms)
3629
+
3630
+
3631
+ Started GET "/assets/joyride/joyride-1.0.3.css?body=1" for 127.0.0.1 at 2012-05-30 04:06:43 -0400
3632
+ Served asset /joyride/joyride-1.0.3.css - 200 OK (2ms)
3633
+
3634
+
3635
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 04:06:43 -0400
3636
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
3637
+
3638
+
3639
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 04:06:43 -0400
3640
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3641
+
3642
+
3643
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 04:06:43 -0400
3644
+ Served asset /application.css - 304 Not Modified (4ms)
3645
+
3646
+
3647
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 04:06:43 -0400
3648
+ Served asset /jquery.js - 304 Not Modified (0ms)
3649
+
3650
+
3651
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 04:06:43 -0400
3652
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
3653
+
3654
+
3655
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 04:06:43 -0400
3656
+ Served asset /application.js - 304 Not Modified (0ms)
3657
+
3658
+
3659
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 04:07:33 -0400
3660
+ Processing by PagesController#simple_test as HTML
3661
+ Rendered pages/simple_test.html.haml within layouts/application (0.3ms)
3662
+ Completed 500 Internal Server Error in 14ms
3663
+
3664
+ ActionView::Template::Error (Invalid CSS after "*": expected selector, was "/"
3665
+ (in /Users/michaelnorth/dev/projects/KidzArt6/joyride-rails/test/dummy/app/assets/stylesheets/application.css.sass)):
3666
+ 2: <html>
3667
+ 3: <head>
3668
+ 4: <title>Dummy</title>
3669
+ 5: <%= stylesheet_link_tag "application", :media => "all" %>
3670
+ 6: <%= javascript_include_tag "application" %>
3671
+ 7: <%= csrf_meta_tags %>
3672
+ 8: </head>
3673
+ app/assets/stylesheets/application.css.sass:12
3674
+ app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb___2334615056204790435_70144168646680'
3675
+
3676
+
3677
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.8ms)
3678
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
3679
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (12.7ms)
3680
+
3681
+
3682
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 04:08:02 -0400
3683
+ Processing by PagesController#simple_test as HTML
3684
+ Rendered pages/simple_test.html.haml within layouts/application (0.2ms)
3685
+ Completed 500 Internal Server Error in 8ms
3686
+
3687
+ ActionView::Template::Error (Invalid CSS after "*": expected selector, was "/"
3688
+ (in /Users/michaelnorth/dev/projects/KidzArt6/joyride-rails/test/dummy/app/assets/stylesheets/application.css.sass)):
3689
+ 2: <html>
3690
+ 3: <head>
3691
+ 4: <title>Dummy</title>
3692
+ 5: <%= stylesheet_link_tag "application", :media => "all" %>
3693
+ 6: <%= javascript_include_tag "application" %>
3694
+ 7: <%= csrf_meta_tags %>
3695
+ 8: </head>
3696
+ app/assets/stylesheets/application.css.sass:12
3697
+ app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb___2334615056204790435_70144168646680'
3698
+
3699
+
3700
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.9ms)
3701
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
3702
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (12.4ms)
3703
+
3704
+
3705
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 04:08:15 -0400
3706
+ Processing by PagesController#simple_test as HTML
3707
+ Rendered pages/simple_test.html.haml within layouts/application (2.5ms)
3708
+ WARNING on line 12 of /Users/michaelnorth/dev/projects/KidzArt6/joyride-rails/test/dummy/app/assets/stylesheets/application.css.sass:
3709
+ This selector doesn't have any properties and will not be rendered.
3710
+ Completed 500 Internal Server Error in 29ms
3711
+
3712
+ ActionView::Template::Error (Invalid CSS after "*": expected selector, was "/"
3713
+ (in /Users/michaelnorth/dev/projects/KidzArt6/joyride-rails/test/dummy/app/assets/stylesheets/application.css.sass)):
3714
+ 2: <html>
3715
+ 3: <head>
3716
+ 4: <title>Dummy</title>
3717
+ 5: <%= stylesheet_link_tag "application", :media => "all" %>
3718
+ 6: <%= javascript_include_tag "application" %>
3719
+ 7: <%= csrf_meta_tags %>
3720
+ 8: </head>
3721
+ app/assets/stylesheets/application.css.sass:12
3722
+ app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__371783544929977518_70212754737920'
3723
+
3724
+
3725
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.9ms)
3726
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
3727
+ Rendered /Users/michaelnorth/.rvm/gems/ruby-1.9.3-p125@kidzart6/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (13.6ms)
3728
+
3729
+
3730
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 04:08:35 -0400
3731
+ Processing by PagesController#simple_test as HTML
3732
+ Rendered pages/simple_test.html.haml within layouts/application (0.2ms)
3733
+ Compiled application.css (6ms) (pid 30281)
3734
+ Completed 200 OK in 68ms (Views: 67.7ms)
3735
+
3736
+
3737
+ Started GET "/assets/joyride/joyride.css?body=1" for 127.0.0.1 at 2012-05-30 04:08:36 -0400
3738
+ Served asset /joyride/joyride.css - 304 Not Modified (4ms)
3739
+
3740
+
3741
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 04:08:36 -0400
3742
+ Served asset /application.css - 200 OK (6ms)
3743
+
3744
+
3745
+ Started GET "/assets/joyride/joyride-1.0.3.css?body=1" for 127.0.0.1 at 2012-05-30 04:08:36 -0400
3746
+ Served asset /joyride/joyride-1.0.3.css - 304 Not Modified (3ms)
3747
+
3748
+
3749
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 04:08:36 -0400
3750
+ Served asset /jquery.js - 304 Not Modified (5ms)
3751
+
3752
+
3753
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 04:08:36 -0400
3754
+ Served asset /jquery_ujs.js - 304 Not Modified (3ms)
3755
+
3756
+
3757
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 04:08:36 -0400
3758
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (2ms)
3759
+
3760
+
3761
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 04:08:36 -0400
3762
+ Served asset /joyride/joyride.js - 304 Not Modified (6ms)
3763
+
3764
+
3765
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 04:08:36 -0400
3766
+ Served asset /application.js - 304 Not Modified (7ms)
3767
+
3768
+
3769
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 04:08:56 -0400
3770
+ Processing by PagesController#simple_test as HTML
3771
+ Rendered pages/simple_test.html.haml within layouts/application (0.2ms)
3772
+ Compiled application.css (3ms) (pid 30281)
3773
+ Completed 200 OK in 18ms (Views: 17.7ms)
3774
+
3775
+
3776
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 04:08:56 -0400
3777
+ Served asset /application.css - 304 Not Modified (3ms)
3778
+
3779
+
3780
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 04:08:56 -0400
3781
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
3782
+
3783
+
3784
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 04:08:56 -0400
3785
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3786
+
3787
+
3788
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 04:08:56 -0400
3789
+ Served asset /jquery.js - 304 Not Modified (0ms)
3790
+
3791
+
3792
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 04:08:56 -0400
3793
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
3794
+
3795
+
3796
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 04:08:56 -0400
3797
+ Served asset /application.js - 304 Not Modified (0ms)
3798
+
3799
+
3800
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 04:08:58 -0400
3801
+ Processing by PagesController#simple_test as HTML
3802
+ Rendered pages/simple_test.html.haml within layouts/application (0.3ms)
3803
+ Completed 200 OK in 5ms (Views: 4.9ms)
3804
+
3805
+
3806
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 04:08:58 -0400
3807
+ Served asset /application.css - 304 Not Modified (0ms)
3808
+
3809
+
3810
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 04:08:58 -0400
3811
+ Served asset /jquery.js - 304 Not Modified (0ms)
3812
+
3813
+
3814
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 04:08:58 -0400
3815
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
3816
+
3817
+
3818
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 04:08:58 -0400
3819
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
3820
+
3821
+
3822
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 04:08:58 -0400
3823
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3824
+
3825
+
3826
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 04:08:58 -0400
3827
+ Served asset /application.js - 304 Not Modified (0ms)
3828
+
3829
+
3830
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 04:09:19 -0400
3831
+ Processing by PagesController#simple_test as HTML
3832
+ Rendered pages/simple_test.html.haml within layouts/application (0.2ms)
3833
+ Compiled application.css (2ms) (pid 30281)
3834
+ Completed 200 OK in 14ms (Views: 13.8ms)
3835
+
3836
+
3837
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 04:09:19 -0400
3838
+ Served asset /application.css - 304 Not Modified (3ms)
3839
+
3840
+
3841
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 04:09:19 -0400
3842
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3843
+
3844
+
3845
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 04:09:19 -0400
3846
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
3847
+
3848
+
3849
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 04:09:19 -0400
3850
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
3851
+
3852
+
3853
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 04:09:19 -0400
3854
+ Served asset /jquery.js - 304 Not Modified (0ms)
3855
+
3856
+
3857
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 04:09:19 -0400
3858
+ Served asset /application.js - 304 Not Modified (0ms)
3859
+
3860
+
3861
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 04:09:25 -0400
3862
+ Processing by PagesController#simple_test as HTML
3863
+ Rendered pages/simple_test.html.haml within layouts/application (0.2ms)
3864
+ Compiled application.css (9ms) (pid 30281)
3865
+ Completed 200 OK in 23ms (Views: 23.0ms)
3866
+
3867
+
3868
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 04:09:25 -0400
3869
+ Served asset /application.css - 304 Not Modified (8ms)
3870
+
3871
+
3872
+ Started GET "/assets/joyride/joyride-1.0.3.css?body=1" for 127.0.0.1 at 2012-05-30 04:09:25 -0400
3873
+ Served asset /joyride/joyride-1.0.3.css - 304 Not Modified (0ms)
3874
+
3875
+
3876
+ Started GET "/assets/joyride/joyride.css?body=1" for 127.0.0.1 at 2012-05-30 04:09:25 -0400
3877
+ Served asset /joyride/joyride.css - 304 Not Modified (0ms)
3878
+
3879
+
3880
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 04:09:25 -0400
3881
+ Served asset /jquery.js - 304 Not Modified (0ms)
3882
+
3883
+
3884
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 04:09:25 -0400
3885
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3886
+
3887
+
3888
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 04:09:25 -0400
3889
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
3890
+
3891
+
3892
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 04:09:25 -0400
3893
+ Served asset /application.js - 304 Not Modified (0ms)
3894
+
3895
+
3896
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 04:09:25 -0400
3897
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
3898
+
3899
+
3900
+ Started GET "/assets/application.css?body=1&cssReloader=1338365369188" for 127.0.0.1 at 2012-05-30 04:09:29 -0400
3901
+ Served asset /application.css - 200 OK (0ms)
3902
+
3903
+
3904
+ Started GET "/assets/joyride/joyride.css?body=1&cssReloader=1338365369189" for 127.0.0.1 at 2012-05-30 04:09:29 -0400
3905
+ Served asset /joyride/joyride.css - 200 OK (0ms)
3906
+
3907
+
3908
+ Started GET "/assets/joyride/joyride-1.0.3.css?body=1&cssReloader=1338365369189" for 127.0.0.1 at 2012-05-30 04:09:29 -0400
3909
+ Served asset /joyride/joyride-1.0.3.css - 200 OK (0ms)
3910
+
3911
+
3912
+ Started GET "/pages/simple_test" for 127.0.0.1 at 2012-05-30 04:09:36 -0400
3913
+ Processing by PagesController#simple_test as HTML
3914
+ Rendered pages/simple_test.html.haml within layouts/application (0.2ms)
3915
+ Compiled application.css (3ms) (pid 30281)
3916
+ Completed 200 OK in 34ms (Views: 33.5ms)
3917
+
3918
+
3919
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-05-30 04:09:36 -0400
3920
+ Served asset /application.css - 304 Not Modified (2ms)
3921
+
3922
+
3923
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-30 04:09:36 -0400
3924
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3925
+
3926
+
3927
+ Started GET "/assets/joyride/joyride.js?body=1" for 127.0.0.1 at 2012-05-30 04:09:36 -0400
3928
+ Served asset /joyride/joyride.js - 304 Not Modified (0ms)
3929
+
3930
+
3931
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-30 04:09:36 -0400
3932
+ Served asset /jquery.js - 304 Not Modified (0ms)
3933
+
3934
+
3935
+ Started GET "/assets/joyride/jquery.joyride-1.0.3.js?body=1" for 127.0.0.1 at 2012-05-30 04:09:36 -0400
3936
+ Served asset /joyride/jquery.joyride-1.0.3.js - 304 Not Modified (0ms)
3937
+
3938
+
3939
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-05-30 04:09:36 -0400
3940
+ Served asset /application.js - 304 Not Modified (0ms)