Method: XcodeProject::XCBuildConfiguration#change_version
- Defined in:
- lib/xcodeproject/xc_build_configuration.rb
#change_version(value, type = :major) ⇒ Object
52 53 54 55 56 57 58 |
# File 'lib/xcodeproject/xc_build_configuration.rb', line 52 def change_version (value, type = :major) case type when :major ; write_property('CFBundleShortVersionString', value) when :minor ; write_property('CFBundleVersion', value) else raise ArgumentError.new('Wrong argument type, expected :major or :minor.') end end |