Methods

Class/Module Index [+]

Quicksearch

ActionView::FileSystemResolver

Public Class Methods

new(path) click to toggle source
# File D:/Develope/RailsInstaller/Ruby1.8.7/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_view/template/resolver.rb, line 120
def initialize(path)
  raise ArgumentError, "path already is a Resolver class" if path.is_a?(Resolver)
  super()
  @path = File.expand_path(path)
end

Public Instance Methods

==(resolver) click to toggle source
Alias for: eql?
eql?(resolver) click to toggle source
# File D:/Develope/RailsInstaller/Ruby1.8.7/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_view/template/resolver.rb, line 126
def eql?(resolver)
  self.class.equal?(resolver.class) && to_path == resolver.to_path
end
Also aliased as: ==

[Validate]

Generated with the Darkfish Rdoc Generator 2.