harukaze 1.2.1 → 1.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/VERSION +1 -1
- data/bin/harukaze +3 -3
- data/harukaze.gemspec +1 -1
- metadata +2 -2
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.2.
|
1
|
+
1.2.2
|
data/bin/harukaze
CHANGED
@@ -106,10 +106,10 @@ def bump_versions(config)
|
|
106
106
|
rc = exe "#{config['agvtool']} bump -all"
|
107
107
|
|
108
108
|
error "Failed to bump the build number!" unless rc
|
109
|
-
rc = exe "agvtool new-marketing-version #{config['marketing_version']}"
|
109
|
+
rc = exe "#{config['agvtool']} new-marketing-version #{config['marketing_version']}"
|
110
110
|
error "Failed to set the marketing version!" unless rc
|
111
|
-
config['current_version'] =
|
112
|
-
config['current_marketing_version'] =
|
111
|
+
config['current_version'] = `#{config['agvtool']} what-version -terse`.chomp!
|
112
|
+
config['current_marketing_version'] = `#{config['agvtool']} what-marketing-version -terse1`.chomp!
|
113
113
|
end
|
114
114
|
|
115
115
|
def commit_build(config)
|
data/harukaze.gemspec
CHANGED