README.md in support_utils-0.1.0 vs README.md in support_utils-0.1.1
- old
+ new
@@ -223,10 +223,32 @@
=> false
```
-### **`Model.truncate(confirm)`**
+### **`Model#saved?`**
+
+Returns the result after save a record using `save` or `update_attributes`
+
+
+Example saving the record.
+
+
+```
+user = User.new
+
+user.saved?
+ => nil
+
+user.update_attributes(email: "john.doe@example.com")
+ => true
+
+user.saved?
+ => true
+
+```
+
+### **`Model.truncate!(confirm)`**
Truncate the table reseting the primary key
```