sharkfrown/sharkfrown.gemspec

22 lines
823 B
Ruby
Raw Normal View History

2012-06-25 21:04:38 +00:00
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/sharkfrown/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["John Bintz"]
gem.email = ["john@coswellproductions.com"]
2012-06-26 13:17:27 +00:00
gem.description = %q{Stupid-simple Rack-based Markdown browser with syntax highlighting.}
gem.summary = %q{Stupid-simple Rack-based Markdown browser with syntax highlighting.}
2012-06-25 21:04:38 +00:00
gem.homepage = ""
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.name = "sharkfrown"
gem.require_paths = ["lib"]
gem.version = Sharkfrown::VERSION
gem.add_dependency 'pygmentize'
gem.add_dependency 'thin'
gem.add_dependency 'redcarpet'
end