git_game_show 0.1.0 → 0.1.2
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/README.md +13 -0
- data/lib/git_game_show/version.rb +1 -1
- metadata +14 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: eb852185be4e80bb32062b74675572ddcc45ea5e4ec8716969b90d0d73225fe8
|
4
|
+
data.tar.gz: 6ac3c1001051cb307caf4a6e1c87778fe1d94812c3b7f32f2e27045cef0f00a8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 824c2da32e7802bc354b28196a41eb4b8c4acd84de92208f97b3eaba61a61ba83c6724ddeabc08d62ef0ca00f6617ca6409ae82739cc4ae06e1c126f21b9449e
|
7
|
+
data.tar.gz: 13fc7daecb192024caf2f64b1373556999e32608209f53de7111afbe5b575917af34e44585821526332e690b224425ebc451b5938f687776e61297fbfff4cc0f
|
data/README.md
CHANGED
@@ -24,6 +24,19 @@ gem install git_game_show
|
|
24
24
|
|
25
25
|
This will install the `git-game-show` command globally on your system.
|
26
26
|
|
27
|
+
If you encounter permission issues or the command is not found:
|
28
|
+
|
29
|
+
```bash
|
30
|
+
# Fix permissions if needed
|
31
|
+
chmod +x $(gem which git_game_show | sed 's/lib\/git_game_show.rb/bin\/git-game-show/')
|
32
|
+
|
33
|
+
# For rbenv users
|
34
|
+
rbenv rehash
|
35
|
+
|
36
|
+
# For asdf users
|
37
|
+
asdf reshim ruby
|
38
|
+
```
|
39
|
+
|
27
40
|
### Option 2: Manual Installation
|
28
41
|
|
29
42
|
```bash
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: git_game_show
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Justin Paulson
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-03-
|
11
|
+
date: 2025-03-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: thor
|
@@ -223,7 +223,18 @@ metadata:
|
|
223
223
|
homepage_uri: https://github.com/justinpaulson/git_game_show
|
224
224
|
source_code_uri: https://github.com/justinpaulson/git_game_show
|
225
225
|
changelog_uri: https://github.com/justinpaulson/git_game_show/blob/main/CHANGELOG.md
|
226
|
-
|
226
|
+
rubygems_mfa_required: 'true'
|
227
|
+
post_install_message: |
|
228
|
+
=======================================
|
229
|
+
Thank you for installing Git Game Show!
|
230
|
+
|
231
|
+
If the executable is not available, run:
|
232
|
+
chmod +x $(gem which git_game_show | sed 's/lib\/git_game_show.rb/bin\/git-game-show/')
|
233
|
+
|
234
|
+
For version managers:
|
235
|
+
rbenv users: rbenv rehash
|
236
|
+
asdf users: asdf reshim ruby
|
237
|
+
=======================================
|
227
238
|
rdoc_options: []
|
228
239
|
require_paths:
|
229
240
|
- lib
|