===

===(p1) Instance Public methods Alias for: eql?

gets

gets(*args) Instance Public methods See Zlib::GzipReader documentation for a description.

load

load(source, proc = nil, options = {}) Instance Public methods Load a ruby data structure from a JSON source and return it. A source can either be a string-like object, an IO-like object, or an object responding to the read method. If proc was given, it will be called with any nested Ruby object as an argument recursively in depth first order. To modify the default options pass in the optional options argument as well. BEWARE: This method is meant to serialise data from trusted use

add_special_TIDYLINK

add_special_TIDYLINK() Instance Public methods Adds a special for links of the form â>word>

skip_around_action

skip_around_action(names) Instance Public methods Skip a callback around actions. See #_insert_callbacks for parameter details. Aliased as skip_around_filter.

at_middle_of_day

at_middle_of_day() Instance Public methods Alias for: middle_of_day

upto

int.upto(limit) {|i| block } â selfint.upto(limit) â an_enumerator Instance Public methods Iterates block, passing in integer values from int up to and including limit. If no block is given, an enumerator is returned instead. 5.upto(10) { |i| print i, " " } produces: 5 6 7 8 9 10

acts_like?

acts_like?(duck) Instance Public methods A duck-type assistant method. For example, Active Support extends Date to define an acts_like_date? method, and extends Time to define acts_like_time?. As a result, we can do x.acts_like?(:time) and x.acts_like?(:date) to do duck-type-safe comparisons, since classes that we want to act like Time simply need to define an acts_like_time? method.

wrap

wrap(io, digests) Class Public methods Wraps io and updates digest for each of the digest algorithms in the digests Hash. Returns the digests hash. Example: io = StringIO.new digests = { 'SHA1' => OpenSSL::Digest.new('SHA1'), 'SHA512' => OpenSSL::Digest.new('SHA512'), } Gem::Package::DigestIO.wrap io, digests do |digest_io| digest_io.write "hello" end digests['SHA1'].hexdigest #=> "aaf4c61d[...]" digests['SHA512'].hexdigest #=> "9b71d224[...]"

restart 2

restart(app_name = nil, keys = {}) Instance Public methods