README.md in enum_help-0.0.17 vs README.md in enum_help-0.0.18
- old
+ new
@@ -86,11 +86,11 @@
```erb
<%= f.input :status %>
```
-This will generate select field with translations automaticlly.
+This will generate select field with translations automatically.
And if you want to generate select except some values, then you can pass a collection option.
```erb
<%= f.input :status, Order.restricted_statuses %>
@@ -104,11 +104,11 @@
<%= f.input :status, prompt: 'Please select a status' %>
<%= f.input :status, as: :string %>
```
-From version 0.0.10, enum_help can automaticlly generate radio buttons with i18n labels.
+From version 0.0.10, enum_help can automatically generate radio buttons with i18n labels.
e.g.
```erb
<%= f.input :status, as: :radio_buttons %>
```
@@ -131,11 +131,11 @@
```
## Notice
If you want to use enum feature, field of your table can't be named with `reference`.
-When it is named with 'reference' and define enum in model file, there will be raise an error as below:
+When it is named with 'reference' and define enum in model file, there will be raised an error as below:
NoMethodError: super: no superclass method `enum' for...
## Thanks
@@ -144,8 +144,9 @@
## Contributing
1. Fork it ( http://github.com/zmbacker/enum_help/fork )
2. Create your feature branch (`git checkout -b my-new-feature`)
-3. Commit your changes (`git commit -am 'Add some feature'`)
-4. Push to the branch (`git push origin my-new-feature`)
-5. Create new Pull Request
+3. Run test `rspec`
+4. Commit your changes (`git commit -am 'Add some feature'`)
+5. Push to the branch (`git push origin my-new-feature`)
+6. Create new Pull Request