-
Notifications
You must be signed in to change notification settings - Fork 18
/
Rakefile
69 lines (63 loc) · 2.36 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#
# Copyright 2010 Red Hat, Inc.
#
# This is free software; you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as
# published by the Free Software Foundation; either version 3 of
# the License, or (at your option) any later version.
#
# This software is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this software; if not, write to the Free
# Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
# 02110-1301 USA, or see the FSF site: http://www.fsf.org.
require 'rubygems'
require 'rspec/core/rake_task'
require 'echoe'
Echoe.new("boxgrinder-build") do |p|
p.project = "BoxGrinder Build"
p.author = "Marek Goldmann"
p.summary = "A tool for creating appliances from simple plain text files for various virtual environments."
p.url = "http://boxgrinder.org/"
p.email = "[email protected]"
p.runtime_dependencies = [
"boxgrinder-core ~>0.3.14",
'aws-sdk >=1.1.1', # EBS and S3
'net-sftp', 'net-ssh', 'progressbar', # SFTP
'rest-client', # ElasticHosts
'nokogiri',
'builder'
]
end
desc "Run all integration tests"
RSpec::Core::RakeTask.new('integ') do |t|
t.rcov = false
t.pattern = "integ/**/*-spec.rb"
t.rspec_opts = ['-r boxgrinder-core', '-r rubygems', '--colour', '--format', 'doc', '-b']
t.verbose = true
end
desc "Run all tests"
RSpec::Core::RakeTask.new('spec') do |t|
t.ruby_opts = "-I ../boxgrinder-core/lib"
t.rcov = false
t.pattern = "spec/**/*-spec.rb"
t.rspec_opts = ['-r boxgrinder-core', '-r rubygems', '--colour', '--format', 'doc', '-b']
t.verbose = true
end
RSpec::Core::RakeTask.new('spec:coverage') do |t|
t.ruby_opts = "-I ../boxgrinder-core/lib"
t.pattern = "spec/**/*-spec.rb"
t.rspec_opts = ['-r spec_helper', '-r boxgrinder-core', '-r rubygems', '--colour',
'--format', 'html', '--out', 'pkg/rspec_report.html', '-b']
t.verbose = true
if RUBY_VERSION =~ /^1.8/
t.rcov = true
t.rcov_opts = ["-Ispec:lib spec/rcov_helper.rb", '--exclude', 'spec,teamcity/*,/usr/lib/ruby/,.gem/ruby,/boxgrinder-build/,/gems/']
else
ENV['COVERAGE'] = 'true'
end
end