module Kojo

Constants

VERSION

Public Class Methods

interactive=(value) click to toggle source
# File lib/kojo.rb, line 24
def interactive=(value)
  @interactive = value
end
interactive?() click to toggle source
# File lib/kojo.rb, line 19
def interactive?
  return @interactive unless @interactive.nil?
  @interactive = ENV['KOJO_INTERACTIVE'] == 'yes'
end