Sha256: 595be3daeccdac3c8a812e0606a9229161f2336008b7c4dcdb78bc27f621700c

Contents?: true

Size: 377 Bytes

Versions: 5

Compression:

Stored size: 377 Bytes

Contents

#!/usr/bin/env ruby
require 'slop'
opts = Slop.parse! :help => true do
  banner "Usage: earthquake [options] [directory]"
  on :d, :debug, 'Enable debug mode'
end
options = opts.to_hash(true)
options.delete(:help)
options[:dir] = ARGV.shift unless ARGV.empty?

$:.unshift(File.expand_path('../../lib', __FILE__)) if $0 == __FILE__
require 'earthquake'
Earthquake.start(options)

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
earthquake-0.6.1 bin/earthquake
earthquake-0.6.0 bin/earthquake
earthquake-0.5.9 bin/earthquake
earthquake-0.5.8 bin/earthquake
earthquake-0.5.7 bin/earthquake