Sha256: 63c1b615993cc7f88d12cdfa87d8abab6812972c68f10f302b72ed84eedce63d

Contents?: true

Size: 674 Bytes

Versions: 10

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    = 'Candl'
  rdoc.options << '--line-numbers'
  rdoc.rdoc_files.include('README.md')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

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

load 'rails/tasks/statistics.rake'

require 'bundler/gem_tasks'

require 'rake/testtask'

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

task default: :test

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
candl-0.1.14 Rakefile
candl-0.1.13 Rakefile
candl-0.1.12 Rakefile
candl-0.1.11 Rakefile
candl-0.1.10 Rakefile
candl-0.1.9 Rakefile
candl-0.1.8 Rakefile
candl-0.1.7 Rakefile
candl-0.1.6 Rakefile
candl-0.1.5 Rakefile