Module: BrewLib

Defined in:
lib/brew_lib.rb,
lib/brew_lib/version.rb

Defined Under Namespace

Classes: CLI, Error

Constant Summary collapse

VERSION =
"0.1.8"

Class Method Summary collapse

Class Method Details

.post_buildObject



27
28
29
30
# File 'lib/brew_lib.rb', line 27

def self.post_build
  # noinspection RubyNilAnalysis
  puts "Running #{__method__} => #{BrewLib.name.underscore} (#{BrewLib::VERSION})"
end

.post_installObject



37
38
39
40
# File 'lib/brew_lib.rb', line 37

def self.post_install
  # noinspection RubyNilAnalysis
  puts "Running #{__method__} => #{BrewLib.name.underscore} (#{BrewLib::VERSION})"
end

.post_resetObject



32
33
34
35
# File 'lib/brew_lib.rb', line 32

def self.post_reset
  # noinspection RubyNilAnalysis
  puts "Running #{__method__} => #{BrewLib.name.underscore} (#{BrewLib::VERSION})"
end

.post_uninstallObject



42
43
44
45
# File 'lib/brew_lib.rb', line 42

def self.post_uninstall
  # noinspection RubyNilAnalysis
  puts "Running #{__method__} => #{BrewLib.name.underscore} (#{BrewLib::VERSION})"
end

.pre_installObject



12
13
14
15
# File 'lib/brew_lib.rb', line 12

def self.pre_install
  # noinspection RubyNilAnalysis
  puts "Running #{__method__} => #{BrewLib.name.underscore} (#{BrewLib::VERSION})"
end

.pre_resetObject



17
18
19
20
# File 'lib/brew_lib.rb', line 17

def self.pre_reset
  # noinspection RubyNilAnalysis
  puts "Running #{__method__} => #{BrewLib.name.underscore} (#{BrewLib::VERSION})"
end

.pre_uninstallObject



22
23
24
25
# File 'lib/brew_lib.rb', line 22

def self.pre_uninstall
  # noinspection RubyNilAnalysis
  puts "Running #{__method__} => #{BrewLib.name.underscore} (#{BrewLib::VERSION})"
end