remove_silencers!() Instance Public methods Will remove all silencers, but leave in the filters. This is useful if your context of debugging suddenly expands as you suspect a bug in one of the libraries you use.
namespace(name=nil) Class Public methods Convenience method to get the namespace from the class name. It's the same as Thor default except that the Generator at the end of the class is removed.
insert(*args, &block) Instance Public methods Alias for: insert_before
find_or_initialize_by(attributes, &block) Instance Public methods Like find_or_create_by, but calls new instead of create.
compact() Instance Public methods Returns a hash with non nil values. hash = { a: true, b: false, c: nil} hash.compact # => { a: true, b: false} hash # => { a: true, b: false, c: nil} { c: nil }.compact # => {}
new(controller, app) Class Public methods
request_method=(method) Instance Public methods
existent_directories() Instance Public methods
application_name() Instance Protected methods Tries to retrieve the application name or simple return application.
escape_bytea(value) Instance Public methods Escapes binary strings for bytea input to the database.
Page 49 of 2275