Parent

WillPaginate::NamedScope::Scope

Attributes

proxy_options[R]
proxy_scope[R]

Public Class Methods

new(proxy_scope, options) click to toggle source
# File lib/will_paginate/named_scope.rb, line 115
def initialize(proxy_scope, options)
  [options[:extend]].flatten.each { |extension| extend extension } if options[:extend]
  extend Module.new { |*args| yield(*args) } if block_given?
  @proxy_scope, @proxy_options = proxy_scope, options.except(:extend)
end

Public Instance Methods

empty?() click to toggle source
# File lib/will_paginate/named_scope.rb, line 141
def empty?
  @found ? @found.empty? : count.zero?
end
first(*args) click to toggle source
# File lib/will_paginate/named_scope.rb, line 125
def first(*args)
  if args.first.kind_of?(Integer) || (@found && !args.first.kind_of?(Hash))
    proxy_found.first(*args)
  else
    find(:first, *args)
  end
end
last(*args) click to toggle source
# File lib/will_paginate/named_scope.rb, line 133
def last(*args)
  if args.first.kind_of?(Integer) || (@found && !args.first.kind_of?(Hash))
    proxy_found.last(*args)
  else
    find(:last, *args)
  end
end
reload() click to toggle source
# File lib/will_paginate/named_scope.rb, line 121
def reload
  load_found; self
end
respond_to?(method, include_private = false) click to toggle source
# File lib/will_paginate/named_scope.rb, line 145
def respond_to?(method, include_private = false)
  super || @proxy_scope.respond_to?(method, include_private)
end

Protected Instance Methods

proxy_found() click to toggle source
# File lib/will_paginate/named_scope.rb, line 150
def proxy_found
  @found || load_found
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.