Sha256: 3310e61823f175db536b1d9c48c82b74803f3d65e915014855ec07422ccd0bf3

Contents?: true

Size: 392 Bytes

Versions: 45

Compression:

Stored size: 392 Bytes

Contents

require File.join(File.dirname(__FILE__), "spec_helper.rb")
require 'rake'
require 'rspec/core/rake_task'

desc "Run all specs"
RSpec::Core::RakeTask.new(:all) do |t|
    t.pattern = 'unit/**/*_spec.rb'

    if MCollective::Util.windows?
      t.rspec_opts = File.read("windows_spec.opts").chomp
    else
      t.rspec_opts = File.read("spec.opts").chomp
    end
end

task :default => [:all]

Version data entries

45 entries across 45 versions & 1 rubygems

Version Path
mcollective-client-2.12.5 spec/Rakefile
mcollective-client-2.12.4 spec/Rakefile
mcollective-client-2.12.3 spec/Rakefile
mcollective-client-2.12.1 spec/Rakefile
mcollective-client-2.12.0 spec/Rakefile
mcollective-client-2.10.6 spec/Rakefile
mcollective-client-2.11.4 spec/Rakefile
mcollective-client-2.11.3 spec/Rakefile
mcollective-client-2.11.2 spec/Rakefile
mcollective-client-2.11.1 spec/Rakefile
mcollective-client-2.11.0 spec/Rakefile
mcollective-client-2.10.4 spec/Rakefile
mcollective-client-2.10.3 spec/Rakefile
mcollective-client-2.10.2 spec/Rakefile
mcollective-client-2.10.1 spec/Rakefile
mcollective-client-2.10.0 spec/Rakefile
mcollective-client-2.8.7 spec/Rakefile
mcollective-client-2.8.5 spec/Rakefile
mcollective-client-2.8.8 spec/Rakefile
mcollective-client-2.8.6 spec/Rakefile