sections_rails 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (60) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.markdown +97 -0
  3. data/Rakefile +39 -0
  4. data/lib/generators/sections_generator.rb +70 -0
  5. data/lib/sections_rails.rb +19 -0
  6. data/lib/sections_rails/railtie.rb +9 -0
  7. data/lib/sections_rails/version.rb +3 -0
  8. data/lib/tasks/sections_rails_tasks.rake +102 -0
  9. data/spec/dummy/Rakefile +7 -0
  10. data/spec/dummy/app/assets/javascripts/application.js +9 -0
  11. data/spec/dummy/app/assets/stylesheets/application.css +7 -0
  12. data/spec/dummy/app/controllers/application_controller.rb +3 -0
  13. data/spec/dummy/app/controllers/demos_controller.rb +5 -0
  14. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  15. data/spec/dummy/app/sections/hello_world/_hello_world.html.erb +6 -0
  16. data/spec/dummy/app/sections/hello_world/hello_world.css +9 -0
  17. data/spec/dummy/app/sections/hello_world/hello_world.js +10 -0
  18. data/spec/dummy/app/views/demos/index.html.erb +2 -0
  19. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  20. data/spec/dummy/config.ru +4 -0
  21. data/spec/dummy/config/application.rb +46 -0
  22. data/spec/dummy/config/boot.rb +10 -0
  23. data/spec/dummy/config/database.yml +25 -0
  24. data/spec/dummy/config/environment.rb +5 -0
  25. data/spec/dummy/config/environments/development.rb +30 -0
  26. data/spec/dummy/config/environments/production.rb +60 -0
  27. data/spec/dummy/config/environments/test.rb +39 -0
  28. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  29. data/spec/dummy/config/initializers/inflections.rb +10 -0
  30. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  31. data/spec/dummy/config/initializers/secret_token.rb +7 -0
  32. data/spec/dummy/config/initializers/session_store.rb +8 -0
  33. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  34. data/spec/dummy/config/locales/en.yml +5 -0
  35. data/spec/dummy/config/routes.rb +60 -0
  36. data/spec/dummy/db/development.sqlite3 +0 -0
  37. data/spec/dummy/log/development.log +551 -0
  38. data/spec/dummy/public/404.html +26 -0
  39. data/spec/dummy/public/422.html +26 -0
  40. data/spec/dummy/public/500.html +26 -0
  41. data/spec/dummy/public/favicon.ico +0 -0
  42. data/spec/dummy/script/rails +6 -0
  43. data/spec/dummy/tmp/cache/assets/C73/0F0/sprockets%2F6f588d2eb67224099de772816998294a +0 -0
  44. data/spec/dummy/tmp/cache/assets/C9F/C10/sprockets%2F23fdd7731b76429ab821110239eb320f +0 -0
  45. data/spec/dummy/tmp/cache/assets/CBC/F40/sprockets%2Ff65678384223384d27c1be5bd58d527c +0 -0
  46. data/spec/dummy/tmp/cache/assets/CD6/B30/sprockets%2Fd360dea16179bf8b7c461301a3b48761 +0 -0
  47. data/spec/dummy/tmp/cache/assets/CD7/AC0/sprockets%2F2a8dc3c6e05c15a16948432386b61ad5 +0 -0
  48. data/spec/dummy/tmp/cache/assets/CE3/080/sprockets%2F7d4d7689d6fa8236f0b4848c03ba1215 +0 -0
  49. data/spec/dummy/tmp/cache/assets/CE5/100/sprockets%2F3255ada839df268ed863150542e87ac3 +0 -0
  50. data/spec/dummy/tmp/cache/assets/CE5/D30/sprockets%2F8c9834a63b25a66203918a75ff56e2ac +0 -0
  51. data/spec/dummy/tmp/cache/assets/D2D/C80/sprockets%2F5f8f97f91f67258b75bc96704a90ce1f +0 -0
  52. data/spec/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  53. data/spec/dummy/tmp/cache/assets/D50/950/sprockets%2F93ba20a0001c0b50711bf58cf8e36bfb +0 -0
  54. data/spec/dummy/tmp/cache/assets/D54/ED0/sprockets%2F71c9fa01091d432b131da3bb73faf3d4 +0 -0
  55. data/spec/dummy/tmp/cache/assets/D84/210/sprockets%2Fabd0103ccec2b428ac62c94e4c40b384 +9648 -0
  56. data/spec/dummy/tmp/cache/assets/D93/630/sprockets%2F1203dbc01cf782fc6d17e5d7d8b53eb0 +0 -0
  57. data/spec/dummy/tmp/cache/assets/D94/460/sprockets%2Fd4ba18ed6ca55f732dba192d4b6036a8 +0 -0
  58. data/spec/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  59. data/spec/spec_helper.rb +31 -0
  60. metadata +192 -0
