Skip to content

openfaas/ruby-http

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ruby-http

Usage:

faas template pull https://github.com/openfaas-incubator/ruby-http
faas new --lang ruby-http homepage

Example:

Edit the homepage/handler.rb file to return some HTML:

class Handler
  def run(body, headers)
    status_code = 200 # Optional status code, defaults to 200
    response_headers = {"content-type" => "text/html"}
    body = "<html>Hello world from the Ruby template</html>"

    return body, response_headers, status_code
  end
end

Add a gem to the homepage/Gemfile if you need additional dependencies.

Deploy:

faas-cli up -f homepage.yml