Sha256: 44aa574511ecd6c175c28bdc6c192c16f8d54ed01e3ea52326d0e5a4f9d75161
Contents?: true
Size: 592 Bytes
Versions: 64
Compression:
Stored size: 592 Bytes
Contents
# encoding: ascii-8bit # Copyright 2014 Ball Aerospace & Technologies Corp. # All Rights Reserved. # # This program is free software; you can modify and/or redistribute it # under the terms of the GNU General Public License # as published by the Free Software Foundation; version 3 with # attribution addendums as found in the LICENSE.txt begin require 'rspec/core/rake_task' desc 'Run all specs with basic output' RSpec::Core::RakeTask.new do |t| t.pattern = ['spec/*_spec.rb'] t.rspec_opts = '-f d' end rescue LoadError puts "rspec not loaded. gem install rspec" end
Version data entries
64 entries across 64 versions & 1 rubygems