forked from foca/undress
-
Notifications
You must be signed in to change notification settings - Fork 1
/
undress.gemspec
40 lines (34 loc) · 972 Bytes
/
undress.gemspec
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
36
37
38
39
40
Gem::Specification.new do |s|
s.name = "undress"
s.version = "0.1.1"
s.date = "2009-07-21"
s.description = "Simply translate HTML to Textile, Markdown, or whatever other markup format you need"
s.summary = "Convert HTML into other markup languages"
s.homepage = "http://undress.rubyforge.org"
s.authors = "Nicolás Sanguinetti"
s.email = "[email protected]"
s.require_paths = ["lib"]
s.rubyforge_project = "undress"
s.has_rdoc = true
s.rubygems_version = "1.3.1"
s.add_dependency "hpricot"
if s.respond_to?(:add_development_dependency)
s.add_development_dependency "sr-mg"
s.add_development_dependency "contest"
s.add_development_dependency "redgreen"
end
s.files = %w[
.gitignore
LICENSE
README.rdoc
Rakefile
undress.gemspec
lib/undress.rb
lib/undress/grammar.rb
lib/undress/textile.rb
lib/core_ext/object.rb
test/test_helper.rb
test/test_grammar.rb
test/test_textile.rb
]
end