Class: Bundler::CLI::Fund
- Inherits:
-
Object
- Object
- Bundler::CLI::Fund
- Defined in:
- lib/bundler/cli/fund.rb
Instance Attribute Summary collapse
-
#options ⇒ Object
readonly
Returns the value of attribute options.
Instance Method Summary collapse
-
#initialize(options) ⇒ Fund
constructor
A new instance of Fund.
- #run ⇒ Object
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 = end |
Instance Attribute Details
#options ⇒ Object (readonly)
Returns the value of attribute options.
5 6 7 |
# File 'lib/bundler/cli/fund.rb', line 5 def @options end |
Instance Method Details
#run ⇒ Object
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([: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 |