Sha256: 0ce2830848f128bf94008da62626e5b57d9212fc53a3560ae203356e9045ab70

Contents?: true

Size: 1.11 KB

Versions: 3

Compression:

Stored size: 1.11 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       = %q{Generate custom icon webfonts from the comfort of the command line.}
  gem.description   = %q{Transforms EPS and SVG vectors into icon webfonts. Generates CSS (or any custom template) for easy inclusion in your projects.}
  gem.homepage      = "http://fontcustom.com"

  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.8.0'
  gem.add_dependency 'thor', '~>0.18.1'
  gem.add_dependency 'listen', '~>1.2.2'

  gem.add_development_dependency 'rake'
  gem.add_development_dependency 'bundler'
  gem.add_development_dependency 'rspec'
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
fontcustom-1.1.0.pre2 fontcustom.gemspec
fontcustom-1.1.0.pre fontcustom.gemspec
fontcustom-1.0.1 fontcustom.gemspec