class Drydock::RuntimeOptions

Attributes

build_opts[RW]
cache[RW]
includes[RW]
log_level[RW]
read_timeout[RW]

Public Class Methods

new() click to toggle source
# File lib/drydock/runtime_options.rb, line 64
def initialize
  @build_opts   = {}
  @cache        = true
  @includes     = []
  @log_level    = Logger::INFO

  @read_timeout = Excon.defaults[:read_timeout]
  @read_timeout = 120 if @read_timeout < 120
end
parse!(args) click to toggle source
# File lib/drydock/runtime_options.rb, line 9
def self.parse!(args)
  opts = new

  parser = OptionParser.new do |cfg|
    cfg.banner = "Usage: #{$0} [options...] [drydock-filename]"

    cfg.separator ''
    cfg.separator 'Runtime / build options:'

    cfg.on('-b', '--build-opts KEY=VALUE', 'KEY=VALUE build-time options', 'can be specified multiple times') do |kv|
      key, value = kv.split('=', 2)
      opts.build_opts[key.to_s]   = value
      opts.build_opts[key.to_sym] = value
    end

    cfg.on('-C', '--no-cache', 'Disable the build cache') do
      opts.cache = false
    end

    cfg.on('-i', '--include PATH', 'Load custom plugins from PATH') do |path|
      opts.includes << path
    end
    
    cfg.separator ''
    cfg.separator 'General options:'

    cfg.on('-h', '--help', 'Show this help message') do
      puts cfg
      exit
    end

    cfg.on('-q', '--quiet', 'Run silently, except for errors') do |value|
      opts.log_level = Logger::ERROR
    end

    cfg.on('-t SECONDS', '--timeout SECONDS',
        "Set transaction timeout to SECONDS (default = #{opts.read_timeout})") do |value|
      opts.read_timeout = value.to_i || 60
    end

    cfg.on('-v', '--verbose', 'Run verbosely') do |value|
      opts.log_level = Logger::DEBUG
    end

    cfg.on('-V', '--version', 'Show version') do
      puts Drydock.banner
      exit
    end
  end

  parser.parse!(args)
  opts.set!
  opts
end

Public Instance Methods

set!() click to toggle source
# File lib/drydock/runtime_options.rb, line 74
def set!
  Excon.defaults[:read_timeout] = self.read_timeout
end