timecop-console 0.1.0 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (57) hide show
  1. data/Gemfile +3 -0
  2. data/README.rdoc +29 -26
  3. data/Rakefile +15 -0
  4. data/app/controllers/timecop_console/main_controller.rb +39 -0
  5. data/config/routes.rb +4 -0
  6. data/lib/timecop_console/controller_methods.rb +34 -0
  7. data/lib/timecop_console/engine.rb +9 -0
  8. data/lib/timecop_console/version.rb +17 -0
  9. data/lib/timecop_console.rb +6 -5
  10. data/spec/controllers/main_controller_spec.rb +33 -0
  11. data/spec/controllers/sample_controller_spec.rb +33 -0
  12. data/spec/dummy_app/Gemfile +5 -0
  13. data/spec/dummy_app/Gemfile.lock +93 -0
  14. data/spec/dummy_app/README.rdoc +261 -0
  15. data/spec/dummy_app/Rakefile +7 -0
  16. data/spec/dummy_app/app/assets/images/rails.png +0 -0
  17. data/spec/dummy_app/app/assets/javascripts/application.js +13 -0
  18. data/spec/dummy_app/app/assets/stylesheets/application.css +13 -0
  19. data/spec/dummy_app/app/controllers/application_controller.rb +3 -0
  20. data/spec/dummy_app/app/controllers/sample_controller.rb +2 -0
  21. data/spec/dummy_app/app/helpers/application_helper.rb +2 -0
  22. data/spec/dummy_app/app/views/layouts/application.html.erb +14 -0
  23. data/spec/dummy_app/config/application.rb +65 -0
  24. data/spec/dummy_app/config/boot.rb +6 -0
  25. data/spec/dummy_app/config/environment.rb +5 -0
  26. data/spec/dummy_app/config/environments/development.rb +26 -0
  27. data/spec/dummy_app/config/environments/production.rb +51 -0
  28. data/spec/dummy_app/config/environments/test.rb +35 -0
  29. data/spec/dummy_app/config/initializers/backtrace_silencers.rb +7 -0
  30. data/spec/dummy_app/config/initializers/inflections.rb +15 -0
  31. data/spec/dummy_app/config/initializers/mime_types.rb +5 -0
  32. data/spec/dummy_app/config/initializers/secret_token.rb +7 -0
  33. data/spec/dummy_app/config/initializers/session_store.rb +8 -0
  34. data/spec/dummy_app/config/initializers/wrap_parameters.rb +10 -0
  35. data/spec/dummy_app/config/locales/en.yml +5 -0
  36. data/spec/dummy_app/config/routes.rb +3 -0
  37. data/spec/dummy_app/config.ru +4 -0
  38. data/spec/dummy_app/db/seeds.rb +7 -0
  39. data/spec/dummy_app/doc/README_FOR_APP +2 -0
  40. data/spec/dummy_app/log/development.log +91 -0
  41. data/spec/dummy_app/log/test.log +232 -0
  42. data/spec/dummy_app/public/404.html +26 -0
  43. data/spec/dummy_app/public/422.html +26 -0
  44. data/spec/dummy_app/public/500.html +25 -0
  45. data/spec/dummy_app/public/favicon.ico +0 -0
  46. data/spec/dummy_app/public/index.html +241 -0
  47. data/spec/dummy_app/public/robots.txt +5 -0
  48. data/spec/dummy_app/script/rails +6 -0
  49. data/spec/spec_helper.rb +10 -0
  50. metadata +152 -58
  51. data/VERSION.yml +0 -4
  52. data/lib/timecop-console/controllers/timecop_controller.rb +0 -21
  53. data/lib/timecop-console/routes.rb +0 -16
  54. data/lib/timecop-console/timecop_controller_methods.rb +0 -33
  55. data/test/geminstaller.yml +0 -6
  56. data/test/test_helper.rb +0 -9
  57. data/test/timecop_console_test.rb +0 -29
