Sha256: 7a8145bc2a0311f627c9b7ad013f6cfe6477dd0e41d36edb44509a6dc8b86e92

Contents?: true

Size: 671 Bytes

Versions: 11

Compression:

Stored size: 671 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    = 'People'
  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

11 entries across 11 versions & 3 rubygems

Version Path
arcadex-1.3.1 test/test_app/engines/people/Rakefile
arcadex-1.3.0 test/test_app/engines/people/Rakefile
people_user_generator-0.0.1 Rakefile
arcadex-1.2.3 test/test_app/engines/people/Rakefile
arcadex-1.2.1 test/test_app/engines/people/Rakefile
arcadex-1.2.0 test/test_app/engines/people/Rakefile
json_voorhees-0.2.3 test/test_app/engines/people/Rakefile
json_voorhees-0.2.2 test/test_app/engines/people/Rakefile
json_voorhees-0.2.1 test/test_app/engines/people/Rakefile
json_voorhees-0.2.0 test/test_app/engines/people/Rakefile
json_voorhees-0.1.0 test/test_app/engines/people/Rakefile