Sha256: 09706545ace8bab806bc5099ffad2dbd8a5c88a7906877c7a8b6a04443a3eef9

Contents?: true

Size: 337 Bytes

Versions: 9

Compression:

Stored size: 337 Bytes

Contents

require 'rake'
require 'spec/rake/spectask'

desc "Run all specs"
Spec::Rake::SpecTask.new('spec') do |t|
	t.spec_files = FileList['spec/*_spec.rb']
end

desc "Print specdocs"
Spec::Rake::SpecTask.new(:doc) do |t|
	t.spec_opts = ["--format", "specdoc", "--dry-run"]
	t.spec_files = FileList['spec/*_spec.rb']
end

task :default => :spec

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
jchris-couchrest-0.7.99 Rakefile
jchris-couchrest-0.8.0 Rakefile
jchris-couchrest-0.8.1 Rakefile
jchris-couchrest-0.8.2 Rakefile
jchris-couchrest-0.8.3 Rakefile
jchris-couchrest-0.9.0 Rakefile
jchris-couchrest-0.9.1 Rakefile
jchris-couchrest-0.9.2 Rakefile
jchris-couchrest-0.9.3 Rakefile