Sha256: fed933ebcf3226ff2571f86f8a56cb150328d8c5fe6e0ddbbb2cd9fcb42be812
Contents?: true
Size: 1.13 KB
Versions: 3
Compression:
Stored size: 1.13 KB
Contents
# -*- 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
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
eggplant-0.2.2 | eggplant.gemspec |
eggplant-0.2.1 | eggplant.gemspec |
eggplant-0.2.0 | eggplant.gemspec |