Sha256: 7c33978517c2ee7170e3563d6ff424cdb8d73019d8190a0a60a900178e059f1e

Contents?: true

Size: 1.28 KB

Versions: 5

Compression:

Stored size: 1.28 KB

Contents

#--
# Ruby Whois
#
# An intelligent pure Ruby WHOIS client and parser.
#
# Copyright (c) 2009-2013 Simone Carletti <weppos@weppos.net>
#++


require 'strscan'


module Whois
  class Record
    module Scanners

      # The Nodable module tries to emulate a super-simple Abstract Syntax Tree structure
      # including method for accessing ast nodes.
      #
      # == Usage
      #
      # Include the Nodable module and provide a <tt>parse</tt> instance method.
      # <tt>parse</tt> should returns a Hash representing the AST.
      #
      #   def parse
      #     Scanner.new.parse
      #   end
      #   # => { "created_on" => "2009-12-12", ... }
      #
      # Now you can access the AST using the <tt>node</tt> method.
      #
      #   node "created_on"
      #   # => "2009-12-12"
      #
      #   node? "created_on"
      #   # => true
      #
      #   node? "created_at"
      #   # => false
      #
      module Nodable

        def node(key)
          if block_given?
            value = ast[key]
            value = yield(value) unless value.nil?
            value
          else
            ast[key]
          end
        end

        def node?(key)
          !ast[key].nil?
        end

      private

        def ast
          @ast ||= parse
        end

      end

    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
whois-3.1.3 lib/whois/record/scanners/nodable.rb
whois-3.1.2 lib/whois/record/scanners/nodable.rb
whois-3.1.1 lib/whois/record/scanners/nodable.rb
whois-3.1.0 lib/whois/record/scanners/nodable.rb
whois-3.0.0 lib/whois/record/scanners/nodable.rb