Sha256: 6b329f6eb272daaf884756a2cc2cd145cfc076f89b80a81108ca526240b9cc30

Contents?: true

Size: 336 Bytes

Versions: 4

Compression:

Stored size: 336 Bytes

Contents

#!/usr/bin/env ruby

$:.unshift File.join(File.dirname(__FILE__), "..", "lib")

require "nake"

# First argument has to be path to file with your tasks
load ARGV.first

# Parse arguments and run tasks
begin
  Nake.run(ARGV[1..-1])
rescue TaskNotFound, ConfigurationError => exception
  abort "[#{"ERROR".red}] #{exception.message}"
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
nake-0.0.3 bin/nake
nake-0.0.3.pre bin/nake
nake-0.0.2 bin/nake
nake-0.0.2.pre bin/nake