Class: Gherkin::Formatter::Hashable
- Inherits:
-
Object
- Object
- Gherkin::Formatter::Hashable
- Defined in:
- lib/gherkin/formatter/hashable.rb
Direct Known Subclasses
Argument, Model::BasicStatement, Model::Comment, Model::DocString, Model::Match, Model::Result, Model::Row, Model::Tag
Instance Method Summary collapse
Instance Method Details
#to_hash ⇒ Object
4 5 6 7 8 9 10 11 12 13 14 15 16 |
# File 'lib/gherkin/formatter/hashable.rb', line 4 def to_hash instance_variables.inject({}) do |hash, ivar| value = instance_variable_get(ivar) value = value.to_hash if value.respond_to?(:to_hash) if Array === value value = value.map do |e| e.respond_to?(:to_hash) ? e.to_hash : e end end hash[ivar[1..-1]] = value unless [[], nil].index(value) hash end end |