class Md2key::Configuration::Master

Attributes

cover[R]
name[R]
template[R]

Public Class Methods

new(name: nil, cover: nil, template: nil) click to toggle source

@param [String] name - TODO: reject `nil` after Ruby 2.0 support is dropped @param [TrueClass,FalseClass,nil] cover @param [Integer,nil] template

# File lib/md2key/configuration.rb, line 9
def initialize(name: nil, cover: nil, template: nil)
  @name = name
  @cover = cover
  @template = template
end