From 47498a7f59d0196e9b8aa8e3569cbb4937477cef Mon Sep 17 00:00:00 2001 From: Carlhuda Date: Tue, 23 Feb 2010 17:42:14 -0800 Subject: [PATCH] Woops, forgot to actually add active_support/core_ext/file/path.rb --- .gitignore | 1 + activesupport/lib/active_support/core_ext/file/path.rb | 5 +++++ railties/test/application/middleware_test.rb | 1 + 3 files changed, 7 insertions(+) create mode 100644 activesupport/lib/active_support/core_ext/file/path.rb diff --git a/.gitignore b/.gitignore index 715d0bc4bc..9480b47d15 100644 --- a/.gitignore +++ b/.gitignore @@ -19,3 +19,4 @@ railties/tmp bin .bundle pkg +*.gem \ No newline at end of file diff --git a/activesupport/lib/active_support/core_ext/file/path.rb b/activesupport/lib/active_support/core_ext/file/path.rb new file mode 100644 index 0000000000..b5feab80ae --- /dev/null +++ b/activesupport/lib/active_support/core_ext/file/path.rb @@ -0,0 +1,5 @@ +class File + unless File.allocate.respond_to?(:to_path) + alias to_path path + end +end \ No newline at end of file diff --git a/railties/test/application/middleware_test.rb b/railties/test/application/middleware_test.rb index ce9cd510a3..5e869bff1e 100644 --- a/railties/test/application/middleware_test.rb +++ b/railties/test/application/middleware_test.rb @@ -19,6 +19,7 @@ def setup "Rack::Runtime", "Rails::Rack::Logger", "ActionDispatch::ShowExceptions", + "Rack::Sendfile", "ActionDispatch::Callbacks", "ActionDispatch::Cookies", "ActionDispatch::Session::CookieStore", -- GitLab