README.md in enumitation-0.0.1 vs README.md in enumitation-0.0.3

- old
+ new

@@ -11,12 +11,11 @@ Ever wanted to restrict an ActiveRecord attribute to specific values, but thought a join table to contain the values and a foreign key constraint were overkill? Well, you could opt for an enum field, but maybe your DBMS doesn't support enums. Or maybe it does, but you just aren't in the mood for an enum field today. -Also, do you need to provide these values for options in a select field -in a form? +Also, do you need to provide these values as options in a select form field? Enumitation exists to allow restrictions on ActiveRecord attribute values without the need for a join table or enum field, while also providing those values for the purpose of options in a select field in a form. @@ -79,9 +78,13 @@ ### There are other gems that practically do the same thing. True, but the ones I found either didn't fit my needs or they did so much more than I needed. I wanted something that fit my needs exactly and nothing more. +## Testing + + bundle exec rspec spec + ## Contributing If you think Enumitation could be better, fork away and send a pull -request! +request! Please make sure to include specs for your changes.