Class: AmazingPrint::Formatters::HashFormatter

Inherits:
BaseFormatter show all
Defined in:
lib/amazing_print/formatters/hash_formatter.rb

Constant Summary

Constants inherited from BaseFormatter

BaseFormatter::DEFAULT_LIMIT_SIZE, BaseFormatter::INDENT_CACHE

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from BaseFormatter

#align, #get_limit_size, #indent, #indentation, #indented, #limited, #method_tuple, #outdent, #should_be_limited?

Methods included from Colorize

#colorize

Constructor Details

#initialize(hash, inspector) ⇒ HashFormatter

Returns a new instance of HashFormatter.



10
11
12
13
14
# File 'lib/amazing_print/formatters/hash_formatter.rb', line 10

def initialize(hash, inspector)
  @hash = hash
  @inspector = inspector
  @options = inspector.options
end

Instance Attribute Details

#hashObject (readonly)

Returns the value of attribute hash.



8
9
10
# File 'lib/amazing_print/formatters/hash_formatter.rb', line 8

def hash
  @hash
end

#inspectorObject (readonly)

Returns the value of attribute inspector.



8
9
10
# File 'lib/amazing_print/formatters/hash_formatter.rb', line 8

def inspector
  @inspector
end

#optionsObject (readonly)

Returns the value of attribute options.



8
9
10
# File 'lib/amazing_print/formatters/hash_formatter.rb', line 8

def options
  @options
end

Instance Method Details

#formatObject



16
17
18
19
20
21
22
23
24
# File 'lib/amazing_print/formatters/hash_formatter.rb', line 16

def format
  if hash.empty?
    empty_hash
  elsif multiline_hash?
    multiline_hash
  else
    simple_hash
  end
end