123456789_123456789_123456789_123456789_123456789_

Class: Bundler::Dependency

Relationships & Source Files
Super Chains via Extension / Inclusion / Inheritance
Class Chain:
Instance Chain:
Inherits: Gem::Dependency
Defined in: lib/bundler/dependency.rb

Constant Summary

Class Method Summary

Instance Attribute Summary

Instance Method Summary

::Gem::Dependency - Inherited

Constructor Details

.new(name, version, options = {}, &blk) ⇒ Dependency

[ GitHub ]

  
# File 'lib/bundler/dependency.rb', line 77

def initialize(name, version, options = {}, &blk)
  type = options["type"] || :runtime
  super(name, version, type)

  @autorequire    = nil
  @groups         = Array(options["group"] || :default).map(&:to_sym)
  @source         = options["source"]
  @git            = options["git"]
  @branch         = options["branch"]
  @platforms      = Array(options["platforms"])
  @env            = options["env"]
  @should_include = options.fetch("should_include", true)
  @gemfile        = options["gemfile"]

  @autorequire = Array(options["require"] || []) if options.key?("require")
end

Instance Attribute Details

#autorequire (readonly)

[ GitHub ]

  
# File 'lib/bundler/dependency.rb', line 9

attr_reader :autorequire

#branch (readonly)

[ GitHub ]

  
# File 'lib/bundler/dependency.rb', line 10

attr_reader :groups, :platforms, :gemfile, :git, :branch

#current_env?Boolean (readonly)

[ GitHub ]

  
# File 'lib/bundler/dependency.rb', line 114

def current_env?
  return true unless @env
  if @env.is_a?(Hash)
    @env.all? do |key, val|
      ENV[key.to_s] && (val.is_a?(String) ? ENV[key.to_s] == val : ENV[key.to_s] =~ val)
    end
  else
    ENV[@env.to_s]
  end
end

#current_platform?Boolean (readonly)

[ GitHub ]

  
# File 'lib/bundler/dependency.rb', line 125

def current_platform?
  return true if @platforms.empty?
  @platforms.any? do |p|
    Bundler.current_ruby.send("#{p}?")
  end
end

#gemfile (readonly)

[ GitHub ]

  
# File 'lib/bundler/dependency.rb', line 10

attr_reader :groups, :platforms, :gemfile, :git, :branch

#git (readonly)

[ GitHub ]

  
# File 'lib/bundler/dependency.rb', line 10

attr_reader :groups, :platforms, :gemfile, :git, :branch

#groups (readonly)

[ GitHub ]

  
# File 'lib/bundler/dependency.rb', line 10

attr_reader :groups, :platforms, :gemfile, :git, :branch

#platforms (readonly)

[ GitHub ]

  
# File 'lib/bundler/dependency.rb', line 10

attr_reader :groups, :platforms, :gemfile, :git, :branch

#should_include?Boolean (readonly)

[ GitHub ]

  
# File 'lib/bundler/dependency.rb', line 110

def should_include?
  @should_include && current_env? && current_platform?
end

#specific?Boolean (readonly)

[ GitHub ]

  
# File 'lib/bundler/dependency.rb', line 138

def specific?
  super
rescue NoMethodError
  requirement != ">= 0"
end

Instance Method Details

#expanded_platforms

[ GitHub ]

  
# File 'lib/bundler/dependency.rb', line 106

def expanded_platforms
  @platforms.map {|pl| PLATFORM_MAP[pl] }
end

#gem_platforms(valid_platforms)

Returns the platforms this dependency is valid for, in the same order as passed in the valid_platforms parameter

[ GitHub ]

  
# File 'lib/bundler/dependency.rb', line 96

def gem_platforms(valid_platforms)
  return valid_platforms if @platforms.empty?

  valid_generic_platforms = valid_platforms.map {|p| [p, GemHelpers.generic(p)] }.to_h
  @gem_platforms ||= expanded_platforms.compact.uniq

  filtered_generic_platforms = valid_generic_platforms.values & @gem_platforms
  valid_generic_platforms.select {|_, v| filtered_generic_platforms.include?(v) }.keys
end

#to_lock

[ GitHub ]

  
# File 'lib/bundler/dependency.rb', line 132

def to_lock
  out = super
  out << "!" if source
  out << "\n"
end