class Muck::ConfigDSL::StorageDSL
Public Class Methods
new(hash)
click to toggle source
# File lib/muck/config_dsl/storage_dsl.rb, line 5 def initialize(hash) @hash = hash end
Public Instance Methods
keep(keep)
click to toggle source
# File lib/muck/config_dsl/storage_dsl.rb, line 13 def keep(keep) @hash[:keep] = keep end
path(path)
click to toggle source
# File lib/muck/config_dsl/storage_dsl.rb, line 9 def path(path) @hash[:path] = path end