itemconfiginfo

itemconfiginfo(container, *args) Class Public methods Also aliased as: __itemconfiginfo

column_exists?

column_exists?(table_name, column_name, type = nil, options = {}) Instance Public methods Checks to see if a column exists in a given table. # Check a column exists column_exists?(:suppliers, :name) # Check a column exists of a particular type column_exists?(:suppliers, :name, :string) # Check a column exists with a specific definition column_exists?(:suppliers, :name, :string, limit: 100) column_exists?(:suppliers, :name, :string, default: 'default') column_exists?(:suppliers, :

generate

generate(obj, opts = nil) Instance Public methods Generate a JSON document from the Ruby data structure obj and return it. state is a JSON::State object, or a Hash like object (responding to to_hash), or an object convertible into a hash by a to_h method, that is used as or to configure a State object. It defaults to a state object, that creates the shortest possible JSON text in one line, checks for circular data structures and doesn't allow NaN, Infinity, and -Infinity. A

new

new(scheme, userinfo, host, port, registry, path, opaque, query, fragment, parser = DEFAULT_PARSER, arg_check = false) Class Public methods Args scheme Protocol scheme, i.e. 'http','ftp','mailto' and so on. userinfo User name and password, i.e. 'sdmitry:bla' host Server host name port Server port registry Registry of naming authorities. path Path on server opaque Opaque part query Query data fragment A part of URI after '#' sign parser Parser fo

nextNode

nextNode() Instance Public methods IXMLDOMNode nextNode get next node from iterator

new

new(str, safe_level=nil, trim_mode=nil, eoutvar='_erbout') Class Public methods Constructs a new ERB object with the template specified in str. An ERB object works by building a chunk of Ruby code that will output the completed template when run. If safe_level is set to a non-nil value, ERB code will be run in a separate thread with $SAFE set to the provided level. If trim_mode is passed a String containing one or more of the following modifiers, ERB will adjust its code generation

show

show(*args) Class Public methods

persisted?

persisted?() Instance Public methods

getResponseHeader

getResponseHeader(arg0) Instance Public methods BSTR getResponseHeader Get HTTP response header BSTR arg0 --- bstrHeader [IN]

new

new(command, summary=nil, defaults={}) Class Public methods Initializes a generic gem command named command. summary is a short description displayed in `gem help commands`. defaults are the default options. Defaults should be mirrored in defaults_str, unless there are none. When defining a new command subclass, use #add_option to add command-line switches. Unhandled arguments (gem names, files, etc.) are left in options[:args].