summaryrefslogtreecommitdiff
path: root/bin/smashing
diff options
context:
space:
mode:
authorTyler Mauthe <me@tylermauthe.com>2016-10-23 14:42:17 -0700
committerTyler Mauthe <me@tylermauthe.com>2016-10-23 14:42:17 -0700
commitb1e2589e00197de598215c6504c7714998d3f095 (patch)
treebf8375d5d2b05740fa03a056d78c672c883e9e1f /bin/smashing
parent3d0b97e8feec98bd5f222e325f1c8717ac308832 (diff)
Renamed to Smashing
Diffstat (limited to 'bin/smashing')
-rwxr-xr-xbin/smashing9
1 files changed, 9 insertions, 0 deletions
diff --git a/bin/smashing b/bin/smashing
new file mode 100755
index 0000000..cce9340
--- /dev/null
+++ b/bin/smashing
@@ -0,0 +1,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)