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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d32ed966109fd0ac0448838cab0867a518f2379b9a14176664fef098643e231d
4
- data.tar.gz: ba357381f325c5cea7824ec4cba5c17008c6cb17d0e04222e43115b6d2cf5afa
3
+ metadata.gz: f05e56e445d2ab30ba6dca45b49fb2cd47e9349ac8c15084e81bcb4bbf73b550
4
+ data.tar.gz: c79246f2a15649dc5ff1ef4eb839f51cfdddb098b4f781c32cadd56c6a7bcd55
5
5
  SHA512:
6
- metadata.gz: 79ca18b6c70fa4be903a4da4bedae9e2c572ec8813263d13d91ebada5828aef47b6a1519bc575de52c3093be50c407d7d851545e4313673b1695285c85c3d883
7
- data.tar.gz: 01a3ee80409e769e7de377d7981858ecc933c04770911e0f0fdd09dbb780e2a39721367ac4c2b01d9019131e1afb534c5a5e23e691e52f75b3bbb259b007a563
6
+ metadata.gz: c61e2187e094d2b77a8a1a6b449f8dc8b51fe3db43bd196128f7c777ee9bdc225d41a69e74d192a98f7dbf05dc9dd5c91f88a052113b1c2421b9e2d6f0ecfc02
7
+ data.tar.gz: 195deb5994bd99baa0d4bfec1c650deac51d09267242be86aeb441fa73d933454756736156d7d295920b371b4765baec43a0c9f6735f863c223fd31ede5f20c8
@@ -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.shift_argument
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
@@ -1,5 +1,5 @@
1
1
  module MultiRepo
2
2
  NAME = "git-multirepo"
3
- VERSION = "1.0.0.beta72"
3
+ VERSION = "1.0.0.beta73"
4
4
  DESCRIPTION = "Track multiple Git repositories side-by-side."
5
5
  end
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.beta72
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-28 00:00:00.000000000 Z
11
+ date: 2019-01-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler