public
Description: Whitelist-based Ruby HTML sanitizer.
Homepage: http://rgrove.github.com/sanitize/
Clone URL: git://github.com/rgrove/sanitize.git
commit  00ed7c128e23a205342bc8fd519749189a1e93a7
tree    05d2abb316c7cc9c1c79bcb5941019f8b78e5ad2
parent  8550b8afae09ad5a22f70c3d2e4838cbfeebdcfc
sanitize / sanitize.gemspec
100644 26 lines (22 sloc) 0.633 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
Gem::Specification.new do |s|
  s.name = 'sanitize'
  s.summary = 'Whitelist-based HTML sanitizer.'
  s.version = '1.0.8.1'
  s.author = 'Ryan Grove'
  s.email = 'ryan@wonko.com'
  s.homepage = 'http://github.com/rgrove/sanitize/'
  s.platform = Gem::Platform::RUBY
 
  s.require_path = 'lib'
  s.required_ruby_version = '>= 1.8.6'
 
  s.add_dependency('hpricot', '~> 0.8.1')
 
  s.files = [
    'HISTORY',
    'LICENSE',
    'README.rdoc',
    'lib/sanitize.rb',
    'lib/sanitize/config.rb',
    'lib/sanitize/config/basic.rb',
    'lib/sanitize/config/relaxed.rb',
    'lib/sanitize/config/restricted.rb'
  ]
end