forked from FontCustom/fontcustom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fontcustom.gemspec
27 lines (23 loc) · 1.08 KB
/
fontcustom.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# -*- 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 = ["[email protected]", "[email protected]"]
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'
gem.add_dependency 'thor'
gem.add_dependency 'listen'
gem.add_development_dependency 'rake'
gem.add_development_dependency 'bundler'
gem.add_development_dependency 'rspec'
end