rrm 0.1.5 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +16 -1
- data/lib/rrm/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f2c48b04a5f3ac5865d18af58e59792ffd2c4e643a3ffc38556b7293c035e257
|
|
4
|
+
data.tar.gz: 41d09da30b7705a5f9e80dc479f26651547aeaa6d171aec9b65e57312eaf166b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a070c02305f945cc417d425ae87d78701f9629eb53c943fa9f32c14f9f2e46fe175354d0cec2e6036c9d65344f4e6f3f53de35f1921f1bc5e0d8a1f394fde845
|
|
7
|
+
data.tar.gz: abd903a3daba1e3178d7f173e7deabe00e9a8e6d0835f61ab368bb2788018eb3990926eccd89b36a65ef82c56c0abe59c61eca32f1e5560786dd8fbae869e504
|
data/README.md
CHANGED
|
@@ -29,7 +29,22 @@ Tested on macOS Mojave with Ruby 2.6.2 and Docker 18.09.2.
|
|
|
29
29
|
|
|
30
30
|
### Usage
|
|
31
31
|
|
|
32
|
-
|
|
32
|
+
Install:
|
|
33
|
+
```
|
|
34
|
+
gem install rrm
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
Update all projects to the latest available patch version:
|
|
38
|
+
```
|
|
39
|
+
rrm --urls git@github.com:jannewaren/rrm-demo-app-ancient.git,git@github.com:jannewaren/rrm-demo-app-old.git,git@github.com:jannewaren/rrm-demo-app-new.git --patch-latest
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
Update all projects to the latest available minor version, with gems updated as well:
|
|
43
|
+
```
|
|
44
|
+
rrm --urls git@github.com:jannewaren/rrm-demo-app-ancient.git,git@github.com:jannewaren/rrm-demo-app-old.git,git@github.com:jannewaren/rrm-demo-app-new.git --patch-latest --update-gems
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
Run `rrm --help` to see all available options.
|
|
33
48
|
|
|
34
49
|
## Contributing
|
|
35
50
|
|
data/lib/rrm/version.rb
CHANGED