Method: MyPrecious::MarkdownAdapter#name

Defined in:
lib/myprecious.rb

#nameObject

Generate Markdown linking the name to the homepage for the dependency



475
476
477
478
479
480
481
482
483
484
# File 'lib/myprecious.rb', line 475

embellish(:name) do |base_val|
  cswatch = begin
    color_swatch + ' '
  rescue StandardError
    ''
  end
  "#{cswatch}[#{base_val}](#{dependency.homepage_uri})"
rescue Gems::NotFound
  base_val
end