Class: NativeGap::Configuration
- Inherits:
-
Object
- Object
- NativeGap::Configuration
- Defined in:
- lib/native_gap/configuration.rb
Instance Attribute Summary collapse
-
#android ⇒ Object
Returns the value of attribute android.
-
#chrome ⇒ Object
Returns the value of attribute chrome.
-
#ios ⇒ Object
Returns the value of attribute ios.
-
#windows ⇒ Object
Returns the value of attribute windows.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
Returns a new instance of Configuration.
19 20 21 22 23 24 |
# File 'lib/native_gap/configuration.rb', line 19 def initialize @android = true @ios = true @windows = true @chrome = true end |
Instance Attribute Details
#android ⇒ Object
Returns the value of attribute android.
14 15 16 |
# File 'lib/native_gap/configuration.rb', line 14 def android @android end |
#chrome ⇒ Object
Returns the value of attribute chrome.
17 18 19 |
# File 'lib/native_gap/configuration.rb', line 17 def chrome @chrome end |
#ios ⇒ Object
Returns the value of attribute ios.
15 16 17 |
# File 'lib/native_gap/configuration.rb', line 15 def ios @ios end |
#windows ⇒ Object
Returns the value of attribute windows.
16 17 18 |
# File 'lib/native_gap/configuration.rb', line 16 def windows @windows end |