Module: BrewLib
- Defined in:
- lib/brew_lib.rb,
lib/brew_lib/version.rb
Overview
BrewLib
Defined Under Namespace
Constant Summary collapse
- NAME =
Pathname.new(__FILE__).basename.sub_ext("").to_s
- VERSION =
"0.1.20"
Class Method Summary collapse
- .post_build ⇒ Object
- .post_install ⇒ Object
- .post_uninstall ⇒ Object
- .pre_install ⇒ Object
- .pre_uninstall ⇒ Object
Class Method Details
.post_build ⇒ Object
24 25 26 27 |
# File 'lib/brew_lib.rb', line 24 def self.post_build # noinspection RubyNilAnalysis puts "Running #{__method__} => #{NAME} (#{BrewLib::VERSION})" end |
.post_install ⇒ Object
29 30 31 32 |
# File 'lib/brew_lib.rb', line 29 def self.post_install # noinspection RubyNilAnalysis puts "Running #{__method__} => #{NAME} (#{BrewLib::VERSION})" end |
.post_uninstall ⇒ Object
34 35 36 37 |
# File 'lib/brew_lib.rb', line 34 def self.post_uninstall # noinspection RubyNilAnalysis puts "Running #{__method__} => #{NAME} (#{BrewLib::VERSION})" end |