Sha256: 80ff5ded40bf602c88cc0be4fd0e47687add3ce31bd752580181fb7f9ce1c4b3

Contents?: true

Size: 669 Bytes

Versions: 351

Compression:

Stored size: 669 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

351 entries across 351 versions & 1 rubygems

Version Path
avo-2.53.0 Rakefile
avo-2.52.0 Rakefile
avo-2.49.0 Rakefile
avo-2.48.0 Rakefile
avo-2.47.0 Rakefile
avo-3.0.1.beta8 Rakefile
avo-3.0.1.beta9 Rakefile
avo-3.0.1.beta6 Rakefile
avo-3.0.1.beta7 Rakefile
avo-3.0.1.beta5 Rakefile
avo-3.0.1.beta2 Rakefile
avo-3.0.1.beta4 Rakefile
avo-3.0.1.beta3 Rakefile
avo-3.0.0.beta1 Rakefile
avo-3.0.1.beta1 Rakefile
avo-3.0.0.pre17 Rakefile
avo-3.0.0.pre18 Rakefile
avo-3.0.0.pre14 Rakefile
avo-3.0.0.pre16 Rakefile
avo-3.0.0.pre15 Rakefile