aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/paths.rb
diff options
context:
space:
mode:
authorJoshua Peek <josh@joshpeek.com>2008-07-19 15:27:55 -0500
committerJoshua Peek <josh@joshpeek.com>2008-07-19 15:27:55 -0500
commit55bfe6be52da1130abb1c148f10d8e9a11368ffd (patch)
tree34b0e675b2fb772326f99488435d5bdc48e31c12 /actionpack/lib/action_view/paths.rb
parent1b4b1aa725a4f44c3473ae99b36d7cededba2bea (diff)
downloadrails-55bfe6be52da1130abb1c148f10d8e9a11368ffd.tar.gz
rails-55bfe6be52da1130abb1c148f10d8e9a11368ffd.tar.bz2
rails-55bfe6be52da1130abb1c148f10d8e9a11368ffd.zip
Ensure ActionView::PathSet::Path is not initialized with a precompiled path
Diffstat (limited to 'actionpack/lib/action_view/paths.rb')
-rw-r--r--actionpack/lib/action_view/paths.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/actionpack/lib/action_view/paths.rb b/actionpack/lib/action_view/paths.rb
index c7a5df762f..78548d4aa2 100644
--- a/actionpack/lib/action_view/paths.rb
+++ b/actionpack/lib/action_view/paths.rb
@@ -28,6 +28,8 @@ module ActionView #:nodoc:
delegate :to_s, :to_str, :inspect, :to => :path
def initialize(path)
+ raise ArgumentError, "path already is a Path class" if path.is_a?(Path)
+
@path = path.freeze
reload!
end