class Timewizard::Versioner::Android
Represents the Android
implementation of the versioner spec. @author Richard Harrah @since 0.1.0
Constants
- NAMESPACE
- SPACE_REGEX
Private functions (implementation specific)
- VERSION_CODE
- VERSION_NAME
Public Class Methods
new(path_to_file)
click to toggle source
Public functions (inherited from parent)
Calls superclass method
Timewizard::Versioner::Base::new
# File lib/timewizard/versioner/android.rb, line 16 def initialize(path_to_file) super path_to_file @file_contents = '' end
Private Instance Methods
change_build_numbers()
click to toggle source
# File lib/timewizard/versioner/android.rb, line 82 def change_build_numbers if @file_contents.nil? read_file end if @new_build_number.nil? read_build_numbers end manifest = @file_contents.at_xpath('//manifest') manifest[NAMESPACE + ':' + VERSION_CODE] = @new_build_number.to_s end
change_version_numbers()
click to toggle source
# File lib/timewizard/versioner/android.rb, line 94 def change_version_numbers if @file_contents.nil? read_file end if @new_version_number.nil? read_version_numbers end manifest = @file_contents.at_xpath('//manifest') manifest[NAMESPACE + ':' + VERSION_NAME] = @new_version_number.to_s end
find_build_and_version_numbers()
click to toggle source
# File lib/timewizard/versioner/android.rb, line 55 def find_build_and_version_numbers if @file_contents.nil? read_file end manifest = @file_contents.at_xpath('//manifest') manifest_attr_vc = manifest[NAMESPACE + ':' + VERSION_CODE] manifest_attr_vn = manifest[NAMESPACE + ':' + VERSION_NAME] build_num = Timewizard::Utils::Wizardry.only_version manifest_attr_vc version_num = Timewizard::Utils::Wizardry.only_version manifest_attr_vn parsed_build_num = Versionomy.parse(build_num, Versionomy::Format.get('rubygems')) parsed_version_num = Versionomy.parse(version_num, Versionomy::Format.get('rubygems')) @bumped_build_number = parsed_build_num.bump(parsed_build_num.parts.length - 1) @bumped_version_number = parsed_version_num.bump(parsed_version_num.parts.length - 1) obn = parsed_build_num.unparse ovn = parsed_version_num.unparse nbn = parsed_build_num.bump(parsed_build_num.parts.length - 1).unparse nvn = ovn [obn, ovn, nbn, nvn] end
read_file()
click to toggle source
# File lib/timewizard/versioner/android.rb, line 31 def read_file if @file.nil? raise 'file is nil and cannot be read' end @file_contents = Nokogiri.XML('') if File.exist?(@file) @file_contents = File.open(@file, 'r+') { |f| Nokogiri.XML(f) } end @file_contents end
write_file()
click to toggle source
# File lib/timewizard/versioner/android.rb, line 45 def write_file if @file.nil? raise 'file is nil and cannot be written' end if @file_contents.nil? raise 'file_contents is null and cannot be written' end File.open(@file, 'w') { |f| @file_contents.write_xml_to(f) } end