Sha256: 3a74077aab2dddadb1fd6e1be8002ee786efe2fb409ccddb89dcd515b7ee3049

Contents?: true

Size: 1.11 KB

Versions: 2

Compression:

Stored size: 1.11 KB

Contents

#
# 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 'rake'
require 'spec/rake/spectask'

desc "Run all examples"
Spec::Rake::SpecTask.new(:default) do |t|
  t.libs.unshift "../../boxgrinder-core/lib"
  t.libs.unshift "../../boxgrinder-core/spec"

  t.spec_files = FileList['**/*-spec.rb']
  t.rcov = true
  t.rcov_opts = ['--exclude', 'spec' ]
  t.spec_opts = [ '--format', 's']
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
boxgrinder-build-0.6.2 spec/Rakefile
boxgrinder-build-0.6.1 spec/Rakefile