Sha256: e4cf6232a0e9c66995b0434508c19cae38a9e24f2aaee6543f657abba1d07e05

Contents?: true

Size: 355 Bytes

Versions: 7

Compression:

Stored size: 355 Bytes

Contents

require 'rubygems'
require 'rspec/core/rake_task'  # testing framework
require 'yard'                  # yard documentation

# By default we don't run network tests
task :default => :test

RSpec::Core::RakeTask.new(:spec)

desc 'Run all tests'
task :test => [:spec]

YARD::Rake::YardocTask.new do |t|
    t.files   = ['lib/**/*.rb', '-', 'README.md']
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
couchbase-orm-2.0.4 Rakefile
couchbase-orm-2.0.3 Rakefile
couchbase-orm-2.0.2 Rakefile
couchbase-orm-2.0.1 Rakefile
couchbase-orm-2.0.0 Rakefile
couchbase-orm-1.1.1 Rakefile
couchbase-orm-1.1.0 Rakefile