Class: Raykit::Parser

Inherits:
Object
  • Object
show all
Defined in:
lib/raykit/console.rb

Overview

Parses the command line arguments for the Raykit console application

Class Method Summary collapse

Class Method Details

.parse(options) ⇒ Object



236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
# File 'lib/raykit/console.rb', line 236

def self.parse(options)
    hash=Hash.new
    opt_parser = OptionParser.new do |opts|
        opts.banner = "Usage: raykit [options]"
        opts.on('-l','--list [PATTERN]','list remotes') do |pattern|
            hash[:verb]="list"
            hash[:pattern]=pattern
            return hash
        end

        opts.on('-i','--import','import remotes') do |import|
            hash[:verb]="import"
            return hash
        end

        opts.on('-r','--rake [PATTERN]','rake [PATTERN]') do |pattern|
            hash[:verb]="rake"
            if(pattern.nil?)
                hash[:pattern] = ''
            else
                hash[:pattern]=pattern
            end
            return hash
        end

        opts.on('-w','--work [PATTERN]','work [PATTERN]') do |pattern|
            hash[:verb]="work"
            if(pattern.nil?)
                hash[:pattern] = ''
            else
                hash[:pattern]=pattern
            end
            return hash
        end

        opts.on('-h','--help','help') do
            puts opts
            exit
        end
    end

    opt_parser.parse!(options)
    hash
end