= private = protected
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