search for: viewpaths

Displaying 2 results from an estimated 2 matches for "viewpaths".

Did you mean: view_paths
2012 Sep 09
2
mattr_accessor inside a class
...methods for instances, mattr_accessor provide getter/setter methods at the module level. In below example, you see that mattr_accessor declared in the class context of LookupContext. It''s declared in class, not module. However, modules are defined in LookupContext, for example, the module ViewPaths, which makes use of the accessor. So is it safe to say that if a module accessor is declared in class, then it can only be available to modules of that class? class LookupContext mattr_accessor :fallbacks module ViewPaths self.class.fallbacks.each do |resolver| -- You received th...
2007 Apr 05
5
Odd error handling in ActionView#compile_template causes WSOD
If a view file cannot be compiled (eg it has a block with a missing ''end'' statement), I''m experiencing WSODs - the browser reports a lost network connection, rather than the helpful compilation error that we used to have. When the compilation fails, ActionView#compile_template raises this error : TemplateError.new(find_base_path_for(file_name || template), file_name ||