#!/usr/bin/env ruby require "thor" class BaleenCommand < Thor desc "cucumber", "Running cucumber features" option :image, :required => true option :work_dir, :default => "./" option :files, :default => "features" option :before_command, :default => nil def cucumber puts options[:image] end end BaleenCommand.start