Sha256: 81fa200694139d95cc4e0d2d65baa9678f6a2a799bd8cf8b0df397327fe5d21a

Contents?: true

Size: 1.27 KB

Versions: 9

Compression:

Stored size: 1.27 KB

Contents

# -*- encoding: utf-8 -*-
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "fontcustom/version"

Gem::Specification.new do |gem|
  gem.name          = "fontcustom"
  gem.version       = Fontcustom::VERSION
  gem.authors       = ["Kai Zau", "Joshua Gross"]
  gem.email         = ["kai@kaizau.com", "joshua@gross.is"]
  gem.summary       = "Generate icon fonts from the command line."
  gem.description   = "Font Custom makes using vector icons easy. Generate icon fonts and supporting templates (e.g. @font-face CSS) from a collection of SVGs."
  gem.homepage      = "http://fontcustom.com"
  gem.post_install_message = ">> Thanks for installing Font Custom! Please ensure that fontforge is installed before compiling any icons. Visit <http://fontcustom.com> for instructions."

  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_dependency "json", "~>1.4"
  gem.add_dependency "thor", "~>0.14"
  gem.add_dependency "listen", "~>1.0"

  gem.add_development_dependency "rake"
  gem.add_development_dependency "bundler"
  gem.add_development_dependency "rspec"
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
fontcustom-1.3.3 fontcustom.gemspec
fontcustom-1.3.2 fontcustom.gemspec
fontcustom-1.3.1 fontcustom.gemspec
fontcustom-1.3.0 fontcustom.gemspec
fontcustom-1.3.0.beta4 fontcustom.gemspec
fontcustom-1.3.0.beta3 fontcustom.gemspec
fontcustom-1.3.0.beta2 fontcustom.gemspec
fontcustom-1.3.0.beta fontcustom.gemspec
fontcustom-1.2.0 fontcustom.gemspec