forked from flavorjones/loofah
-
Notifications
You must be signed in to change notification settings - Fork 1
/
gemspec
75 lines (70 loc) · 2.14 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
Gem::Specification.new do |s|
s.name = %q{loofah}
s.version = "0.4.7"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Mike Dalessio"]
s.date = %q{2010-03-09}
s.description = %q{HTML/XML manipulation and sanitization based on Nokogiri }
s.email = %q{mike@csa.net}
s.files = [
"CHANGELOG.rdoc",
"DEPRECATED.rdoc",
"MIT-LICENSE.txt",
"Manifest.txt",
"README.rdoc",
"Rakefile",
"TODO.rdoc",
"benchmark/benchmark.rb",
"benchmark/fragment.html",
"benchmark/helper.rb",
"benchmark/www.slashdot.com.html",
"init.rb",
"lib/loofah.rb",
"lib/loofah/active_record.rb",
"lib/loofah/elements.rb",
"lib/loofah/helpers.rb",
"lib/loofah/html/document.rb",
"lib/loofah/html/document_fragment.rb",
"lib/loofah/html5/scrub.rb",
"lib/loofah/html5/whitelist.rb",
"lib/loofah/instance_methods.rb",
"lib/loofah/metahelpers.rb",
"lib/loofah/scrubber.rb",
"lib/loofah/scrubbers.rb",
"lib/loofah/xml/document.rb",
"lib/loofah/xml/document_fragment.rb",
"lib/loofah/xss_foliate.rb",
"test/helper.rb",
"test/html5/test_sanitizer.rb",
"test/integration/test_ad_hoc.rb",
"test/integration/test_helpers.rb",
"test/integration/test_html.rb",
"test/integration/test_scrubbers.rb",
"test/integration/test_xml.rb",
"test/unit/test_active_record.rb",
"test/unit/test_api.rb",
"test/unit/test_helpers.rb",
"test/unit/test_scrubber.rb",
"test/unit/test_scrubbers.rb",
"test/unit/test_xss_foliate.rb"
]
s.homepage = %q{http://github.com/flavorjones/loofah/}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.5}
s.summary = %q{{HTML/XML manipulation and sanitization based on Nokogiri}
s.test_files = [
"test/helper.rb"
]
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_development_dependency(%q<rspec>, [">= 1.2.9"])
else
s.add_dependency(%q<rspec>, [">= 1.2.9"])
end
else
s.add_dependency(%q<rspec>, [">= 1.2.9"])
end
end