Sha256: b2a89d4c4df7ca12b31f702d1c0d6981b15fe3ab0bb2918c76f4305a73b6c91f

Contents?: true

Size: 545 Bytes

Versions: 42

Compression:

Stored size: 545 Bytes

Contents

require 'rubygems'
require 'rake'

#not being used yet.
require 'rake/testtask'
Rake::TestTask.new(:test) do |test|
  test.libs << 'lib' << 'test'
  test.pattern = 'test/**/*_test.rb'
  test.verbose = true
end

begin
  require 'rcov/rcovtask'
  Rcov::RcovTask.new do |test|
    test.libs << 'test'
    test.pattern = 'test/**/*_test.rb'
    test.verbose = true
  end
rescue LoadError
  task :rcov do
    abort "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov"
  end
end

task :test

task :default => :test

Version data entries

42 entries across 42 versions & 2 rubygems

Version Path
ruby-saml-1.12.4 Rakefile
ruby-saml-1.18.0 Rakefile
ruby-saml-1.17.0 Rakefile
ruby-saml-1.12.3 Rakefile
ruby-saml-1.16.0 Rakefile
ruby-saml-1.15.0 Rakefile
ruby-saml-1.14.0 Rakefile
ruby-saml-0.8.18 Rakefile
ruby-saml-1.13.0 Rakefile
ruby-saml-1.12.2 Rakefile
ruby-saml-1.12.1 Rakefile
ruby-saml-1.12.0 Rakefile
ruby-saml-0.8.17 Rakefile
ruby-saml-0.8.16 Rakefile
ruby-saml-0.8.15 Rakefile
ruby-saml-0.8.14 Rakefile
ruby-saml-0.8.13 Rakefile
ruby-saml-0.8.12 Rakefile
ruby-saml-1.11.0 Rakefile
ruby-saml-1.10.2 Rakefile