Sha256: d072a8935c72023a59434f549ad37ab95945a9572667541f39c3337f603716ab

Contents?: true

Size: 552 Bytes

Versions: 300

Compression:

Stored size: 552 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    = 'Promethee'
  rdoc.options << '--line-numbers'
  rdoc.rdoc_files.include('README.md')
  rdoc.rdoc_files.include('lib/**/*.rb')
end






require 'bundler/gem_tasks'

require 'rake/testtask'

Rake::TestTask.new(:test) do |t|
  t.libs << 'test'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = false
end


task default: :test

Version data entries

300 entries across 300 versions & 2 rubygems

Version Path
promethee-1.11.9 Rakefile
promethee-1.11.8 Rakefile
promethee-1.11.7 Rakefile
promethee-1.11.6 Rakefile
promethee-1.11.5 Rakefile
promethee-1.11.4 Rakefile
promethee-1.11.3 Rakefile
promethee-1.11.2 Rakefile
promethee-1.11.1 Rakefile
promethee-1.11.0 Rakefile
promethee-1.10.9 Rakefile
promethee-1.10.8 Rakefile
promethee-1.10.7 Rakefile
promethee-1.10.6 Rakefile
promethee-1.10.5 Rakefile
promethee-1.10.4 Rakefile
promethee-1.10.3 Rakefile
promethee-1.10.2 Rakefile
promethee-1.10.1 Rakefile
promethee-1.10.0 Rakefile