method
best_install_method
v3.2.8 -
Show latest stable
- Class:
RailsEnvironment
best_install_method()public
No documentation available.
# File railties/lib/rails/commands/plugin.rb, line 85
def best_install_method
return :http unless use_svn?
case
when use_externals? then :externals
when use_checkout? then :checkout
else :export
end
end