# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "eggplant/version" Gem::Specification.new do |s| s.name = "eggplant" s.version = Eggplant::VERSION s.authors = ["Paul Chavard"] s.email = ["paul@chavard.net"] s.homepage = "http://github.com/tchak/eggplant" s.summary = "Presentation software for developers" s.description = "Eggplant is a Sinatra web app that reads simple markdown files for a presentation." s.add_runtime_dependency 'rdiscount' s.add_runtime_dependency 'nokogiri' s.add_runtime_dependency 'albino' s.add_runtime_dependency 'thor' s.add_runtime_dependency 'sinatra', '~> 1.2' s.add_runtime_dependency 'uglifier' s.add_runtime_dependency 'sinatra-assetpack' s.add_runtime_dependency 'slim' s.add_runtime_dependency 'eventmachine', '~> 1.0.0.beta' s.add_runtime_dependency 'em-websocket' s.add_runtime_dependency 'thin' s.files = `git ls-files`.split("\n") s.files += Dir.glob("lib/eggplant/public/**/*") s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } s.require_paths = ["lib"] end