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.



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

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

Instance Attribute Details

#levelObject

Returns the value of attribute level.



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

def level
  @level
end

#remoteObject

Returns the value of attribute remote.



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

def remote
  @remote
end

#sinceObject

Returns the value of attribute since.



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

def since
  @since
end