Sha256: 7f9e1b42319b2b6f9eff3bc1a45a07df48f7dde0380621a182852f733a471aaf

Contents?: true

Size: 490 Bytes

Versions: 25

Compression:

Stored size: 490 Bytes

Contents

require 'bundler/gem_tasks'
require 'bundler/setup'
Bundler::GemHelper.install_tasks
require 'rspec/core/rake_task'

task :default => :test

RSpec::Core::RakeTask.new("test:spec") do |t|
    t.pattern = 'spec/*.rb'
    t.rspec_opts = '--fail-fast -b -c -f progress --tag ~benchmark'
end

RSpec::Core::RakeTask.new("test:benchmark") do |t|
    t.pattern = 'spec/*.rb'
    t.rspec_opts = '-b -c -f documentation --tag benchmark'
end

desc 'Run full test suite'
task :test => [ 'test:spec' ]

Version data entries

25 entries across 25 versions & 1 rubygems

Version Path
net-ssh-simple-1.7.3 Rakefile
net-ssh-simple-1.7.2 Rakefile
net-ssh-simple-1.7.1 Rakefile
net-ssh-simple-1.7.0 Rakefile
net-ssh-simple-1.6.18 Rakefile
net-ssh-simple-1.6.17 Rakefile
net-ssh-simple-1.6.16 Rakefile
net-ssh-simple-1.6.15 Rakefile
net-ssh-simple-1.6.14 Rakefile
net-ssh-simple-1.6.13 Rakefile
net-ssh-simple-1.6.12 Rakefile
net-ssh-simple-1.6.11 Rakefile
net-ssh-simple-1.6.10 Rakefile
net-ssh-simple-1.6.9 Rakefile
net-ssh-simple-1.6.8 Rakefile
net-ssh-simple-1.6.7 Rakefile
net-ssh-simple-1.6.6 Rakefile
net-ssh-simple-1.6.5 Rakefile
net-ssh-simple-1.6.4 Rakefile
net-ssh-simple-1.6.3 Rakefile