method

dependencies

ruby latest stable - Class: Bundler::RemoteSpecification

Method not available on this version

This method is only available on newer versions. The first available version (v2_6_3) is shown here.

dependencies()
public

No documentation available.

# File lib/bundler/remote_specification.rb, line 76
    def dependencies
      @dependencies ||= begin
        deps = method_missing(:dependencies)

        # allow us to handle when the specs dependencies are an array of array of string
        # see https://github.com/bundler/bundler/issues/5797
        deps = deps.map {|d| d.is_a?(Gem::Dependency) ? d : Gem::Dependency.new(*d) }

        deps
      end
    end