- Line 13 in
CookbookUploadsController. Do we need to check if the upload is valid if we're checking if it's valid in thefinish!method? - What value does Virtus add to
CookbookUpload::Metadatathat can't be achieved with accessors?
class A
attr_accessor :b, :c, :d
def initialize(h)
h.each { |k, v| send("#{k}=", v) }
end
end- What's the usecase of being able to pass
CookbookUpload#finish!a block? - Can we find a better naming convention than
maybe_x?