Sha256: 60ece2a97442af1257133a9359114a415eb5398c5a6d0b70efb2944e2b27a3fb
Contents?: true
Size: 611 Bytes
Versions: 3
Compression:
Stored size: 611 Bytes
Contents
#!/usr/bin/env ruby # -*- coding:utf-8 -*- require 'rubygems' require File.dirname(__FILE__) + '/../lib/kde-build' require 'kde-build/application' app = BuildTool::Application.instance # Set the root directory. Its where we find the config template app.root_directory= Pathname.new( File.dirname(__FILE__) ).join( '..' ).cleanpath # Read the configuration file. The configuration file to load depends on the # scriptname used to invoke us. This makes it possible to have more than one # configuration using symlinks if app.read_configuration( "#{Pathname.new($0).basename}.yaml" ) app.main(ARGV) end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
build-tool-0.0.3 | bin/kde-build.rb |
build-tool-0.0.1 | bin/kde-build.rb |
build-tool-0.0.2 | bin/kde-build.rb |