alpha-simprini-engine 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (129) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.rdoc +3 -0
  3. data/Rakefile +38 -0
  4. data/app/assets/javascripts/alpha_simprini.coffee +15 -0
  5. data/app/assets/javascripts/alpha_simprini/application.coffee +22 -0
  6. data/app/assets/javascripts/alpha_simprini/coffee_kup/binding.coffee +119 -0
  7. data/app/assets/javascripts/alpha_simprini/coffee_kup/helpers.coffee +17 -0
  8. data/app/assets/javascripts/alpha_simprini/coffee_kup/tags.coffee +7 -0
  9. data/app/assets/javascripts/alpha_simprini/collection.coffee +62 -0
  10. data/app/assets/javascripts/alpha_simprini/delegate.coffee +21 -0
  11. data/app/assets/javascripts/alpha_simprini/event.coffee +75 -0
  12. data/app/assets/javascripts/alpha_simprini/html.coffee +56 -0
  13. data/app/assets/javascripts/alpha_simprini/mixin.coffee +10 -0
  14. data/app/assets/javascripts/alpha_simprini/model.coffee +137 -0
  15. data/app/assets/javascripts/alpha_simprini/models/radio_selection_model.coffee +9 -0
  16. data/app/assets/javascripts/alpha_simprini/packer.coffee +93 -0
  17. data/app/assets/javascripts/alpha_simprini/template_helpers.coffee +8 -0
  18. data/app/assets/javascripts/alpha_simprini/view.coffee +182 -0
  19. data/app/assets/javascripts/alpha_simprini/views/canvas.coffee +2 -0
  20. data/app/assets/javascripts/alpha_simprini/views/horizontal_split.coffee +9 -0
  21. data/app/assets/javascripts/alpha_simprini/views/panel.coffee +2 -0
  22. data/app/assets/javascripts/alpha_simprini/views/splitter.coffee +2 -0
  23. data/app/assets/javascripts/alpha_simprini/views/stage.coffee +7 -0
  24. data/app/assets/javascripts/alpha_simprini/views/vertical_split.coffee +8 -0
  25. data/app/assets/javascripts/alpha_simprini/views/viewport.coffee +0 -0
  26. data/app/assets/javascripts/bundle.js +16416 -0
  27. data/app/assets/javascripts/lib/backbone.coffee +11 -0
  28. data/app/assets/javascripts/lib/koffeecup_backbone_databind.coffee +25 -0
  29. data/app/assets/javascripts/lib/module.coffee +15 -0
  30. data/app/assets/javascripts/lib/state_machine.coffee +33 -0
  31. data/app/assets/javascripts/lib/string.coffee +13 -0
  32. data/app/assets/javascripts/qunit.js +1513 -0
  33. data/app/assets/javascripts/test.coffee +4 -0
  34. data/app/assets/javascripts/test/alpha_simprini/coffee_kup/binding.coffee +118 -0
  35. data/app/assets/javascripts/test/alpha_simprini/coffee_kup/helpers.coffee +10 -0
  36. data/app/assets/javascripts/test/alpha_simprini/coffee_kup/tags.coffee +18 -0
  37. data/app/assets/javascripts/test/alpha_simprini/collection.coffee +7 -0
  38. data/app/assets/javascripts/test/alpha_simprini/event.coffee +43 -0
  39. data/app/assets/javascripts/test/alpha_simprini/model.coffee +63 -0
  40. data/app/assets/javascripts/test/alpha_simprini/view.coffee +72 -0
  41. data/app/assets/javascripts/test/alpha_simprini/views/canvas.coffee +8 -0
  42. data/app/assets/javascripts/test/alpha_simprini/views/horizontal_split.coffee +13 -0
  43. data/app/assets/javascripts/test/alpha_simprini/views/vertical_split.coffee +13 -0
  44. data/app/assets/javascripts/test/backbone/collection.js +345 -0
  45. data/app/assets/javascripts/test/backbone/events.js +86 -0
  46. data/app/assets/javascripts/test/backbone/model.js +426 -0
  47. data/app/assets/javascripts/test/backbone/view.js +137 -0
  48. data/app/assets/stylesheets/bootstrap.sass +6 -0
  49. data/app/assets/stylesheets/paneling.sass +2 -0
  50. data/app/assets/stylesheets/qunit.scss +228 -0
  51. data/app/assets/stylesheets/table.sass +10 -0
  52. data/app/assets/stylesheets/typography.sass +19 -0
  53. data/app/controllers/alpha_simprini/test_controller.rb +3 -0
  54. data/app/controllers/resources_controller.rb +7 -0
  55. data/app/views/alpha_simprini/test/root.rb +13 -0
  56. data/app/views/resources/base.rb +2 -0
  57. data/app/views/resources/edit.rb +9 -0
  58. data/app/views/resources/form.rb +26 -0
  59. data/app/views/resources/index.rb +41 -0
  60. data/app/views/resources/new.rb +9 -0
  61. data/app/views/resources/show.rb +42 -0
  62. data/app/views/resources/show_has_many.rb +28 -0
  63. data/config/locales/en.yml +4 -0
  64. data/config/routes.rb +3 -0
  65. data/lib/alpha-simprini-engine.rb +33 -0
  66. data/lib/alpha-simprini-engine/version.rb +3 -0
  67. data/lib/alpha_simprini/directive_processor.rb +77 -0
  68. data/lib/alpha_simprini/packer.rb +161 -0
  69. data/lib/alpha_simprini/page.rb +37 -0
  70. data/lib/tasks/alpha-simprini-engine_tasks.rake +4 -0
  71. data/test/alpha-simprini-engine_test.rb +7 -0
  72. data/test/dummy/Rakefile +7 -0
  73. data/test/dummy/app/assets/javascripts/application.js +9 -0
  74. data/test/dummy/app/assets/stylesheets/application.css +7 -0
  75. data/test/dummy/app/controllers/application_controller.rb +3 -0
  76. data/test/dummy/app/helpers/application_helper.rb +2 -0
  77. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  78. data/test/dummy/config.ru +4 -0
  79. data/test/dummy/config/application.rb +42 -0
  80. data/test/dummy/config/boot.rb +10 -0
  81. data/test/dummy/config/database.yml +25 -0
  82. data/test/dummy/config/environment.rb +5 -0
  83. data/test/dummy/config/environments/development.rb +27 -0
  84. data/test/dummy/config/environments/production.rb +51 -0
  85. data/test/dummy/config/environments/test.rb +39 -0
  86. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  87. data/test/dummy/config/initializers/inflections.rb +10 -0
  88. data/test/dummy/config/initializers/mime_types.rb +5 -0
  89. data/test/dummy/config/initializers/secret_token.rb +7 -0
  90. data/test/dummy/config/initializers/session_store.rb +8 -0
  91. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  92. data/test/dummy/config/locales/en.yml +4 -0
  93. data/test/dummy/config/routes.rb +58 -0
  94. data/test/dummy/db/development.sqlite3 +0 -0
  95. data/test/dummy/log/development.log +800 -0
  96. data/test/dummy/public/404.html +26 -0
  97. data/test/dummy/public/422.html +26 -0
  98. data/test/dummy/public/500.html +26 -0
  99. data/test/dummy/public/favicon.ico +0 -0
  100. data/test/dummy/script/rails +6 -0
  101. data/test/dummy/tmp/cache/assets/C24/D70/sprockets%2F388a550030239f3784f207fa32954f64 +0 -0
  102. data/test/dummy/tmp/cache/assets/C34/620/sprockets%2F097ee8532856d48d70420c006f475889 +0 -0
  103. data/test/dummy/tmp/cache/assets/C6F/710/sprockets%2F908d18b0f21c18dad508851126164a41 +0 -0
  104. data/test/dummy/tmp/cache/assets/CA7/120/sprockets%2F35278a6c0150c40394fe02629c8b0eb9 +0 -0
  105. data/test/dummy/tmp/cache/assets/CDB/A80/sprockets%2F443b1c6e71b482fdd83b1833b7e27712 +0 -0
  106. data/test/dummy/tmp/cache/assets/CE3/FB0/sprockets%2F6d3f87a4232e0368bb86760780c5f1bd +0 -0
  107. data/test/dummy/tmp/cache/assets/D1C/160/sprockets%2F87876f7e55ebc78ae11c6c08a27f0605 +0 -0
  108. data/test/dummy/tmp/cache/assets/D26/6C0/sprockets%2F65bce2254bb3140a50326ea1654ea5df +0 -0
  109. data/test/dummy/tmp/cache/assets/D26/FA0/sprockets%2F1f50f59148df5f3e2ab889df381d9744 +0 -0
  110. data/test/dummy/tmp/cache/assets/D36/220/sprockets%2F841654b01d89eada195d7d1fe10b57b0 +0 -0
  111. data/test/dummy/tmp/cache/assets/D47/410/sprockets%2Ff1fe319eb4064bd5b861ac28f7d76555 +18122 -0
  112. data/test/dummy/tmp/cache/assets/D57/1E0/sprockets%2Fe267e3e1059799c429e4f5cfb95ec53c +0 -0
  113. data/test/dummy/tmp/cache/assets/D64/3E0/sprockets%2Fb49b7f8034b81ec601bc32fb127fbe08 +0 -0
  114. data/test/dummy/tmp/cache/assets/D65/850/sprockets%2F7a9b6a0e2d51adb43a1d3f859213e6b8 +15469 -0
  115. data/test/dummy/tmp/cache/assets/D6C/E30/sprockets%2Fcc7322b05ac2bef75e9f4f145d38117f +0 -0
  116. data/test/dummy/tmp/cache/assets/D7D/E00/sprockets%2Fce33b82451c73df1cfec69928b4f77b6 +0 -0
  117. data/test/dummy/tmp/cache/assets/D85/5D0/sprockets%2Fcf743946c378c148b19ce78eeaa9cc75 +0 -0
  118. data/test/dummy/tmp/cache/assets/DBB/560/sprockets%2F5a1d70cf7dd81a5ab5ce7a40a3a38d06 +0 -0
  119. data/test/dummy/tmp/cache/assets/DC1/670/sprockets%2Fefdfad0542298a1db90d24dc27ecc250 +0 -0
  120. data/test/dummy/tmp/cache/assets/DC5/1E0/sprockets%2F7517f22ad0f9dc13b8f0f6e0cc0e5de2 +0 -0
  121. data/test/dummy/tmp/cache/assets/DCC/220/sprockets%2F28d953c6ab9cc9a7db15600aabc6d77d +208 -0
  122. data/test/dummy/tmp/cache/assets/DCF/DF0/sprockets%2Ff0d3068f05825e1dfd9f5aaba946d3dc +0 -0
  123. data/test/dummy/tmp/cache/assets/DD3/0E0/sprockets%2F3e9e08a334bae7deadb5335f5e4f195f +0 -0
  124. data/test/dummy/tmp/cache/assets/DDB/980/sprockets%2Fbd2abc80a17c901e2f497f88f9be58cf +0 -0
  125. data/test/dummy/tmp/cache/assets/E00/ED0/sprockets%2Ffecf3bffeb200a47e96bd04cbc878076 +1535 -0
  126. data/test/dummy/tmp/cache/assets/EFB/560/sprockets%2Fbca0daf751c020cdeddabbefa51cb6ea +0 -0
  127. data/test/dummy/tmp/restart.txt +0 -0
  128. data/test/test_helper.rb +10 -0
  129. metadata +326 -0
