# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "fontana/version" Gem::Specification.new do |s| s.name = "fontana" s.version = Fontana::VERSION s.authors = ["Michael Deering"] s.email = ["mdeering@mdeering.com"] s.homepage = "" s.summary = %q{Dragonfly Encoder for handeling fonts} s.description = %q{Get your font on without all of the hassle of preconverting your fonts to every possible format.} s.rubyforge_project = "fontana" s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } s.require_paths = ["lib"] s.add_development_dependency 'rspec' s.add_runtime_dependency 'dragonfly' end