Method: YARD::RegistryStore#load!
- Defined in:
- lib/yard/registry_store.rb
#load!(file = nil) ⇒ Boolean
Loads the .yardoc file and loads all cached objects into memory automatically.
142 143 144 145 146 147 148 149 |
# File 'lib/yard/registry_store.rb', line 142 def load!(file = nil) if load(file) load_all true else false end end |