-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathRakefile
More file actions
36 lines (29 loc) · 753 Bytes
/
Rakefile
File metadata and controls
36 lines (29 loc) · 753 Bytes
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
require 'rubygems'
load 'lib/tasks/hudson.rake'
load 'lib/tasks/mysystem.rake'
load 'lib/tasks/appspot.rake'
# load 'lib/tasks/selenium-test.rake'
desc "The default task builds a distribution in the public directory"
task :default => [:"combine:all"]
namespace :gems do
desc "install the gemset mysystem.gems without rvm"
task :install do
File.open("mysystem.gems", "r") do | infile|
while (line = infile.gets)
unless line =~ /^#/
%x[gem install #{line}]
end
end
end
end
desc "print required gems"
task :print do
File.open("mysystem.gems", "r") do | infile|
while (line = infile.gets)
unless line =~ /^#/
puts line
end
end
end
end
end