robot_rules 0.9.2 → 0.9.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/VERSION.yml +1 -1
- data/lib/robot_rules.rb +1 -1
- data/robot_rules.gemspec +1 -1
- metadata +2 -2
data/VERSION.yml
CHANGED
data/lib/robot_rules.rb
CHANGED
|
@@ -41,7 +41,7 @@ class RobotRules
|
|
|
41
41
|
if $1.empty?
|
|
42
42
|
current << nil
|
|
43
43
|
else
|
|
44
|
-
disallow = URI.parse($1)
|
|
44
|
+
disallow = Addressable::URI.parse($1)
|
|
45
45
|
|
|
46
46
|
next unless disallow.scheme.nil? or disallow.scheme == uri.scheme
|
|
47
47
|
next unless disallow.port.nil? or disallow.port == uri.port
|
data/robot_rules.gemspec
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{robot_rules}
|
|
8
|
-
s.version = "0.9.
|
|
8
|
+
s.version = "0.9.3"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["James Edward Gray II", "Jeremy Friesen", "Edgar Gonzalez"]
|