= private = protected
This method is deprecated or moved on the latest stable version. The last existing version (v2.3.8) is shown here.
These similar methods exist in v3.2.13:
load_paths()
Returns a list of paths this plugin wishes to make available in $LOAD_PATH.
# File railties/lib/rails/plugin.rb, line 35 def load_paths report_nonexistant_or_empty_plugin! unless valid? returning [] do |load_paths| load_paths << lib_path if has_lib_directory? load_paths << app_paths if has_app_directory? end.flatten end