#!/usr/bin/env ruby require 'reap/application' HELP = <<-END Usage: #{File.basename($0)} [options] This command generates a changelog and stores it in the log/ directory. This command gathers it's information from the project's source control manager. Currently only SVN is supported, but GIT support is forth-coming. END if ARGV.include?('--help') puts HELP else app = Reap::Application.new app.log_changes end