git-multirepo 1.0.0.beta16 → 1.0.0.beta17
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/.gitignore +38 -38
- data/.rspec +2 -2
- data/Gemfile +4 -4
- data/Gemfile.lock +37 -37
- data/LICENSE +22 -22
- data/README.md +139 -137
- data/Rakefile +2 -2
- data/bin/multi +5 -5
- data/git-multirepo.gemspec +29 -29
- data/lib/commands.rb +12 -12
- data/lib/git-multirepo.rb +2 -1
- data/lib/info.rb +4 -4
- data/lib/multirepo/commands/add-command.rb +51 -44
- data/lib/multirepo/commands/branch-command.rb +52 -52
- data/lib/multirepo/commands/checkout-command.rb +84 -84
- data/lib/multirepo/commands/clone-command.rb +53 -53
- data/lib/multirepo/commands/command.rb +32 -36
- data/lib/multirepo/commands/edit-command.rb +21 -21
- data/lib/multirepo/commands/fetch-command.rb +23 -23
- data/lib/multirepo/commands/init-command.rb +53 -53
- data/lib/multirepo/commands/install-command.rb +68 -68
- data/lib/multirepo/commands/open-command.rb +25 -25
- data/lib/multirepo/commands/remove-command.rb +48 -48
- data/lib/multirepo/commands/uninit-command.rb +21 -20
- data/lib/multirepo/commands/update-command.rb +50 -50
- data/lib/multirepo/config.rb +12 -12
- data/lib/multirepo/files/config-entry.rb +37 -37
- data/lib/multirepo/files/config-file.rb +37 -37
- data/lib/multirepo/files/lock-entry.rb +25 -25
- data/lib/multirepo/files/lock-file.rb +39 -38
- data/lib/multirepo/git/branch.rb +27 -27
- data/lib/multirepo/git/change.rb +10 -10
- data/lib/multirepo/git/git.rb +38 -38
- data/lib/multirepo/git/remote.rb +15 -15
- data/lib/multirepo/git/repo.rb +66 -66
- data/lib/multirepo/hooks/post-merge-hook.rb +18 -0
- data/lib/multirepo/hooks/pre-commit-hook.rb +23 -23
- data/lib/multirepo/multirepo-exception.rb +5 -5
- data/lib/multirepo/utility/console.rb +51 -51
- data/lib/multirepo/utility/runner.rb +32 -32
- data/lib/multirepo/utility/utils.rb +41 -41
- data/resources/post-merge +6 -0
- data/resources/pre-commit +5 -5
- data/spec/integration/init_spec.rb +26 -22
- data/spec/spec_helper.rb +89 -89
- metadata +5 -3
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.beta17
|
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: 2015-03-
|
11
|
+
date: 2015-03-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -146,11 +146,13 @@ files:
|
|
146
146
|
- lib/multirepo/git/git.rb
|
147
147
|
- lib/multirepo/git/remote.rb
|
148
148
|
- lib/multirepo/git/repo.rb
|
149
|
+
- lib/multirepo/hooks/post-merge-hook.rb
|
149
150
|
- lib/multirepo/hooks/pre-commit-hook.rb
|
150
151
|
- lib/multirepo/multirepo-exception.rb
|
151
152
|
- lib/multirepo/utility/console.rb
|
152
153
|
- lib/multirepo/utility/runner.rb
|
153
154
|
- lib/multirepo/utility/utils.rb
|
155
|
+
- resources/post-merge
|
154
156
|
- resources/pre-commit
|
155
157
|
- spec/integration/init_spec.rb
|
156
158
|
- spec/spec_helper.rb
|
@@ -174,7 +176,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
174
176
|
version: 1.3.1
|
175
177
|
requirements: []
|
176
178
|
rubyforge_project:
|
177
|
-
rubygems_version: 2.
|
179
|
+
rubygems_version: 2.4.5
|
178
180
|
signing_key:
|
179
181
|
specification_version: 4
|
180
182
|
summary: Track multiple Git repositories side-by-side
|