Sha256: d689188ec7cf8d11d1032e8d5f56609c07acfae13714634d2ec9bc6a15cdc97e

Contents?: true

Size: 282 Bytes

Versions: 3

Compression:

Stored size: 282 Bytes

Contents

#!/usr/bin/env ruby

ROOT = File.expand_path('..', File.dirname(__FILE__))
$:.unshift "#{ROOT}/lib"
require 'respec'
require 'shellwords'

app = Respec::App.new(*ARGV)
if app.help_only?
  STDERR.puts app.help
else
  STDERR.puts "++ #{app.command.shelljoin}"
  exec *app.command
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
respec-0.8.3 bin/respec
respec-0.8.2 bin/respec
respec-0.8.1 bin/respec