module LabClient::ClassHelpers

Shared Methods

Public Instance Methods

has?(key) click to toggle source
# File lib/labclient/class_helpers.rb, line 9
def has?(key)
  @table.key?(key) && !@table[key].blank?
end
keys() click to toggle source
# File lib/labclient/class_helpers.rb, line 5
def keys
  to_h.keys.sort
end
raw() click to toggle source
# File lib/labclient/class_helpers.rb, line 13
def raw
  to_h
end