Module: BrewLib
- Defined in:
- lib/brew_lib.rb,
lib/brew_lib/version.rb
Defined Under Namespace
Constant Summary collapse
- VERSION =
"0.1.8"
Class Method Summary collapse
- .post_build ⇒ Object
- .post_install ⇒ Object
- .post_reset ⇒ Object
- .post_uninstall ⇒ Object
- .pre_install ⇒ Object
- .pre_reset ⇒ Object
- .pre_uninstall ⇒ Object
Class Method Details
.post_build ⇒ Object
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_install ⇒ Object
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_reset ⇒ Object
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_uninstall ⇒ Object
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_install ⇒ Object
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 |