diff options
| author | Seba Gamboa <[email protected]> | 2015-10-09 12:56:21 -0300 |
|---|---|---|
| committer | Seba Gamboa <[email protected]> | 2015-10-09 12:56:21 -0300 |
| commit | a9e882900acdce3e10f615cbeeb9025398ea190b (patch) | |
| tree | cb204c822b1a2124de988c16bf17e97041073806 | |
| parent | a825e7e846f925c54944e3342527f41c8f1e04cd (diff) | |
| download | yard-mruby-a9e882900acdce3e10f615cbeeb9025398ea190b.tar.gz yard-mruby-a9e882900acdce3e10f615cbeeb9025398ea190b.zip | |
Change default parse order
| -rw-r--r-- | lib/yard/mruby/cli/yardoc.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/yard/mruby/cli/yardoc.rb b/lib/yard/mruby/cli/yardoc.rb index b253428..0087cdf 100644 --- a/lib/yard/mruby/cli/yardoc.rb +++ b/lib/yard/mruby/cli/yardoc.rb @@ -4,7 +4,7 @@ module YARD::MRuby::CLI # Redefines default files for YARD::CLI::Yardoc def parse_arguments(*args) super(*args) - self.files = %w{mrblib/**/*.rb src/**/*.c include/**/*.h} if self.files.empty? + self.files = %w{src/**/*.c mrblib/**/*.rb include/**/*.h} if self.files.empty? end end |
