Sha256: 194ba5744f035c09982d5e5451e7ccd142dfe642d090d47a3e9286e6ccb3e9fe

Contents?: true

Size: 251 Bytes

Versions: 7

Compression:

Stored size: 251 Bytes

Contents

#!/usr/bin/env ruby

# Trap ^C
Signal.trap("INT") {
  puts "\nCtrl-C detected. Exiting..."
  sleep 1
  exit
}

$:.unshift(File.expand_path("../../lib", __FILE__))
require "USER_PROVIDED_NAME"
require "thor_template/cli"

ThorTemplate::CLI.start(ARGV)

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
thor_template-2.2.1 lib/starter_project/exe/thor_template
thor_template-2.2.0 lib/starter_project/exe/thor_template
thor_template-2.1.1 lib/starter_project/exe/thor_template
thor_template-2.1.0 lib/starter_project/exe/thor_template
thor_template-2.0.2 lib/starter_project/bin/thor_template
thor_template-2.0.1 lib/starter_project/bin/thor_template
thor_template-2.0.0 lib/starter_project/bin/thor_template