git_context 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0d749d3d073250eeaf34288f68e4c621eb45a2410a1388c445582d59ff31c3c7
4
- data.tar.gz: 6db9512b8ffee39ae36853c43f65f9d9f3ded4154350c70d06645001dc5aa7df
3
+ metadata.gz: 7f44d4e6a5be6cdce919c0c20b0ebd2ae967934cda02a1f9f953ebb069e227c5
4
+ data.tar.gz: 6e13e1cbf933ab58bfda4a23d29daa8e703c8d50aa941a0442a989ab86c33367
5
5
  SHA512:
6
- metadata.gz: 2b821a17ca35fc6649a59d2b6661a8663ddfc772db47224658fa4eb90757fa56e1a6be2e73b126167e7ee2fca470d5f4324c157b645b1ddbca88ba08994206f2
7
- data.tar.gz: 8804f541919616da6110fbe65e5b7bdb2a50311d7c22fc36bbd3c4b347a7adf4b581afdf69498ac6a4abec7af381768c6d4db9c29856261b5e73be7700848e19
6
+ metadata.gz: 720928465b76410329dd970e64a5647a213a6e2f20f30e9ecb3d35faabb597bf2b353712f0ab1433d938e0f32481a0167b9941b0a384fa6e6671687e01122ca9
7
+ data.tar.gz: 9b1b77a297209db5b51534bfae1d9675fbb769757e096ef454855a57238f544213a763e531a74cc3a4d4ca7c30ab3e871764f7be2ace802961e8e91dd2efa9b0
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- git_context (0.2.0)
4
+ git_context (0.2.1)
5
5
  tty-prompt (~> 0.22)
6
6
 
7
7
  GEM
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 name to be used in git config:')
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module GitContext
4
- VERSION = '0.2.0'
4
+ VERSION = '0.2.1'
5
5
  end
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.0
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-12 00:00:00.000000000 Z
11
+ date: 2020-09-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tty-prompt