Created
November 20, 2018 10:44
-
-
Save al3rez/ff32d31d591dfaafe85ddd9d53d344c2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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? |
Author
al3rez
commented
Nov 20, 2018
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment