Sha256: 016c3a2fbf5df16405017af0c0035ab670821a23fb80745254d21b37a6a3cc09

Contents?: true

Size: 586 Bytes

Versions: 17

Compression:

Stored size: 586 Bytes

Contents

desc "Run AMQP 0-8 rspec tests"
task :spec08 do
	require 'spec/rake/spectask'
	puts "===== Running 0-8 tests ====="
	Spec::Rake::SpecTask.new("spec08") do |t|
		t.spec_files = FileList["spec/spec_08/*_spec.rb"]
		t.spec_opts = ['--color']
	end
end

desc "Run AMQP 0-9 rspec tests"
task :spec09 do
	require 'spec/rake/spectask'
	puts "===== Running 0-9 tests ====="
	Spec::Rake::SpecTask.new("spec09") do |t|
		t.spec_files = FileList["spec/spec_09/*_spec.rb"]
		t.spec_opts = ['--color']
	end
end

task :default => [ :spec08 ]

desc "Run all rspec tests"
task :all => [:spec08, :spec09]

Version data entries

17 entries across 17 versions & 3 rubygems

Version Path
celldee-bunny-0.5.0 Rakefile
celldee-bunny-0.5.1 Rakefile
celldee-bunny-0.5.2 Rakefile
celldee-bunny-0.5.3 Rakefile
sidekick-client-0.2.5 lib/ext/bunny-0.6.0/Rakefile
bunny-0.6.3.rc2 Rakefile
bunny-0.6.3.rc1 Rakefile
sidekick-client-0.2.4 lib/ext/bunny-0.6.0/Rakefile
sidekick-client-0.2.3 lib/ext/bunny-0.6.0/Rakefile
sidekick-client-0.2.2 lib/ext/bunny-0.6.0/Rakefile
sidekick-client-0.2.1 lib/ext/bunny-0.6.0/Rakefile
sidekick-client-0.2.0 lib/ext/bunny-0.6.0/Rakefile
sidekick-client-0.1.0 lib/ext/bunny-0.6.0/Rakefile
bunny-0.6.0 Rakefile
bunny-0.5.3 Rakefile
bunny-0.5.2 Rakefile
bunny-0.5.1 Rakefile