Class: RsrGroup::Configuration
- Inherits:
-
Object
- Object
- RsrGroup::Configuration
- Defined in:
- lib/rsr_group.rb
Instance Attribute Summary collapse
-
#ftp_host ⇒ Object
Returns the value of attribute ftp_host.
-
#response_dir ⇒ Object
Returns the value of attribute response_dir.
-
#submission_dir ⇒ Object
Returns the value of attribute submission_dir.
-
#vendor_email ⇒ Object
Returns the value of attribute vendor_email.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
43 44 45 46 47 48 |
# File 'lib/rsr_group.rb', line 43 def initialize @ftp_host ||= "ftp.rsrgroup.com" @submission_dir ||= File.join("eo", "incoming") @response_dir ||= File.join("eo", "outgoing") @vendor_email ||= nil end |
Instance Attribute Details
#ftp_host ⇒ Object
Returns the value of attribute ftp_host.
38 39 40 |
# File 'lib/rsr_group.rb', line 38 def ftp_host @ftp_host end |
#response_dir ⇒ Object
Returns the value of attribute response_dir.
40 41 42 |
# File 'lib/rsr_group.rb', line 40 def response_dir @response_dir end |
#submission_dir ⇒ Object
Returns the value of attribute submission_dir.
39 40 41 |
# File 'lib/rsr_group.rb', line 39 def submission_dir @submission_dir end |
#vendor_email ⇒ Object
Returns the value of attribute vendor_email.
41 42 43 |
# File 'lib/rsr_group.rb', line 41 def vendor_email @vendor_email end |