Sha256: b65531c05a490ae4827ce3f4cb9df26c6b64c34fa5f06bd4aad9fb5c17203007

Contents?: true

Size: 331 Bytes

Versions: 11

Compression:

Stored size: 331 Bytes

Contents

#!/usr/bin/env ruby
# resolve bin path, ignoring symlinks
require "pathname"
bin_file = Pathname.new(__FILE__).realpath

# add self to libpath
$:.unshift File.expand_path("../../lib", bin_file)

begin
  require 'high_five'
rescue LoadError
  require 'rubygems'
  require 'high_five'
end
require 'high_five/cli'

HighFive::Cli.start

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
high_five-0.1.5 bin/hi5
high_five-0.1.4 bin/hi5
high_five-0.1.3 bin/hi5
high_five-0.1.2 bin/hi5
high_five-0.1.1 bin/hi5
high_five-0.1.0 bin/hi5
high_five-0.0.8 bin/hi5
high_five-0.0.7 bin/hi5
high_five-0.0.6 bin/hi5
high_five-0.0.5 bin/hi5
high_five-0.0.4 bin/hi5