Class: Brickwall::Configuration
- Inherits:
-
Object
- Object
- Brickwall::Configuration
- Defined in:
- lib/brickwall.rb
Instance Attribute Summary collapse
-
#application_domain ⇒ Object
Returns the value of attribute application_domain.
-
#brick_private_key ⇒ Object
Returns the value of attribute brick_private_key.
-
#brick_public_key ⇒ Object
Returns the value of attribute brick_public_key.
-
#widget_project_key ⇒ Object
Returns the value of attribute widget_project_key.
-
#widget_secret_key ⇒ Object
Returns the value of attribute widget_secret_key.
Instance Method Summary collapse
Instance Attribute Details
#application_domain ⇒ Object
Returns the value of attribute application_domain.
22 23 24 |
# File 'lib/brickwall.rb', line 22 def application_domain @application_domain end |
#brick_private_key ⇒ Object
Returns the value of attribute brick_private_key.
22 23 24 |
# File 'lib/brickwall.rb', line 22 def brick_private_key @brick_private_key end |
#brick_public_key ⇒ Object
Returns the value of attribute brick_public_key.
22 23 24 |
# File 'lib/brickwall.rb', line 22 def brick_public_key @brick_public_key end |
#widget_project_key ⇒ Object
Returns the value of attribute widget_project_key.
22 23 24 |
# File 'lib/brickwall.rb', line 22 def end |
#widget_secret_key ⇒ Object
Returns the value of attribute widget_secret_key.
22 23 24 |
# File 'lib/brickwall.rb', line 22 def end |
Instance Method Details
#configured? ⇒ Boolean
26 27 28 29 30 31 |
# File 'lib/brickwall.rb', line 26 def configured? present?(brick_public_key) && present?(brick_private_key) && present?() && present?() end |