@@ -0,0 +1,2 @@
1
+ <h1>Sections Demo</h1>
2
+ <%= section 'hello_world' %>
@@ -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,46 @@
1
+ require File.expand_path('../boot', __FILE__)
2
+
3
+ require 'rails/all'
4
+
5
+ Bundler.require
6
+ require "sections_rails"
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
+ config.assets.paths << 'app/sections'
41
+
42
+ # Version of your assets, change this if you want to expire all your assets
43
+ config.assets.version = '1.0'
44
+ end
45
+ end
46
+
@@ -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,30 @@
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
+
28
+ # Expands the lines which load the assets
29
+ config.assets.debug = true
30
+ end
@@ -0,0 +1,60 @@
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
+ # Use a different logger for distributed setups
37
+ # config.logger = SyslogLogger.new
38
+
39
+ # Use a different cache store in production
40
+ # config.cache_store = :mem_cache_store
41
+
42
+ # Enable serving of images, stylesheets, and JavaScripts from an asset server
43
+ # config.action_controller.asset_host = "http://assets.example.com"
44
+
45
+ # Precompile additional assets (application.js, application.css, and all non-JS/CSS are already added)
46
+ # config.assets.precompile += %w( search.js )
47
+
48
+ # Disable delivery errors, bad email addresses will be ignored
49
+ # config.action_mailer.raise_delivery_errors = false
50
+
51
+ # Enable threaded mode
52
+ # config.threadsafe!
53
+
54
+ # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
55
+ # the I18n.default_locale when a translation can not be found)
56
+ config.i18n.fallbacks = true
57
+
58
+ # Send deprecation notices to registered listeners
59
+ config.active_support.deprecation = :notify
60
+ 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 = '2c878094bda2d4ae156d8bd845c374cbc03b8186a0a3a53d9e3734d268987e13ce4f5806089af844631d2e398055acb5fbfb12c9799436b945896f6a20141b38'
@@ -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,60 @@
1
+ Dummy::Application.routes.draw do
2
+ resources :demos
3
+
4
+ # The priority is based upon order of creation:
5
+ # first created -> highest priority.
6
+
7
+ # Sample of regular route:
8
+ # match 'products/:id' => 'catalog#view'
9
+ # Keep in mind you can assign values other than :controller and :action
10
+
11
+ # Sample of named route:
12
+ # match 'products/:id/purchase' => 'catalog#purchase', :as => :purchase
13
+ # This route can be invoked with purchase_url(:id => product.id)
14
+
15
+ # Sample resource route (maps HTTP verbs to controller actions automatically):
16
+ # resources :products
17
+
18
+ # Sample resource route with options:
19
+ # resources :products do
20
+ # member do
21
+ # get 'short'
22
+ # post 'toggle'
23
+ # end
24
+ #
25
+ # collection do
26
+ # get 'sold'
27
+ # end
28
+ # end
29
+
30
+ # Sample resource route with sub-resources:
31
+ # resources :products do
32
+ # resources :comments, :sales
33
+ # resource :seller
34
+ # end
35
+
36
+ # Sample resource route with more complex sub-resources
37
+ # resources :products do
38
+ # resources :comments
39
+ # resources :sales do
40
+ # get 'recent', :on => :collection
41
+ # end
42
+ # end
43
+
44
+ # Sample resource route within a namespace:
45
+ # namespace :admin do
46
+ # # Directs /admin/products/* to Admin::ProductsController
47
+ # # (app/controllers/admin/products_controller.rb)
48
+ # resources :products
49
+ # end
50
+
51
+ # You can have the root of your site routed with "root"
52
+ # just remember to delete public/index.html.
53
+ # root :to => 'welcome#index'
54
+
55
+ # See how all your routes lay out with "rake routes"
56
+
57
+ # This is a legacy wild controller route that's not recommended for RESTful applications.
58
+ # Note: This route will make all actions in every controller accessible via GET requests.
59
+ # match ':controller(/:action(/:id(.:format)))'
60
+ end
File without changes
@@ -0,0 +1,551 @@
1
+
2
+
3
+ Started GET "/demos" for 127.0.0.1 at Fri Nov 25 22:27:31 -0800 2011
4
+
5
+ ActionController::RoutingError (No route matches [GET] "/demos"):
6
+
7
+
8
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.0ms)
9
+
10
+
11
+ Started GET "/demos" for 127.0.0.1 at Fri Nov 25 22:28:34 -0800 2011
12
+ Processing by DemosController#index as HTML
13
+ Rendered demos/index.html.erb within layouts/application (0.4ms)
14
+ Compiled application.css (2ms) (pid 64156)
15
+ Compiled demos.css (0ms) (pid 64156)
16
+ Compiled application.js (6ms) (pid 64156)
17
+ Compiled jquery.js (6ms) (pid 64156)
18
+ Compiled jquery_ujs.js (0ms) (pid 64156)
19
+ Compiled demos.js (1ms) (pid 64156)
20
+ Completed 200 OK in 277ms (Views: 277.0ms | ActiveRecord: 0.0ms)
21
+
22
+
23
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Fri Nov 25 22:28:35 -0800 2011
24
+ Served asset /jquery.js - 200 OK (16ms)
25
+
26
+
27
+ Started GET "/assets/demos.css?body=1" for 127.0.0.1 at Fri Nov 25 22:28:35 -0800 2011
28
+ Served asset /demos.css - 200 OK (4ms)
29
+
30
+
31
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Fri Nov 25 22:28:35 -0800 2011
32
+ Served asset /jquery_ujs.js - 200 OK (4ms)
33
+
34
+
35
+ Started GET "/assets/demos.js?body=1" for 127.0.0.1 at Fri Nov 25 22:28:35 -0800 2011
36
+ Served asset /demos.js - 200 OK (30ms)
37
+
38
+
39
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Fri Nov 25 22:28:35 -0800 2011
40
+ Served asset /application.js - 200 OK (9ms)
41
+
42
+
43
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Fri Nov 25 22:28:35 -0800 2011
44
+ Served asset /application.css - 200 OK (0ms)
45
+
46
+
47
+ Started GET "/" for 127.0.0.1 at Sat Nov 26 13:44:06 -0800 2011
48
+
49
+ ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
50
+
51
+
52
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
53
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (11.9ms)
54
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (76.9ms)
55
+
56
+
57
+ Started GET "/demos" for 127.0.0.1 at Sat Nov 26 13:44:14 -0800 2011
58
+
59
+ ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
60
+
61
+
62
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
63
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
64
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (4.1ms)
65
+
66
+
67
+ Started GET "/demos" for 127.0.0.1 at Sat Nov 26 13:44:19 -0800 2011
68
+
69
+ ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
70
+
71
+
72
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
73
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
74
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (4.0ms)
75
+
76
+
77
+ Started GET "/demos" for 127.0.0.1 at Sat Nov 26 13:45:13 -0800 2011
78
+ Processing by DemosController#index as HTML
79
+ Rendered app/sections/hello_world/_hello_world.html.erb (0.3ms)
80
+ Rendered demos/index.html.erb within layouts/application (92.6ms)
81
+ Compiled application.css (1ms) (pid 69844)
82
+ Compiled application.js (5ms) (pid 69844)
83
+ Completed 200 OK in 319ms (Views: 318.9ms | ActiveRecord: 0.0ms)
84
+
85
+
86
+ Started GET "/assets/hello_world/hello_world.js" for 127.0.0.1 at Sat Nov 26 13:45:14 -0800 2011
87
+ Served asset /hello_world/hello_world.js - 404 Not Found (3ms)
88
+
89
+ ActionController::RoutingError (No route matches [GET] "/assets/hello_world/hello_world.js"):
90
+
91
+
92
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
93
+
94
+
95
+ Started GET "/assets/hello_world/hello_world.css" for 127.0.0.1 at Sat Nov 26 13:45:14 -0800 2011
96
+ Served asset /hello_world/hello_world.css - 404 Not Found (2ms)
97
+
98
+ ActionController::RoutingError (No route matches [GET] "/assets/hello_world/hello_world.css"):
99
+
100
+
101
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
102
+
103
+
104
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sat Nov 26 13:45:14 -0800 2011
105
+ Served asset /application.css - 200 OK (0ms)
106
+
107
+
108
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sat Nov 26 13:45:14 -0800 2011
109
+ Served asset /jquery.js - 304 Not Modified (6ms)
110
+
111
+
112
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sat Nov 26 13:45:14 -0800 2011
113
+ Served asset /application.js - 200 OK (0ms)
114
+
115
+
116
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sat Nov 26 13:45:14 -0800 2011
117
+ Served asset /jquery_ujs.js - 304 Not Modified (23ms)
118
+
119
+
120
+ Started GET "/demos" for 127.0.0.1 at Sat Nov 26 14:30:50 -0800 2011
121
+ Processing by DemosController#index as HTML
122
+ Rendered app/sections/hello_world/_hello_world.html.erb (0.1ms)
123
+ Rendered demos/index.html.erb within layouts/application (53.9ms)
124
+ Completed 200 OK in 3096ms (Views: 3084.1ms | ActiveRecord: 0.0ms)
125
+
126
+
127
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sat Nov 26 14:30:58 -0800 2011
128
+ Served asset /application.css - 304 Not Modified (0ms)
129
+
130
+
131
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sat Nov 26 14:30:58 -0800 2011
132
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
133
+
134
+
135
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sat Nov 26 14:30:58 -0800 2011
136
+ Served asset /jquery.js - 304 Not Modified (0ms)
137
+
138
+
139
+ Started GET "/assets/hello_world/hello_world.js" for 127.0.0.1 at Sat Nov 26 14:30:58 -0800 2011
140
+ Served asset /hello_world/hello_world.js - 404 Not Found (2ms)
141
+
142
+ ActionController::RoutingError (No route matches [GET] "/assets/hello_world/hello_world.js"):
143
+
144
+
145
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
146
+
147
+
148
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sat Nov 26 14:30:58 -0800 2011
149
+ Served asset /application.js - 304 Not Modified (0ms)
150
+
151
+
152
+ Started GET "/assets/hello_world/hello_world.css" for 127.0.0.1 at Sat Nov 26 14:30:58 -0800 2011
153
+ Served asset /hello_world/hello_world.css - 404 Not Found (4ms)
154
+
155
+ ActionController::RoutingError (No route matches [GET] "/assets/hello_world/hello_world.css"):
156
+
157
+
158
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
159
+
160
+
161
+ Started GET "/assets/hello_world/hello_world.css" for 127.0.0.1 at Sat Nov 26 14:31:51 -0800 2011
162
+ Served asset /hello_world/hello_world.css - 404 Not Found (2ms)
163
+
164
+ ActionController::RoutingError (No route matches [GET] "/assets/hello_world/hello_world.css"):
165
+
166
+
167
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.6ms)
168
+
169
+
170
+ Started GET "/demos" for 127.0.0.1 at Sat Nov 26 14:44:58 -0800 2011
171
+ Processing by DemosController#index as HTML
172
+ Compiled hello_world/hello_world.js (0ms) (pid 70769)
173
+ Compiled hello_world/hello_world.css (0ms) (pid 70769)
174
+ Rendered app/sections/hello_world/_hello_world.html.erb (0.3ms)
175
+ Rendered demos/index.html.erb within layouts/application (128.5ms)
176
+ Completed 200 OK in 309ms (Views: 308.2ms | ActiveRecord: 0.0ms)
177
+
178
+
179
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sat Nov 26 14:44:59 -0800 2011
180
+ Served asset /application.css - 304 Not Modified (1ms)
181
+
182
+
183
+ Started GET "/assets/hello_world/hello_world.js?body=1" for 127.0.0.1 at Sat Nov 26 14:44:59 -0800 2011
184
+ Served asset /hello_world/hello_world.js - 200 OK (0ms)
185
+
186
+
187
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sat Nov 26 14:44:59 -0800 2011
188
+ Served asset /jquery.js - 304 Not Modified (19ms)
189
+
190
+
191
+ Started GET "/assets/hello_world/hello_world.css?body=1" for 127.0.0.1 at Sat Nov 26 14:44:59 -0800 2011
192
+ Served asset /hello_world/hello_world.css - 200 OK (0ms)
193
+
194
+
195
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sat Nov 26 14:44:59 -0800 2011
196
+ Served asset /jquery_ujs.js - 304 Not Modified (3ms)
197
+
198
+
199
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sat Nov 26 14:44:59 -0800 2011
200
+ Served asset /application.js - 304 Not Modified (0ms)
201
+
202
+
203
+ Started GET "/assets/hello_world/hello_world.css?body=1" for 127.0.0.1 at Sat Nov 26 14:45:13 -0800 2011
204
+ Served asset /hello_world/hello_world.css - 304 Not Modified (0ms)
205
+
206
+
207
+ Started GET "/demos" for 127.0.0.1 at Sat Nov 26 14:45:54 -0800 2011
208
+ Processing by DemosController#index as HTML
209
+ Compiled hello_world/hello_world.css (67ms) (pid 70795)
210
+ Rendered app/sections/hello_world/_hello_world.html.erb (0.3ms)
211
+ Rendered demos/index.html.erb within layouts/application (85.6ms)
212
+ Completed 200 OK in 113ms (Views: 112.7ms | ActiveRecord: 0.0ms)
213
+
214
+
215
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sat Nov 26 14:45:54 -0800 2011
216
+ Served asset /jquery_ujs.js - 304 Not Modified (4ms)
217
+
218
+
219
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sat Nov 26 14:45:54 -0800 2011
220
+ Served asset /jquery.js - 304 Not Modified (3ms)
221
+
222
+
223
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sat Nov 26 14:45:54 -0800 2011
224
+ Served asset /application.css - 304 Not Modified (0ms)
225
+
226
+
227
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sat Nov 26 14:45:54 -0800 2011
228
+ Served asset /application.js - 304 Not Modified (0ms)
229
+
230
+
231
+ Started GET "/assets/hello_world/hello_world.js?body=1" for 127.0.0.1 at Sat Nov 26 14:45:54 -0800 2011
232
+ Served asset /hello_world/hello_world.js - 304 Not Modified (0ms)
233
+
234
+
235
+ Started GET "/assets/hello_world/hello_world.css?body=1" for 127.0.0.1 at Sat Nov 26 14:45:55 -0800 2011
236
+ Served asset /hello_world/hello_world.css - 200 OK (0ms)
237
+
238
+
239
+ Started GET "/demos" for 127.0.0.1 at Sat Nov 26 14:46:30 -0800 2011
240
+ Processing by DemosController#index as HTML
241
+ Compiled hello_world/hello_world.css (69ms) (pid 70811)
242
+ Rendered app/sections/hello_world/_hello_world.html.erb (0.2ms)
243
+ Rendered demos/index.html.erb within layouts/application (85.9ms)
244
+ Completed 200 OK in 114ms (Views: 113.5ms | ActiveRecord: 0.0ms)
245
+
246
+
247
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sat Nov 26 14:46:31 -0800 2011
248
+ Served asset /jquery_ujs.js - 304 Not Modified (3ms)
249
+
250
+
251
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sat Nov 26 14:46:31 -0800 2011
252
+ Served asset /jquery.js - 304 Not Modified (3ms)
253
+
254
+
255
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sat Nov 26 14:46:31 -0800 2011
256
+ Served asset /application.css - 304 Not Modified (0ms)
257
+
258
+
259
+ Started GET "/assets/hello_world/hello_world.js?body=1" for 127.0.0.1 at Sat Nov 26 14:46:31 -0800 2011
260
+ Served asset /hello_world/hello_world.js - 304 Not Modified (0ms)
261
+
262
+
263
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sat Nov 26 14:46:31 -0800 2011
264
+ Served asset /application.js - 304 Not Modified (0ms)
265
+
266
+
267
+ Started GET "/assets/hello_world/hello_world.css?body=1" for 127.0.0.1 at Sat Nov 26 14:46:31 -0800 2011
268
+ Served asset /hello_world/hello_world.css - 200 OK (0ms)
269
+
270
+
271
+ Started GET "/demos" for 127.0.0.1 at Sat Nov 26 14:47:29 -0800 2011
272
+ Processing by DemosController#index as HTML
273
+ Compiled hello_world/hello_world.css (65ms) (pid 70841)
274
+ Rendered app/sections/hello_world/_hello_world.html.erb (0.3ms)
275
+ Rendered demos/index.html.erb within layouts/application (81.2ms)
276
+ Completed 200 OK in 110ms (Views: 109.3ms | ActiveRecord: 0.0ms)
277
+
278
+
279
+ Started GET "/assets/hello_world/hello_world.js?body=1" for 127.0.0.1 at Sat Nov 26 14:47:29 -0800 2011
280
+ Served asset /hello_world/hello_world.js - 304 Not Modified (0ms)
281
+
282
+
283
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sat Nov 26 14:47:30 -0800 2011
284
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
285
+
286
+
287
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sat Nov 26 14:47:30 -0800 2011
288
+ Served asset /jquery.js - 304 Not Modified (3ms)
289
+
290
+
291
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sat Nov 26 14:47:30 -0800 2011
292
+ Served asset /application.css - 304 Not Modified (0ms)
293
+
294
+
295
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sat Nov 26 14:47:30 -0800 2011
296
+ Served asset /application.js - 304 Not Modified (0ms)
297
+
298
+
299
+ Started GET "/assets/hello_world/hello_world.css?body=1" for 127.0.0.1 at Sat Nov 26 14:47:30 -0800 2011
300
+ Served asset /hello_world/hello_world.css - 200 OK (0ms)
301
+
302
+
303
+ Started GET "/demos" for 127.0.0.1 at Sat Nov 26 14:47:31 -0800 2011
304
+ Processing by DemosController#index as HTML
305
+ Rendered app/sections/hello_world/_hello_world.html.erb (0.1ms)
306
+ Rendered demos/index.html.erb within layouts/application (2.2ms)
307
+ Completed 200 OK in 11ms (Views: 11.1ms | ActiveRecord: 0.0ms)
308
+
309
+
310
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sat Nov 26 14:47:31 -0800 2011
311
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
312
+
313
+
314
+ Started GET "/assets/hello_world/hello_world.js?body=1" for 127.0.0.1 at Sat Nov 26 14:47:31 -0800 2011
315
+ Served asset /hello_world/hello_world.js - 304 Not Modified (0ms)
316
+
317
+
318
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sat Nov 26 14:47:31 -0800 2011
319
+ Served asset /application.js - 304 Not Modified (1ms)
320
+
321
+
322
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sat Nov 26 14:47:31 -0800 2011
323
+ Served asset /jquery.js - 304 Not Modified (0ms)
324
+
325
+
326
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sat Nov 26 14:47:31 -0800 2011
327
+ Served asset /application.css - 304 Not Modified (0ms)
328
+
329
+
330
+ Started GET "/assets/hello_world/hello_world.css?body=1" for 127.0.0.1 at Sat Nov 26 14:47:31 -0800 2011
331
+ Served asset /hello_world/hello_world.css - 304 Not Modified (0ms)
332
+
333
+
334
+ Started GET "/demos" for 127.0.0.1 at Sat Nov 26 14:47:32 -0800 2011
335
+ Processing by DemosController#index as HTML
336
+ Rendered app/sections/hello_world/_hello_world.html.erb (0.1ms)
337
+ Rendered demos/index.html.erb within layouts/application (2.0ms)
338
+ Completed 200 OK in 11ms (Views: 11.1ms | ActiveRecord: 0.0ms)
339
+
340
+
341
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sat Nov 26 14:47:32 -0800 2011
342
+ Served asset /application.css - 304 Not Modified (0ms)
343
+
344
+
345
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sat Nov 26 14:47:32 -0800 2011
346
+ Served asset /jquery.js - 304 Not Modified (0ms)
347
+
348
+
349
+ Started GET "/assets/hello_world/hello_world.css?body=1" for 127.0.0.1 at Sat Nov 26 14:47:32 -0800 2011
350
+ Served asset /hello_world/hello_world.css - 304 Not Modified (0ms)
351
+
352
+
353
+ Started GET "/assets/hello_world/hello_world.js?body=1" for 127.0.0.1 at Sat Nov 26 14:47:32 -0800 2011
354
+ Served asset /hello_world/hello_world.js - 304 Not Modified (0ms)
355
+
356
+
357
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sat Nov 26 14:47:32 -0800 2011
358
+ Served asset /application.js - 304 Not Modified (0ms)
359
+
360
+
361
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sat Nov 26 14:47:32 -0800 2011
362
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
363
+
364
+
365
+ Started GET "/demos" for 127.0.0.1 at Sat Nov 26 14:48:05 -0800 2011
366
+ Processing by DemosController#index as HTML
367
+ Compiled hello_world/hello_world.css (0ms) (pid 70841)
368
+ Rendered app/sections/hello_world/_hello_world.html.erb (0.1ms)
369
+ Rendered demos/index.html.erb within layouts/application (8.1ms)
370
+ Completed 200 OK in 18ms (Views: 17.5ms | ActiveRecord: 0.0ms)
371
+
372
+
373
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sat Nov 26 14:48:05 -0800 2011
374
+ Served asset /application.css - 304 Not Modified (0ms)
375
+
376
+
377
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sat Nov 26 14:48:05 -0800 2011
378
+ Served asset /jquery.js - 304 Not Modified (0ms)
379
+
380
+
381
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sat Nov 26 14:48:05 -0800 2011
382
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
383
+
384
+
385
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sat Nov 26 14:48:05 -0800 2011
386
+ Served asset /application.js - 304 Not Modified (0ms)
387
+
388
+
389
+ Started GET "/assets/hello_world/hello_world.js?body=1" for 127.0.0.1 at Sat Nov 26 14:48:05 -0800 2011
390
+ Served asset /hello_world/hello_world.js - 304 Not Modified (0ms)
391
+
392
+
393
+ Started GET "/assets/hello_world/hello_world.css?body=1" for 127.0.0.1 at Sat Nov 26 14:48:05 -0800 2011
394
+ Served asset /hello_world/hello_world.css - 200 OK (0ms)
395
+
396
+
397
+ Started GET "/demos" for 127.0.0.1 at Sat Nov 26 14:49:15 -0800 2011
398
+ Processing by DemosController#index as HTML
399
+ Compiled hello_world/hello_world.css (0ms) (pid 70841)
400
+ Rendered app/sections/hello_world/_hello_world.html.erb (0.1ms)
401
+ Rendered demos/index.html.erb within layouts/application (25.8ms)
402
+ Completed 200 OK in 58ms (Views: 57.6ms | ActiveRecord: 0.0ms)
403
+
404
+
405
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sat Nov 26 14:49:15 -0800 2011
406
+ Served asset /application.css - 304 Not Modified (3ms)
407
+
408
+
409
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sat Nov 26 14:49:15 -0800 2011
410
+ Served asset /jquery.js - 304 Not Modified (0ms)
411
+
412
+
413
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sat Nov 26 14:49:15 -0800 2011
414
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
415
+
416
+
417
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sat Nov 26 14:49:15 -0800 2011
418
+ Served asset /application.js - 304 Not Modified (0ms)
419
+
420
+
421
+ Started GET "/assets/hello_world/hello_world.js?body=1" for 127.0.0.1 at Sat Nov 26 14:49:15 -0800 2011
422
+ Served asset /hello_world/hello_world.js - 304 Not Modified (0ms)
423
+
424
+
425
+ Started GET "/assets/hello_world/hello_world.css?body=1" for 127.0.0.1 at Sat Nov 26 14:49:15 -0800 2011
426
+ Served asset /hello_world/hello_world.css - 200 OK (0ms)
427
+
428
+
429
+ Started GET "/demos" for 127.0.0.1 at Sat Nov 26 14:49:32 -0800 2011
430
+ Processing by DemosController#index as HTML
431
+ Compiled hello_world/hello_world.css (0ms) (pid 70841)
432
+ Rendered app/sections/hello_world/_hello_world.html.erb (0.1ms)
433
+ Rendered demos/index.html.erb within layouts/application (21.3ms)
434
+ Completed 200 OK in 32ms (Views: 31.4ms | ActiveRecord: 0.0ms)
435
+
436
+
437
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sat Nov 26 14:49:33 -0800 2011
438
+ Served asset /application.js - 304 Not Modified (0ms)
439
+
440
+
441
+ Started GET "/assets/hello_world/hello_world.js?body=1" for 127.0.0.1 at Sat Nov 26 14:49:33 -0800 2011
442
+ Served asset /hello_world/hello_world.js - 304 Not Modified (0ms)
443
+
444
+
445
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sat Nov 26 14:49:33 -0800 2011
446
+ Served asset /jquery.js - 304 Not Modified (0ms)
447
+
448
+
449
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sat Nov 26 14:49:33 -0800 2011
450
+ Served asset /application.css - 304 Not Modified (0ms)
451
+
452
+
453
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sat Nov 26 14:49:33 -0800 2011
454
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
455
+
456
+
457
+ Started GET "/assets/hello_world/hello_world.css?body=1" for 127.0.0.1 at Sat Nov 26 14:49:33 -0800 2011
458
+ Served asset /hello_world/hello_world.css - 200 OK (0ms)
459
+
460
+
461
+ Started GET "/demos" for 127.0.0.1 at Sat Nov 26 14:51:25 -0800 2011
462
+ Processing by DemosController#index as HTML
463
+ Rendered app/sections/hello_world/_hello_world.html.erb (0.3ms)
464
+ Rendered demos/index.html.erb within layouts/application (22.4ms)
465
+ Completed 200 OK in 78ms (Views: 77.1ms | ActiveRecord: 0.0ms)
466
+
467
+
468
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sat Nov 26 14:51:25 -0800 2011
469
+ Served asset /jquery.js - 304 Not Modified (0ms)
470
+
471
+
472
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sat Nov 26 14:51:25 -0800 2011
473
+ Served asset /application.css - 304 Not Modified (0ms)
474
+
475
+
476
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sat Nov 26 14:51:25 -0800 2011
477
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
478
+
479
+
480
+ Started GET "/assets/hello_world/hello_world.js?body=1" for 127.0.0.1 at Sat Nov 26 14:51:25 -0800 2011
481
+ Served asset /hello_world/hello_world.js - 304 Not Modified (0ms)
482
+
483
+
484
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sat Nov 26 14:51:25 -0800 2011
485
+ Served asset /application.js - 304 Not Modified (0ms)
486
+
487
+
488
+ Started GET "/assets/hello_world/hello_world.css?body=1" for 127.0.0.1 at Sat Nov 26 14:51:25 -0800 2011
489
+ Served asset /hello_world/hello_world.css - 304 Not Modified (0ms)
490
+
491
+
492
+ Started GET "/demos" for 127.0.0.1 at Sat Nov 26 14:51:54 -0800 2011
493
+ Processing by DemosController#index as HTML
494
+ Rendered app/sections/hello_world/_hello_world.html.erb (0.1ms)
495
+ Rendered demos/index.html.erb within layouts/application (1.9ms)
496
+ Completed 200 OK in 12ms (Views: 11.3ms | ActiveRecord: 0.0ms)
497
+
498
+
499
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sat Nov 26 14:51:54 -0800 2011
500
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
501
+
502
+
503
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sat Nov 26 14:51:54 -0800 2011
504
+ Served asset /jquery.js - 304 Not Modified (0ms)
505
+
506
+
507
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sat Nov 26 14:51:54 -0800 2011
508
+ Served asset /application.css - 304 Not Modified (0ms)
509
+
510
+
511
+ Started GET "/assets/hello_world/hello_world.js?body=1" for 127.0.0.1 at Sat Nov 26 14:51:54 -0800 2011
512
+ Served asset /hello_world/hello_world.js - 304 Not Modified (0ms)
513
+
514
+
515
+ Started GET "/assets/hello_world/hello_world.css?body=1" for 127.0.0.1 at Sat Nov 26 14:51:54 -0800 2011
516
+ Served asset /hello_world/hello_world.css - 304 Not Modified (0ms)
517
+
518
+
519
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sat Nov 26 14:51:54 -0800 2011
520
+ Served asset /application.js - 304 Not Modified (0ms)
521
+
522
+
523
+ Started GET "/demos" for 127.0.0.1 at Sat Nov 26 14:52:23 -0800 2011
524
+ Processing by DemosController#index as HTML
525
+ Rendered app/sections/hello_world/_hello_world.html.erb (0.3ms)
526
+ Rendered demos/index.html.erb within layouts/application (2.4ms)
527
+ Completed 200 OK in 25ms (Views: 24.6ms | ActiveRecord: 0.0ms)
528
+
529
+
530
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sat Nov 26 14:52:23 -0800 2011
531
+ Served asset /application.css - 304 Not Modified (0ms)
532
+
533
+
534
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sat Nov 26 14:52:23 -0800 2011
535
+ Served asset /jquery.js - 304 Not Modified (0ms)
536
+
537
+
538
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sat Nov 26 14:52:23 -0800 2011
539
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
540
+
541
+
542
+ Started GET "/assets/hello_world/hello_world.js?body=1" for 127.0.0.1 at Sat Nov 26 14:52:23 -0800 2011
543
+ Served asset /hello_world/hello_world.js - 304 Not Modified (0ms)
544
+
545
+
546
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sat Nov 26 14:52:23 -0800 2011
547
+ Served asset /application.js - 304 Not Modified (0ms)
548
+
549
+
550
+ Started GET "/assets/hello_world/hello_world.css?body=1" for 127.0.0.1 at Sat Nov 26 14:52:23 -0800 2011
551
+ Served asset /hello_world/hello_world.css - 304 Not Modified (0ms)