Sha256: 237f0ab199c9f9a4f2e3ef6c813a06290dfca14e5e6709f483364bcb4fe0a9f3

Contents?: true

Size: 314 Bytes

Versions: 10

Compression:

Stored size: 314 Bytes

Contents

#!/usr/bin/env ruby
#
# hartog/20120131: Heidi, the CI mistress

if %w(-h --h --help -help -? /?).include? ARGV[0]
  $stderr.puts "heidi_web [host] [port] [/path/to/projects_dir]"
  exit 1
end

require 'heidi/web'
args = []
while !ARGV[0].nil? && !ARGV[0].empty?
  args << ARGV.shift
end

Heidi::Web.start(*args)

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
heidi-0.4.0 bin/heidi_web
heidi-0.3.1 bin/heidi_web
heidi-0.3.0 bin/heidi_web
heidi-0.2.1 bin/heidi_web
heidi-0.2.0 bin/heidi_web
heidi-0.1.2 bin/heidi_web
heidi-0.1.1 bin/heidi_web
heidi-0.1.0 bin/heidi_web
heidi-0.0.4 bin/heidi_web
heidi-0.0.3 bin/heidi_web