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

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