Sha256: 8d9f9840cb11a5decc03665fe6562a1358d8a2a3f3bf4c556dfce968bba6abcf

Contents?: true

Size: 642 Bytes

Versions: 16

Compression:

Stored size: 642 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    = "ActiveRecordQueryFixer"
  rdoc.options << "--line-numbers"
  rdoc.rdoc_files.include("README.md")
  rdoc.rdoc_files.include("lib/**/*.rb")
end

require "bundler/gem_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

require "best_practice_project"
BestPracticeProject.load_tasks

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
active_record_query_fixer-0.0.16 Rakefile
active_record_query_fixer-0.0.15 Rakefile
active_record_query_fixer-0.0.14 Rakefile
active_record_query_fixer-0.0.13 Rakefile
active_record_query_fixer-0.0.12 Rakefile
active_record_query_fixer-0.0.11 Rakefile
active_record_query_fixer-0.0.10 Rakefile
active_record_query_fixer-0.0.9 Rakefile
active_record_query_fixer-0.0.8 Rakefile
active_record_query_fixer-0.0.7 Rakefile
active_record_query_fixer-0.0.6 Rakefile
active_record_query_fixer-0.0.5 Rakefile
active_record_query_fixer-0.0.4 Rakefile
active_record_query_fixer-0.0.3 Rakefile
active_record_query_fixer-0.0.2 Rakefile
active_record_query_fixer-0.0.1 Rakefile