class CukeSalad::CLI

Public Class Methods

configure_existing_project(project=nil) click to toggle source
# File lib/cukesalad/cli.rb, line 10
def self.configure_existing_project project=nil
  `cd #{project}` if project
  structure = Structure.new
  structure.setup_cucumber_with_cukesalad
end
create_new_project(project) click to toggle source
# File lib/cukesalad/cli.rb, line 5
def self.create_new_project project
  structure = Structure.new
  structure.setup project
end