git-multi 1.0.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 +7 -0
- data/.gitignore +9 -0
- data/.pryrc +39 -0
- data/.rubocop.yml +2 -0
- data/.ruby-version +1 -0
- data/CODE_OF_CONDUCT.md +13 -0
- data/Gemfile +6 -0
- data/LICENSE.txt +21 -0
- data/README.md +50 -0
- data/Rakefile +28 -0
- data/bin/console +9 -0
- data/bin/setup +13 -0
- data/contrib/git-dash/git-dash.erb +35 -0
- data/contrib/git-dash/git-dash.rb +82 -0
- data/doc/git-multi.man +143 -0
- data/exe/git-multi +42 -0
- data/git-multi.gemspec +32 -0
- data/lib/ext/commify.rb +11 -0
- data/lib/ext/dir.rb +10 -0
- data/lib/ext/notify.rb +20 -0
- data/lib/ext/sawyer/resource.rb +5 -0
- data/lib/ext/string.rb +14 -0
- data/lib/ext/utils.rb +31 -0
- data/lib/git/hub.rb +95 -0
- data/lib/git/multi/commands.rb +189 -0
- data/lib/git/multi/settings.rb +89 -0
- data/lib/git/multi/version.rb +32 -0
- data/lib/git/multi.rb +190 -0
- metadata +136 -0
metadata
ADDED
@@ -0,0 +1,136 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: git-multi
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Peter Vandenberk
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2018-09-18 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: octokit
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '4.12'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '4.12'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: bundler
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: pry
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rake
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
description: Run the same git command in a set of related repos
|
70
|
+
email:
|
71
|
+
- pvandenberk@mac.com
|
72
|
+
executables:
|
73
|
+
- git-multi
|
74
|
+
extensions: []
|
75
|
+
extra_rdoc_files: []
|
76
|
+
files:
|
77
|
+
- ".gitignore"
|
78
|
+
- ".pryrc"
|
79
|
+
- ".rubocop.yml"
|
80
|
+
- ".ruby-version"
|
81
|
+
- CODE_OF_CONDUCT.md
|
82
|
+
- Gemfile
|
83
|
+
- LICENSE.txt
|
84
|
+
- README.md
|
85
|
+
- Rakefile
|
86
|
+
- bin/console
|
87
|
+
- bin/setup
|
88
|
+
- contrib/git-dash/git-dash.erb
|
89
|
+
- contrib/git-dash/git-dash.rb
|
90
|
+
- doc/git-multi.man
|
91
|
+
- exe/git-multi
|
92
|
+
- git-multi.gemspec
|
93
|
+
- lib/ext/commify.rb
|
94
|
+
- lib/ext/dir.rb
|
95
|
+
- lib/ext/notify.rb
|
96
|
+
- lib/ext/sawyer/resource.rb
|
97
|
+
- lib/ext/string.rb
|
98
|
+
- lib/ext/utils.rb
|
99
|
+
- lib/git/hub.rb
|
100
|
+
- lib/git/multi.rb
|
101
|
+
- lib/git/multi/commands.rb
|
102
|
+
- lib/git/multi/settings.rb
|
103
|
+
- lib/git/multi/version.rb
|
104
|
+
homepage: https://github.com/pvdb/git-multi
|
105
|
+
licenses:
|
106
|
+
- MIT
|
107
|
+
metadata: {}
|
108
|
+
post_install_message: |2+
|
109
|
+
|
110
|
+
The required settings are as follows:
|
111
|
+
|
112
|
+
git config --global --add github.user <your_github_username>
|
113
|
+
git config --global --add github.organizations <your_github_orgs>
|
114
|
+
git config --global --add github.token <your_github_token>
|
115
|
+
git config --global --add gitmulti.workarea <your_root_workarea>
|
116
|
+
|
117
|
+
rdoc_options: []
|
118
|
+
require_paths:
|
119
|
+
- lib
|
120
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - ">="
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: '0'
|
125
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
126
|
+
requirements:
|
127
|
+
- - ">="
|
128
|
+
- !ruby/object:Gem::Version
|
129
|
+
version: '0'
|
130
|
+
requirements: []
|
131
|
+
rubyforge_project:
|
132
|
+
rubygems_version: 2.7.6
|
133
|
+
signing_key:
|
134
|
+
specification_version: 4
|
135
|
+
summary: The ultimate multi-repo utility for git!
|
136
|
+
test_files: []
|