forked from zwaldowski/fontcustom
-
Notifications
You must be signed in to change notification settings - Fork 1
/
fontcustom.gemspec
28 lines (24 loc) · 1.32 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
28
# -*- 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 = '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(/\r?\n/).delete_if { |x| x.empty? }
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', '<4.0'
gem.add_development_dependency 'rake'
gem.add_development_dependency 'bundler'
gem.add_development_dependency 'rspec', '~>3.1.0'
end