forked from emilyntest/braze-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
54 lines (47 loc) · 1.03 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
def thread_pool
@thread_pool ||= ThreadPool.new options.thread_pool_size
end
def pipe(command)
output = ''
IO.popen(command) do |io|
until io.eof?
buffer = io.gets
output << buffer
puts buffer
end
end
output
end
task default: :serve
namespace :docs do
task :index do
if ENV["SITE_URL"] == 'https://www.braze.com' && ENV["RACK_ENV"] == 'production'
puts `bundle exec jekyll algolia`
end
end
task build: [:index] do
puts `bundle exec jekyll build`
end
task :serve do
if ENV["RACK_ENV"] == 'staging'
pipe 'bundle exec jekyll s --port 5006'
else
# Force a clean build of the site and the pipeline assets
puts `rm .jekyll-metadata`
pipe 'bundle exec jekyll s --port 5006 --incremental --config _config.yml,_incremental_config.yml'
end
end
end
namespace :success do
task :serve do
pipe 'bundle exec ruby proxy.rb'
end
end
namespace :assets do
task :precompile do
print 'no-op'
end
end
multitask serve: [
'docs:serve', 'success:serve'
]