mirror of
				https://github.com/KevinMidboe/linguist.git
				synced 2025-10-29 17:50:22 +00:00 
			
		
		
		
	https://github.com/shoes/shoes4/blob/master/shoes-swt/bin/shoes-swt https://github.com/txus/rexpl/blob/master/bin/rexpl
		
			
				
	
	
		
			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
 |