This repository has been archived by the owner on Mar 3, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 925
/
Rakefile
51 lines (41 loc) · 1.47 KB
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#
# Copyright (c) 2016-present, Facebook, Inc.
# All rights reserved.
#
# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree. An additional grant
# of patent rights can be found in the PATENTS file in the same directory.
#
carthage_archive_name = 'KVOController.framework.zip'
version_plist_path = File.join(File.dirname(__FILE__), 'FBKVOController', 'Info.plist')
desc 'Build release archive.'
task :archive do
`rm -rf Carthage build`
unless system('which carthage > /dev/null')
abort 'Failed to find Carthage. Make sure it is installed first.'
end
puts 'Building release package.'
unless system('carthage build --no-skip-current')
abort 'Failed to build with Carthage.'
end
puts 'Archiving release package.'
unless system('carthage archive')
abort 'Failed to archive package'
end
system("mv #{carthage_archive_name} Carthage/")
puts "Created release archive at Carthage/#{carthage_archive_name}"
end
desc 'Update version for next release.'
task :version, [:version] do |_, args|
version = args[:version]
if version.nil?
return
end
require 'plist'
info_plist = Plist.parse_xml(version_plist_path)
info_plist['CFBundleShortVersionString'] = version
info_plist['CFBundleVersion'] = version
File.open(version_plist_path, 'w') { |f| f.write(info_plist.to_plist) }
end
desc 'Build and archive a release.'
task :release, [:version] => [:version, :archive]