Sha256: c783fbe775b1ea9ecd74abb58e1bcb52b037a26af59af69dc33a147ef5ca4de0
Contents?: true
Size: 1.39 KB
Versions: 6
Compression:
Stored size: 1.39 KB
Contents
require 'shhh/data' require 'active_support/inflector' module Shhh # The {Shhh::App} Module is responsible for handing user input and executing commands. # Central class in this module is the {Shhh::App::CLI} class. # # Methods in this module are responsible for reporting errors and # maintaining the future exit code class-global variable. # # It also contains several helpers that enable some additional functionality # on Mac OS-X (such as using KeyChain for storing encryption keys). # module App class << self attr_accessor :exit_code end self.exit_code = 0 def self.out STDERR end def self.error( config: {}, exception: nil, type: nil, details: nil, reason: nil, comments: nil) self.out.puts([\ "#{(type || exception.class.name).titleize}:".red.bold.underlined + (sprintf ' %s', details || exception.message).red.italic, (reason ? "\n#{reason.blue.bold.italic}" : nil), (comments ? "\n\n#{comments}" : nil)].compact.join("\n")) self.out.puts "\n" + exception.backtrace.join("\n").bold.red if exception && config && config[:trace] self.exit_code = 1 end def self.is_osx? Gem::Platform.local.os.eql?('darwin') end def self.this_os Gem::Platform.local.os end end end Shhh.dir_r 'shhh/app'
Version data entries
6 entries across 6 versions & 1 rubygems
Version | Path |
---|---|
shhh-1.6.5 | lib/shhh/app.rb |
shhh-1.6.4 | lib/shhh/app.rb |
shhh-1.6.3 | lib/shhh/app.rb |
shhh-1.6.2 | lib/shhh/app.rb |
shhh-1.6.1 | lib/shhh/app.rb |
shhh-1.5.4 | lib/shhh/app.rb |