mirror of
https://github.com/pulsar-edit/pulsar.git
synced 2024-11-11 04:48:44 +03:00
129 lines
3.5 KiB
Ruby
129 lines
3.5 KiB
Ruby
ATOM_SRC_PATH = File.dirname(__FILE__)
|
|
BUILD_DIR = 'atom-build'
|
|
|
|
desc "Build Atom via `xcodebuild`"
|
|
task :build => "create-xcode-project" do
|
|
command = "xcodebuild -target Atom -configuration Release SYMROOT=#{BUILD_DIR}"
|
|
output = `#{command}`
|
|
if $?.exitstatus != 0
|
|
$stderr.puts "Error #{$?.exitstatus}:\n#{output}"
|
|
exit($?.exitstatus)
|
|
end
|
|
end
|
|
|
|
desc "Create xcode project from gyp file"
|
|
task "create-xcode-project" => "update-cef" do
|
|
`rm -rf atom.xcodeproj`
|
|
`gyp --depth=. -D CODE_SIGN="#{ENV['CODE_SIGN']}" atom.gyp`
|
|
end
|
|
|
|
desc "Update CEF to the latest version specified by the prebuilt-cef submodule"
|
|
task "update-cef" => "bootstrap" do
|
|
exit 1 unless system %{prebuilt-cef/script/download -f cef}
|
|
Dir.glob('cef/*.gypi').each do |filename|
|
|
`sed -i '' -e "s/'include\\//'cef\\/include\\//" -e "s/'libcef_dll\\//'cef\\/libcef_dll\\//" #{filename}`
|
|
end
|
|
end
|
|
|
|
desc "Download debug symbols for CEF"
|
|
task "download-cef-symbols" => "update-cef" do
|
|
sh %{prebuilt-cef/script/download -s cef}
|
|
end
|
|
|
|
task "bootstrap" do
|
|
`script/bootstrap`
|
|
end
|
|
|
|
desc "Copies Atom.app to /Applications and creates `atom` cli app"
|
|
task :install => [:clean, :build] do
|
|
path = application_path()
|
|
exit 1 if not path
|
|
|
|
# Install Atom.app
|
|
dest_path = "/Applications/#{File.basename(path)}"
|
|
`rm -rf #{dest_path}`
|
|
`cp -r #{path} #{File.expand_path(dest_path)}`
|
|
|
|
# Install atom cli
|
|
if File.directory?("/opt/boxen")
|
|
cli_path = "/opt/boxen/bin/atom"
|
|
else
|
|
cli_path = "/opt/github/bin/atom"
|
|
end
|
|
|
|
FileUtils.cp("#{ATOM_SRC_PATH}/atom.sh", cli_path)
|
|
FileUtils.chmod(0755, cli_path)
|
|
|
|
Rake::Task["clone-default-bundles"].invoke()
|
|
|
|
puts "\033[32mAtom is installed at `#{dest_path}`. Atom cli is installed at `#{cli_path}`\033[0m"
|
|
end
|
|
|
|
desc "Package up the app for speakeasy"
|
|
task :package => ["setup-codesigning", "build"] do
|
|
path = application_path()
|
|
exit 1 if not path
|
|
|
|
dest_path = '/tmp/atom-for-speakeasy/Atom.tar.bz2'
|
|
`mkdir -p $(dirname #{dest_path})`
|
|
`rm -rf #{dest_path}`
|
|
`tar --directory $(dirname #{path}) -jcf #{dest_path} $(basename #{path})`
|
|
`open $(dirname #{dest_path})`
|
|
end
|
|
|
|
task "setup-codesigning" do
|
|
ENV['CODE_SIGN'] = "Developer ID Application: GitHub"
|
|
end
|
|
|
|
desc "Clone default bundles into vendor/bundles directory"
|
|
task "clone-default-bundles" do
|
|
`git submodule --quiet sync`
|
|
`git submodule --quiet update --recursive --init`
|
|
end
|
|
|
|
desc "Clean build Atom via `xcodebuild`"
|
|
task :clean do
|
|
output = `xcodebuild clean`
|
|
`rm -rf #{application_path()}`
|
|
`rm -rf #{BUILD_DIR}`
|
|
`rm -rf /tmp/atom-compiled-scripts`
|
|
end
|
|
|
|
desc "Run the specs"
|
|
task :test => ["update-cef", "clone-default-bundles", "build"] do
|
|
`pkill Atom`
|
|
if path = application_path()
|
|
cmd = "#{path}/Contents/MacOS/Atom --test --resource-path=#{ATOM_SRC_PATH} 2> /dev/null"
|
|
system(cmd)
|
|
exit($?.exitstatus)
|
|
else
|
|
exit(1)
|
|
end
|
|
end
|
|
|
|
desc "Run the benchmarks"
|
|
task :benchmark do
|
|
Rake::Task["run"].invoke("--benchmark")
|
|
end
|
|
|
|
task :nof do
|
|
system %{find . -name *spec.coffee | grep --invert-match --regexp "#{BUILD_DIR}\\|##package-name##" | xargs sed -E -i "" "s/f+(it|describe) +(['\\"])/\\1 \\2/g"}
|
|
end
|
|
|
|
task :tags do
|
|
system %{find src native cef vendor -not -name "*spec.coffee" -type f -print0 | xargs -0 ctags}
|
|
end
|
|
|
|
def application_path
|
|
applications = FileList["#{BUILD_DIR}/**/Atom.app"]
|
|
if applications.size == 0
|
|
$stderr.puts "No Atom application found in directory `#{BUILD_DIR}`"
|
|
elsif applications.size > 1
|
|
$stderr.puts "Multiple Atom applications found \n\t" + applications.join("\n\t")
|
|
else
|
|
return applications.first
|
|
end
|
|
|
|
return nil
|
|
end
|