Sha256: 9ccb44cf205750a4291378046c76c58dbbdf89b943a99ab5a8977e32bb78f316

Contents?: true

Size: 710 Bytes

Versions: 22

Compression:

Stored size: 710 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    = 'PandaPal'
  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'


load 'rails/tasks/statistics.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

22 entries across 22 versions & 1 rubygems

Version Path
panda_pal-3.0.1 Rakefile
panda_pal-3.0.0 Rakefile
panda_pal-2.0.5 Rakefile
panda_pal-2.0.4 Rakefile
panda_pal-2.0.3 Rakefile
panda_pal-2.0.2 Rakefile
panda_pal-2.0.1 Rakefile
panda_pal-2.0.0 Rakefile
panda_pal-1.0.5 Rakefile
panda_pal-1.0.4 Rakefile
panda_pal-1.0.3 Rakefile
panda_pal-1.0.2 Rakefile
panda_pal-1.0.1 Rakefile
panda_pal-0.1.0 Rakefile
panda_pal-1.0.0 Rakefile
panda_pal-0.0.8 Rakefile
panda_pal-0.0.7 Rakefile
panda_pal-0.0.6 Rakefile
panda_pal-0.0.5 Rakefile
panda_pal-0.0.4 Rakefile