@@ -0,0 +1,4 @@
1
+ # desc "Explaining what the task does"
2
+ # task :alpha-simprini-engine do
3
+ # # Task goes here
4
+ # end
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class AlphaSimpriniEngineTest < ActiveSupport::TestCase
4
+ test "truth" do
5
+ assert_kind_of Module, AlphaSimpriniEngine
6
+ end
7
+ end
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env rake
2
+ # Add your own tasks in files placed in lib/tasks ending in .rake,
3
+ # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
4
+
5
+ require File.expand_path('../config/application', __FILE__)
6
+
7
+ Dummy::Application.load_tasks
@@ -0,0 +1,9 @@
1
+ // This is a manifest file that'll be compiled into including all the files listed below.
2
+ // Add new JavaScript/Coffee code in separate files in this directory and they'll automatically
3
+ // be included in the compiled file accessible from http://example.com/assets/application.js
4
+ // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
5
+ // the compiled file.
6
+ //
7
+ //= require jquery
8
+ //= require jquery_ujs
9
+ //= require_tree .
@@ -0,0 +1,7 @@
1
+ /*
2
+ * This is a manifest file that'll automatically include all the stylesheets available in this directory
3
+ * and any sub-directories. You're free to add application-wide styles to this file and they'll appear at
4
+ * the top of the compiled file, but it's generally better to create a new file per style scope.
5
+ *= require_self
6
+ *= require_tree .
7
+ */
@@ -0,0 +1,3 @@
1
+ class ApplicationController < ActionController::Base
2
+ protect_from_forgery
3
+ end
@@ -0,0 +1,2 @@
1
+ module ApplicationHelper
2
+ end
@@ -0,0 +1,14 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Dummy</title>
5
+ <%= stylesheet_link_tag "application" %>
6
+ <%= javascript_include_tag "application" %>
7
+ <%= csrf_meta_tags %>
8
+ </head>
9
+ <body>
10
+
11
+ <%= yield %>
12
+
13
+ </body>
14
+ </html>
@@ -0,0 +1,4 @@
1
+ # This file is used by Rack-based servers to start the application.
2
+
3
+ require ::File.expand_path('../config/environment', __FILE__)
4
+ run Dummy::Application
@@ -0,0 +1,42 @@
1
+ require File.expand_path('../boot', __FILE__)
2
+
3
+ require 'rails/all'
4
+
5
+ Bundler.require
6
+ require "alpha-simprini-engine"
7
+
8
+ module Dummy
9
+ class Application < Rails::Application
10
+ # Settings in config/environments/* take precedence over those specified here.
11
+ # Application configuration should go into files in config/initializers
12
+ # -- all .rb files in that directory are automatically loaded.
13
+
14
+ # Custom directories with classes and modules you want to be autoloadable.
15
+ # config.autoload_paths += %W(#{config.root}/extras)
16
+
17
+ # Only load the plugins named here, in the order given (default is alphabetical).
18
+ # :all can be used as a placeholder for all plugins not explicitly named.
19
+ # config.plugins = [ :exception_notification, :ssl_requirement, :all ]
20
+
21
+ # Activate observers that should always be running.
22
+ # config.active_record.observers = :cacher, :garbage_collector, :forum_observer
23
+
24
+ # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
25
+ # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
26
+ # config.time_zone = 'Central Time (US & Canada)'
27
+
28
+ # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
29
+ # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
30
+ # config.i18n.default_locale = :de
31
+
32
+ # Configure the default encoding used in templates for Ruby 1.9.
33
+ config.encoding = "utf-8"
34
+
35
+ # Configure sensitive parameters which will be filtered from the log file.
36
+ config.filter_parameters += [:password]
37
+
38
+ # Enable the asset pipeline
39
+ config.assets.enabled = true
40
+ end
41
+ end
42
+
@@ -0,0 +1,10 @@
1
+ require 'rubygems'
2
+ gemfile = File.expand_path('../../../../Gemfile', __FILE__)
3
+
4
+ if File.exist?(gemfile)
5
+ ENV['BUNDLE_GEMFILE'] = gemfile
6
+ require 'bundler'
7
+ Bundler.setup
8
+ end
9
+
10
+ $:.unshift File.expand_path('../../../../lib', __FILE__)
@@ -0,0 +1,25 @@
1
+ # SQLite version 3.x
2
+ # gem install sqlite3
3
+ #
4
+ # Ensure the SQLite 3 gem is defined in your Gemfile
5
+ # gem 'sqlite3'
6
+ development:
7
+ adapter: sqlite3
8
+ database: db/development.sqlite3
9
+ pool: 5
10
+ timeout: 5000
11
+
12
+ # Warning: The database defined as "test" will be erased and
13
+ # re-generated from your development database when you run "rake".
14
+ # Do not set this db to the same as development or production.
15
+ test:
16
+ adapter: sqlite3
17
+ database: db/test.sqlite3
18
+ pool: 5
19
+ timeout: 5000
20
+
21
+ production:
22
+ adapter: sqlite3
23
+ database: db/production.sqlite3
24
+ pool: 5
25
+ timeout: 5000
@@ -0,0 +1,5 @@
1
+ # Load the rails application
2
+ require File.expand_path('../application', __FILE__)
3
+
4
+ # Initialize the rails application
5
+ Dummy::Application.initialize!
@@ -0,0 +1,27 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # In the development environment your application's code is reloaded on
5
+ # every request. This slows down response time but is perfect for development
6
+ # since you don't have to restart the web server when you make code changes.
7
+ config.cache_classes = false
8
+
9
+ # Log error messages when you accidentally call methods on nil.
10
+ config.whiny_nils = true
11
+
12
+ # Show full error reports and disable caching
13
+ config.consider_all_requests_local = true
14
+ config.action_controller.perform_caching = false
15
+
16
+ # Don't care if the mailer can't send
17
+ config.action_mailer.raise_delivery_errors = false
18
+
19
+ # Print deprecation notices to the Rails logger
20
+ config.active_support.deprecation = :log
21
+
22
+ # Only use best-standards-support built into browsers
23
+ config.action_dispatch.best_standards_support = :builtin
24
+
25
+ # Do not compress assets
26
+ config.assets.compress = false
27
+ end
@@ -0,0 +1,51 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # Code is not reloaded between requests
5
+ config.cache_classes = true
6
+
7
+ # Full error reports are disabled and caching is turned on
8
+ config.consider_all_requests_local = false
9
+ config.action_controller.perform_caching = true
10
+
11
+ # Disable Rails's static asset server (Apache or nginx will already do this)
12
+ config.serve_static_assets = false
13
+
14
+ # Compress JavaScripts and CSS
15
+ config.assets.compress = true
16
+
17
+ # Specifies the header that your server uses for sending files
18
+ # config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
19
+ # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
20
+
21
+ # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
22
+ # config.force_ssl = true
23
+
24
+ # See everything in the log (default is :info)
25
+ # config.log_level = :debug
26
+
27
+ # Use a different logger for distributed setups
28
+ # config.logger = SyslogLogger.new
29
+
30
+ # Use a different cache store in production
31
+ # config.cache_store = :mem_cache_store
32
+
33
+ # Enable serving of images, stylesheets, and JavaScripts from an asset server
34
+ # config.action_controller.asset_host = "http://assets.example.com"
35
+
36
+ # Precompile additional assets (application.js, application.css, and all non-JS/CSS are already added)
37
+ # config.assets.precompile += %w( search.js )
38
+
39
+ # Disable delivery errors, bad email addresses will be ignored
40
+ # config.action_mailer.raise_delivery_errors = false
41
+
42
+ # Enable threaded mode
43
+ # config.threadsafe!
44
+
45
+ # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
46
+ # the I18n.default_locale when a translation can not be found)
47
+ config.i18n.fallbacks = true
48
+
49
+ # Send deprecation notices to registered listeners
50
+ config.active_support.deprecation = :notify
51
+ end
@@ -0,0 +1,39 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # The test environment is used exclusively to run your application's
5
+ # test suite. You never need to work with it otherwise. Remember that
6
+ # your test database is "scratch space" for the test suite and is wiped
7
+ # and recreated between test runs. Don't rely on the data there!
8
+ config.cache_classes = true
9
+
10
+ # Configure static asset server for tests with Cache-Control for performance
11
+ config.serve_static_assets = true
12
+ config.static_cache_control = "public, max-age=3600"
13
+
14
+ # Log error messages when you accidentally call methods on nil
15
+ config.whiny_nils = true
16
+
17
+ # Show full error reports and disable caching
18
+ config.consider_all_requests_local = true
19
+ config.action_controller.perform_caching = false
20
+
21
+ # Raise exceptions instead of rendering exception templates
22
+ config.action_dispatch.show_exceptions = false
23
+
24
+ # Disable request forgery protection in test environment
25
+ config.action_controller.allow_forgery_protection = false
26
+
27
+ # Tell Action Mailer not to deliver emails to the real world.
28
+ # The :test delivery method accumulates sent emails in the
29
+ # ActionMailer::Base.deliveries array.
30
+ config.action_mailer.delivery_method = :test
31
+
32
+ # Use SQL instead of Active Record's schema dumper when creating the test database.
33
+ # This is necessary if your schema can't be completely dumped by the schema dumper,
34
+ # like if you have constraints or database-specific column types
35
+ # config.active_record.schema_format = :sql
36
+
37
+ # Print deprecation notices to the stderr
38
+ config.active_support.deprecation = :stderr
39
+ end
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
+
6
+ # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,10 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format
4
+ # (all these examples are active by default):
5
+ # ActiveSupport::Inflector.inflections do |inflect|
6
+ # inflect.plural /^(ox)$/i, '\1en'
7
+ # inflect.singular /^(ox)en/i, '\1'
8
+ # inflect.irregular 'person', 'people'
9
+ # inflect.uncountable %w( fish sheep )
10
+ # end
@@ -0,0 +1,5 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
5
+ # Mime::Type.register_alias "text/html", :iphone
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+ # Make sure the secret is at least 30 characters and all random,
6
+ # no regular words or you'll be exposed to dictionary attacks.
7
+ Dummy::Application.config.secret_token = '0da4215541f901771c8aa64729bb6d928cca5c4ba04db964f2811201eadb0b41150ac048ffb22599202ffb95067cecfbbe5f9ca3bcb4babec1865a783b512a47'
@@ -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,4 @@
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:
@@ -0,0 +1,58 @@
1
+ Dummy::Application.routes.draw do
2
+ # The priority is based upon order of creation:
3
+ # first created -> highest priority.
4
+
5
+ # Sample of regular route:
6
+ # match 'products/:id' => 'catalog#view'
7
+ # Keep in mind you can assign values other than :controller and :action
8
+
9
+ # Sample of named route:
10
+ # match 'products/:id/purchase' => 'catalog#purchase', :as => :purchase
11
+ # This route can be invoked with purchase_url(:id => product.id)
12
+
13
+ # Sample resource route (maps HTTP verbs to controller actions automatically):
14
+ # resources :products
15
+
16
+ # Sample resource route with options:
17
+ # resources :products do
18
+ # member do
19
+ # get 'short'
20
+ # post 'toggle'
21
+ # end
22
+ #
23
+ # collection do
24
+ # get 'sold'
25
+ # end
26
+ # end
27
+
28
+ # Sample resource route with sub-resources:
29
+ # resources :products do
30
+ # resources :comments, :sales
31
+ # resource :seller
32
+ # end
33
+
34
+ # Sample resource route with more complex sub-resources
35
+ # resources :products do
36
+ # resources :comments
37
+ # resources :sales do
38
+ # get 'recent', :on => :collection
39
+ # end
40
+ # end
41
+
42
+ # Sample resource route within a namespace:
43
+ # namespace :admin do
44
+ # # Directs /admin/products/* to Admin::ProductsController
45
+ # # (app/controllers/admin/products_controller.rb)
46
+ # resources :products
47
+ # end
48
+
49
+ # You can have the root of your site routed with "root"
50
+ # just remember to delete public/index.html.
51
+ # root :to => 'welcome#index'
52
+
53
+ # See how all your routes lay out with "rake routes"
54
+
55
+ # This is a legacy wild controller route that's not recommended for RESTful applications.
56
+ # Note: This route will make all actions in every controller accessible via GET requests.
57
+ # match ':controller(/:action(/:id(.:format)))'
58
+ end
File without changes
@@ -0,0 +1,800 @@
1
+
2
+
3
+ Started GET "/test" for 127.0.0.1 at 2011-08-28 19:17:48 -0500
4
+
5
+ LoadError (Expected /Users/collin/Code/alpha-simprini-engine/app/controllers/test_controller.rb to define TestController):
6
+
7
+
8
+ Rendered /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.7ms)
9
+ Rendered /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (18.3ms)
10
+ Rendered /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (38.4ms)
11
+
12
+
13
+ Started GET "/test" for 127.0.0.1 at 2011-08-28 19:18:10 -0500
14
+
15
+ AbstractController::ActionNotFound (The action 'test' could not be found for TestController):
16
+
17
+
18
+ Rendered /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.9ms)
19
+
20
+
21
+ Started GET "/test" for 127.0.0.1 at 2011-08-28 19:19:45 -0500
22
+
23
+ AbstractController::ActionNotFound (The action 'root' could not be found for TestController):
24
+
25
+
26
+ Rendered /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.5ms)
27
+
28
+
29
+ Started GET "/test" for 127.0.0.1 at 2011-08-28 19:19:46 -0500
30
+
31
+ AbstractController::ActionNotFound (The action 'root' could not be found for TestController):
32
+
33
+
34
+ Rendered /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.5ms)
35
+
36
+
37
+ Started GET "/test" for 127.0.0.1 at 2011-08-28 19:19:47 -0500
38
+
39
+ AbstractController::ActionNotFound (The action 'root' could not be found for TestController):
40
+
41
+
42
+ Rendered /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.5ms)
43
+
44
+
45
+ Started GET "/test" for 127.0.0.1 at 2011-08-28 19:19:47 -0500
46
+
47
+ AbstractController::ActionNotFound (The action 'root' could not be found for TestController):
48
+
49
+
50
+ Rendered /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.5ms)
51
+
52
+
53
+ Started GET "/test" for 127.0.0.1 at 2011-08-28 19:19:48 -0500
54
+
55
+ AbstractController::ActionNotFound (The action 'root' could not be found for TestController):
56
+
57
+
58
+ Rendered /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.6ms)
59
+
60
+
61
+ Started GET "/test" for 127.0.0.1 at 2011-08-28 19:19:48 -0500
62
+
63
+ AbstractController::ActionNotFound (The action 'root' could not be found for TestController):
64
+
65
+
66
+ Rendered /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.5ms)
67
+
68
+
69
+ Started GET "/test" for 127.0.0.1 at 2011-08-28 19:19:49 -0500
70
+
71
+ AbstractController::ActionNotFound (The action 'root' could not be found for TestController):
72
+
73
+
74
+ Rendered /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.5ms)
75
+
76
+
77
+ Started GET "/test" for 127.0.0.1 at 2011-08-28 19:19:49 -0500
78
+
79
+ AbstractController::ActionNotFound (The action 'root' could not be found for TestController):
80
+
81
+
82
+ Rendered /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.5ms)
83
+
84
+
85
+ Started GET "/test" for 127.0.0.1 at 2011-08-28 19:20:02 -0500
86
+ Processing by TestController#root as HTML
87
+ Completed 500 Internal Server Error in 86ms
88
+
89
+ ActionView::MissingTemplate (Missing template test/root with {:handlers=>[:erb, :builder, :rb], :formats=>[:html], :locale=>[:en, :en]}. Searched in:
90
+ * "/Users/collin/Code/alpha-simprini-engine/test/dummy/app/views"
91
+ ):
92
+
93
+
94
+ Rendered /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.6ms)
95
+
96
+
97
+ Started GET "/test" for 127.0.0.1 at 2011-08-28 19:22:51 -0500
98
+ Processing by TestController#root as HTML
99
+ Rendered /Users/collin/Code/alpha-simprini-engine/app/views/test/root.rb (7.2ms)
100
+ Completed 500 Internal Server Error in 23ms
101
+
102
+ ActionView::Template::Error (uninitialized constant Views):
103
+ 1: class Views::Test::Root < AlphaSimprini::Page
104
+ 2: def assets
105
+ 3: javascript_include_tag "test"
106
+ 4: stylesheet_link_tag "qunit"
107
+
108
+
109
+ Rendered /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.6ms)
110
+ Rendered /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
111
+ Rendered /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.8ms)
112
+
113
+
114
+ Started GET "/test" for 127.0.0.1 at 2011-08-28 19:23:58 -0500
115
+ Processing by TestController#root as HTML
116
+ Rendered /Users/collin/Code/alpha-simprini-engine/app/views/test/root.rb (1.9ms)
117
+ Completed 500 Internal Server Error in 7ms
118
+
119
+ ActionView::Template::Error (uninitialized constant Views):
120
+ 1: class Views::Test::Root < AlphaSimprini::Page
121
+ 2: def assets
122
+ 3: javascript_include_tag "test"
123
+ 4: stylesheet_link_tag "qunit"
124
+
125
+
126
+ Rendered /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.8ms)
127
+ Rendered /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
128
+ Rendered /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.2ms)
129
+
130
+
131
+ Started GET "/test" for 127.0.0.1 at 2011-08-28 19:24:04 -0500
132
+ Processing by TestController#root as HTML
133
+ Rendered /Users/collin/Code/alpha-simprini-engine/app/views/test/root.rb (7.0ms)
134
+ Completed 500 Internal Server Error in 23ms
135
+
136
+ ActionView::Template::Error (uninitialized constant Views):
137
+ 1: class Views::Test::Root < AlphaSimprini::Page
138
+ 2: def assets
139
+ 3: javascript_include_tag "test"
140
+ 4: stylesheet_link_tag "qunit"
141
+
142
+
143
+ Rendered /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.8ms)
144
+ Rendered /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
145
+ Rendered /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.4ms)
146
+
147
+
148
+ Started GET "/test" for 127.0.0.1 at 2011-08-28 19:24:39 -0500
149
+ Processing by TestController#root as HTML
150
+ Rendered /Users/collin/Code/alpha-simprini-engine/app/views/test/root.rb (2.1ms)
151
+ Completed 500 Internal Server Error in 8ms
152
+
153
+ ActionView::Template::Error (uninitialized constant Views):
154
+ 1: class Views::Test::Root < AlphaSimprini::Page
155
+ 2: def assets
156
+ 3: javascript_include_tag "test"
157
+ 4: stylesheet_link_tag "qunit"
158
+
159
+
160
+ Rendered /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.7ms)
161
+ Rendered /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
162
+ Rendered /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.2ms)
163
+
164
+
165
+ Started GET "/test" for 127.0.0.1 at 2011-08-28 19:24:45 -0500
166
+ Processing by TestController#root as HTML
167
+ Rendered /Users/collin/Code/alpha-simprini-engine/app/views/test/root.rb (9.4ms)
168
+ Completed 500 Internal Server Error in 28ms
169
+
170
+ ActionView::Template::Error (uninitialized constant Views):
171
+ 1: class Views::Test::Root < AlphaSimprini::Page
172
+ 2: def assets
173
+ 3: javascript_include_tag "test"
174
+ 4: stylesheet_link_tag "qunit"
175
+
176
+
177
+ Rendered /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.5ms)
178
+ Rendered /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
179
+ Rendered /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (12.5ms)
180
+
181
+
182
+ Started GET "/test" for 127.0.0.1 at 2011-08-28 19:34:35 -0500
183
+ Processing by TestController#root as HTML
184
+ Rendered /Users/collin/Code/alpha-simprini-engine/app/views/test/root.rb (2.8ms)
185
+ Completed 500 Internal Server Error in 9ms
186
+
187
+ ActionView::Template::Error (uninitialized constant Views):
188
+ 1: class Views::Test::Root < AlphaSimprini::Page
189
+ 2: def assets
190
+ 3: javascript_include_tag "test"
191
+ 4: stylesheet_link_tag "qunit"
192
+
193
+
194
+ Rendered /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.8ms)
195
+ Rendered /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
196
+ Rendered /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.1ms)
197
+
198
+
199
+ Started GET "/test" for 127.0.0.1 at 2011-08-28 19:40:00 -0500
200
+ Processing by TestController#root as HTML
201
+ Rendered /Users/collin/Code/alpha-simprini-engine/app/views/test/root.rb (1.8ms)
202
+ Completed 500 Internal Server Error in 6ms
203
+
204
+ ActionView::Template::Error (uninitialized constant Views):
205
+ 1: class Views::Test::Root < AlphaSimprini::Page
206
+ 2: def assets
207
+ 3: javascript_include_tag "test"
208
+ 4: stylesheet_link_tag "qunit"
209
+
210
+
211
+ Rendered /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.1ms)
212
+ Rendered /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (22.1ms)
213
+ Rendered /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (27.3ms)
214
+
215
+
216
+ Started GET "/test" for 127.0.0.1 at 2011-08-28 19:40:08 -0500
217
+ Processing by TestController#root as HTML
218
+ Sprockets::Environment#path is deprecated
219
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:119:in `rewrite_asset_path'
220
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_view/asset_paths.rb:29:in `compute_public_path'
221
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:100:in `compute_public_path'
222
+ Sprockets::Environment#path is deprecated
223
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:119:in `rewrite_asset_path'
224
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_view/asset_paths.rb:29:in `compute_public_path'
225
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:100:in `compute_public_path'
226
+ Rendered /Users/collin/Code/alpha-simprini-engine/app/views/test/root.rb (8.8ms)
227
+ Completed 200 OK in 49ms (Views: 48.9ms | ActiveRecord: 0.0ms)
228
+
229
+
230
+ Started GET "/assets/qunit.css" for 127.0.0.1 at 2011-08-28 19:40:09 -0500
231
+ Served asset /qunit.css - 404 Not Found (2ms)
232
+
233
+ ActionController::RoutingError (No route matches [GET] "/assets/qunit.css"):
234
+
235
+
236
+ Rendered /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
237
+
238
+
239
+ Started GET "/assets/test.js" for 127.0.0.1 at 2011-08-28 19:40:09 -0500
240
+ Error compiling asset test.js:
241
+ LoadError: cannot load such file -- coffee_script
242
+ (in /Users/collin/Code/alpha-simprini-engine/app/assets/javascripts/test.coffee)
243
+ Served asset /test.js - 500 Internal Server Error
244
+
245
+
246
+
247
+ Started GET "/test" for 127.0.0.1 at 2011-08-28 19:41:01 -0500
248
+ Processing by TestController#root as HTML
249
+ Sprockets::Environment#path is deprecated
250
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:119:in `rewrite_asset_path'
251
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_view/asset_paths.rb:29:in `compute_public_path'
252
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:100:in `compute_public_path'
253
+ Sprockets::Environment#path is deprecated
254
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:119:in `rewrite_asset_path'
255
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_view/asset_paths.rb:29:in `compute_public_path'
256
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:100:in `compute_public_path'
257
+ Rendered /Users/collin/Code/alpha-simprini-engine/app/views/test/root.rb (7.8ms)
258
+ Completed 200 OK in 13ms (Views: 12.3ms | ActiveRecord: 0.0ms)
259
+
260
+
261
+ Started GET "/assets/qunit.css" for 127.0.0.1 at 2011-08-28 19:41:01 -0500
262
+ Served asset /qunit.css - 404 Not Found (3ms)
263
+
264
+ ActionController::RoutingError (No route matches [GET] "/assets/qunit.css"):
265
+
266
+
267
+ Rendered /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.2ms)
268
+
269
+
270
+ Started GET "/assets/test.js" for 127.0.0.1 at 2011-08-28 19:41:01 -0500
271
+ Error compiling asset test.js:
272
+ LoadError: cannot load such file -- coffee_script
273
+ (in /Users/collin/Code/alpha-simprini-engine/app/assets/javascripts/test.coffee)
274
+ Served asset /test.js - 500 Internal Server Error
275
+
276
+
277
+
278
+ Started GET "/test" for 127.0.0.1 at 2011-08-28 19:41:02 -0500
279
+ Processing by TestController#root as HTML
280
+ Sprockets::Environment#path is deprecated
281
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:119:in `rewrite_asset_path'
282
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_view/asset_paths.rb:29:in `compute_public_path'
283
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:100:in `compute_public_path'
284
+ Sprockets::Environment#path is deprecated
285
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:119:in `rewrite_asset_path'
286
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_view/asset_paths.rb:29:in `compute_public_path'
287
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:100:in `compute_public_path'
288
+ Rendered /Users/collin/Code/alpha-simprini-engine/app/views/test/root.rb (5.6ms)
289
+ Completed 200 OK in 10ms (Views: 10.1ms | ActiveRecord: 0.0ms)
290
+
291
+
292
+ Started GET "/assets/qunit.css" for 127.0.0.1 at 2011-08-28 19:41:02 -0500
293
+ Served asset /qunit.css - 404 Not Found (3ms)
294
+
295
+ ActionController::RoutingError (No route matches [GET] "/assets/qunit.css"):
296
+
297
+
298
+ Rendered /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
299
+
300
+
301
+ Started GET "/assets/test.js" for 127.0.0.1 at 2011-08-28 19:41:02 -0500
302
+ Error compiling asset test.js:
303
+ LoadError: cannot load such file -- coffee_script
304
+ (in /Users/collin/Code/alpha-simprini-engine/app/assets/javascripts/test.coffee)
305
+ Served asset /test.js - 500 Internal Server Error
306
+
307
+
308
+
309
+ Started GET "/test" for 127.0.0.1 at 2011-08-28 19:41:03 -0500
310
+ Processing by TestController#root as HTML
311
+ Sprockets::Environment#path is deprecated
312
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:119:in `rewrite_asset_path'
313
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_view/asset_paths.rb:29:in `compute_public_path'
314
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:100:in `compute_public_path'
315
+ Sprockets::Environment#path is deprecated
316
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:119:in `rewrite_asset_path'
317
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_view/asset_paths.rb:29:in `compute_public_path'
318
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:100:in `compute_public_path'
319
+ Rendered /Users/collin/Code/alpha-simprini-engine/app/views/test/root.rb (6.1ms)
320
+ Completed 200 OK in 11ms (Views: 10.8ms | ActiveRecord: 0.0ms)
321
+
322
+
323
+ Started GET "/assets/test.js" for 127.0.0.1 at 2011-08-28 19:41:03 -0500
324
+ Error compiling asset test.js:
325
+ LoadError: cannot load such file -- coffee_script
326
+ (in /Users/collin/Code/alpha-simprini-engine/app/assets/javascripts/test.coffee)
327
+ Served asset /test.js - 500 Internal Server Error
328
+
329
+
330
+
331
+ Started GET "/assets/qunit.css" for 127.0.0.1 at 2011-08-28 19:41:03 -0500
332
+ Served asset /qunit.css - 404 Not Found (65ms)
333
+
334
+ ActionController::RoutingError (No route matches [GET] "/assets/qunit.css"):
335
+
336
+
337
+ Rendered /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.2ms)
338
+
339
+
340
+ Started GET "/test" for 127.0.0.1 at 2011-08-28 19:41:03 -0500
341
+ Processing by TestController#root as HTML
342
+ Sprockets::Environment#path is deprecated
343
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:119:in `rewrite_asset_path'
344
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_view/asset_paths.rb:29:in `compute_public_path'
345
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:100:in `compute_public_path'
346
+ Sprockets::Environment#path is deprecated
347
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:119:in `rewrite_asset_path'
348
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_view/asset_paths.rb:29:in `compute_public_path'
349
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:100:in `compute_public_path'
350
+ Rendered /Users/collin/Code/alpha-simprini-engine/app/views/test/root.rb (5.6ms)
351
+ Completed 200 OK in 11ms (Views: 10.6ms | ActiveRecord: 0.0ms)
352
+
353
+
354
+ Started GET "/assets/qunit.css" for 127.0.0.1 at 2011-08-28 19:41:03 -0500
355
+ Served asset /qunit.css - 404 Not Found (5ms)
356
+
357
+ ActionController::RoutingError (No route matches [GET] "/assets/qunit.css"):
358
+
359
+
360
+ Rendered /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
361
+
362
+
363
+ Started GET "/assets/test.js" for 127.0.0.1 at 2011-08-28 19:41:03 -0500
364
+ Error compiling asset test.js:
365
+ LoadError: cannot load such file -- coffee_script
366
+ (in /Users/collin/Code/alpha-simprini-engine/app/assets/javascripts/test.coffee)
367
+ Served asset /test.js - 500 Internal Server Error
368
+
369
+
370
+
371
+ Started GET "/test" for 127.0.0.1 at 2011-08-28 19:41:04 -0500
372
+ Processing by TestController#root as HTML
373
+ Sprockets::Environment#path is deprecated
374
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:119:in `rewrite_asset_path'
375
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_view/asset_paths.rb:29:in `compute_public_path'
376
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:100:in `compute_public_path'
377
+ Sprockets::Environment#path is deprecated
378
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:119:in `rewrite_asset_path'
379
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_view/asset_paths.rb:29:in `compute_public_path'
380
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:100:in `compute_public_path'
381
+ Rendered /Users/collin/Code/alpha-simprini-engine/app/views/test/root.rb (5.1ms)
382
+ Completed 200 OK in 10ms (Views: 10.0ms | ActiveRecord: 0.0ms)
383
+
384
+
385
+ Started GET "/assets/qunit.css" for 127.0.0.1 at 2011-08-28 19:41:04 -0500
386
+ Served asset /qunit.css - 404 Not Found (2ms)
387
+
388
+ ActionController::RoutingError (No route matches [GET] "/assets/qunit.css"):
389
+
390
+
391
+ Rendered /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
392
+
393
+
394
+ Started GET "/assets/test.js" for 127.0.0.1 at 2011-08-28 19:41:04 -0500
395
+ Error compiling asset test.js:
396
+ LoadError: cannot load such file -- coffee_script
397
+ (in /Users/collin/Code/alpha-simprini-engine/app/assets/javascripts/test.coffee)
398
+ Served asset /test.js - 500 Internal Server Error
399
+
400
+
401
+
402
+ Started GET "/test" for 127.0.0.1 at 2011-08-28 19:41:04 -0500
403
+ Processing by TestController#root as HTML
404
+ Sprockets::Environment#path is deprecated
405
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:119:in `rewrite_asset_path'
406
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_view/asset_paths.rb:29:in `compute_public_path'
407
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:100:in `compute_public_path'
408
+ Sprockets::Environment#path is deprecated
409
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:119:in `rewrite_asset_path'
410
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_view/asset_paths.rb:29:in `compute_public_path'
411
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:100:in `compute_public_path'
412
+ Rendered /Users/collin/Code/alpha-simprini-engine/app/views/test/root.rb (17.9ms)
413
+ Completed 200 OK in 25ms (Views: 24.4ms | ActiveRecord: 0.0ms)
414
+
415
+
416
+ Started GET "/assets/test.js" for 127.0.0.1 at 2011-08-28 19:41:04 -0500
417
+ Error compiling asset test.js:
418
+ LoadError: cannot load such file -- coffee_script
419
+ (in /Users/collin/Code/alpha-simprini-engine/app/assets/javascripts/test.coffee)
420
+ Served asset /test.js - 500 Internal Server Error
421
+
422
+
423
+
424
+ Started GET "/assets/qunit.css" for 127.0.0.1 at 2011-08-28 19:41:04 -0500
425
+ Served asset /qunit.css - 404 Not Found (2ms)
426
+
427
+ ActionController::RoutingError (No route matches [GET] "/assets/qunit.css"):
428
+
429
+
430
+ Rendered /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
431
+
432
+
433
+ Started GET "/test" for 127.0.0.1 at 2011-08-28 19:41:04 -0500
434
+ Processing by TestController#root as HTML
435
+ Sprockets::Environment#path is deprecated
436
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:119:in `rewrite_asset_path'
437
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_view/asset_paths.rb:29:in `compute_public_path'
438
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:100:in `compute_public_path'
439
+ Sprockets::Environment#path is deprecated
440
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:119:in `rewrite_asset_path'
441
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_view/asset_paths.rb:29:in `compute_public_path'
442
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:100:in `compute_public_path'
443
+ Rendered /Users/collin/Code/alpha-simprini-engine/app/views/test/root.rb (5.9ms)
444
+ Completed 200 OK in 11ms (Views: 10.4ms | ActiveRecord: 0.0ms)
445
+
446
+
447
+ Started GET "/assets/test.js" for 127.0.0.1 at 2011-08-28 19:41:05 -0500
448
+ Error compiling asset test.js:
449
+ LoadError: cannot load such file -- coffee_script
450
+ (in /Users/collin/Code/alpha-simprini-engine/app/assets/javascripts/test.coffee)
451
+ Served asset /test.js - 500 Internal Server Error
452
+
453
+
454
+
455
+ Started GET "/assets/qunit.css" for 127.0.0.1 at 2011-08-28 19:41:05 -0500
456
+ Served asset /qunit.css - 404 Not Found (2ms)
457
+
458
+ ActionController::RoutingError (No route matches [GET] "/assets/qunit.css"):
459
+
460
+
461
+ Rendered /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
462
+
463
+
464
+ Started GET "/assets/qunit.css" for 127.0.0.1 at 2011-08-28 19:41:09 -0500
465
+ Served asset /qunit.css - 404 Not Found (15ms)
466
+
467
+ ActionController::RoutingError (No route matches [GET] "/assets/qunit.css"):
468
+
469
+
470
+ Rendered /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
471
+
472
+
473
+ Started GET "/assets/qunit.css" for 127.0.0.1 at 2011-08-28 19:43:11 -0500
474
+ Compiled qunit.css (658ms) (pid 74201)
475
+ Served asset /qunit.css - 200 OK (689ms)
476
+
477
+
478
+ Started GET "/test" for 127.0.0.1 at 2011-08-28 19:43:17 -0500
479
+ Processing by TestController#root as HTML
480
+ Sprockets::Environment#path is deprecated
481
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:119:in `rewrite_asset_path'
482
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_view/asset_paths.rb:29:in `compute_public_path'
483
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:100:in `compute_public_path'
484
+ Sprockets::Environment#path is deprecated
485
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:119:in `rewrite_asset_path'
486
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_view/asset_paths.rb:29:in `compute_public_path'
487
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:100:in `compute_public_path'
488
+ Rendered /Users/collin/Code/alpha-simprini-engine/app/views/test/root.rb (10.1ms)
489
+ Completed 200 OK in 29ms (Views: 29.0ms | ActiveRecord: 0.0ms)
490
+
491
+
492
+ Started GET "/assets/test.js" for 127.0.0.1 at 2011-08-28 19:43:17 -0500
493
+ Compiled test.js (706ms) (pid 74201)
494
+ Compiled lib.js (203ms) (pid 74201)
495
+ Compiled bundle.js (77ms) (pid 74201)
496
+ Compiled lib/module.js (176ms) (pid 74201)
497
+ Compiled lib/mixin.js (202ms) (pid 74201)
498
+ Compiled alpha_simprini/event.js (306ms) (pid 74201)
499
+ Compiled alpha_simprini/coffee_kup/binding.js (269ms) (pid 74201)
500
+ Compiled alpha_simprini/coffee_kup/helpers.js (214ms) (pid 74201)
501
+ Compiled alpha_simprini/coffee_kup/tags.js (174ms) (pid 74201)
502
+ Compiled alpha_simprini/collection.js (248ms) (pid 74201)
503
+ Compiled alpha_simprini/model.js (213ms) (pid 74201)
504
+ Compiled alpha_simprini/template_helpers.js (186ms) (pid 74201)
505
+ Compiled alpha_simprini/view.js (241ms) (pid 74201)
506
+ Compiled alpha_simprini/views/canvas.js (276ms) (pid 74201)
507
+ Compiled alpha_simprini/views/stage.js (261ms) (pid 74201)
508
+ Compiled qunit.js (22ms) (pid 74201)
509
+ Compiled test/alpha_simprini/coffee_kup/binding.js (227ms) (pid 74201)
510
+ Compiled test/alpha_simprini/coffee_kup/helpers.js (216ms) (pid 74201)
511
+ Compiled test/alpha_simprini/coffee_kup/tags.js (200ms) (pid 74201)
512
+ Compiled test/alpha_simprini/collection.js (186ms) (pid 74201)
513
+ Compiled test/alpha_simprini/event.js (201ms) (pid 74201)
514
+ Compiled test/alpha_simprini/model.js (225ms) (pid 74201)
515
+ Compiled test/alpha_simprini/view.js (235ms) (pid 74201)
516
+ Served asset /test.js - 200 OK (5495ms)
517
+
518
+
519
+ Started GET "/assets/qunit.css" for 127.0.0.1 at 2011-08-28 19:43:22 -0500
520
+ Served asset /qunit.css - 304 Not Modified (0ms)
521
+
522
+
523
+ Started GET "/test" for 127.0.0.1 at 2011-08-28 19:44:14 -0500
524
+ Processing by TestController#root as HTML
525
+ Sprockets::Environment#path is deprecated
526
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:119:in `rewrite_asset_path'
527
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_view/asset_paths.rb:29:in `compute_public_path'
528
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:100:in `compute_public_path'
529
+ Sprockets::Environment#path is deprecated
530
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:119:in `rewrite_asset_path'
531
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_view/asset_paths.rb:29:in `compute_public_path'
532
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:100:in `compute_public_path'
533
+ Rendered /Users/collin/Code/alpha-simprini-engine/app/views/test/root.rb (12.7ms)
534
+ Completed 200 OK in 19ms (Views: 18.1ms | ActiveRecord: 0.0ms)
535
+
536
+
537
+ Started GET "/assets/qunit.css" for 127.0.0.1 at 2011-08-28 19:44:14 -0500
538
+ Served asset /qunit.css - 304 Not Modified (0ms)
539
+
540
+
541
+ Started GET "/assets/test.js" for 127.0.0.1 at 2011-08-28 19:44:14 -0500
542
+ Served asset /test.js - 304 Not Modified (5ms)
543
+
544
+
545
+ Started GET "/test" for 127.0.0.1 at 2011-08-28 19:44:32 -0500
546
+ Processing by TestController#root as HTML
547
+ Sprockets::Environment#path is deprecated
548
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:119:in `rewrite_asset_path'
549
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_view/asset_paths.rb:29:in `compute_public_path'
550
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:100:in `compute_public_path'
551
+ Sprockets::Environment#path is deprecated
552
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:119:in `rewrite_asset_path'
553
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_view/asset_paths.rb:29:in `compute_public_path'
554
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:100:in `compute_public_path'
555
+ Rendered /Users/collin/Code/alpha-simprini-engine/app/views/test/root.rb (13.0ms)
556
+ Completed 200 OK in 18ms (Views: 17.5ms | ActiveRecord: 0.0ms)
557
+
558
+
559
+ Started GET "/assets/qunit.css" for 127.0.0.1 at 2011-08-28 19:44:33 -0500
560
+ Served asset /qunit.css - 304 Not Modified (0ms)
561
+
562
+
563
+ Started GET "/assets/test.js" for 127.0.0.1 at 2011-08-28 19:44:33 -0500
564
+ Served asset /test.js - 304 Not Modified (2ms)
565
+
566
+
567
+ Started GET "/test" for 127.0.0.1 at 2011-08-28 19:45:48 -0500
568
+ Processing by TestController#root as HTML
569
+ Sprockets::Environment#path is deprecated
570
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:119:in `rewrite_asset_path'
571
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_view/asset_paths.rb:29:in `compute_public_path'
572
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:100:in `compute_public_path'
573
+ Sprockets::Environment#path is deprecated
574
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:119:in `rewrite_asset_path'
575
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_view/asset_paths.rb:29:in `compute_public_path'
576
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:100:in `compute_public_path'
577
+ Rendered /Users/collin/Code/alpha-simprini-engine/app/views/test/root.rb (6.3ms)
578
+ Completed 200 OK in 43ms (Views: 42.8ms | ActiveRecord: 0.0ms)
579
+
580
+
581
+ Started GET "/assets/qunit.css" for 127.0.0.1 at 2011-08-28 19:45:48 -0500
582
+ Served asset /qunit.css - 304 Not Modified (0ms)
583
+
584
+
585
+ Started GET "/assets/test.js" for 127.0.0.1 at 2011-08-28 19:45:48 -0500
586
+ Error compiling asset test.js:
587
+ ExecJS::ProgramError: Error: Parse error on line 3: Unexpected 'INDENT'
588
+ (in /Users/collin/Code/alpha-simprini-engine/app/assets/javascripts/lib/mixin.coffee)
589
+ Served asset /test.js - 500 Internal Server Error
590
+
591
+
592
+
593
+ Started GET "/test" for 127.0.0.1 at 2011-08-28 19:46:22 -0500
594
+ Processing by TestController#root as HTML
595
+ Sprockets::Environment#path is deprecated
596
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:119:in `rewrite_asset_path'
597
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_view/asset_paths.rb:29:in `compute_public_path'
598
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:100:in `compute_public_path'
599
+ Sprockets::Environment#path is deprecated
600
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:119:in `rewrite_asset_path'
601
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_view/asset_paths.rb:29:in `compute_public_path'
602
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:100:in `compute_public_path'
603
+ Rendered /Users/collin/Code/alpha-simprini-engine/app/views/test/root.rb (7.0ms)
604
+ Completed 200 OK in 13ms (Views: 12.1ms | ActiveRecord: 0.0ms)
605
+
606
+
607
+ Started GET "/assets/test.js" for 127.0.0.1 at 2011-08-28 19:46:22 -0500
608
+ Compiled lib/mixin.js (252ms) (pid 74201)
609
+ Compiled alpha_simprini/event.js (193ms) (pid 74201)
610
+ Compiled lib.js (179ms) (pid 74201)
611
+ Compiled test.js (178ms) (pid 74201)
612
+ Served asset /test.js - 200 OK (930ms)
613
+
614
+
615
+ Started GET "/assets/qunit.css" for 127.0.0.1 at 2011-08-28 19:46:23 -0500
616
+ Served asset /qunit.css - 304 Not Modified (0ms)
617
+
618
+
619
+ Started GET "/test" for 127.0.0.1 at 2011-08-28 19:46:48 -0500
620
+ Processing by TestController#root as HTML
621
+ Sprockets::Environment#path is deprecated
622
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:119:in `rewrite_asset_path'
623
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_view/asset_paths.rb:29:in `compute_public_path'
624
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:100:in `compute_public_path'
625
+ Sprockets::Environment#path is deprecated
626
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:119:in `rewrite_asset_path'
627
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_view/asset_paths.rb:29:in `compute_public_path'
628
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:100:in `compute_public_path'
629
+ Rendered /Users/collin/Code/alpha-simprini-engine/app/views/test/root.rb (7.7ms)
630
+ Completed 200 OK in 13ms (Views: 12.6ms | ActiveRecord: 0.0ms)
631
+
632
+
633
+ Started GET "/assets/qunit.css" for 127.0.0.1 at 2011-08-28 19:46:48 -0500
634
+ Served asset /qunit.css - 304 Not Modified (0ms)
635
+
636
+
637
+ Started GET "/assets/test.js" for 127.0.0.1 at 2011-08-28 19:46:48 -0500
638
+ Compiled lib/mixin.js (308ms) (pid 74201)
639
+ Compiled alpha_simprini/event.js (192ms) (pid 74201)
640
+ Compiled alpha_simprini/coffee_kup/binding.js (203ms) (pid 74201)
641
+ Compiled alpha_simprini/coffee_kup/helpers.js (180ms) (pid 74201)
642
+ Compiled alpha_simprini/coffee_kup/tags.js (178ms) (pid 74201)
643
+ Compiled alpha_simprini/collection.js (173ms) (pid 74201)
644
+ Compiled alpha_simprini/model.js (223ms) (pid 74201)
645
+ Compiled alpha_simprini/template_helpers.js (184ms) (pid 74201)
646
+ Compiled alpha_simprini/view.js (191ms) (pid 74201)
647
+ Compiled alpha_simprini/views/canvas.js (170ms) (pid 74201)
648
+ Compiled alpha_simprini/views/stage.js (174ms) (pid 74201)
649
+ Compiled lib.js (177ms) (pid 74201)
650
+ Compiled test/alpha_simprini/coffee_kup/binding.js (205ms) (pid 74201)
651
+ Compiled test/alpha_simprini/coffee_kup/helpers.js (172ms) (pid 74201)
652
+ Compiled test/alpha_simprini/coffee_kup/tags.js (183ms) (pid 74201)
653
+ Compiled test/alpha_simprini/collection.js (175ms) (pid 74201)
654
+ Compiled test/alpha_simprini/event.js (206ms) (pid 74201)
655
+ Compiled test/alpha_simprini/model.js (204ms) (pid 74201)
656
+ Compiled test/alpha_simprini/view.js (205ms) (pid 74201)
657
+ Compiled test.js (175ms) (pid 74201)
658
+ Served asset /test.js - 200 OK (4134ms)
659
+
660
+
661
+ Started GET "/test" for 127.0.0.1 at 2011-08-28 19:47:13 -0500
662
+ Processing by TestController#root as HTML
663
+ Sprockets::Environment#path is deprecated
664
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:119:in `rewrite_asset_path'
665
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_view/asset_paths.rb:29:in `compute_public_path'
666
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:100:in `compute_public_path'
667
+ Sprockets::Environment#path is deprecated
668
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:119:in `rewrite_asset_path'
669
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_view/asset_paths.rb:29:in `compute_public_path'
670
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:100:in `compute_public_path'
671
+ Rendered /Users/collin/Code/alpha-simprini-engine/app/views/test/root.rb (6.9ms)
672
+ Completed 200 OK in 12ms (Views: 11.7ms | ActiveRecord: 0.0ms)
673
+
674
+
675
+ Started GET "/assets/qunit.css" for 127.0.0.1 at 2011-08-28 19:47:13 -0500
676
+ Served asset /qunit.css - 304 Not Modified (23ms)
677
+
678
+
679
+ Started GET "/assets/test.js" for 127.0.0.1 at 2011-08-28 19:47:13 -0500
680
+ Compiled lib/mixin.js (182ms) (pid 74201)
681
+ Compiled alpha_simprini/event.js (189ms) (pid 74201)
682
+ Compiled alpha_simprini/collection.js (200ms) (pid 74201)
683
+ Compiled alpha_simprini/model.js (282ms) (pid 74201)
684
+ Compiled alpha_simprini/template_helpers.js (181ms) (pid 74201)
685
+ Compiled alpha_simprini/view.js (198ms) (pid 74201)
686
+ Compiled lib.js (178ms) (pid 74201)
687
+ Compiled test.js (177ms) (pid 74201)
688
+ Served asset /test.js - 200 OK (1749ms)
689
+
690
+
691
+ Started GET "/test" for 127.0.0.1 at 2011-08-28 19:48:44 -0500
692
+
693
+ ActionController::RoutingError (No route matches [GET] "/test"):
694
+
695
+
696
+ Rendered /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
697
+
698
+
699
+ Started GET "/alpha_simprini/test" for 127.0.0.1 at 2011-08-28 19:48:52 -0500
700
+ Processing by AlphaSimprini::TestController#root as HTML
701
+ Completed 500 Internal Server Error in 27ms
702
+
703
+ ActionView::MissingTemplate (Missing template alpha_simprini/test/root with {:handlers=>[:erb, :builder, :rb], :formats=>[:html], :locale=>[:en, :en]}. Searched in:
704
+ * "/Users/collin/Code/alpha-simprini-engine/test/dummy/app/views"
705
+ * "/Users/collin/Code/alpha-simprini-engine/app/views"
706
+ ):
707
+
708
+
709
+ Rendered /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.6ms)
710
+
711
+
712
+ Started GET "/alpha_simprini/test" for 127.0.0.1 at 2011-08-28 19:49:22 -0500
713
+ Processing by AlphaSimprini::TestController#root as HTML
714
+ Rendered /Users/collin/Code/alpha-simprini-engine/app/views/alpha_simprini/test/root.rb (5.2ms)
715
+ Completed 500 Internal Server Error in 13ms
716
+
717
+ ActionView::Template::Error (uninitialized constant Views::Test):
718
+ 1: class Views::Test::Root < AlphaSimprini::Page
719
+ 2: def assets
720
+ 3: javascript_include_tag "test"
721
+ 4: stylesheet_link_tag "qunit"
722
+
723
+
724
+ Rendered /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.6ms)
725
+ Rendered /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.6ms)
726
+ Rendered /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.8ms)
727
+
728
+
729
+ Started GET "/alpha_simprini/test" for 127.0.0.1 at 2011-08-28 19:49:42 -0500
730
+ Processing by AlphaSimprini::TestController#root as HTML
731
+ Sprockets::Environment#path is deprecated
732
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:119:in `rewrite_asset_path'
733
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_view/asset_paths.rb:29:in `compute_public_path'
734
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:100:in `compute_public_path'
735
+ Sprockets::Environment#path is deprecated
736
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:119:in `rewrite_asset_path'
737
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_view/asset_paths.rb:29:in `compute_public_path'
738
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:100:in `compute_public_path'
739
+ Rendered /Users/collin/Code/alpha-simprini-engine/app/views/alpha_simprini/test/root.rb (19.2ms)
740
+ Completed 200 OK in 125ms (Views: 124.2ms | ActiveRecord: 0.0ms)
741
+
742
+
743
+ Started GET "/assets/qunit.css" for 127.0.0.1 at 2011-08-28 19:49:43 -0500
744
+ Served asset /qunit.css - 304 Not Modified (0ms)
745
+
746
+
747
+ Started GET "/assets/test.js" for 127.0.0.1 at 2011-08-28 19:49:43 -0500
748
+ Served asset /test.js - 304 Not Modified (1ms)
749
+
750
+
751
+ Started GET "/test" for 127.0.0.1 at 2011-08-28 20:22:33 -0500
752
+
753
+ ActionController::RoutingError (No route matches [GET] "/test"):
754
+
755
+
756
+ Rendered /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
757
+
758
+
759
+ Started GET "/alpha_simprini/test" for 127.0.0.1 at 2011-08-28 20:22:39 -0500
760
+ Processing by AlphaSimprini::TestController#root as HTML
761
+ Sprockets::Environment#path is deprecated
762
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:119:in `rewrite_asset_path'
763
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_view/asset_paths.rb:29:in `compute_public_path'
764
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:100:in `compute_public_path'
765
+ Sprockets::Environment#path is deprecated
766
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:119:in `rewrite_asset_path'
767
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_view/asset_paths.rb:29:in `compute_public_path'
768
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:100:in `compute_public_path'
769
+ Rendered /Users/collin/Code/alpha-simprini-engine/app/views/alpha_simprini/test/root.rb (13.9ms)
770
+ Completed 200 OK in 19ms (Views: 18.7ms | ActiveRecord: 0.0ms)
771
+
772
+
773
+ Started GET "/assets/qunit.css" for 127.0.0.1 at 2011-08-28 20:22:39 -0500
774
+ Served asset /qunit.css - 304 Not Modified (0ms)
775
+
776
+
777
+ Started GET "/assets/test.js" for 127.0.0.1 at 2011-08-28 20:22:39 -0500
778
+ Served asset /test.js - 304 Not Modified (1ms)
779
+
780
+
781
+ Started GET "/alpha_simprini/test" for 127.0.0.1 at 2011-08-29 09:52:08 -0500
782
+ Processing by AlphaSimprini::TestController#root as HTML
783
+ Sprockets::Environment#path is deprecated
784
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:119:in `rewrite_asset_path'
785
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_view/asset_paths.rb:29:in `compute_public_path'
786
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:100:in `compute_public_path'
787
+ Sprockets::Environment#path is deprecated
788
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:119:in `rewrite_asset_path'
789
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/action_view/asset_paths.rb:29:in `compute_public_path'
790
+ /Users/collin/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0.rc6/lib/sprockets/helpers/rails_helper.rb:100:in `compute_public_path'
791
+ Rendered /Users/collin/Code/alpha-simprini-engine/app/views/alpha_simprini/test/root.rb (16.4ms)
792
+ Completed 200 OK in 63ms (Views: 62.9ms | ActiveRecord: 0.0ms)
793
+
794
+
795
+ Started GET "/assets/test.js" for 127.0.0.1 at 2011-08-29 09:52:09 -0500
796
+ Served asset /test.js - 304 Not Modified (416ms)
797
+
798
+
799
+ Started GET "/assets/qunit.css" for 127.0.0.1 at 2011-08-29 09:52:10 -0500
800
+ Served asset /qunit.css - 304 Not Modified (22ms)