class Passety::Collection

Public Class Methods

new(wrapper) click to toggle source
Calls superclass method
# File lib/passety/collection.rb, line 3
def initialize(wrapper)
  super(wrapper, 'collections')
end

Public Instance Methods

things() click to toggle source
# File lib/passety/collection.rb, line 7
def things
  @things ||= Collections::Thing.new(@wrapper)
end