module Ricecream::Config

Public Instance Methods

arg_to_s(arg) click to toggle source
# File lib/ricecream/config.rb, line 35
def arg_to_s(arg)
  arg.inspect
end
colorize=(value) click to toggle source
# File lib/ricecream/config.rb, line 43
def colorize=(value)
  @colorize = value
end
disable() click to toggle source
# File lib/ricecream/config.rb, line 15
def disable
  @enable = false
end
enable() click to toggle source
# File lib/ricecream/config.rb, line 11
def enable
  @enable = true
end
include_context=(value) click to toggle source
# File lib/ricecream/config.rb, line 39
def include_context=(value)
  @include_context = value
end
output(str) click to toggle source
# File lib/ricecream/config.rb, line 27
def output(str)
  @output.puts str
end
output=(value) click to toggle source
# File lib/ricecream/config.rb, line 31
def output=(value)
  @output = value
end
prefix(location) click to toggle source
# File lib/ricecream/config.rb, line 19
def prefix(location)
  @prefix
end
prefix=(value) click to toggle source
# File lib/ricecream/config.rb, line 23
def prefix=(value)
  @prefix = value
end