summaryrefslogtreecommitdiff
path: root/bin/dashing
diff options
context:
space:
mode:
authorvarac <varacanero@zeromail.org>2016-08-15 14:14:32 +0200
committervarac <varacanero@zeromail.org>2016-08-15 14:14:32 +0200
commit21a91cbc9681a2f3f4615e7e467febf1c8f4f6e6 (patch)
treeef26732b75858c5fb17925bc861f1ee8b4c43bf2 /bin/dashing
parente56e58562bd1972df8e8d386b30175f6b12430ac (diff)
parented5463dce052852a5ace2d11a0265fff2244e60e (diff)
Merge tag 'v1.3.6' into dashing_io
Diffstat (limited to 'bin/dashing')
-rwxr-xr-xbin/dashing9
1 files changed, 9 insertions, 0 deletions
diff --git a/bin/dashing b/bin/dashing
new file mode 100755
index 0000000..cce9340
--- /dev/null
+++ b/bin/dashing
@@ -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)