Class: Fontist::ManifestResponseFont

Inherits:
ManifestFont
  • Object
show all
Defined in:
lib/fontist/manifest_response.rb

Instance Method Summary collapse

Methods inherited from ManifestFont

#find_font_with_name, #format_spec, #group_paths, #group_paths_empty?, #style, #style_paths, #to_response

Instance Method Details

#install(confirmation: "no", hide_licenses: false, no_progress: false, location: nil) ⇒ Object



29
30
31
32
33
34
35
36
37
38
39
# File 'lib/fontist/manifest_response.rb', line 29

def install(confirmation: "no", hide_licenses: false, no_progress: false,
location: nil)
  Fontist::Font.install(
    name,
    force: false,
    confirmation: confirmation,
    hide_licenses: hide_licenses,
    no_progress: no_progress,
    location: location,
  )
end