Class: TestGen::CLI
- Inherits:
-
Thor
- Object
- Thor
- TestGen::CLI
- Defined in:
- lib/testgen/cli.rb
Instance Method Summary collapse
Instance Method Details
#project(name) ⇒ Object
12 13 14 15 16 17 |
# File 'lib/testgen/cli.rb', line 12 def project(name) with_lib = [:with_lib] ? 'true' : 'false' with_mohawk = [:with_mohawk] ? 'true' : 'false' with_appium = [:with_appium] ? 'true' : 'false' TestGen::Generators::Project.start([name, with_lib, with_mohawk, with_appium]) end |