Method: RailsEnvironment#best_install_method

Defined in:
lib/commands/plugin.rb

#best_install_methodObject



115
116
117
118
119
120
121
122
# File 'lib/commands/plugin.rb', line 115

def best_install_method
  return :http unless use_svn?
  case
    when use_externals? then :externals
    when use_checkout? then :checkout
    else :export
  end
end