module PointmdComments

Constants

VERSION

Public Class Methods

collect(options = {}) click to toggle source
# File lib/pointmd_comments.rb, line 19
def self.collect(options = {})
  Aggregators::Main.new(options).call
end
collect_from_shell() click to toggle source
# File lib/pointmd_comments.rb, line 23
def self.collect_from_shell
  args = ARGV.dup
  options = OptParser.new.parse
  Aggregators::Main.new(options).call
rescue StandardError => e
  puts e.class, e.message
  puts e.backtrace if args.include? '-v'
end