class Fontist::ManifestResponseFont
Public Instance Methods
Source
# File lib/fontist/manifest_response.rb, line 24 def install(confirmation: "no", hide_licenses: false, no_progress: false) styles.each do |style| if style.paths.nil? # If no paths are found, notify the user but continue with the # installation Fontist.ui.error("Font #{name} with style #{style} not found, skipping installation.") end end Fontist::Font.install( name, force: false, confirmation: confirmation, hide_licenses: hide_licenses, no_progress: no_progress, ) end