Class: MountableFileServer::Configuration
- Inherits:
-
Object
- Object
- MountableFileServer::Configuration
- Defined in:
- lib/mountable_file_server/configuration.rb
Instance Attribute Summary collapse
-
#mounted_at ⇒ Object
Returns the value of attribute mounted_at.
-
#stored_at ⇒ Object
Returns the value of attribute stored_at.
Instance Method Summary collapse
-
#initialize(mounted_at = '', stored_at = '') ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize(mounted_at = '', stored_at = '') ⇒ Configuration
Returns a new instance of Configuration.
5 6 7 8 |
# File 'lib/mountable_file_server/configuration.rb', line 5 def initialize(mounted_at = '', stored_at = '') @mounted_at = mounted_at @stored_at = stored_at end |
Instance Attribute Details
#mounted_at ⇒ Object
Returns the value of attribute mounted_at.
3 4 5 |
# File 'lib/mountable_file_server/configuration.rb', line 3 def mounted_at @mounted_at end |
#stored_at ⇒ Object
Returns the value of attribute stored_at.
3 4 5 |
# File 'lib/mountable_file_server/configuration.rb', line 3 def stored_at @stored_at end |