Sha256: b6dd5a6dcd0a70a988b36f370130ba9ce10f1692a2fd32dd54128d2bfb0dbc5b

Contents?: true

Size: 430 Bytes

Versions: 2

Compression:

Stored size: 430 Bytes

Contents

module Sandbox
  module Output

    def tell(msg)
      tell_unless_quiet(msg)
    end

    def tell_when_verbose(msg)
      puts msg if Sandbox.verbose?
    end

    def tell_when_really_verbose(msg)
      puts msg if Sandbox.really_verbose?
    end

    def tell_unless_quiet(msg)
      puts msg unless Sandbox.quiet?
    end

    def tell_unless_really_quiet(msg)
      puts msg unless Sandbox.really_quiet?
    end

  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ruby-virtualenv-0.5.1 lib/sandbox/output.rb
ruby-virtualenv-0.5.0 lib/sandbox/output.rb