class Gitrob::CLI::Commands::Banner

Public Class Methods

new(options) click to toggle source
# File lib/gitrob/cli/commands/banner.rb, line 5
def initialize(options)
  @options = options
  output banner if options[:banner]
  info "Starting Gitrob version #{Gitrob::VERSION} " \
  "at #{Time.now.strftime('%Y-%m-%d %H:%M %Z')}"
  debug "Debugging mode enabled"
end

Private Instance Methods

banner() click to toggle source