-
Notifications
You must be signed in to change notification settings - Fork 130
/
Rakefile
240 lines (203 loc) · 7.6 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
require 'bundler/setup'
require 'restclient'
require 'tempfile'
require 'xcode_build'
require 'xcode_build/tasks/build_task'
require 'xcode_build/formatters/progress_formatter'
require 'tmpdir'
LIBRARY_VERSION = "1.6.4"
XCODEBUILD_LOG = File.join(File.dirname(__FILE__), "xcodebuild.log")
GITHUB_USER = 'lukeredpath'
GITHUB_REPO = 'libPusher'
namespace :authserver do
desc "Starts the auth server on port 9292"
task :start do
system "bundle exec thin -p9292 -P Scripts/auth_server.pid -R Scripts/auth_server.ru -d start"
end
desc "Starts the auth server"
task :stop do
system "bundle exec thin -P Scripts/auth_server.pid -f stop"
end
desc "Resets the available users on the auth server"
task :reset do
if RestClient.post("http://admin:letmein@localhost:9292/reset", "") == "OK"
puts "Users reset."
end
end
desc "Restarts the auth server (and therefore resets it)"
task :restart => [:stop, :start]
end
task :docs => "docs:generate"
namespace :docs do
def appledoc_cmd(output_dir)
"appledoc \
-t /usr/local/Cellar/appledoc/2.0.5/Templates \
--no-search-undocumented-doc \
--keep-intermediate-files \
--docset-feed-url http://lukeredpath.github.com/libPusher/%DOCSETATOMFILENAME \
--docset-package-url http://lukeredpath.github.com/libPusher/%DOCSETPACKAGEFILENAME \
--publish-docset \
--project-company 'Luke Redpath' \
--company-id 'co.uk.lukeredpath' \
--output #{output_dir} \
--project-name libPusher \
-v #{LIBRARY_VERSION}"
end
task :generate do
system appledoc_cmd("Docs/API") << " Library/PT*"
end
task :install do
system appledoc_cmd("Docs/API") << " --install-docset Library/PT*"
end
task :publish do
tempdir = Dir.tmpdir + "/libPusherDocs"
system appledoc_cmd(tempdir) << " Library/PT*"
system "git checkout gh-pages"
system "cp -r #{tempdir}/* ."
system "cp publish/* . && rm -r publish"
system "git add ."
system "git commit -m 'Updated published docs'"
system "git push origin gh-pages"
system "git checkout master"
end
end
XcodeBuild::Tasks::BuildTask.new(:debug) do |t|
t.workspace = "libPusher.xcworkspace"
t.scheme = "libPusher"
t.configuration = "Debug"
t.formatter = XcodeBuild::Formatters::ProgressFormatter.new
t.xcodebuild_log_path = XCODEBUILD_LOG
end
ARTEFACT_DIR = File.join("dist", "libPusher")
def copy_artefacts_from_build(build, options={})
target = File.join(build.target_build_directory, "libPusher.a")
destination = File.join(ARTEFACT_DIR, "libPusher-#{build.environment["SDK_NAME"]}.a")
FileUtils.mv(target, destination)
if options[:include_headers]
header_dir = File.join(build.target_build_directory, "usr", "local", "include")
FileUtils.mv(header_dir, File.join(ARTEFACT_DIR, "headers"))
end
end
def combine_libraries(lib_paths, target)
system "lipo -create #{lib_paths.map { |p| "\"#{p}\"" }.join(" ")} -output #{target}"
end
def current_git_commit_sha
`git log --pretty=format:'%h' -n 1`.strip
end
def prepare_distribution_package(file_suffix, copy_readme = true)
FileUtils.cp("README-DIST.txt", "dist/libPusher/README.txt") if copy_readme
Dir.chdir("dist") do
system "zip -r libPusher-#{file_suffix}.zip libPusher"
end
"dist/libPusher-#{file_suffix}.zip"
end
def unquote(string)
string.gsub(/"/, '')
end
# require 'github/downloads'
# require 'osx_keychain'
def upload_package_to_github(file)
puts "Skipping Github upload (no longer supported)"
return
# keychain = OSXKeychain.new
# password = keychain['api.github.com', GITHUB_USER]
# uploader = Github::Downloads.connect(GITHUB_USER, password, GITHUB_REPO)
# begin
# uploader.create(file, "Built from #{current_git_commit_sha} at #{Time.now.strftime("%d/%m/%Y")}", :overwrite => true)
# rescue Github::Downloads::UnexpectedResponse => e
# puts "Unexpected response #{e}"
# puts "Error: #{e.error_message}"
# exit 1
# end
end
namespace :release do
XcodeBuild::Tasks::BuildTask.new(:device) do |t|
t.workspace = "libPusher.xcworkspace"
t.scheme = "libPusher"
t.configuration = "Release"
t.sdk = "iphoneos"
t.formatter = XcodeBuild::Formatters::ProgressFormatter.new
t.after_build { |build| copy_artefacts_from_build(build, :include_headers => true) }
t.xcodebuild_log_path = XCODEBUILD_LOG
end
XcodeBuild::Tasks::BuildTask.new(:simulator) do |t|
t.workspace = "libPusher.xcworkspace"
t.scheme = "libPusher"
t.configuration = "Release"
t.sdk = "iphonesimulator"
t.formatter = XcodeBuild::Formatters::ProgressFormatter.new
t.after_build { |build| copy_artefacts_from_build(build) }
t.xcodebuild_log_path = XCODEBUILD_LOG
end
XcodeBuild::Tasks::BuildTask.new(:osx) do |t|
t.project_name = "libPusher-OSX/libPusher-OSX.xcodeproj"
t.target = "Pusher"
t.configuration = "Release"
t.formatter = XcodeBuild::Formatters::ProgressFormatter.new
t.after_build do |build|
Dir["#{unquote(build.target_build_directory)}/*.*"].each do |product|
system %{cp -r "#{product}" "#{ARTEFACT_DIR}"}
end
end
t.xcodebuild_log_path = XCODEBUILD_LOG
end
desc "Build combined release libraries for both device and simulator."
task :combined => [:prepare_distribution, "release:device:cleanbuild", "release:simulator:cleanbuild"] do
puts "Creating fat binary from simulator and device builds..."
combine_libraries(Dir[File.join(ARTEFACT_DIR, "*.a")], File.join(ARTEFACT_DIR, "libPusher-combined.a"))
end
task :prepare_distribution do
FileUtils.rm_rf("dist")
FileUtils.mkdir_p(ARTEFACT_DIR)
end
desc "Build and package the iOS library for nightly distribution"
task :nightly_ios => :combined do
puts "Crreating iOS package for nightly distribution..."
package_file = prepare_distribution_package("iOS-nightly")
puts "Uploading package to Github..."
upload_package_to_github(package_file)
puts "Finished."
end
desc "Build and package the OSX framework for nightly distribution"
task :nightly_osx => [:prepare_distribution, "osx:cleanbuild"] do
puts "Crreating OSX package for nightly distribution..."
package_file = prepare_distribution_package("OSX-nightly", false)
puts "Uploading package to Github..."
upload_package_to_github(package_file)
puts "Finished."
end
desc "Build and package for stable iOS distribution"
task :stable_ios => :combined do
puts "Crreating package for #{LIBRARY_VERSION} distribution..."
package_file = prepare_distribution_package("iOS-v#{LIBRARY_VERSION}")
puts "Uploading package to Github..."
upload_package_to_github(package_file)
puts "Finished."
end
desc "Build and package for stable OSX distribution"
task :stable_osx => [:prepare_distribution, "osx:cleanbuild"] do
puts "Crreating package for #{LIBRARY_VERSION} distribution..."
package_file = prepare_distribution_package("OSX-v#{LIBRARY_VERSION}")
puts "Uploading package to Github..."
upload_package_to_github(package_file)
puts "Finished."
end
desc "Build, package and release iOS and OSX distribution"
task :stable => [:stable_ios, :stable_osx]
end
namespace :test do
XcodeBuild::Tasks::BuildTask.new do |t|
t.workspace = "libPusher.xcworkspace"
t.scheme = "UnitTests"
t.configuration = "Debug"
t.sdk = "iphonesimulator"
t.arch = "i386"
t.formatter = XcodeBuild::Formatters::ProgressFormatter.new
t.xcodebuild_log_path = XCODEBUILD_LOG
end
desc "Run unit tests"
task :run => 'xcode:cleanbuild' do
sh "bundle exec ios-sim-test logic --workspace=libPusher.xcworkspace --scheme=UnitTests --configuration=Debug"
end
end
task :test => 'test:run'