forked from avalonmediasystem/avalon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
50 lines (42 loc) · 1015 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# Add your own tasks in files placed in lib/tasks ending in .rake,
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
require File.expand_path('../config/application', __FILE__)
unless Rails.env.production?
require 'solr_wrapper/rake_task'
end
task default: [:ci]
Rails.application.load_tasks
task :ci do
run_server 'test' do
Rake::Task['spec'].invoke
end
end
namespace :server do
desc 'Run Fedora and Solr for development environment'
task :development do
run_server 'development' do
IO.popen('rails server') do |io|
io.each do |line|
puts line
end
end
end
end
desc 'Run Fedora and Solr for test environment'
task :test do
run_server 'test' do
sleep
end
end
end
def run_server(environment)
with_server(environment) do
puts " ***** #{environment} servers started"
puts "\n^C to stop"
begin
yield
rescue Interrupt
puts 'Shutting down...'
end
end
end