sanitize 2.0.2 → 2.0.3.dev.20110603

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of sanitize might be problematic. Click here for more details.

Files changed (4) hide show
  1. data/HISTORY.md +6 -0
  2. data/README.rdoc +2 -2
  3. data/lib/sanitize/version.rb +1 -1
  4. metadata +10 -7
data/HISTORY.md CHANGED
@@ -1,6 +1,12 @@
1
1
  Sanitize History
2
2
  ================================================================================
3
3
 
4
+ Version 2.0.3 (git)
5
+ -------------------
6
+
7
+ * Loosened the Nokogiri dependency to allow Nokogiri 1.5.x.
8
+
9
+
4
10
  Version 2.0.2 (2011-05-21)
5
11
  --------------------------
6
12
 
data/README.rdoc CHANGED
@@ -14,14 +14,14 @@ of fragile regular expressions, Sanitize has no trouble dealing with malformed
14
14
  or maliciously-formed HTML, and will always output valid HTML or XHTML.
15
15
 
16
16
  *Author*:: Ryan Grove (mailto:ryan@wonko.com)
17
- *Version*:: 2.0.2 (2011-05-21)
17
+ *Version*:: 2.0.3 (git)
18
18
  *Copyright*:: Copyright (c) 2011 Ryan Grove. All rights reserved.
19
19
  *License*:: MIT License (http://opensource.org/licenses/mit-license.php)
20
20
  *Website*:: http://github.com/rgrove/sanitize
21
21
 
22
22
  == Requires
23
23
 
24
- * Nokogiri ~> 1.4.4
24
+ * Nokogiri >= 1.4.4
25
25
  * libxml2 >= 2.7.2
26
26
 
27
27
  == Installation
@@ -1,3 +1,3 @@
1
1
  class Sanitize
2
- VERSION = '2.0.2'
2
+ VERSION = '2.0.3.dev.20110603'
3
3
  end
metadata CHANGED
@@ -1,8 +1,8 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sanitize
3
3
  version: !ruby/object:Gem::Version
4
- prerelease:
5
- version: 2.0.2
4
+ prerelease: 6
5
+ version: 2.0.3.dev.20110603
6
6
  platform: ruby
7
7
  authors:
8
8
  - Ryan Grove
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2011-05-21 00:00:00 Z
13
+ date: 2011-06-04 00:00:00 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: nokogiri
@@ -18,9 +18,12 @@ dependencies:
18
18
  requirement: &id001 !ruby/object:Gem::Requirement
19
19
  none: false
20
20
  requirements:
21
- - - ~>
21
+ - - ">="
22
22
  - !ruby/object:Gem::Version
23
23
  version: 1.4.4
24
+ - - <
25
+ - !ruby/object:Gem::Version
26
+ version: "1.6"
24
27
  type: :runtime
25
28
  version_requirements: *id001
26
29
  - !ruby/object:Gem::Dependency
@@ -83,13 +86,13 @@ required_ruby_version: !ruby/object:Gem::Requirement
83
86
  required_rubygems_version: !ruby/object:Gem::Requirement
84
87
  none: false
85
88
  requirements:
86
- - - ">="
89
+ - - ">"
87
90
  - !ruby/object:Gem::Version
88
- version: "0"
91
+ version: 1.3.1
89
92
  requirements: []
90
93
 
91
94
  rubyforge_project: riposte
92
- rubygems_version: 1.7.2
95
+ rubygems_version: 1.8.5
93
96
  signing_key:
94
97
  specification_version: 3
95
98
  summary: Whitelist-based HTML sanitizer.