method

install_command

install_command()
private

No documentation available.

# File railties/lib/rails/gem_dependency.rb, line 111
    def install_command
      cmd = %w(install) << @name
      cmd << "--version" << %("#{@requirement.to_s}") if @requirement
      cmd << "--source"  << @source  if @source
      cmd
    end