class Cucumber::Messages::PickleTableCell
Attributes
Public Class Methods
Source
# File lib/cucumber/messages.deserializers.rb, line 715 def self.from_h(hash) return nil if hash.nil? self.new( value: hash[:value], ) end
Returns a new PickleTableCell
from the given hash. If the hash keys are camelCased, they are properly assigned to the corresponding snake_cased attributes.
Cucumber::Messages::PickleTableCell.from_h(some_hash) # => #<Cucumber::Messages::PickleTableCell:0x... ...>
Source
# File lib/cucumber/messages.dtos.rb, line 1242 def initialize( value: '' ) @value = value end