Sha256: 02b4b753fa261680f66080efeb3980b4fc4b497289bc43f688813fd961d4d170
Contents?: true
Size: 442 Bytes
Versions: 2
Compression:
Stored size: 442 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
compass-sourcemaps-0.12.3.sourcemaps.a4836f1 | lib/compass/exec/command_option_parser.rb |
compass-sourcemaps-0.12.2.sourcemaps.57a186c | lib/compass/exec/command_option_parser.rb |