Sha256: aedceafab2539e21d1a8548d0665420952bfac4924a1c02064294a8aeff8263b
Contents?: true
Size: 419 Bytes
Versions: 112
Compression:
Stored size: 419 Bytes
Contents
module Compass::Exec class CommandOptionParser attr_accessor :options, :arguments, :opts def initialize(arguments) self.arguments = arguments self.options = {} end def parse! opts.parse!(arguments) end def opts OptionParser.new do |opts| self.set_options(opts) end end def set_options(opts) end def to_s opts.to_s end end end
Version data entries
112 entries across 110 versions & 8 rubygems