module Gendered

Constants

GenderedError
VERSION

Public Class Methods

config() click to toggle source
# File lib/gendered.rb, line 36
def self.config
  @config ||= Config.new
end
configure() { |config| ... } click to toggle source
# File lib/gendered.rb, line 31
def self.configure
  raise ArgumentError, "configuration block required" unless block_given?
  yield config
end