class Vale::Hello

Hello

Author

Richard Davis

Copyright

Copyright 2018 Richard Davis

License

GNU Public License 3

Contains modularized code for project; given example provides a greeting

Public Class Methods

greeting(name) click to toggle source

Returns a greeting provided a name.

# File lib/vale/hello.rb, line 32
def self.greeting(name)
  "Hello, #{name}."
end