Gem allows you to automatically generate a form in web application.
make install
make lint
require 'hexlet_code'
User = Struct.new(:name, :job, :gender, keyword_init: true)
user = User.new name: 'ck', job: 'hexlet', gender: 'male'
HexletCode.form_for user do |f|
f.input :name
f.input :job, as: :text
end
# <form action="#" method="post">
# <input name="name" type="text" value="rob">
# <textarea cols="20" rows="40" name="ck">hexlet</textarea>
# </form>