Sha256: f5922b756592d424304a3d74617c43f7f7e7a71535dee3657f7bb8b376984af7

Contents?: true

Size: 625 Bytes

Versions: 9

Compression:

Stored size: 625 Bytes

Contents

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

require 'rake'
require 'rdoc/task'

require 'rspec/core'
require 'rspec/core/rake_task'

RSpec::Core::RakeTask.new(:spec) do |specs|
  specs.rspec_opts = %w{--color}
end

task :default => :spec

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

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
kuhsaft-0.2.legacy4 Rakefile
kuhsaft-0.3.4.legacy3 Rakefile
kuhsaft-0.2.legacy3 Rakefile
kuhsaft-0.2.legacy2 Rakefile
kuhsaft-0.2.legacy Rakefile
kuhsaft-0.3.4.legacy2 Rakefile
kuhsaft-0.3.4.legacy Rakefile
kuhsaft-0.3.6 Rakefile
kuhsaft-0.3.5 Rakefile