Class: Options

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeOptions

Returns a new instance of Options.



4
5
6
7
8
# File 'lib/options.rb', line 4

def initialize
  @user_prompt = nil
  @system_prompt = nil
  @credentials = nil
end

Instance Attribute Details

#credentialsObject

Returns the value of attribute credentials.



2
3
4
# File 'lib/options.rb', line 2

def credentials
  @credentials
end

#system_promptObject

Returns the value of attribute system_prompt.



2
3
4
# File 'lib/options.rb', line 2

def system_prompt
  @system_prompt
end

#user_promptObject

Returns the value of attribute user_prompt.



2
3
4
# File 'lib/options.rb', line 2

def user_prompt
  @user_prompt
end