filtered_path

filtered_path() Instance Public methods Reconstructed a path with all sensitive GET parameters replaced.

delete

delete(name) Instance Public methods Removes an object hierarchy from the data store, by name. WARNING: This method is only valid in a #transaction and it cannot be read-only. It will raise PStore::Error if called at any other time.

plot_funcont

plot_funcont(conts, cmd=Proc.new) Instance Public methods

on_event_with_outargs

WIN32OLE_EVENT#on_event_with_outargs([event]){...} Instance Public methods Defines the callback of event. If you want modify argument in callback, you could use this method instead of #on_event. ie = WIN32OLE.new('InternetExplorer.Application') ev = WIN32OLE_EVENT.new(ie) ev.on_event_with_outargs('BeforeNavigate2') {|*args| args.last[6] = true }

parse_rescue

parse_rescue() Instance Public methods Parses a rescue

escape8bit

escape8bit(str) Instance Public methods Escapes 8 bit characters in str

delete

delete(*args) Instance Public methods

inspect

addrinfo.inspect => string Instance Public methods returns a string which shows addrinfo in human-readable form. Addrinfo.tcp("localhost", 80).inspect #=> "#<Addrinfo: 127.0.0.1:80 TCP (localhost)>" Addrinfo.unix("/tmp/sock").inspect #=> "#<Addrinfo: /tmp/sock SOCK_STREAM>"

configure

configure(opts) Instance Public methods Configure this State instance with the Hash opts, and return itself. merge

===

===(other) Instance Public methods Equivalent to #==. class BlogPost extend ActiveModel::Naming end BlogPost.model_name === 'BlogPost' # => true BlogPost.model_name === 'Blog Post' # => false