Sha256: dcec3936a6bbc7f30e1b1095b135b2794affeec1962a8a3b3f4d00082667da71

Contents?: true

Size: 424 Bytes

Versions: 1

Compression:

Stored size: 424 Bytes

Contents

#!/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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
reap-9.4.0 bin/reap-log-changes