Method: FileRecord::Persistence::ClassMethods#create

Defined in:
lib/file_record/persistence.rb

#create(attributes = {}) ⇒ Object



23
24
25
26
# File 'lib/file_record/persistence.rb', line 23

def create(attributes = {})
  obj = self.new(attributes)
  obj.save ? obj : nil
end