Sha256: d3ada712cfaca7190b7184ad718dd6bba939d9d4e3506e1d524f5618d43c41b8

Contents?: true

Size: 620 Bytes

Versions: 12

Compression:

Stored size: 620 Bytes

Contents

# encoding: UTF-8
require 'rubygems'
begin
  require 'bundler/setup'
rescue LoadError
  puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end

require 'rake'
require 'rake/rdoctask'

require 'rake/testtask'

Rake::TestTask.new(:test) do |t|
  t.libs << 'lib'
  t.libs << 'test'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = false
end

task :default => :test

Rake::RDocTask.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title    = 'Cohortly'
  rdoc.options << '--line-numbers' << '--inline-source'
  rdoc.rdoc_files.include('README.rdoc')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
cohortly-0.0.93 Rakefile
cohortly-0.0.92 Rakefile
cohortly-0.0.9.1 Rakefile
cohortly-0.0.9 Rakefile
cohortly-0.0.8 Rakefile
cohortly-0.0.7 Rakefile
cohortly-0.0.6 Rakefile
cohortly-0.0.5 Rakefile
cohortly-0.0.4 Rakefile
cohortly-0.0.3 Rakefile
cohortly-0.0.2 Rakefile
cohortly-0.0.1 Rakefile