Sha256: e081009ff7ec10709053b31fd9ffec7eac4fd2aa902c9c3cade30dfea105e90f

Contents?: true

Size: 709 Bytes

Versions: 46

Compression:

Stored size: 709 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    = 'Thecore'
  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

46 entries across 46 versions & 1 rubygems

Version Path
thecore-1.7.7 Rakefile
thecore-1.7.5 Rakefile
thecore-1.7.3 Rakefile
thecore-1.7.2 Rakefile
thecore-1.7.1 Rakefile
thecore-1.7.0 Rakefile
thecore-1.6.13 Rakefile
thecore-1.6.10 Rakefile
thecore-1.6.9 Rakefile
thecore-1.6.8 Rakefile
thecore-1.6.7 Rakefile
thecore-1.6.5 Rakefile
thecore-1.6.4 Rakefile
thecore-1.6.3 Rakefile
thecore-1.6.2 Rakefile
thecore-1.6.1 Rakefile
thecore-1.6.0 Rakefile
thecore-1.5.14 Rakefile
thecore-1.5.13 Rakefile
thecore-1.5.12 Rakefile