module Birdwatcher::Concerns::WordList

Public Class Methods

included(base) click to toggle source
# File lib/birdwatcher/concerns/word_list.rb, line 4
def self.included(base)
  base.extend(ClassMethods)
end

Public Instance Methods

make_word_list(options = {}) click to toggle source

Get a new word list instance

@param options [Hash] Word list options

@return [Birdwatcher::WordList]

# File lib/birdwatcher/concerns/word_list.rb, line 16
def make_word_list(options = {})
  Birdwatcher::WordList.new(options)
end