Move yard opts file into root folder

Although there is the `--yardopts` file option and we only build docs
for the `/core` (yet), I think it is best to share the options for all
subfolders.

Also does not require the gem on boot as we only run yard via command
line anyway.
This commit is contained in:
Thomas von Deyen 2019-01-03 10:08:47 +01:00
parent 454269ddd8
commit 967a5fd852
No known key found for this signature in database
GPG Key ID: F2548C2CBA04A848
2 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ end
gem 'rspec_junit_formatter', require: false, group: :ci
# Documentation
gem 'yard'
gem 'yard', require: false
custom_gemfile = File.expand_path('Gemfile-custom', __dir__)
eval File.read(custom_gemfile) if File.exist?(custom_gemfile)