public
Description: BlueCloth's evil twin - convert HTML into Markdown
Homepage: http://www.craigjolicoeur.com/clothblue
Clone URL: git://github.com/cpjolicoeur/clothblue.git
Click here to lend your support to: clothblue and make a donation at www.pledgie.com !
clothblue / clothblue.gemspec
100644 15 lines (14 sloc) 0.903 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Gem::Specification.new do |s|
  s.name = "ClothBlue"
  s.version = "0.5.1"
  s.date = "2008-11-25"
  s.summary = "HTML to Markdown converter"
  s.email = "cpjolicoeur@gmail.com"
  s.homepage = "http://github.com/cpjolicoeur/clothblue"
  s.description = "ClothBlue is BlueCloth's evil twin. It converts existing HTML into Markdown format for use with BlueCloth."
  s.has_rdoc = true
  s.authors = ["Craig P Jolicoeur"]
  s.files = ["README", "TODO", "clothblue.gemspec", "lib/clothblue.rb", "lib/parsehtml/parsehtml.rb", "test/README", "test/test_entities.rb", "test/test_formatting.rb", "test/test_headings.rb", "test/test_lists.rb", "test/test_structure.rb", "test/test_tables.rb"]
  s.test_files = ["test/test_entities.rb", "test/test_formatting.rb", "test/test_headings.rb", "test/test_lists.rb", "test/test_structure.rb", "test/test_tables.rb"]
  s.rdoc_options = ["--main", "lib/README.rdoc"]
end