summaryrefslogtreecommitdiffhomepage
path: root/lib/yard/mruby/cli/yardoc.rb
blob: 0087cdf4de00c87974269ced6cd5a2a87a95c9e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module YARD::MRuby::CLI
  module Yardoc

    # Redefines default files for YARD::CLI::Yardoc
    def parse_arguments(*args)
      super(*args)
      self.files = %w{src/**/*.c mrblib/**/*.rb include/**/*.h} if self.files.empty?
    end
  end

  # Load Above modifications into YARD::CLI::Yardoc
  YARD::CLI::Yardoc.include Yardoc
end