Class: GemBootstrap::RakeHelper Private
- Inherits:
-
Object
- Object
- GemBootstrap::RakeHelper
- Defined in:
- lib/gem-bootstrap/rake_helper.rb
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Instance Attribute Summary collapse
- #output ⇒ IO readonly private
Instance Method Summary collapse
-
#initialize(output: $stdout) ⇒ RakeHelper
constructor
private
A new instance of RakeHelper.
- #test ⇒ Object private
Constructor Details
#initialize(output: $stdout) ⇒ RakeHelper
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns a new instance of RakeHelper.
8 9 10 |
# File 'lib/gem-bootstrap/rake_helper.rb', line 8 def initialize(output: $stdout) @output = output end |
Instance Attribute Details
#output ⇒ IO (readonly)
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
13 14 15 |
# File 'lib/gem-bootstrap/rake_helper.rb', line 13 def output @output end |
Instance Method Details
#test ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
15 16 17 |
# File 'lib/gem-bootstrap/rake_helper.rb', line 15 def test sh('rake test') end |