Sha256: 69c6ed2332284ef83516a47aa28edd1803836d680e9e96d13698c42a34b8dc91

Contents?: true

Size: 481 Bytes

Versions: 1

Compression:

Stored size: 481 Bytes

Contents

#!/usr/bin/env ruby

require 'harker/gemify'

begin
  gem 'hoe'
rescue LoadError
  abort 'Hoe not found. You can continue without hoe if you gemify
your app yourself; see Harker documentation for details.' # TODO: document!
end

if ARGV.include?('-h') or ARGV.include?('--help') or ARGV.size > 1
  puts "Usage: #{File.dirname($0)} [RAILS_ROOT]"
  puts
  puts "Attempts to turn your Rails app into a gem for deployment with harker."
  exit
end

Harker.gemify(ARGV.shift || Dir.pwd)

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
technomancy-harker-0.0.3 bin/harker