Sha256: d31110863204402c530fd7d3eee3d414c12fe43e9dafe129539959b917d2850d

Contents?: true

Size: 677 Bytes

Versions: 66

Compression:

Stored size: 677 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    = 'ExpressAdmin'
  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

66 entries across 66 versions & 1 rubygems

Version Path
express_admin-2.0.0.b Rakefile
express_admin-2.0.0.a Rakefile
express_admin-1.8.1 Rakefile
express_admin-1.8.0 Rakefile
express_admin-1.7.32 Rakefile
express_admin-1.7.31 Rakefile
express_admin-1.7.30 Rakefile
express_admin-1.7.29 Rakefile
express_admin-1.7.28 Rakefile
express_admin-1.7.27 Rakefile
express_admin-1.7.26 Rakefile
express_admin-1.7.25 Rakefile
express_admin-1.7.24 Rakefile
express_admin-1.7.23 Rakefile
express_admin-1.7.22 Rakefile
express_admin-1.7.21 Rakefile
express_admin-1.7.20 Rakefile
express_admin-1.7.19 Rakefile
express_admin-1.7.18 Rakefile
express_admin-1.7.17 Rakefile