Class: Phare::CLI
- Inherits:
-
Object
- Object
- Phare::CLI
- Defined in:
- lib/phare/cli.rb
Instance Attribute Summary collapse
-
#suite ⇒ Object
readonly
Returns the value of attribute suite.
Instance Method Summary collapse
-
#initialize(env, argv) ⇒ CLI
constructor
A new instance of CLI.
- #run ⇒ Object
Constructor Details
#initialize(env, argv) ⇒ CLI
Returns a new instance of CLI.
6 7 8 9 10 11 |
# File 'lib/phare/cli.rb', line 6 def initialize(env, argv) @env = env @options = (argv) @suite = Phare::CheckSuite.new(@options) end |
Instance Attribute Details
#suite ⇒ Object (readonly)
Returns the value of attribute suite.
4 5 6 |
# File 'lib/phare/cli.rb', line 4 def suite @suite end |