module Dropdown::Parsers::Parser

Attributes

content[RW]

Public Class Methods

new(content) click to toggle source
# File lib/dropdown/parsers/parser.rb, line 6
def initialize(content)
  raise ArgumentError if content.nil?
  @content = content
end