down

down() Instance Public methods

replaceChild

replaceChild(arg0, arg1) Instance Public methods IXMLDOMNode replaceChild replace a child node IXMLDOMNode arg0 --- newChild [IN] IXMLDOMNode arg1 --- oldChild [IN]

yscrollcommand

yscrollcommand(cmd=Proc.new) Instance Public methods

create

create(attributes = {}, &block) Instance Public methods Returns a new object of the collection type that has been instantiated with attributes, linked to this object and that has already been saved (if it passes the validations). class Person has_many :pets end person.pets.create(name: 'Fancy-Fancy') # => #<Pet id: 1, name: "Fancy-Fancy", person_id: 1> person.pets.create([{name: 'Spook'}, {name: 'Choo-Choo'}]) # => [ # #<Pet id: 2, name: "Spook", person_

reload

reload() Instance Public methods Reloads the collection from the database. Returns self. Equivalent to collection(true). class Person < ActiveRecord::Base has_many :pets end person.pets # fetches pets from the database # => [#<Pet id: 1, name: "Snoop", group: "dogs", person_id: 1>] person.pets # uses the pets cache # => [#<Pet id: 1, name: "Snoop", group: "dogs", person_id: 1>] person.pets.reload # fetches pets from the database # => [#<Pet id: 1, na

extract_subdomain

extract_subdomain(host, tld_length = @@tld_length) Class Public methods

locale

locale() Class Public methods

delete

delete(*wins) Instance Public methods

redirect_url

redirect_url() Instance Public methods Alias for: location

element

element(name, attrs, *children) Instance Public methods