summaryrefslogtreecommitdiff
path: root/bin/dashing
blob: 97a7af556373e706af2c93c1cc9463247e36d608 (plain)
1
2
3
4
5
6
7
8
#!/usr/bin/env ruby
require "pathname"
bin_file = Pathname.new(__FILE__).realpath
$:.unshift File.expand_path("../../lib", bin_file)

require 'dashing'
Dashing::CLI.source_root(File.expand_path('../../templates', bin_file))
Dashing::CLI.start(ARGV)