Sha256: 540eb70b2e13684b293b205260339e59e312ad38612ae60007b518fbe9413966
Contents?: true
Size: 582 Bytes
Versions: 13
Compression:
Stored size: 582 Bytes
Contents
# frozen_string_literal: true # 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
13 entries across 13 versions & 1 rubygems