Skip to content

Instantly share code, notes, and snippets.

@al3rez
Created November 20, 2018 10:44
Show Gist options
  • Save al3rez/ff32d31d591dfaafe85ddd9d53d344c2 to your computer and use it in GitHub Desktop.
Save al3rez/ff32d31d591dfaafe85ddd9d53d344c2 to your computer and use it in GitHub Desktop.
require "byebug"
class CharFieldKlass
def initialize(*args)
end
def valid?
end
end
class Formy
def self.CharField(*args)
CharFieldKlass.new(args)
end
def valid?
validations = []
self.class.instance_variables.each do |name|
validations << self.class.instance_variable_get(name)
end
validations.all? { |validation| validation.valid? }
end
end
class SurveyForm < Formy
@name = CharField(required=true)
end
SurveyForm.new.valid?
@al3rez
Copy link
Author

al3rez commented Nov 20, 2018

def create
  form = SurveyForm.(params)
  if form.valid?
    # do something
  else
    render status: :bad_request
  end
end

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment