Class: Mist::Configuration::Author

Inherits:
Object
  • Object
show all
Defined in:
lib/mist/configuration/author.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeAuthor

Returns a new instance of Author.



4
5
6
7
# File 'lib/mist/configuration/author.rb', line 4

def initialize
  @name = "John Doe"
  @email = "[email protected]"
end

Instance Attribute Details

#emailObject

Returns the value of attribute email.



2
3
4
# File 'lib/mist/configuration/author.rb', line 2

def email
  @email
end

#nameObject

Returns the value of attribute name.



2
3
4
# File 'lib/mist/configuration/author.rb', line 2

def name
  @name
end