Sha256: 706cc0860414d8d6552bb026e43d0903eb1290b65f36be7db15385829d7cce82

Contents?: true

Size: 1.19 KB

Versions: 2

Compression:

Stored size: 1.19 KB

Contents

module Jitai
  require 'jitai/railtie' if defined?(Rails) # Add rake tasks for Rails apps

  class FontManager
    attr_accessor :moz_path, :ie_path
    
    def initialize(path= "public")
      @moz_path = "#{path}/stylesheets/fonts_moz.css"
      @ie_path = "#{path}/stylesheets/fonts_ie.css"
    end
  end

  class Font
    attr_accessor :name, :path

    def initialize(path)
      @name = path.downcase.split(".")[0]
      @path = path
    end

    def to_css
      moz = "@font-face {font-family:'#{@name}'; src:url('#{name}.ttf');}"
      ie = "@font-face {font-family:'#{@name}'; src:url('#{name}.eot');}"
      manager = Jitai::FontManager.new
      find_font(manager.moz_path, moz)
      find_font(manager.ie_path, ie)
    end

    def find_font(file, search_font)
      File.open(file, "w") if !File.exists?(file) # touch file

      in_file = false
      File.open(file) do |font|
        test = font.gets
        if !test.nil?
          return (in_file = true) if search_font.eql? test.strip
        end
      end

      unless in_file
        File.open(file, "a") do |f|
          f.puts search_font
          puts search_font
          puts "Was added to #{file}"
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
jitai-0.2.9 lib/jitai.rb
jitai-0.2.8 lib/jitai.rb