-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
64 lines (51 loc) · 1.43 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
require "bundler/setup"
require 'yaml'
def git_initialize(repository)
unless File.exist?(".git")
system "git init"
system "git remote add origin https://github.com/conductorjs/#{repository}.git"
end
end
def git_update
system "git fetch origin"
system "git reset --hard origin/master"
# Remove all files so we don't accidentally keep old stuff
# These will be regenerated by the build process
system "rm `git ls-files`"
end
def build
system "middleman build"
end
desc "Preview"
task :preview do
require 'listen'
generate_docs
paths = Dir.glob(File.join(ember_path, "packages/*/lib"))
listener = Listen.to(*paths, :filter => /\.js$/)
listener.change { generate_docs }
listener.start(false)
system "middleman server"
end
desc "Deploy the website to github pages"
task :deploy do |t, args|
require "highline/import"
message = ask("Provide a deployment message: ") do |q|
q.validate = /\w/
q.responses[:not_valid] = "Can't be empty."
end
mkdir_p "build"
Dir.chdir "build" do
git_initialize("conductorjs.github.io")
git_update
build
# This screws up the build and isn't necessary
# rm_r "source/examples"
# Uncomment this when we need CNAME support.
#File.open("CNAME", 'w') do |f|
# f.write "emberjs.com"
#end
system "git add -A"
system "git commit -m '#{message.gsub("'", "\\'")}'"
system "git push origin master" unless ENV['NODEPLOY']
end
end