Sha256: f478607c1da017a58f82e6c975571c3ee5678283374ab03c11a8cb7a17651653
Contents?: true
Size: 832 Bytes
Versions: 31
Compression:
Stored size: 832 Bytes
Contents
class Object # :nodoc:all # 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 puts text 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 on top of your app.rb/application.rb\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
31 entries across 31 versions & 1 rubygems