offset(value) Instance Public methods Specifies the number of rows to skip before returning rows. User.offset(10) # generated SQL has "OFFSET 10" Should be used with order. User.offset(10).order("name ASC")
xmldecl?() Instance Public methods Content: [ String version, String encoding, String standalone ]
puts(string) Instance Public methods Sends a string to the host. Same as print(), but appends a newline to the string.
eval_string(cmd, *eval_args) Class Public methods Also aliased as: eval_str
check_data(public_key, digest, signature, data) Instance Public methods Verifies that data matches the signature created by public_key and the digest algorithm.
migration_file_name() Instance Public methods
second=(second) Instance Public methods
second() Instance Public methods Equal to self[1]. %w( a b c d e ).second # => "b"
parent_name() Instance Public methods Name of our parent with special handling for un-marshaled methods
get_via_redirect(path, parameters = nil, headers_or_env = nil) Instance Public methods Performs a GET request, following any subsequent redirect. See request_via_redirect for more information.
Page 205 of 2275