Class: Blush::Configuration

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

Overview

Class to store configuration for Blush

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfiguration

Returns a new instance of Configuration.



8
9
10
11
# File 'lib/blush/configuration.rb', line 8

def initialize
  @accessor_name = :presenter
  @helper_name = :present
end

Instance Attribute Details

#accessor_nameObject

Returns the value of attribute accessor_name.



6
7
8
# File 'lib/blush/configuration.rb', line 6

def accessor_name
  @accessor_name
end

#helper_nameObject

Returns the value of attribute helper_name.



6
7
8
# File 'lib/blush/configuration.rb', line 6

def helper_name
  @helper_name
end