Sha256: 81ea71370f7c66b982a7288bafa8e62373ccbdf66371fc79d0b27bf9b1bda57d
Contents?: true
Size: 1.04 KB
Versions: 7
Compression:
Stored size: 1.04 KB
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require 'soywiki' Gem::Specification.new do |s| s.name = "soywiki" s.version = Soywiki::VERSION s.platform = Gem::Platform::RUBY s.licenses = ['MIT'] s.authors = ["Daniel Choi"] s.email = ["dhchoi@gmail.com"] s.homepage = "http://danielchoi.com/software/soywiki.html" s.summary = %q{Wiki with Vim interface and Git repo} s.description = %q{A personal and collaborative wiki for Vim users} s.rubyforge_project = "soywiki" 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"] additional_info = <<-INFO For optional compilation of the wiki to html you will need: - haml and for markdown support: - rdiscount INFO s.requirements = additional_info s.post_install_message = additional_info #s.add_dependency 'haml' #s.add_dependency 'rdiscount' end
Version data entries
7 entries across 7 versions & 1 rubygems