Sha256: 8743f2a2fcf6615510edbcc082d88733f22c038bcd358b07d564f49c403644a6

Contents?: true

Size: 682 Bytes

Versions: 1

Compression:

Stored size: 682 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::GemHelper.install_tasks
rescue LoadError
  $stderr.puts "Bundler not available. Install it with: gem install bundler"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
runit-man-2.3.7 Rakefile