fontcustom 1.1.0.pre2 → 1.1.0
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +18 -0
- data/CONTRIBUTING.md +2 -3
- data/README.md +37 -12
- data/Rakefile +3 -3
- data/fontcustom.gemspec +11 -10
- data/lib/fontcustom.rb +18 -22
- data/lib/fontcustom/cli.rb +29 -30
- data/lib/fontcustom/generator/font.rb +23 -34
- data/lib/fontcustom/generator/template.rb +26 -24
- data/lib/fontcustom/options.rb +51 -48
- data/lib/fontcustom/scripts/generate.py +2 -2
- data/lib/fontcustom/templates/_fontcustom-bootstrap.scss +5 -5
- data/lib/fontcustom/templates/_fontcustom-rails.scss +5 -5
- data/lib/fontcustom/templates/_fontcustom.scss +8 -5
- data/lib/fontcustom/templates/fontcustom-bootstrap-ie7.css +1 -1
- data/lib/fontcustom/templates/fontcustom-bootstrap.css +1 -1
- data/lib/fontcustom/templates/fontcustom-preview.html +67 -22
- data/lib/fontcustom/templates/fontcustom.css +4 -1
- data/lib/fontcustom/templates/fontcustom.yml +14 -14
- data/lib/fontcustom/util.rb +18 -8
- data/lib/fontcustom/version.rb +1 -1
- data/lib/fontcustom/watcher.rb +24 -22
- data/spec/fixtures/shared/templates/custom.css +6 -0
- data/spec/fixtures/shared/templates/regular.css +3 -0
- data/spec/fontcustom/generator/font_spec.rb +14 -14
- data/spec/fontcustom/generator/template_spec.rb +34 -21
- data/spec/fontcustom/options_spec.rb +45 -69
- data/spec/fontcustom/util_spec.rb +26 -5
- data/spec/fontcustom/watcher_spec.rb +6 -6
- data/spec/spec_helper.rb +8 -8
- metadata +11 -11
- data/TODO.md +0 -21
data/TODO.md
DELETED
@@ -1,21 +0,0 @@
|
|
1
|
-
# 1.1.0 TODO
|
2
|
-
|
3
|
-
* Investigate initial update to .fontcustom-data
|
4
|
-
* Verify all templates work
|
5
|
-
|
6
|
-
* Include pull requests
|
7
|
-
* Allow absolute paths
|
8
|
-
* Abstract path expansion into Util
|
9
|
-
* Improve paths in messages (wrap in ticks)
|
10
|
-
* Improve error messages in Watcher and Fontcustom.rb
|
11
|
-
|
12
|
-
# Maybe
|
13
|
-
|
14
|
-
* Option to set icon canvas size (auto, string, or hash)
|
15
|
-
* `fontcustom clean`
|
16
|
-
|
17
|
-
* Have error messages `say_status` themselves?
|
18
|
-
* Change outputed filenames to reflect font name
|
19
|
-
* On install hook / message to remind about installing fontforge
|
20
|
-
* --silent instead of (or alongside?) --verbose
|
21
|
-
* Configure colors for thor say
|