each

each(rs = $/) Instance Public methods Alias for: each_line

new 2

new(tree, *args, &b) Class Public methods

render_text_with_nil

render_text_with_nil() Instance Public methods :ported:

create_copy

create_copy(font) Class Public methods

reload

reload() Instance Public methods Forces reloading of relation.

date_select

date_select(method, options = {}, html_options = {}) Instance Public methods Wraps ActionView::Helpers::DateHelper#date_select for form builders: <%= form_for @person do |f| %> <%= f.date_select :birth_date %> <%= f.submit %> <% end %> Please refer to the documentation of the base helper for details.

hierarchical?

hierarchical?() Instance Public methods Checks if URI has a path For URI::LDAP this will return false

id

id() Instance Public methods

lookup_store

lookup_store(*store_option) Class Public methods Creates a new CacheStore object according to the given options. If no arguments are passed to this method, then a new ActiveSupport::Cache::MemoryStore object will be returned. If you pass a Symbol as the first argument, then a corresponding cache store class under the ActiveSupport::Cache namespace will be created. For example: ActiveSupport::Cache.lookup_store(:memory_store) # => returns a new ActiveSupport::Cache::MemoryStore o

first

ary.first â obj or nilary.first(n) â new_ary Instance Public methods Returns the first element, or the first n elements, of the array. If the array is empty, the first form returns nil, and the second form returns an empty array. See also #last for the opposite effect. a = [ "q", "r", "s", "t" ] a.first #=> "q" a.first(2) #=> ["q", "r"]