Sha256: df33b2c472143eb720e22700de2924da8ad4f95acf578ef1a838f4d9a8f4363b

Contents?: true

Size: 711 Bytes

Versions: 18

Compression:

Stored size: 711 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    = 'Optimacms'
  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

18 entries across 18 versions & 1 rubygems

Version Path
optimacms-0.1.36 Rakefile
optimacms-0.1.34 Rakefile
optimacms-0.1.32 Rakefile
optimacms-0.1.31 Rakefile
optimacms-0.1.28 Rakefile
optimacms-0.1.27 Rakefile
optimacms-0.1.25 Rakefile
optimacms-0.1.24 Rakefile
optimacms-0.1.23 Rakefile
optimacms-0.1.21 Rakefile
optimacms-0.1.19 Rakefile
optimacms-0.1.17 Rakefile
optimacms-0.1.15 Rakefile
optimacms-0.1.14 Rakefile
optimacms-0.1.5 Rakefile
optimacms-0.1.3 Rakefile
optimacms-0.1.2 Rakefile
optimacms-0.1.1 Rakefile