class Zeitungen::Password

Attributes

month[R]
passphrase[R]
year[R]

Public Class Methods

new(year, month, passphrase) click to toggle source
# File lib/zeitungen/password.rb, line 4
def initialize(year, month, passphrase)
  @year = year.to_i
  @month = month.to_i
  @passphrase = passphrase
end