Sha256: 09e207f6bf67e31c33a02d271f300687a90e06b0763dfdfd8f9d291f5b945485

Contents?: true

Size: 672 Bytes

Versions: 27

Compression:

Stored size: 672 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    = 'Avo'
  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

27 entries across 27 versions & 1 rubygems

Version Path
avo-0.5.0.beta9 Rakefile
avo-0.5.0.beta8 Rakefile
avo-0.5.0.beta7 Rakefile
avo-0.5.0.beta6 Rakefile
avo-0.5.0.beta5 Rakefile
avo-0.5.0.beta4 Rakefile
avo-0.5.0.beta3 Rakefile
avo-0.5.0.beta2 Rakefile
avo-0.5.0.beta1 Rakefile
avo-0.4.10 Rakefile
avo-0.4.9 Rakefile
avo-0.4.8 Rakefile
avo-0.4.7 Rakefile
avo-0.4.6 Rakefile
avo-0.4.5 Rakefile
avo-0.4.4 Rakefile
avo-0.4.3 Rakefile
avo-0.4.2 Rakefile
avo-0.4.1 Rakefile
avo-0.3.2 Rakefile