forked from emberjs/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
114 lines (90 loc) · 2.69 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
# Deploy with new API:
# - rake preview
# - visit http://0.0.0.0:4567 and verify everything was generated correctly
# - ensure data/api.yml has the correct sha/tag, if not just simply update it and use middleman to re-preview
# Deploy without updating the API:
# - middleman
# - visit http://0.0.0.0:4567 and verify everything was generated correctly
# - rake deploy
require "bundler/setup"
require 'yaml'
def git_initialize(repository)
unless File.exist?(".git")
system "git init"
system "git remote add origin https://github.com/emberjs/#{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 ember_path
File.expand_path(ENV['EMBER_PATH'] || File.expand_path("../../ember.js", __FILE__))
end
def generate_docs
print "Generating docs data from #{ember_path}... "
sha = nil
Dir.chdir(ember_path) do
# returns either `tag` or `tag-numcommits-gSHA`
describe = `git describe --tags --always`.strip
sha = describe =~ /-g(.+)/ ? $1 : describe
Dir.chdir("docs") do
system("npm install") unless File.exist?('node_modules')
# Unfortunately -q doesn't always work so we get output
system("./node_modules/.bin/yuidoc -p -q")
end
end
# JSON is valid YAML
data = YAML.load_file(File.join(ember_path, "docs/build/data.json"))
data["project"]["sha"] = sha
File.open(File.expand_path("../data/api.yml", __FILE__), "w") do |f|
YAML.dump(data, f)
end
puts "Built #{sha}"
end
def build
system "middleman build"
end
desc "Generate API Docs"
task :generate_docs do
generate_docs
end
desc "Build the website"
task :build => :generate_docs do
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("emberjs.github.com")
git_update
build
# This screws up the build and isn't necessary
# rm_r "source/examples"
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