Sha256: bc8fa42bc9a80bd0f3efb7744ccc0045600267dd8918e1e55c4a221a6084b37a
Contents?: true
Size: 405 Bytes
Versions: 95
Compression:
Stored size: 405 Bytes
Contents
#!/usr/bin/env ruby # encoding: UTF-8 # # runner.rb -- # # Run shell scripts from a gem. # Symlink to this script to run a script with the same name living in # libexec/. # require 'pathname' require 'rubygems' require 'git-whistles' target_script = Pathname.new($0).basename script_path = Git::Whistles::GEMDIR.join('libexec', "#{target_script}.sh").cleanpath.to_s Kernel.exec script_path, *ARGV
Version data entries
95 entries across 21 versions & 1 rubygems