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.
- data/README.textile +7 -4
- data/VERSION +1 -1
- data/jitai.gemspec +1 -1
- data/lib/jitai.rb +2 -0
- 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
|
-
|
|
7
|
-
|
|
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
|
-
|
|
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.
|
|
1
|
+
0.2.25
|
data/jitai.gemspec
CHANGED
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:
|
|
4
|
+
hash: 37
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 2
|
|
9
|
-
-
|
|
10
|
-
version: 0.2.
|
|
9
|
+
- 25
|
|
10
|
+
version: 0.2.25
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- kellydunn
|