README.md in lapidarius-4.2.0 vs README.md in lapidarius-4.2.1
- old
+ new
@@ -32,11 +32,11 @@
## Usage
This library invokes the `Gem::Commands::DependencyCommand` class recursively to collect all the levels of dependency.
Both runtime and development dependencies are counted (identical dependencies are counted once), but just the former are printed on screen:
```shell
-> lapidarius sinatra
+lapidarius sinatra
sinatra (2.0.0)
├── mustermann (~> 1.0)
├── rack (~> 2.0)
├── rack-protection (= 2.0.0)
│ └── rack (>= 0)
@@ -47,23 +47,29 @@
### Version
By default this library scans for the first version `>= 0` found at [rubygems.org](https://rubygems.org/).
In case you are interested on a specific version just specify the `-v` option:
```shell
-> lapidarius sinatra -v 1.4.7
+lapidarius sinatra -v 1.4.7
sinatra (1.4.7)
├── rack (~> 1.5)
├── rack-protection (~> 1.4)
│ └── rack (>= 0)
└── tilt (< 3, >= 1.3)
3 runtime, 4 development
```
### Remote
-By default this library scan for local gems, if you want to scan for remote ones specify the `-r` option (be aware of slowness):
+By default this library scan for local gems, warning if the gem is not found:
```shell
-$ lapidarius roda -v 3.3.0 -r
+lapidarius roda -v 3.3.0
+No gems found matching roda (= 3.0.0)
+```
+
+If you want to scan for remote gems specify the `-r` option (be aware of slowness):
+```shell
+lapidarius roda -v 3.3.0 -r
roda (3.3.0)
└── rack (>= 0)
1 runtime, 10 development
```