#!/usr/bin/env ruby lib = File.expand_path(File.dirname(__FILE__) + '/../lib') $LOAD_PATH.unshift(lib) if File.directory?(lib) && !$LOAD_PATH.include?(lib) require 'thor' require 'thor/group' require 'pathname' require 'restspec/runners/installer' class RestspecCLI < Thor register(RestspecInstaller, 'install', 'install [your tests]', 'Type foo install for more help.') end RestspecCLI.start(ARGV)