Sha256: 13874a7a29ba63fa6f1b020e92eac0d5c20470b406a0a95d811553ae65707563

Contents?: true

Size: 670 Bytes

Versions: 17

Compression:

Stored size: 670 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    = 'Annex'
  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

17 entries across 17 versions & 1 rubygems

Version Path
annex-cms-0.5.0 Rakefile
annex-cms-0.4.0 Rakefile
annex-cms-0.3.8 Rakefile
annex-cms-0.3.7 Rakefile
annex-cms-0.3.6 Rakefile
annex-cms-0.3.5 Rakefile
annex-cms-0.3.4 Rakefile
annex-cms-0.3.2 Rakefile
annex-cms-0.3.1 Rakefile
annex-cms-0.3.0 Rakefile
annex-cms-0.2.1 Rakefile
annex-cms-0.2.0 Rakefile
annex-cms-0.1.8 Rakefile
annex-cms-0.1.7 Rakefile
annex-cms-0.1.5 Rakefile
annex-cms-0.1.2 Rakefile
annex-cms-0.1.0 Rakefile