Sha256: 6abc33cb8ddcc1e3c3949e58889da42b91f76e280bab687cd7337629ee48803f

Contents?: true

Size: 601 Bytes

Versions: 9

Compression:

Stored size: 601 Bytes

Contents

#!/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/install/install_runner'
require 'restspec/runners/docs/docs_runner'

class RestspecCLI < Thor
  register(Restspec::Install::InstallRunner, 'install', 'install [your_test_folder]', 'Type restspec install for more help.')
  register(Restspec::Docs::DocsRunner, 'docs', 'docs [your_docs_location]', 'Type restspec docs for more help.')
end

RestspecCLI.start(ARGV)

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
restspec-0.3.2 bin/restspec
restspec-0.3.1 bin/restspec
restspec-0.3.0 bin/restspec
restspec-0.2.6 bin/restspec
restspec-0.2.5 bin/restspec
restspec-0.2.4 bin/restspec
restspec-0.2.3 bin/restspec
restspec-0.2.2 bin/restspec
restspec-0.2.1 bin/restspec