Skip to content

Commit

Permalink
Rename for consistency.
Browse files Browse the repository at this point in the history
  • Loading branch information
weppos committed Sep 18, 2012
1 parent dc77fcb commit 0e7c68b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion lib/whois/record/parser/base_afilias.rb
Expand Up @@ -8,7 +8,7 @@


require 'whois/record/parser/base'
require 'whois/record/scanners/afilias'
require 'whois/record/scanners/base_afilias'


module Whois
Expand Down
4 changes: 2 additions & 2 deletions lib/whois/record/parser/base_whoisd.rb
Expand Up @@ -8,7 +8,7 @@


require 'whois/record/parser/base'
require 'whois/record/scanners/whoisd.rb'
require 'whois/record/scanners/base_whoisd.rb'


module Whois
Expand Down Expand Up @@ -116,7 +116,7 @@ class BaseWhoisd < Base
#
# @return [Hash]
def parse
Scanners::Whoisd.new(content_for_scanner).parse
Scanners::BaseWhoisd.new(content_for_scanner).parse
end


Expand Down
2 changes: 1 addition & 1 deletion lib/whois/record/scanners/base_afilias.rb
Expand Up @@ -14,7 +14,7 @@ module Whois
class Record
module Scanners

# Scanner for the Afilias record.
# Scanner for the Afilias-based records.
class BaseAfilias < Base

self.tokenizers += [
Expand Down
Expand Up @@ -14,8 +14,8 @@ module Whois
class Record
module Scanners

# Scanner for Whoisd-based record.
class Whoisd < Base
# Scanner for Whoisd-based records.
class BaseWhoisd < Base

self.tokenizers += [
:scan_available,
Expand Down

0 comments on commit 0e7c68b

Please sign in to comment.