pulsar/Rakefile

170 lines
4.6 KiB
Ruby
Raw Normal View History

ATOM_SRC_PATH = File.dirname(__FILE__)
DOT_ATOM_PATH = ENV['HOME'] + "/.atom"
BUILD_DIR = 'atom-build'
require 'erb'
2012-09-22 02:03:59 +04:00
desc "Build Atom via `xcodebuild`"
task :build => "create-project" do
2012-08-31 03:46:57 +04:00
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-project" => "bootstrap" do
`rm -rf atom.xcodeproj`
`gyp --depth=. atom.gyp`
end
task "bootstrap" do
`script/bootstrap`
end
2012-09-22 02:03:59 +04:00
desc "Creates symlink from `application_path() to /Applications/Atom and creates `atom` cli app"
task :install => :build do
path = application_path()
exit 1 if not path
# Install Atom.app
dest = "/Applications/#{File.basename(path)}"
`rm -rf #{dest}`
`cp -r #{path} #{File.expand_path(dest)}`
# Install cli atom
2012-09-24 21:42:53 +04:00
usr_bin_path = default_usr_bin_path = "/opt/github/bin"
cli_path = "#{usr_bin_path}/atom"
stable_cli_path = "#{usr_bin_path}/atom-stable"
`echo "use 'atom --stable' in place of atom-stable." > #{stable_cli_path}`
if !File.exists?(usr_bin_path)
$stderr.puts "ERROR: Failed to install atom cli tool at '#{usr_bin_path}'"
exit 1
end
2012-09-22 02:03:59 +04:00
template = ERB.new CLI_SCRIPT
namespace = OpenStruct.new(:application_path => dest, :resource_path => ATOM_SRC_PATH)
File.open(cli_path, "w") do |f|
f.write template.result(namespace.instance_eval { binding })
f.chmod(0755)
end
Rake::Task["create-dot-atom"].invoke()
Rake::Task["clone-default-bundles"].invoke()
puts "\033[32mType `atom` to start Atom! In Atom press `cmd-,` to edit your `.atom` directory\033[0m"
end
desc "Creates .atom file if non exists"
task "create-dot-atom" do
2012-12-27 02:38:25 +04:00
# Migration: If there is still a bundle path, rename it to packages
if File.exists?(DOT_ATOM_PATH) and File.exists?(File.join(DOT_ATOM_PATH, "bundles"))
if File.exists?(File.join(DOT_ATOM_PATH, "packages"))
`mv #{File.join(DOT_ATOM_PATH, "bundles", "*")} #{File.join(DOT_ATOM_PATH, "packages")}`
$stderr.puts "WARNING: Bundles from ~/.atom/bundles were moved to ~/.atom/packages"
2012-12-27 02:38:25 +04:00
else
`mv #{File.join(DOT_ATOM_PATH, "bundles")} #{File.join(DOT_ATOM_PATH, "packages")}`
$stderr.puts "WARNING: ~/.atom/bundles was moved to ~/.atom/packages"
end
end
# Migration: remove files that are no longer needed
`rm -rf #{File.join(DOT_ATOM_PATH, 'default-config.coffee')}`
dot_atom_template_path = ATOM_SRC_PATH + "/.atom"
replace_dot_atom = false
next if File.exists?(DOT_ATOM_PATH)
2012-09-22 02:03:59 +04:00
`rm -rf "#{DOT_ATOM_PATH}"`
`mkdir "#{DOT_ATOM_PATH}"`
`cp "#{dot_atom_template_path}/atom.coffee" "#{DOT_ATOM_PATH}"`
`cp "#{dot_atom_template_path}/packages" "#{DOT_ATOM_PATH}"`
2012-12-27 02:38:25 +04:00
`cp -r "#{dot_atom_template_path}/themes" "#{DOT_ATOM_PATH}"`
end
2013-01-03 21:57:13 +04:00
desc "Clone default bundles into vendor/bundles directory"
task "clone-default-bundles" do
2013-01-03 23:02:03 +04:00
`git submodule --quiet sync`
`git submodule --quiet update --recursive --init`
end
desc "Clean build Atom via `xcodebuild`"
task :clean do
output = `xcodebuild clean`
2012-12-27 02:38:25 +04:00
`rm -rf #{application_path()}`
`rm -rf #{BUILD_DIR}`
end
desc "Run Atom"
2012-09-22 00:27:19 +04:00
task :run, [:atom_arg] => :build do |name, args|
if path = application_path()
2012-09-22 00:27:19 +04:00
cmd = "#{path}/Contents/MacOS/Atom #{args[:atom_arg]} 2> /dev/null"
2012-10-10 02:09:22 +04:00
system(cmd)
exit($?.exitstatus)
else
exit(1)
end
end
desc "Run the specs"
task :test => ["clean", "clone-default-bundles"] do
`pkill Atom`
2012-09-22 00:27:19 +04:00
Rake::Task["run"].invoke("--test")
end
desc "Run the benchmarks"
task :benchmark do
2012-09-22 00:27:19 +04:00
Rake::Task["run"].invoke("--benchmark")
end
task :nof do
2012-12-27 02:38:25 +04:00
system %{find . -name *spec.coffee | grep -v #{BUILD_DIR} | xargs sed -E -i "" "s/f+(it|describe) +(['\\"])/\\1 \\2/g"}
end
task :tags do
2012-12-18 01:07:19 +04:00
system %{find src native cef -not -name "*spec.coffee" -type f | xargs 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
CLI_SCRIPT = <<-EOF
#!/bin/sh
open <%= application_path %> -n --args --resource-path="<%= resource_path %>" --executed-from="$(pwd)" --pid=$$ $@
# Used to exit process when atom is used as $EDITOR
on_die() {
exit 0
}
trap 'on_die' SIGQUIT SIGTERM
# Don't exit process if we were told to wait.
while [ "$#" -gt "0" ]; do
case $1 in
-W|--wait)
WAIT=1
;;
esac
shift
done
if [ $WAIT ]; then
while true; do
sleep 1
done
fi
2012-12-27 09:06:29 +04:00
EOF