Sha256: 7a45f24a0a70cd118f543171911a578c7bf8e041dafd4b8c50dbce580ea16d1d

Contents?: true

Size: 711 Bytes

Versions: 50

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("../spec/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

50 entries across 50 versions & 1 rubygems

Version Path
optimacms-0.1.61 Rakefile
optimacms-0.3.9 Rakefile
optimacms-0.3.8 Rakefile
optimacms-0.3.7 Rakefile
optimacms-0.3.6 Rakefile
optimacms-0.3.5 Rakefile
optimacms-0.3.2 Rakefile
optimacms-0.3.1 Rakefile
optimacms-0.2.23 Rakefile
optimacms-0.2.22 Rakefile
optimacms-0.2.21 Rakefile
optimacms-0.2.20 Rakefile
optimacms-0.2.19 Rakefile
optimacms-0.2.18 Rakefile
optimacms-0.2.17 Rakefile
optimacms-0.2.16 Rakefile
optimacms-0.2.15 Rakefile
optimacms-0.2.14 Rakefile
optimacms-0.2.13 Rakefile
optimacms-0.2.12 Rakefile