Sha256: 663b94f1ee8e4f934a8c6228e59d68e8d909dfdc6daef1684c3a1c11bdfc86c0

Contents?: true

Size: 524 Bytes

Versions: 6

Compression:

Stored size: 524 Bytes

Contents

#!/usr/bin/env rake
begin
  require 'bundler/setup'
rescue LoadError
  puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end
begin
  require 'rdoc/task'
rescue LoadError
  require 'rdoc/rdoc'
  require 'rake/rdoctask'
  RDoc::Task = Rake::RDocTask
end

RDoc::Task.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title    = 'Amalgam'
  rdoc.options << '--line-numbers'
  rdoc.rdoc_files.include('README.rdoc')
  rdoc.rdoc_files.include('lib/**/*.rb')
end




Bundler::GemHelper.install_tasks

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
amalgam-2.1.4.1 Rakefile
amalgam-2.1.4 Rakefile
amalgam-2.1.3.1 Rakefile
amalgam-2.1.3 Rakefile
amalgam-2.1.2 Rakefile
amalgam-2.1.1 Rakefile