git_context 0.2.0 → 0.2.1
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/Gemfile.lock +1 -1
- data/README.md +1 -0
- data/lib/git_context/interaction.rb +1 -1
- data/lib/git_context/version.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: 7f44d4e6a5be6cdce919c0c20b0ebd2ae967934cda02a1f9f953ebb069e227c5
|
|
4
|
+
data.tar.gz: 6e13e1cbf933ab58bfda4a23d29daa8e703c8d50aa941a0442a989ab86c33367
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 720928465b76410329dd970e64a5647a213a6e2f20f30e9ecb3d35faabb597bf2b353712f0ab1433d938e0f32481a0167b9941b0a384fa6e6671687e01122ca9
|
|
7
|
+
data.tar.gz: 9b1b77a297209db5b51534bfae1d9675fbb769757e096ef454855a57238f544213a763e531a74cc3a4d4ca7c30ab3e871764f7be2ace802961e8e91dd2efa9b0
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -10,6 +10,7 @@ No more committing with the wrong email in a new repository. With `git-context`
|
|
|
10
10
|
Currently, the supported config values are:
|
|
11
11
|
- `user.name`
|
|
12
12
|
- `user.email`
|
|
13
|
+
- `user.signingKey`
|
|
13
14
|
|
|
14
15
|
`git-context` uses git config [conditional includes](https://git-scm.com/docs/git-config#_conditional_includes) under the hood.
|
|
15
16
|
|
|
@@ -23,7 +23,7 @@ module GitContext
|
|
|
23
23
|
def prompt_user_info
|
|
24
24
|
@prompt.collect do
|
|
25
25
|
key(:name).ask('Please enter the name to be used in git config:')
|
|
26
|
-
key(:email).ask('Please enter the
|
|
26
|
+
key(:email).ask('Please enter the email address to be used in git config:')
|
|
27
27
|
key(:signing_key).ask('Please enter the signing key to be used in git config:')
|
|
28
28
|
end
|
|
29
29
|
end
|
data/lib/git_context/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: git_context
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Albert Salim
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-09-
|
|
11
|
+
date: 2020-09-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tty-prompt
|