Class: KeepUp::Application
- Inherits:
-
Object
- Object
- KeepUp::Application
- Defined in:
- lib/keep_up/application.rb
Overview
Main application
Instance Attribute Summary collapse
-
#skip ⇒ Object
readonly
Returns the value of attribute skip.
Instance Method Summary collapse
-
#initialize(local:, test_command:, skip:) ⇒ Application
constructor
A new instance of Application.
- #run ⇒ Object
Constructor Details
#initialize(local:, test_command:, skip:) ⇒ Application
Returns a new instance of Application.
19 20 21 22 23 |
# File 'lib/keep_up/application.rb', line 19 def initialize(local:, test_command:, skip:) @test_command = test_command @local = local @skip = skip end |
Instance Attribute Details
#skip ⇒ Object (readonly)
Returns the value of attribute skip.
17 18 19 |
# File 'lib/keep_up/application.rb', line 17 def skip @skip end |
Instance Method Details
#run ⇒ Object
25 26 27 28 |
# File 'lib/keep_up/application.rb', line 25 def run update_all_dependencies report_up_to_date end |