Sha256: 0361c7fc261cb77d4ff7ee97678ea0477cdc70cd679fb4a612bbd8f50b4f6ba2
Contents?: true
Size: 708 Bytes
Versions: 13
Compression:
Stored size: 708 Bytes
Contents
# encoding: utf-8 require 'rubygems' $LOAD_PATH.unshift('./lib') require 'runit-man/version' begin require 'rspec/core/rake_task' RSpec::Core::RakeTask.new do |t| t.rspec_opts = ["-c", "-f progress"] end RSpec::Core::RakeTask.new(:rcov) do |t| t.rcov = true t.ruby_opts = '-w' t.rspec_opts = ["-c", "-f progress"] t.rcov_opts = %q[-Ilib --exclude "spec/*,gems/*"] end rescue LoadError $stderr.puts "RSpec not available. Install it with: gem install rspec-core rspec-expectations" end begin require 'bundler' Bundler.setup(:default) Bundler::GemHelper.install_tasks rescue LoadError $stderr.puts "Bundler not available. Install it with: gem install bundler" end
Version data entries
13 entries across 13 versions & 1 rubygems