mirror of
https://github.com/KevinMidboe/linguist.git
synced 2026-05-02 03:28:37 +00:00
12 lines
235 B
Ruby
Executable File
12 lines
235 B
Ruby
Executable File
#!/usr/bin/env jruby
|
|
lib_directory = File.expand_path('../../lib', __FILE__)
|
|
$LOAD_PATH << lib_directory
|
|
|
|
if File.exist?("Gemfile")
|
|
require "bundler/setup"
|
|
Bundler.require
|
|
end
|
|
|
|
require 'shoes/ui/cli'
|
|
Shoes::CLI.new("swt").run ARGV
|