Sha256: 7bf43c1ee9110f6bd5354bbea65ad4f629997855ec7d86b91e5b40de14e5cd3d
Contents?: true
Size: 530 Bytes
Versions: 8
Compression:
Stored size: 530 Bytes
Contents
#!/usr/bin/env ruby # # Created by Michael Jansen on 2009-8-31. # Copyright (c) 2009. All rights reserved. require 'pathname' require 'rubygems' # libs relative to the link target if File.symlink?(__FILE__) root_directory = File.dirname(File.readlink(__FILE__)) else root_directory = File.dirname(__FILE__) end root_directory = Pathname.new( root_directory ).join( '..' ) require File.expand_path( root_directory + "lib/build-tool") require 'build-tool/application' exit BuildTool.main( $0, ARGV, root_directory );
Version data entries
8 entries across 8 versions & 1 rubygems