git-multirepo 1.0.0.beta72 → 1.0.0.beta73
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/CHANGELOG.md +6 -0
- data/lib/multirepo/commands/do-command.rb +1 -2
- data/lib/multirepo/info.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f05e56e445d2ab30ba6dca45b49fb2cd47e9349ac8c15084e81bcb4bbf73b550
|
4
|
+
data.tar.gz: c79246f2a15649dc5ff1ef4eb839f51cfdddb098b4f781c32cadd56c6a7bcd55
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c61e2187e094d2b77a8a1a6b449f8dc8b51fe3db43bd196128f7c777ee9bdc225d41a69e74d192a98f7dbf05dc9dd5c91f88a052113b1c2421b9e2d6f0ecfc02
|
7
|
+
data.tar.gz: 195deb5994bd99baa0d4bfec1c650deac51d09267242be86aeb441fa73d933454756736156d7d295920b371b4765baec43a0c9f6735f863c223fd31ede5f20c8
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,12 @@
|
|
2
2
|
|
3
3
|
To install betas run `gem install git-multirepo --pre`
|
4
4
|
|
5
|
+
## 1.0.0.beta73
|
6
|
+
|
7
|
+
- **Enhancement:** Git commands with arbitrary complexity can be performed using the `do` command, for example:
|
8
|
+
|
9
|
+
multi do push --set-upstream origin master
|
10
|
+
|
5
11
|
## 1.0.0.beta72
|
6
12
|
|
7
13
|
- **Bug Fix:** Revert changes from beta 71
|
@@ -22,13 +22,12 @@ module MultiRepo
|
|
22
22
|
end
|
23
23
|
|
24
24
|
def initialize(argv)
|
25
|
-
@operation = argv.
|
25
|
+
@operation = argv.remainder!.join(" ")
|
26
26
|
@repo_selection = RepoSelection.new(argv)
|
27
27
|
super
|
28
28
|
end
|
29
29
|
|
30
30
|
def validate!
|
31
|
-
super
|
32
31
|
help! "You must provide a git operation to perform" unless @operation
|
33
32
|
help! "You can't provide more than one operation modifier (--deps, --main, etc.)" unless @repo_selection.valid?
|
34
33
|
end
|
data/lib/multirepo/info.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: git-multirepo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.0.
|
4
|
+
version: 1.0.0.beta73
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Michaël Fortin
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-01-
|
11
|
+
date: 2019-01-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|