Class: Brew::Gem::CLI::Arguments

Inherits:
Object
  • Object
show all
Defined in:
lib/brew/gem/cli.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(args) ⇒ Arguments

Returns a new instance of Arguments.



25
26
27
28
29
# File 'lib/brew/gem/cli.rb', line 25

def initialize(args)
  @ruby_flag          = args.select {|a| RUBY_FLAGS.include?(a) }.last
  @args               = args.reject {|a| RUBY_FLAGS.include?(a) }
  @args_without_flags = @args.reject {|a| a.start_with?('-') }
end

Instance Attribute Details

#ruby_flagObject (readonly)

Returns the value of attribute ruby_flag.



23
24
25
# File 'lib/brew/gem/cli.rb', line 23

def ruby_flag
  @ruby_flag
end

Instance Method Details

#commandObject



31
32
33
# File 'lib/brew/gem/cli.rb', line 31

def command
  @args_without_flags[0]
end

#gemObject



35
36
37
# File 'lib/brew/gem/cli.rb', line 35

def gem
  @args_without_flags[1]
end

#supplied_versionObject



39
40
41
# File 'lib/brew/gem/cli.rb', line 39

def supplied_version
  @args_without_flags[2]
end

#to_argsObject



43
44
45
# File 'lib/brew/gem/cli.rb', line 43

def to_args
  @args.reject {|a| a == gem || a == supplied_version }
end