Sha256: 0523f42cafa72b443f014f7ded7234d83a51626138abd0a159c9266b549cf7d6
Contents?: true
Size: 885 Bytes
Versions: 10
Compression:
Stored size: 885 Bytes
Contents
class Object # :nodoc:all # TODO Remove. # Puts a text in the form: # 12:34:56: text here # def timed_exclaim text exclaim "#{Time.now.strftime("%H:%M:%S")}: #{text}" end # Just puts the given text. # def exclaim text Picky.logger.info text Picky.logger.flush end # Puts a text that informs the user of a missing gem. # def warn_gem_missing gem_name, message warn "#{gem_name} gem missing!\nTo use #{message}, you need to:\n 1. Add the following line to Gemfile:\n gem '#{gem_name}'\n or\n require '#{gem_name}'\n for example at the top of your app.rb file.\n 2. Then, run:\n bundle update\n" end # Indents each line by <tt>amount=2</tt> spaces. # def indented_to_s amount = 2 ary = self.respond_to?(:join) ? self : self.to_s.split("\n") ary.map { |s| "#{" "*amount}#{s}"}.join("\n") end end
Version data entries
10 entries across 10 versions & 1 rubygems