Sha256: 3453792e4642ab6dfb2357fdc92e32c4ea765e58d0bdc50d59c1c8212ec589de
Contents?: true
Size: 565 Bytes
Versions: 15
Compression:
Stored size: 565 Bytes
Contents
# Copyright (c) 2008-2013 Michael Dvorkin and contributors. # # Fat Free CRM is freely distributable under the terms of MIT license. # See MIT-LICENSE file or http://www.opensource.org/licenses/mit-license.php #------------------------------------------------------------------------------ class ActiveSupport::BufferedLogger BRIGHT = "\033[1;37;40m" NORMAL = "\033[0m" def p(*args) info "#{BRIGHT}\n\n" << args.join(" ") << "#{NORMAL}\n\n\n" end def i(*args) info "#{BRIGHT}\n\n" << args.map(&:inspect).join(" ") << "#{NORMAL}\n\n\n" end end
Version data entries
15 entries across 15 versions & 2 rubygems