Sha256: 6e225124723d11a1774e4ab6e9d5d96526d61786903d5c8fed53624c47c8539d
Contents?: true
Size: 1.52 KB
Versions: 2
Compression:
Stored size: 1.52 KB
Contents
module ChocTop class VersionHelper attr_accessor :info_plist_path attr_reader :major, :minor, :patch, :build def initialize(info_plist_path) self.info_plist_path = info_plist_path parse_version if block_given? yield self write end end def info_plist @info_plist ||= OSX::NSDictionary.dictionaryWithContentsOfFile(info_plist_path) || {} end def parse_version # http://rubular.com/regexes/10467 -> 3.5.4.a1 # http://rubular.com/regexes/10468 -> 3.5.4 # regex on nsstring is broken so convert it to a ruby string if info_plist['CFBundleVersion'].to_s =~ /^(\d+)\.(\d+)\.?(\d+)?(?:\.(.*?))?$/ @major = $1.to_i @minor = $2.to_i @patch = $3.to_i @build = $4 else @major = 0 @minor = 0 @patch = 0 @build = nil end end def bump_major @major += 1 @minor = 0 @patch = 0 @build = nil end def bump_minor @minor += 1 @patch = 0 @build = nil end def bump_patch @patch += 1 @build = nil end def update_to(major, minor, patch, build=nil) @major = major @minor = minor @patch = patch @build = build end def write info_plist['CFBundleVersion'] = to_s info_plist['CFBundleShortVersionString'] = to_s info_plist.writeToFile_atomically(info_plist_path,true) end def to_s [major, minor, patch, build].compact.join('.') end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
choctop-0.14.1 | lib/choctop/version_helper.rb |
choctop-0.14.0 | lib/choctop/version_helper.rb |