Module: Xcode::Configuration::StringProperty

Extended by:
StringProperty
Included in:
StringProperty
Defined in:
lib/xcode/configurations/string_property.rb

Overview

Within the a build settings for a configuration there are a number of settings that are stored simply as strings. This helper module is for the most part a pass-through method to provide parity with the other methods.

Instance Method Summary collapse

Instance Method Details

#append(original, value) ⇒ Object



22
23
24
# File 'lib/xcode/configurations/string_property.rb', line 22

def append(original,value)
  open(original) + value.to_s
end

#open(value) ⇒ Object



14
15
16
# File 'lib/xcode/configurations/string_property.rb', line 14

def open(value)
  value.to_s
end

#save(value) ⇒ Object



18
19
20
# File 'lib/xcode/configurations/string_property.rb', line 18

def save(value)
  value.to_s
end