Sha256: fdb9e8af40b970c86c9a9c1ec8bcfb06696a37703cdffe3a3b14e2cd6b720e9c

Contents?: true

Size: 674 Bytes

Versions: 60

Compression:

Stored size: 674 Bytes

Contents

begin
  require 'bundler/setup'
rescue LoadError
  puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end

require 'rdoc/task'

RDoc::Task.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title    = 'ClarkKent'
  rdoc.options << '--line-numbers'
  rdoc.rdoc_files.include('README.rdoc')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

APP_RAKEFILE = File.expand_path("../test/dummy/Rakefile", __FILE__)
load 'rails/tasks/engine.rake'



Bundler::GemHelper.install_tasks

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

Version data entries

60 entries across 60 versions & 1 rubygems

Version Path
clark_kent-0.11.3 Rakefile
clark_kent-0.11.2 Rakefile
clark_kent-0.11.1 Rakefile
clark_kent-0.11.0 Rakefile
clark_kent-0.10.4 Rakefile
clark_kent-0.10.2 Rakefile
clark_kent-0.10.1 Rakefile
clark_kent-0.10.0 Rakefile
clark_kent-0.9.9 Rakefile
clark_kent-0.9.8 Rakefile
clark_kent-0.9.7 Rakefile
clark_kent-0.9.6 Rakefile
clark_kent-0.9.5 Rakefile
clark_kent-0.9.4 Rakefile
clark_kent-0.9.2 Rakefile
clark_kent-0.9.1 Rakefile
clark_kent-0.9.0 Rakefile
clark_kent-0.8.11 Rakefile
clark_kent-0.8.10 Rakefile
clark_kent-0.8.9 Rakefile