Sha256: 74c85d51709f0706bd0893d381a46ea6273fd52e84f75afc86bafec05bc06a98
Contents?: true
Size: 402 Bytes
Versions: 1
Compression:
Stored size: 402 Bytes
Contents
#!/usr/bin/env ruby require 'pathname' ROOT_DIR = Pathname.new(__FILE__).dirname.parent load ROOT_DIR.join('lib/rougegal.rb') load ROOT_DIR.join('lib/rouge/cli.rb') Signal.trap('PIPE', 'SYSTEM_DEFAULT') if Signal.list.include? 'PIPE' begin Rouge::CLI.parse(ARGV).run rescue Rouge::CLI::Error => e puts e.message exit e.status rescue Interrupt $stderr.puts "\nrouge: interrupted" exit 2 end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rougegal-2.1.2 | bin/rougify |