Class: RedshiftSanitizer::Configuration
- Inherits:
-
Object
- Object
- RedshiftSanitizer::Configuration
- Defined in:
- lib/redshift_sanitizer/configuration.rb
Instance Attribute Summary collapse
-
#delimeter ⇒ Object
Returns the value of attribute delimeter.
-
#eof ⇒ Object
Returns the value of attribute eof.
-
#replace ⇒ Object
Returns the value of attribute replace.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
Returns a new instance of Configuration.
5 6 7 8 9 |
# File 'lib/redshift_sanitizer/configuration.rb', line 5 def initialize @delimeter = "^" @replace = "" @eof = "\n" end |
Instance Attribute Details
#delimeter ⇒ Object
Returns the value of attribute delimeter.
3 4 5 |
# File 'lib/redshift_sanitizer/configuration.rb', line 3 def delimeter @delimeter end |
#eof ⇒ Object
Returns the value of attribute eof.
3 4 5 |
# File 'lib/redshift_sanitizer/configuration.rb', line 3 def eof @eof end |
#replace ⇒ Object
Returns the value of attribute replace.
3 4 5 |
# File 'lib/redshift_sanitizer/configuration.rb', line 3 def replace @replace end |