Sha256: 6d577f6309616894b24082d46c20f50dce0d9839fe0aa582a305df7349752ee7
Contents?: true
Size: 1.29 KB
Versions: 2
Compression:
Stored size: 1.29 KB
Contents
# -*- encoding: utf-8 -*- lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'cheapredwine/version' Gem::Specification.new do |gem| gem.name = "cheapredwine" gem.version = CheapRedWine::VERSION gem.authors = ["Hugo Bastien"] gem.email = ["hugo@hbastien.com"] gem.description = %q{I needed a way to test fonts on the web. I based this library on myfonts.com. CheapRedWine makes use to Harfbuzz' hb-view utility to generate images from fonts with a slew of different parameters. It also uses fontTools' ttx utility for font introspection.} gem.summary = %q{I needed a way to test fonts on the web. I based this library on myfonts.com. CheapRedWine makes use to Harfbuzz' hb-view utility to generate images from fonts with a slew of different parameters. It also uses fontTools' ttx utility for font introspection.} gem.homepage = "https://github.com/hugobast/cheapredwine" gem.files = `git ls-files`.split($/) gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) } gem.test_files = gem.files.grep(%r{^(test|spec|features)/}) gem.require_paths = ["lib"] gem.add_development_dependency 'rspec' gem.add_development_dependency 'rake' gem.add_dependency 'tipo' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
cheapredwine-0.3.1 | cheapredwine.gemspec |
cheapredwine-0.2.0 | cheapredwine.gemspec |