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.0.12 Rakefile
promethee-1.0.11 Rakefile
promethee-1.0.10 Rakefile
promethee-1.0.9 Rakefile
promethee-1.0.8 Rakefile
promethee-1.0.7 Rakefile
promethee-1.0.6 Rakefile
promethee-1.0.5 Rakefile
promethee-1.0.4 Rakefile
promethee-1.0.3 Rakefile
promethee-1.0.2 Rakefile
promethee-1.0.1 Rakefile
promethee-1.0.0 Rakefile
promethee-0.1.8 Rakefile
promethee-0.1.7 Rakefile
promethee-0.1.6 Rakefile
promethee-0.1.5 Rakefile
promethee-0.1.3 Rakefile
promethee-0.1.2 Rakefile
promethee-0.1.1 Rakefile