Class: Hash

Inherits:
Object show all
Defined in:
lib/robot-army/marshal_ext.rb

Instance Method Summary collapse

Instance Method Details

#marshalable?Boolean

Returns:

  • (Boolean)


46
47
48
49
50
51
# File 'lib/robot-army/marshal_ext.rb', line 46

def marshalable?
  super &&
  keys.marshalable? &&
  values.marshalable? &&
  default.marshalable?
end