Sha256: aba3b6dfbb9583aa8b7d703d5b53092b9622e394e78c114d54a789b199ce4e18

Contents?: true

Size: 671 Bytes

Versions: 23

Compression:

Stored size: 671 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    = 'Godmin'
  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

23 entries across 23 versions & 1 rubygems

Version Path
godmin-1.0.0 Rakefile
godmin-0.12.4 Rakefile
godmin-0.12.3 Rakefile
godmin-0.12.2 Rakefile
godmin-0.12.1 Rakefile
godmin-0.12.0 Rakefile
godmin-0.11.2 Rakefile
godmin-0.11.1 Rakefile
godmin-0.11.0 Rakefile
godmin-0.10.3 Rakefile
godmin-0.10.2 Rakefile
godmin-0.10.1 Rakefile
godmin-0.10.0 Rakefile
godmin-0.9.9 Rakefile
godmin-0.9.8 Rakefile
godmin-0.9.7 Rakefile
godmin-0.9.6 Rakefile
godmin-0.9.5 Rakefile
godmin-0.9.4 Rakefile
godmin-0.9.3 Rakefile