mirror of https://github.com/docusealco/docuseal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
445 B
19 lines
445 B
#!/usr/bin/env ruby
|
|
# frozen_string_literal: true
|
|
|
|
require 'pathname'
|
|
ROOT_DIR = Pathname.new(__FILE__).dirname.parent
|
|
Kernel::load ROOT_DIR.join('lib/rouge.rb')
|
|
Kernel::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
|