git-bundle 1.0.18 → 1.0.20
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/Gemfile.lock +3 -3
- data/git-bundle.gemspec +3 -3
- data/lib/git_bundle/branch_config.rb +3 -3
- data/lib/git_bundle/version.rb +1 -1
- metadata +10 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 72f747f821c2b86aa134067e1423e90947055f3844be9c0a48271d5ba354b215
|
4
|
+
data.tar.gz: 214364b5abc577687da8d1d49a2e01d2cdf7f49da69a0464c02f8ec4dda29240
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e3b5e2dd20150ebee0d7e30003acfe2eba8d73e9a4272559c1df623f00e61e046338e260cb45b402444c88427e75f6899ca6d6152ae0254769a23499f0600262
|
7
|
+
data.tar.gz: 5e1928b074654ccb8015b476d5a3c4306255e995aca23eb959fb80f72b597708155ad351b47764dfc4750d089834b81279f002793c8694304f027dda115bd6b7
|
data/.gitignore
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
git-bundle (1.0.
|
4
|
+
git-bundle (1.0.19)
|
5
5
|
|
6
6
|
GEM
|
7
7
|
remote: https://rubygems.org/
|
@@ -11,8 +11,8 @@ PLATFORMS
|
|
11
11
|
ruby
|
12
12
|
|
13
13
|
DEPENDENCIES
|
14
|
-
bundler (~>
|
14
|
+
bundler (~> 2.4.19)
|
15
15
|
git-bundle!
|
16
16
|
|
17
17
|
BUNDLED WITH
|
18
|
-
|
18
|
+
2.4.19
|
data/git-bundle.gemspec
CHANGED
@@ -6,8 +6,8 @@ require 'git_bundle/version'
|
|
6
6
|
Gem::Specification.new do |spec|
|
7
7
|
spec.name = 'git-bundle'
|
8
8
|
spec.version = GitBundle::VERSION
|
9
|
-
spec.authors = ['Pierre Pretorius']
|
10
|
-
spec.email = ['pierre@labs.epiuse.com']
|
9
|
+
spec.authors = ['Pierre Pretorius', 'Divan Burger']
|
10
|
+
spec.email = ['pierre@labs.epiuse.com', 'divan@labs.epiuse.com']
|
11
11
|
spec.summary = %q{Simplifies working with gems from git repositories in combination with local overrides.}
|
12
12
|
spec.description = %q{Simplifies working with gems from git repositories in combination with local overrides.
|
13
13
|
See the github page for more detail.}
|
@@ -18,5 +18,5 @@ Gem::Specification.new do |spec|
|
|
18
18
|
spec.executables = 'gitb'
|
19
19
|
spec.require_paths = ['lib']
|
20
20
|
|
21
|
-
spec.add_development_dependency 'bundler', '~>
|
21
|
+
spec.add_development_dependency 'bundler', '~> 2.4.19'
|
22
22
|
end
|
@@ -29,7 +29,7 @@ module GitBundle
|
|
29
29
|
|
30
30
|
def branch(repo_name)
|
31
31
|
source = current[repo_name]
|
32
|
-
if source
|
32
|
+
if source.include?(' ')
|
33
33
|
source.split(' ').last
|
34
34
|
else
|
35
35
|
source
|
@@ -37,7 +37,7 @@ module GitBundle
|
|
37
37
|
end
|
38
38
|
|
39
39
|
def read
|
40
|
-
File.
|
40
|
+
File.exist?(path) ? YAML.load_file(path) || {} : nil
|
41
41
|
end
|
42
42
|
|
43
43
|
def changed?
|
@@ -47,7 +47,7 @@ module GitBundle
|
|
47
47
|
def save
|
48
48
|
if changed?
|
49
49
|
File.open(path, 'w') { |file| file.write(current.to_yaml.lines[1..-1].join) }
|
50
|
-
if File.
|
50
|
+
if File.exist?(path)
|
51
51
|
puts "\t#{colorize('update', 34, bold: true)}\t#{filename}"
|
52
52
|
else
|
53
53
|
puts "\t#{colorize('create', 32, bold: true)}\t#{filename}"
|
data/lib/git_bundle/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: git-bundle
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.20
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Pierre Pretorius
|
8
|
-
|
8
|
+
- Divan Burger
|
9
|
+
autorequire:
|
9
10
|
bindir: bin
|
10
11
|
cert_chain: []
|
11
|
-
date:
|
12
|
+
date: 2023-09-21 00:00:00.000000000 Z
|
12
13
|
dependencies:
|
13
14
|
- !ruby/object:Gem::Dependency
|
14
15
|
name: bundler
|
@@ -16,19 +17,20 @@ dependencies:
|
|
16
17
|
requirements:
|
17
18
|
- - "~>"
|
18
19
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
20
|
+
version: 2.4.19
|
20
21
|
type: :development
|
21
22
|
prerelease: false
|
22
23
|
version_requirements: !ruby/object:Gem::Requirement
|
23
24
|
requirements:
|
24
25
|
- - "~>"
|
25
26
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
27
|
+
version: 2.4.19
|
27
28
|
description: |-
|
28
29
|
Simplifies working with gems from git repositories in combination with local overrides.
|
29
30
|
See the github page for more detail.
|
30
31
|
email:
|
31
32
|
- pierre@labs.epiuse.com
|
33
|
+
- divan@labs.epiuse.com
|
32
34
|
executables:
|
33
35
|
- gitb
|
34
36
|
extensions: []
|
@@ -59,7 +61,7 @@ homepage: https://github.com/EPI-USE-Labs/git-bundle
|
|
59
61
|
licenses:
|
60
62
|
- MIT
|
61
63
|
metadata: {}
|
62
|
-
post_install_message:
|
64
|
+
post_install_message:
|
63
65
|
rdoc_options: []
|
64
66
|
require_paths:
|
65
67
|
- lib
|
@@ -74,8 +76,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
74
76
|
- !ruby/object:Gem::Version
|
75
77
|
version: '0'
|
76
78
|
requirements: []
|
77
|
-
rubygems_version: 3.
|
78
|
-
signing_key:
|
79
|
+
rubygems_version: 3.3.7
|
80
|
+
signing_key:
|
79
81
|
specification_version: 4
|
80
82
|
summary: Simplifies working with gems from git repositories in combination with local
|
81
83
|
overrides.
|