Sha256: 83c6e45ba57ca484202e9030fd79a201a36fbbb7d30efad04c4e96c74398bd28
Contents?: true
Size: 542 Bytes
Versions: 7
Compression:
Stored size: 542 Bytes
Contents
#!/usr/bin/env ruby usage = "Usage: #{File.basename($0)} [prepare]" $stderr.sync = $stdout.sync = true require 'wrongdoc' opts = Wrongdoc.config case ARGV[0] when "prepare" Wrongdoc::Prepare.new(opts).run when "release_notes" Wrongdoc::Release.notes($stdout, opts) when "release_changes" Wrongdoc::Release.changes($stdout) when "all" Wrongdoc::Prepare.new(opts).run Wrongdoc::Rdoc.new(opts).run Wrongdoc::Merge.new(opts).run Wrongdoc::Final.new(opts, ARGV[1]).run else abort "#{$0.inspect} #{ARGV.inspect} not understood" end
Version data entries
7 entries across 7 versions & 1 rubygems