README.md in commandos-0.1.4 vs README.md in commandos-0.1.5

- old
+ new

@@ -2,21 +2,18 @@ Commandos is a project designed to help any ruby app use the command pattern to change state. ## PREREQUISITES -* ruby-2.3.1 +* ruby-2.4.0 -## DEPENDENCIES -* ActiveModel::Validations - ## INSTALLATION In your Gemfile ``` -gem 'Commandos' +gem 'commandos' ``` ## EXAMPLES 1. [Command & Handler](./examples/command_and_handler.md) @@ -46,10 +43,5 @@ ``` Any method in the `ClassMethods` module will be injected into the `IAmACommand` class. Any method in the `InstanceMethods` module will be injected into instances of `IAmACommand` objects. - - -### Commandos::Plugins::ActiveModelPlugin - -This plugin is used to give commands active model like validation behavior.