Flowdock
method

build_message

Importance_0
Ruby latest stable (v2_5_5) - 0 notes - Class: MissingSpecVersionError
build_message() private

No documentation

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

Hide source
# File lib/rubygems/errors.rb, line 60
    def build_message
      if name == "bundler" && message = Gem::BundlerVersionFinder.missing_version_message
        return message
      end
      names = specs.map(&:full_name)
      "Could not find '#{name}' (#{requirement}) - did find: [#{names.join ','}]\n"
    end
Register or log in to add new notes.