Method: Bundler::CLI::Fund#run

Defined in:
lib/bundler/cli/fund.rb

#runObject

[View source]

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.requested_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