method
framework_paths
v1.2.6 -
Show latest stable
- Class:
Rails::Configuration
framework_paths()public
No documentation available.
# File railties/lib/initializer.rb, line 593
def framework_paths
# TODO: Don't include dirs for frameworks that are not used
%w(
railties
railties/lib
actionpack/lib
activesupport/lib
activerecord/lib
actionmailer/lib
actionwebservice/lib
).map { |dir| "#{framework_root_path}/#{dir}" }.select { |dir| File.directory?(dir) }
end