Sha256: 74bf51e06d8fda5394627cb65145a5d9f8f264e40b94c6bbb51b35313deeece6

Contents?: true

Size: 768 Bytes

Versions: 2

Compression:

Stored size: 768 Bytes

Contents

# Look in the tasks/setup.rb file for the various options that can be
# configured in this Rakefile. The .rake files in the tasks directory
# are where the options are used.

begin
  require 'bones'
rescue LoadError
  abort '### please install the "bones" gem ###'
end

ensure_in_path 'lib'
require 'cheap_imports'

Bones {
  name 'cheap_imports'
  authors 'Ana Nelson'
  email 'ana@ananelson.com'
  url 'http://ananelson.com'
  version CheapImports::VERSION
  rubyforge.name 'cheap_imports'
}

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

task :default => :verify_rcov

desc "Verify RCOV coverage above threshold"
RCov::VerifyTask.new(:verify_rcov => 'spec:rcov') do |t|
  t.threshold = 87.7
  t.index_html = 'coverage/index.html'
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
cheap_imports-0.0.4 Rakefile
cheap_imports-0.0.3 Rakefile