Sha256: 74d604e673f8c9e213bfd9b6b126b7a4c7b165c686f3e4c24e1c236cc461a4e6

Contents?: true

Size: 908 Bytes

Versions: 4

Compression:

Stored size: 908 Bytes

Contents

#!/usr/bin/env ruby
# encoding: utf-8

if RUBY_VERSION < "1.9.1"
  abort "Ace requires Ruby 1.9."
end

base   = File.symlink?(__FILE__) ? File.readlink(__FILE__) : __FILE__
libdir = File.expand_path(File.join(File.dirname(base), "..", "lib"))

# because of system installation, there is bin/../lib, but not bin/../lib/ace
if File.directory?(File.join(libdir, "ace"))
  $:.unshift(libdir) unless $:.include?(libdir)
end

begin
  require "simple-templater"
rescue LoadError
  abort "You have to install simple-templater first!"
end

begin
  templater = SimpleTemplater.new(:ace)
  generator = templater.find(:project)
  generator.run(ARGV)
rescue SimpleTemplater::TargetAlreadyExist => exception
  abort exception.message
rescue Interrupt
  exit
rescue Exception => exception
  abort "Exception #{exception.inspect} occured during running generator #{generator.inspect}\n#{exception.backtrace.join("\n")}"
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
ace-0.3.2 bin/ace-gen
ace-0.3.1 bin/ace-gen
ace-0.3 bin/ace-gen
ace-0.1 bin/ace-gen