@@ -0,0 +1,13 @@
1
+ /*
2
+ * This is a manifest file that'll be compiled into application.css, which will include all the files
3
+ * listed below.
4
+ *
5
+ * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6
+ * or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
7
+ *
8
+ * You're free to add application-wide styles to this file and they'll appear at the top of the
9
+ * compiled file, but it's generally better to create a new file per style scope.
10
+ *
11
+ *= require_self
12
+ *= require_tree .
13
+ */
@@ -0,0 +1,3 @@
1
+ class ApplicationController < ActionController::Base
2
+ protect_from_forgery
3
+ end
@@ -0,0 +1,2 @@
1
+ class SampleController < ApplicationController
2
+ end
@@ -0,0 +1,2 @@
1
+ module ApplicationHelper
2
+ end
@@ -0,0 +1,14 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>DummyApp</title>
5
+ <%= stylesheet_link_tag "application", :media => "all" %>
6
+ <%= javascript_include_tag "application" %>
7
+ <%= csrf_meta_tags %>
8
+ </head>
9
+ <body>
10
+
11
+ <%= yield %>
12
+
13
+ </body>
14
+ </html>
@@ -0,0 +1,65 @@
1
+ require File.expand_path('../boot', __FILE__)
2
+
3
+ # Pick the frameworks you want:
4
+ # require "active_record/railtie"
5
+ require "action_controller/railtie"
6
+ require "action_mailer/railtie"
7
+ require "active_resource/railtie"
8
+ # require "sprockets/railtie"
9
+ # require "rails/test_unit/railtie"
10
+
11
+ if defined?(Bundler)
12
+ # If you precompile assets before deploying to production, use this line
13
+ Bundler.require(*Rails.groups(:assets => %w(development test)))
14
+ # If you want your assets lazily compiled in production, use this line
15
+ # Bundler.require(:default, :assets, Rails.env)
16
+ end
17
+
18
+ require 'timecop_console'
19
+
20
+ module DummyApp
21
+ class Application < Rails::Application
22
+ # Settings in config/environments/* take precedence over those specified here.
23
+ # Application configuration should go into files in config/initializers
24
+ # -- all .rb files in that directory are automatically loaded.
25
+
26
+ # Custom directories with classes and modules you want to be autoloadable.
27
+ # config.autoload_paths += %W(#{config.root}/extras)
28
+
29
+ # Only load the plugins named here, in the order given (default is alphabetical).
30
+ # :all can be used as a placeholder for all plugins not explicitly named.
31
+ # config.plugins = [ :exception_notification, :ssl_requirement, :all ]
32
+
33
+ # Activate observers that should always be running.
34
+ # config.active_record.observers = :cacher, :garbage_collector, :forum_observer
35
+
36
+ # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
37
+ # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
38
+ # config.time_zone = 'Central Time (US & Canada)'
39
+
40
+ # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
41
+ # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
42
+ # config.i18n.default_locale = :de
43
+
44
+ # Configure the default encoding used in templates for Ruby 1.9.
45
+ config.encoding = "utf-8"
46
+
47
+ # Configure sensitive parameters which will be filtered from the log file.
48
+ config.filter_parameters += [:password]
49
+
50
+ # Enable escaping HTML in JSON.
51
+ config.active_support.escape_html_entities_in_json = true
52
+
53
+ # Use SQL instead of Active Record's schema dumper when creating the database.
54
+ # This is necessary if your schema can't be completely dumped by the schema dumper,
55
+ # like if you have constraints or database-specific column types
56
+ # config.active_record.schema_format = :sql
57
+
58
+ # Enforce whitelist mode for mass assignment.
59
+ # This will create an empty whitelist of attributes available for mass-assignment for all models
60
+ # in your app. As such, your models will need to explicitly whitelist or blacklist accessible
61
+ # parameters by using an attr_accessible or attr_protected declaration.
62
+ # config.active_record.whitelist_attributes = true
63
+
64
+ end
65
+ end
@@ -0,0 +1,6 @@
1
+ require 'rubygems'
2
+
3
+ # Set up gems listed in the Gemfile.
4
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
5
+
6
+ require 'bundler/setup' if File.exists?(ENV['BUNDLE_GEMFILE'])
@@ -0,0 +1,5 @@
1
+ # Load the rails application
2
+ require File.expand_path('../application', __FILE__)
3
+
4
+ # Initialize the rails application
5
+ DummyApp::Application.initialize!
@@ -0,0 +1,26 @@
1
+ DummyApp::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
+
26
+ end
@@ -0,0 +1,51 @@
1
+ DummyApp::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
+
15
+ # Specifies the header that your server uses for sending files
16
+ # config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
17
+ # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
18
+
19
+ # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
20
+ # config.force_ssl = true
21
+
22
+ # See everything in the log (default is :info)
23
+ # config.log_level = :debug
24
+
25
+ # Prepend all log lines with the following tags
26
+ # config.log_tags = [ :subdomain, :uuid ]
27
+
28
+ # Use a different logger for distributed setups
29
+ # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
30
+
31
+ # Use a different cache store in production
32
+ # config.cache_store = :mem_cache_store
33
+
34
+ # Enable serving of images, stylesheets, and JavaScripts from an asset server
35
+ # config.action_controller.asset_host = "http://assets.example.com"
36
+
37
+
38
+ # Disable delivery errors, bad email addresses will be ignored
39
+ # config.action_mailer.raise_delivery_errors = false
40
+
41
+ # Enable threaded mode
42
+ # config.threadsafe!
43
+
44
+ # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
45
+ # the I18n.default_locale when a translation can not be found)
46
+ config.i18n.fallbacks = true
47
+
48
+ # Send deprecation notices to registered listeners
49
+ config.active_support.deprecation = :notify
50
+
51
+ end
@@ -0,0 +1,35 @@
1
+ DummyApp::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
+
33
+ # Print deprecation notices to the stderr
34
+ config.active_support.deprecation = :stderr
35
+ end
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
+
6
+ # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,15 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format
4
+ # (all these examples are active by default):
5
+ # ActiveSupport::Inflector.inflections do |inflect|
6
+ # inflect.plural /^(ox)$/i, '\1en'
7
+ # inflect.singular /^(ox)en/i, '\1'
8
+ # inflect.irregular 'person', 'people'
9
+ # inflect.uncountable %w( fish sheep )
10
+ # end
11
+ #
12
+ # These inflection rules are supported but not enabled by default:
13
+ # ActiveSupport::Inflector.inflections do |inflect|
14
+ # inflect.acronym 'RESTful'
15
+ # end
@@ -0,0 +1,5 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
5
+ # Mime::Type.register_alias "text/html", :iphone
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+ # Make sure the secret is at least 30 characters and all random,
6
+ # no regular words or you'll be exposed to dictionary attacks.
7
+ DummyApp::Application.config.secret_token = 'e45f2b6bb14131aae78a6c66726f943886687582bee47c75ae04f4c7329c46101029848e17b8e17ed275d844c2d6afe80be5ad49519a15fe511148cbf7945e03'
@@ -0,0 +1,8 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ DummyApp::Application.config.session_store :cookie_store, :key => '_dummy_app_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
+ # DummyApp::Application.config.session_store :active_record_store
@@ -0,0 +1,10 @@
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
+
@@ -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,3 @@
1
+ DummyApp::Application.routes.draw do
2
+ mount TimecopConsole::Engine => '/timecop_console'
3
+ end
@@ -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 DummyApp::Application
@@ -0,0 +1,7 @@
1
+ # This file should contain all the record creation needed to seed the database with its default values.
2
+ # The data can then be loaded with the rake db:seed (or created alongside the db with db:setup).
3
+ #
4
+ # Examples:
5
+ #
6
+ # cities = City.create([{ :name => 'Chicago' }, { :name => 'Copenhagen' }])
7
+ # Mayor.create(:name => 'Emanuel', :city => cities.first)
@@ -0,0 +1,2 @@
1
+ Use this README file to introduce your application and point to useful places in the API for learning more.
2
+ Run "rake doc:app" to generate API documentation for your models, controllers, helpers, and libraries.
@@ -0,0 +1,91 @@
1
+
2
+
3
+ Started GET "/timecop_console/reset" for 127.0.0.1 at 2012-11-04 23:26:09 +0100
4
+ Processing by TimecopConsole::MainController#reset as */*
5
+ Redirected to
6
+ Completed 500 Internal Server Error in 1ms
7
+
8
+ ActionController::RedirectBackError (No HTTP_REFERER was set in the request to this action, so redirect_to :back could not be called successfully. If this is a test, make sure to specify request.env["HTTP_REFERER"].):
9
+ actionpack (3.2.8) lib/action_controller/metal/redirecting.rb:100:in `_compute_redirect_to_location'
10
+ actionpack (3.2.8) lib/action_controller/metal/redirecting.rb:74:in `redirect_to'
11
+ actionpack (3.2.8) lib/action_controller/metal/flash.rb:25:in `redirect_to'
12
+ actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:60:in `block in redirect_to'
13
+ activesupport (3.2.8) lib/active_support/notifications.rb:123:in `block in instrument'
14
+ activesupport (3.2.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
15
+ activesupport (3.2.8) lib/active_support/notifications.rb:123:in `instrument'
16
+ actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:59:in `redirect_to'
17
+ /Users/user/Projects/Ruby/gems/timecop-console/app/controllers/timecop_console/main_controller.rb:29:in `reset'
18
+ actionpack (3.2.8) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
19
+ actionpack (3.2.8) lib/abstract_controller/base.rb:167:in `process_action'
20
+ actionpack (3.2.8) lib/action_controller/metal/rendering.rb:10:in `process_action'
21
+ actionpack (3.2.8) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
22
+ activesupport (3.2.8) lib/active_support/callbacks.rb:414:in `_run__1282082217528020919__process_action__2587926962013094874__callbacks'
23
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
24
+ activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
25
+ activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
26
+ actionpack (3.2.8) lib/abstract_controller/callbacks.rb:17:in `process_action'
27
+ actionpack (3.2.8) lib/action_controller/metal/rescue.rb:29:in `process_action'
28
+ actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
29
+ activesupport (3.2.8) lib/active_support/notifications.rb:123:in `block in instrument'
30
+ activesupport (3.2.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
31
+ activesupport (3.2.8) lib/active_support/notifications.rb:123:in `instrument'
32
+ actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
33
+ actionpack (3.2.8) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
34
+ actionpack (3.2.8) lib/abstract_controller/base.rb:121:in `process'
35
+ actionpack (3.2.8) lib/abstract_controller/rendering.rb:45:in `process'
36
+ actionpack (3.2.8) lib/action_controller/metal.rb:203:in `dispatch'
37
+ actionpack (3.2.8) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
38
+ actionpack (3.2.8) lib/action_controller/metal.rb:246:in `block in action'
39
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `call'
40
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
41
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:36:in `call'
42
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
43
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
44
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
45
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:600:in `call'
46
+ railties (3.2.8) lib/rails/engine.rb:479:in `call'
47
+ railties (3.2.8) lib/rails/railtie/configurable.rb:30:in `method_missing'
48
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
49
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
50
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
51
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:600:in `call'
52
+ actionpack (3.2.8) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
53
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
54
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
55
+ actionpack (3.2.8) lib/action_dispatch/middleware/head.rb:14:in `call'
56
+ actionpack (3.2.8) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
57
+ actionpack (3.2.8) lib/action_dispatch/middleware/flash.rb:242:in `call'
58
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
59
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
60
+ actionpack (3.2.8) lib/action_dispatch/middleware/cookies.rb:339:in `call'
61
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
62
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__2417632332746792915__call__2167111651493779171__callbacks'
63
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
64
+ activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
65
+ activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
66
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
67
+ actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call'
68
+ actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
69
+ actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
70
+ actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
71
+ railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
72
+ railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
73
+ actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
74
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
75
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
76
+ activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
77
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
78
+ actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
79
+ railties (3.2.8) lib/rails/engine.rb:479:in `call'
80
+ railties (3.2.8) lib/rails/application.rb:223:in `call'
81
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
82
+ railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
83
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
84
+ /Users/user/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
85
+ /Users/user/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
86
+ /Users/user/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
87
+
88
+
89
+ Rendered /Users/user/.rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
90
+ Rendered /Users/user/.rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
91
+ Rendered /Users/user/.rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (19.0ms)