28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# File 'lib/inferno/apps/cli/main.rb', line 28
def start
Migration.new.run(Logger::INFO)
without_bundler do
command = 'foreman start --env=/dev/null'
if `gem list -i foreman`.chomp == 'false'
puts "You must install foreman with 'gem install foreman' prior to running Inferno."
end
if options[:watch]
if `gem list -i rerun`.chomp == 'false'
puts "You must install 'rerun' with 'gem install rerun' to restart on file changes."
end
command = "rerun \"#{command}\" --background"
end
exec command
end
end
|