Class: AllGem::CLI::Options

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeOptions

Returns a new instance of Options.



18
19
20
21
22
# File 'lib/all-gem/cli.rb', line 18

def initialize
  @remote = false
  @since = nil
  @level = :all
end

Instance Attribute Details

#levelObject

Returns the value of attribute level.



16
17
18
# File 'lib/all-gem/cli.rb', line 16

def level
  @level
end

#remoteObject

Returns the value of attribute remote.



16
17
18
# File 'lib/all-gem/cli.rb', line 16

def remote
  @remote
end

#sinceObject

Returns the value of attribute since.



16
17
18
# File 'lib/all-gem/cli.rb', line 16

def since
  @since
end