Sha256: 2b705e3dff305ee2b5294e65d3578218aa863bae0fb1229e98405c634897a5a7
Contents?: true
Size: 1.21 KB
Versions: 4
Compression:
Stored size: 1.21 KB
Contents
require "down" require "digest" require "json" require "yaml" require "singleton" require "fontist/errors" require "fontist/version" require "fontist/font" require "fontist/formula" require "fontist/system_font" require "fontist/fontist_font" require "fontist/manifest" require "fontist/helpers" module Fontist def self.ui Fontist::Utils::UI end def self.lib_path Fontist.root_path.join("lib") end def self.root_path Pathname.new(File.dirname(__dir__)) end def self.fontist_path Pathname.new(ENV["FONTIST_PATH"] || File.join(Dir.home, ".fontist")) end def self.fonts_path Fontist.fontist_path.join("fonts") end def self.formulas_repo_path Fontist.fontist_path.join("formulas") end def self.formulas_repo_url "https://github.com/fontist/formulas.git" end def self.formulas_path Fontist.formulas_repo_path.join("Formulas") end def self.downloads_path Fontist.fontist_path.join("downloads") end def self.system_file_path Fontist.lib_path.join("fontist", "system.yml") end def self.system_index_path Fontist.fontist_path.join("system_index.yml") end def self.formula_index_path Fontist.formulas_repo_path.join("index.yml") end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
fontist-1.8.4 | lib/fontist.rb |
fontist-1.8.3 | lib/fontist.rb |
fontist-1.8.2 | lib/fontist.rb |
fontist-1.8.1 | lib/fontist.rb |