Class: GoNative::Plugins::IOS::Helpers::BuildSettingUpdater
- Inherits:
-
Object
- Object
- GoNative::Plugins::IOS::Helpers::BuildSettingUpdater
- Extended by:
- DSL::Serviceable
- Defined in:
- lib/gonative/plugins/ios/helpers/build_setting_updater.rb
Instance Attribute Summary collapse
-
#build_setting_key ⇒ Object
readonly
Returns the value of attribute build_setting_key.
-
#value ⇒ Object
readonly
Returns the value of attribute value.
Instance Method Summary collapse
- #call ⇒ Object
-
#initialize(value, build_setting_key) ⇒ BuildSettingUpdater
constructor
A new instance of BuildSettingUpdater.
Constructor Details
#initialize(value, build_setting_key) ⇒ BuildSettingUpdater
Returns a new instance of BuildSettingUpdater.
14 15 16 17 |
# File 'lib/gonative/plugins/ios/helpers/build_setting_updater.rb', line 14 def initialize(value, build_setting_key) @value = value @build_setting_key = build_setting_key end |
Instance Attribute Details
#build_setting_key ⇒ Object (readonly)
Returns the value of attribute build_setting_key.
12 13 14 |
# File 'lib/gonative/plugins/ios/helpers/build_setting_updater.rb', line 12 def build_setting_key @build_setting_key end |
#value ⇒ Object (readonly)
Returns the value of attribute value.
12 13 14 |
# File 'lib/gonative/plugins/ios/helpers/build_setting_updater.rb', line 12 def value @value end |
Instance Method Details
#call ⇒ Object
19 20 21 |
# File 'lib/gonative/plugins/ios/helpers/build_setting_updater.rb', line 19 def call update_project end |