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-5.1.1 Rakefile
promethee-5.1.0 Rakefile
promethee-5.0.2 Rakefile
promethee-5.0.1 Rakefile
promethee-5.0.0 Rakefile
promethee-4.1.28 Rakefile
promethee-4.1.27 Rakefile
promethee-4.1.26 Rakefile
promethee-4.1.25 Rakefile
promethee-4.1.24 Rakefile
promethee-4.1.23 Rakefile
promethee-4.1.22 Rakefile
promethee-4.1.21 Rakefile
promethee-4.1.20 Rakefile
promethee-4.1.19 Rakefile
promethee-4.1.18 Rakefile
promethee-4.1.17 Rakefile
promethee-4.1.16 Rakefile
promethee-4.1.15 Rakefile
promethee-4.1.14 Rakefile