public
Description: Whitelist-based Ruby HTML sanitizer.
Homepage: http://rgrove.github.com/sanitize/
Clone URL: git://github.com/rgrove/sanitize.git
sanitize / sanitize.gemspec
c2f9215b » adamh 2009-01-22 Whoops, add the gemspec for... 1 Gem::Specification.new do |s|
2 s.name = 'sanitize'
3 s.summary = 'Whitelist-based HTML sanitizer.'
00ed7c12 » rgrove 2009-05-19 Update history, bump gemspe... 4 s.version = '1.0.8.1'
c2f9215b » adamh 2009-01-22 Whoops, add the gemspec for... 5 s.author = 'Ryan Grove'
6 s.email = 'ryan@wonko.com'
7 s.homepage = 'http://github.com/rgrove/sanitize/'
8 s.platform = Gem::Platform::RUBY
9
10 s.require_path = 'lib'
11 s.required_ruby_version = '>= 1.8.6'
12
9fc5adfd » rgrove 2009-04-11 Require Hpricot 0.8.1+, whi... 13 s.add_dependency('hpricot', '~> 0.8.1')
c2f9215b » adamh 2009-01-22 Whoops, add the gemspec for... 14
15 s.files = [
16 'HISTORY',
17 'LICENSE',
18 'README.rdoc',
19 'lib/sanitize.rb',
20 'lib/sanitize/config.rb',
21 'lib/sanitize/config/basic.rb',
22 'lib/sanitize/config/relaxed.rb',
185379c7 » rgrove 2009-02-07 Remove htmlentities gem dep... 23 'lib/sanitize/config/restricted.rb'
c2f9215b » adamh 2009-01-22 Whoops, add the gemspec for... 24 ]
25 end