README.md in rails-perftest-0.0.1 vs README.md in rails-perftest-0.0.2
- old
+ new
@@ -542,11 +542,11 @@
### `benchmarker`
Usage:
```bash
-Usage: rperf benchmarker 'Ruby.code' 'Ruby.more_code' ... [OPTS]
+Usage: perftest benchmarker 'Ruby.code' 'Ruby.more_code' ... [OPTS]
-r, --runs N Number of runs.
Default: 4
-o, --output PATH Directory to use when writing the results.
Default: tmp/performance
-m, --metrics a,b,c Metrics to use.
@@ -554,19 +554,19 @@
```
Example:
```bash
-$ rperf benchmarker 'Item.all' 'CouchItem.all' --runs 3 --metrics wall_time,memory
+$ perftest benchmarker 'Item.all' 'CouchItem.all' --runs 3 --metrics wall_time,memory
```
### `profiler`
Usage:
```bash
-Usage: rperf profiler 'Ruby.code' 'Ruby.more_code' ... [OPTS]
+Usage: perftest profiler 'Ruby.code' 'Ruby.more_code' ... [OPTS]
-r, --runs N Number of runs.
Default: 1
-o, --output PATH Directory to use when writing the results.
Default: tmp/performance
-m, --metrics a,b,c Metrics to use.
@@ -576,10 +576,10 @@
```
Example:
```bash
-$ rperf profiler 'Item.all' 'CouchItem.all' --runs 2 --metrics process_time --formats flat
+$ perftest profiler 'Item.all' 'CouchItem.all' --runs 2 --metrics process_time --formats flat
```
NOTE: Metrics and formats vary from interpreter to interpreter. Pass `--help` to
each tool to see the defaults for your interpreter.