class CwTestGen::CLI
Public Instance Methods
project(name)
click to toggle source
# File lib/cwtestgen/cli.rb, line 11 def project(name) with_page_templates = options[:with_page_templates] ? 'true' : 'false' with_lib_symlink = options[:with_lib_symlink] ? 'true' : 'false' CwTestGen::Generators::Project.start([name, with_page_templates, with_lib_symlink]) end