Flowdock
method

install

Importance_0
v1.0.0 - Show latest stable - 0 notes - Class: Plugin
install(method=nil) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File railties/lib/commands/plugin.rb, line 158
  def install(method=nil)
    method ||= rails_env.best_install_method?
    unless installed?
      send("install_using_#{method}")
    else
      puts "already installed: #{name} (#{uri})"
    end
  end
Register or log in to add new notes.