Sha256: 0fc8b0cb5754a3bc1f7883a03540ae32f46660abcd25bb5947aac808299544cb

Contents?: true

Size: 423 Bytes

Versions: 24

Compression:

Stored size: 423 Bytes

Contents

#!/usr/bin/env rake
require 'bundler/gem_tasks'
require 'rspec/core/rake_task'

desc 'Default: run specs.'
task :default => :spec

desc 'Run specs'
RSpec::Core::RakeTask.new do |t|
  t.pattern = './spec/**/*_spec.rb'
end

desc 'Generate code coverage'
RSpec::Core::RakeTask.new(:coverage) do |t|
  t.pattern = "./spec/**/*_spec.rb" # don't need this, it's default.
  t.rcov = true
  t.rcov_opts = ['--exclude', 'spec']
end

Version data entries

24 entries across 24 versions & 2 rubygems

Version Path
morpheus-0.3.8 Rakefile
netsuite-0.0.23 Rakefile
netsuite-0.0.22 Rakefile
netsuite-0.0.21 Rakefile
netsuite-0.0.20 Rakefile
netsuite-0.0.19 Rakefile
netsuite-0.0.18 Rakefile
morpheus-0.3.7 Rakefile
netsuite-0.0.17 Rakefile
netsuite-0.0.16 Rakefile
netsuite-0.0.15 Rakefile
netsuite-0.0.14 Rakefile
netsuite-0.0.13 Rakefile
netsuite-0.0.12 Rakefile
netsuite-0.0.11 Rakefile
netsuite-0.0.10 Rakefile
netsuite-0.0.9 Rakefile
netsuite-0.0.8 Rakefile
netsuite-0.0.7 Rakefile
netsuite-0.0.6 Rakefile