Brut: A New Web Framework for Ruby
July 08, 2025
📬 Get My Weekly Newsletter ☞
Brut aims to be a simple, yet fully-featured web framework for Ruby. It's different than other Ruby web frameworks. Brut has no controllers, verbs, or resources. You build pages, forms, and single-action handlers. You write HTML, which is generated on the server. You can write all the JavaScript and CSS you want.
Here’s a web page that tells you what time it is:
class TimePage < AppPage
def initialize(clock:)
@clock = clock
end
def page_template
heade...
Read more at naildrivin5.com