Sha256: 3ae235d58bbe1f02345265eabf934db711d08696865247b8a269c0ef23f56210
Contents?: true
Size: 362 Bytes
Versions: 9
Compression:
Stored size: 362 Bytes
Contents
#!/usr/bin/env ruby # frozen_string_literal: true lib_path = File.expand_path('../lib', __dir__) $:.unshift(lib_path) if !$:.include?(lib_path) require 'railsdock/cli' Signal.trap('INT') do warn("\n#{caller.join("\n")}: interrupted") exit(1) end begin Railsdock::CLI.start rescue Railsdock::CLI::Error => err puts "ERROR: #{err.message}" exit 1 end
Version data entries
9 entries across 9 versions & 1 rubygems