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 CHANGED
@@ -2,4 +2,4 @@
2
2
  :major: 0
3
3
  :minor: 9
4
4
  :build:
5
- :patch: 2
5
+ :patch: 3
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.2"
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"]
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 9
8
- - 2
9
- version: 0.9.2
8
+ - 3
9
+ version: 0.9.3
10
10
  platform: ruby
11
11
  authors:
12
12
  - James Edward Gray II