method

ensure_local_only_reverse_dependencies

ruby latest stable - Class: Gem::Commands::DependencyCommand
ensure_local_only_reverse_dependencies()
public

No documentation available.

# File lib/rubygems/commands/dependency_command.rb, line 138
  def ensure_local_only_reverse_dependencies # :nodoc:
    if options[:reverse_dependencies] and remote? and not local? then
      alert_error 'Only reverse dependencies for local gems are supported.'
      terminate_interaction 1
    end
  end