README.md in pumper-1.2.0 vs README.md in pumper-1.3.0

- old
+ new

@@ -65,13 +65,14 @@ Option | Description ------------------------- |:----------------------------------------------------------- `--project` | Path to ruby project where <your_gem> needs update `--absolute_path` | If project path is absolute - `--gemset` | Gemset name (if you use RVM) - `--vendor` | If project gems stored in the vendor/cache + `--gemset` | Gemset's name (if you use RVM) + `--vendor` | If project's gems stored in the vendor/cache `--config` | If you want to use special config for updating project + `--list` | Select projects from `.pumper.yml` (use with --config) Example: ```sh @@ -95,12 +96,21 @@ rails_project: path: /Users/admin/Projects/rails_project absolute_path: true gemset: ruby-2.1.0 vendor: true + another_project: + path: /Users/admin/Projects/another_project + ``` and run ```sh $ pumper --config -``` \ No newline at end of file +=> +# Update all (rails_project, another_project) + +$ pumper --config --list rails_project +=> +# Update only rails_project +```