public
Fork of mislav/bluecloth
Description: Markdown processor in Ruby; foked from official SVN repo to fix bugs
Homepage: http://www.deveiate.org/projects/BlueCloth
Clone URL: git://github.com/cpjolicoeur/bluecloth.git
bluecloth / .gemspec
100644 30 lines (26 sloc) 0.829 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/usr/bin/ruby
#
# BlueCloth RubyGems specification
# $Id$
#
 
require 'rubygems'
require './utils.rb'
include UtilityFunctions
 
spec = Gem::Specification.new do |s|
  s.name = 'BlueCloth'
  s.version = "1.0.0"
  s.platform = Gem::Platform::RUBY
  s.summary = "BlueCloth is a Ruby implementation of Markdown, a text-to-HTML conversion tool for web writers. Markdown allows you to write using an easy-to-read, easy-to-write plain text format, then convert it to structurally valid XHTML (or HTML)."
  s.requirements.push( 'strscan', 'logger' )
  s.files = getVettedManifest()
  s.require_path = 'lib'
  s.autorequire = 'bluecloth'
  s.author = "Michael Granger"
  s.email = "ged@FaerieMUD.org"
  s.rubyforge_project = "bluecloth"
  s.homepage = "http://bluecloth.rubyforge.org/"
end
 
if $0==__FILE__
  p spec
  Gem::Builder.new(spec).build
end