Class: Bundler::CLI::Fund

Inherits:
Object
  • Object
show all
Defined in:
lib/bundler/cli/fund.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options) ⇒ Fund

Returns a new instance of Fund.



7
8
9
# File 'lib/bundler/cli/fund.rb', line 7

def initialize(options)
  @options = options
end

Instance Attribute Details

#optionsObject (readonly)

Returns the value of attribute options.



5
6
7
# File 'lib/bundler/cli/fund.rb', line 5

def options
  @options
end

Instance Method Details

#runObject



11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# File 'lib/bundler/cli/fund.rb', line 11

def run
  Bundler.definition.validate_runtime!

  groups = Array(options[:group]).map(&:to_sym)

  deps = if groups.any?
    Bundler.definition.dependencies_for(groups)
  else
    Bundler.definition.current_dependencies
  end

  fund_info = deps.each_with_object([]) do |dep, arr|
    spec = Bundler.definition.specs[dep.name].first
    if spec..key?("funding_uri")
      arr << "* #{spec.name} (#{spec.version})\n  Funding: #{spec.["funding_uri"]}"
    end
  end

  if fund_info.empty?
    Bundler.ui.info "None of the installed gems you directly depend on are looking for funding."
  else
    Bundler.ui.info fund_info.join("\n")
  end
end