load_generators

load_generators(app=self) Instance Public methods Load Rails generators and invoke the registered hooks. Check Rails::Railtie.generators for more info.

textWindPlot2

textWindPlot2(t) Instance Public methods

get

get(action, *args) Instance Public methods Simulate a GET request with the given parameters. action: The controller action to call. parameters: The HTTP parameters that you want to pass. This may be nil, a hash, or a string that is appropriately encoded (application/x-www-form-urlencoded or multipart/form-data). session: A hash of parameters to store in the session. This may be nil. flash: A hash of parameters to store in the flash. This may be nil. You can also simulate

latin_metrics

latin_metrics(option=nil) Instance Public methods Also aliased as: ascii_metrics

quo

quo(value) Instance Public methods Divide by the specified value. e.g. c = a.div(b,n) digits If specified and less than the number of significant digits of the result, the result is rounded to that number of digits, according to ::mode. If digits is 0, the result is the same as the / operator. If not, the result is an integer BigDecimal, by analogy with Numeric#div. The alias quo is provided since div(value, 0) is the same as computing the quotient; see #divmod.

hexdigest 2

hmac.hexdigest â aString Instance Public methods Also aliased as: inspect, to_s

_curr_cmd_id

_curr_cmd_id() Class Public methods ### â> definition is moved to TkUtil module def _get_eval_string(str, enc_mode = nil) return nil if str == None if str.kind_of?(TkObject) str = str.path elsif str.kind_of?(String) str = _toUTF8(str) if enc_mode elsif str.kind_of?(Symbol) str = str.id2name str = _toUTF8(str) if enc_mode elsif str.kind_of?(Hash) str = hash_kv(str, enc_mode).join(" ") elsif str.kind_of?(Array) str = array2tk_list(str) str = _toUTF8(str) if enc_mode

reset

reset() Instance Public methods Unloads the association. Returns self. 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.reset # clears the pets cache person.pets # fetches pets from the database # => [#<Pet id: 1, name: "Snoop",

build_extensions

build_extensions() Instance Public methods Builds extensions. Valid types of extensions are extconf.rb files, configure scripts and rakefiles or mkrf_conf files.

cos

cos(z) Class Public methods returns the cosine of z, where z is given in radians cos!