Class: Hash

Inherits:
Object show all
Defined in:
lib/sdbcli/sdb-runner.rb

Instance Method Summary collapse

Instance Method Details

#inlineObject



132
133
134
135
136
# File 'lib/sdbcli/sdb-runner.rb', line 132

def inline
  obj = self.dup
  def obj.to_yaml_style; :inline; end
  return obj
end

#inline!Object



138
139
140
141
142
# File 'lib/sdbcli/sdb-runner.rb', line 138

def inline!
  obj = self
  def obj.to_yaml_style; :inline; end
  return obj
end