├── .gitignore ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── compact.yml ├── expand.yml ├── fontvariationdescription.gemspec ├── lib ├── fontvariationdescription.rb └── fontvariationdescription │ ├── compactor.rb │ ├── expander.rb │ ├── item.rb │ ├── parser.rb │ ├── test.rb │ └── version.rb ├── parser.yml └── test ├── compactor_test.rb ├── expander_test.rb ├── font_variation_description_test.rb ├── parser_test.rb └── test_helper.rb /.gitignore: -------------------------------------------------------------------------------- 1 | *.gem 2 | .bundle 3 | Gemfile.lock 4 | pkg/* 5 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typekit/fvd/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typekit/fvd/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typekit/fvd/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typekit/fvd/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typekit/fvd/HEAD/Rakefile -------------------------------------------------------------------------------- /compact.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typekit/fvd/HEAD/compact.yml -------------------------------------------------------------------------------- /expand.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typekit/fvd/HEAD/expand.yml -------------------------------------------------------------------------------- /fontvariationdescription.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typekit/fvd/HEAD/fontvariationdescription.gemspec -------------------------------------------------------------------------------- /lib/fontvariationdescription.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typekit/fvd/HEAD/lib/fontvariationdescription.rb -------------------------------------------------------------------------------- /lib/fontvariationdescription/compactor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typekit/fvd/HEAD/lib/fontvariationdescription/compactor.rb -------------------------------------------------------------------------------- /lib/fontvariationdescription/expander.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typekit/fvd/HEAD/lib/fontvariationdescription/expander.rb -------------------------------------------------------------------------------- /lib/fontvariationdescription/item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typekit/fvd/HEAD/lib/fontvariationdescription/item.rb -------------------------------------------------------------------------------- /lib/fontvariationdescription/parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typekit/fvd/HEAD/lib/fontvariationdescription/parser.rb -------------------------------------------------------------------------------- /lib/fontvariationdescription/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typekit/fvd/HEAD/lib/fontvariationdescription/test.rb -------------------------------------------------------------------------------- /lib/fontvariationdescription/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typekit/fvd/HEAD/lib/fontvariationdescription/version.rb -------------------------------------------------------------------------------- /parser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typekit/fvd/HEAD/parser.yml -------------------------------------------------------------------------------- /test/compactor_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typekit/fvd/HEAD/test/compactor_test.rb -------------------------------------------------------------------------------- /test/expander_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typekit/fvd/HEAD/test/expander_test.rb -------------------------------------------------------------------------------- /test/font_variation_description_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typekit/fvd/HEAD/test/font_variation_description_test.rb -------------------------------------------------------------------------------- /test/parser_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typekit/fvd/HEAD/test/parser_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typekit/fvd/HEAD/test/test_helper.rb --------------------------------------------------------------------------------