jitai 0.2.24 → 0.2.25

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (5) hide show
  1. data/README.textile +7 -4
  2. data/VERSION +1 -1
  3. data/jitai.gemspec +1 -1
  4. data/lib/jitai.rb +2 -0
  5. metadata +3 -3
data/README.textile CHANGED
@@ -1,14 +1,17 @@
1
1
  h1. jitai
2
2
 
3
3
  A rake utility that consolidates your collection of custom font files into manageable CSS files.
4
+ hr.
4
5
 
5
- h2.
6
- ul.
7
- li. 0.2.0 - .ttf fonts to .eot fonts.
6
+ h2. Usage
7
+
8
+ First, add your fonts to pre.public/fonts
9
+
10
+ Then, do a little bit of:
8
11
 
9
12
  pre. sudo gem install jitai
10
13
  rake jitai:refresh
11
14
 
12
- And then use your fonts accordingly.
15
+ Now you have pre.fonts_moz.css and pre.fonts_ie.css in your pre.stylesheets directory.
13
16
 
14
17
  Copyright (c) 2010 Kelly. See LICENSE for details.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.2.24
1
+ 0.2.25
data/jitai.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{jitai}
8
- s.version = "0.2.24"
8
+ s.version = "0.2.25"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["kellydunn"]
data/lib/jitai.rb CHANGED
@@ -23,6 +23,8 @@ module Jitai
23
23
  # TODO edit ttf2eot so that it's actually installed in the system
24
24
  if !File.exists?(other_file)
25
25
  puts "===== #{conversion_type.upcase} format not found. Attempting to convert... ====="
26
+
27
+ # TODO fix broken conversion. thanks a lot ttf2eot for not having a apt-get
26
28
  %x{cd ttf2eot && ./ttf2eot < #{'../' + @cwd + font_file} > #{'../' + @cwd + font_file.split(".")[0] + conversion_type}}
27
29
  end
28
30
 
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jitai
3
3
  version: !ruby/object:Gem::Version
4
- hash: 39
4
+ hash: 37
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 2
9
- - 24
10
- version: 0.2.24
9
+ - 25
10
+ version: 0.2.25
11
11
  platform: ruby
12
12
  authors:
13
13
  - kellydunn