turtles/app/controllers/hello_world_controller.rb
2018-04-18 17:31:26 +10:00

9 lines
174 B
Ruby

# frozen_string_literal: true
class HelloWorldController < ApplicationController
layout "hello_world"
def index
@hello_world_props = { name: "Stranger" }
end
end