class BitGirder::Core::DefaultObjectPathFormatter

Subclasses can override methods to customize as desired

Public Instance Methods

format_key( str, key ) click to toggle source
# File lib/bitgirder/core.rb, line 1311
def format_key( str, key )
    str << key.to_s
end
format_list_index( str, indx ) click to toggle source
# File lib/bitgirder/core.rb, line 1316
def format_list_index( str, indx )
    str << "[ #{indx} ]"
end
format_path_start( str ) click to toggle source
# File lib/bitgirder/core.rb, line 1303
def format_path_start( str ); end
format_separator( str ) click to toggle source
# File lib/bitgirder/core.rb, line 1306
def format_separator( str )
    str << "."
end