ROFISH / redcloth forked from jgarber/redcloth

RedCloth is a Ruby library for converting Textile into HTML. This fork is the customizations for use with the Fangamer Forums. It includes BBCode support and ability to disable parsing certain elements.

This URL has Read+Write access

redcloth / RedCloth.gemspec
100644 35 lines (26 sloc) 0.919 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
31
32
33
34
35
require 'rubygems'
spec = Gem::Specification.new do |s|
 
  ## Basic Information
 
  s.name = 'RedCloth'
  s.version = "2.0.8"
  s.platform = Gem::Platform::RUBY
  s.summary = <<-TXT
RedCloth is a module for using Textile in Ruby. Textile is a text format.
A very simple text format. Another stab at making readable text that can be converted to HTML.
TXT
 
  ## Include tests, libs, docs
 
  s.files = ['tests/**/*', 'lib/**/*', 'docs/**/*', 'run-tests.rb'].collect do |dirglob|
                Dir.glob(dirglob)
            end.flatten.delete_if {|item| item.include?("CVS")}
 
  ## Load-time details
 
  s.require_path = 'lib'
  s.autorequire = 'redcloth'
 
  ## Author and project details
 
  s.author = "Why the Lucky Stiff"
  s.email = "why@ruby-lang.org"
  s.rubyforge_project = "redcloth"
  s.homepage = "http://www.whytheluckystiff.net/ruby/redcloth/"
end
if $0==__FILE__
  Gem::Builder.new(spec).build
end