forked from heroku/heroku-buildpack-static
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
31 lines (26 loc) · 892 Bytes
/
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
desc "docker shell for fixture"
task :shell, [:fixture] do |t, args|
require_relative "spec/support/buildpack_builder"
require_relative "spec/support/path_helper"
include PathHelper
BuildpackBuilder.new(@debug)
fixture_path = File.expand_path(fixtures_path(args[:fixture]))
cmd = %Q{docker run -i -v #{fixture_path}:/src -t #{BuildpackBuilder::TAG} /bin/bash -c "/app/bin/config/make-config && bash"}
puts cmd
system cmd
end
task :server, [:fixture] do |t, args|
require_relative "spec/support/buildpack_builder"
require_relative "spec/support/app_runner"
debug = true
thread_name = :app_thread
Signal.trap("INT") do
Thread.list.detect {|thread| thread[:name] == thread_name }.wakeup
end
BuildpackBuilder.new(debug)
app = AppRunner.new(args[:fixture], {}, debug)
app.run do
Thread.current[:name] = thread_name
Thread.stop
end
end