git-tui 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (6) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +4 -0
  3. data/README.md +6 -2
  4. data/VERSION +1 -1
  5. data/lib/git-tui.rb +1 -1
  6. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 361705c20ef0c469d7d98b40c1e1ff64d31a68ae8481413a290bfd7de75895be
4
- data.tar.gz: 317b5228e657913d60a4a591715555d686b8efe97b541112858c34961330ca0c
3
+ metadata.gz: a52726e41ca04efb41cbcfb03fd7dd08bb5572df3dfe0072b0da24634d37bab8
4
+ data.tar.gz: 1417fd7e80bcbe7aed54f2837eac35253c0bd7ce6df5804929fe79dd3c8cb2ad
5
5
  SHA512:
6
- metadata.gz: 4b26a598ecfceb2d0c6ec4cbf26dc00346a391d0b2d9b086289508035e2a5907c263cf2c2dd97839aac331ff8e7923fff9c49089ebbf3066a8f5fc9c7d3d47cb
7
- data.tar.gz: a3df8dfa310d39bd42060ff4e3935c5833dc041fe761b922f2e0b57ef26b3e01d8c2fab25b0711a1565ec36835dbb63cb6886b32b0e8246a6534b5bc2086305a
6
+ metadata.gz: ec2417368128a689675694cebda8202ad2af7e339fd8b6beef989c20b336f50f5a9199f9bf9c3a88c42fa386829d1e2637ca783cb99f74e83c52642347125eca
7
+ data.tar.gz: e0c7a82ebb70da523a48344a934dbbd7ab32c46f475e7419b24d3a3accf8b3667ba39b0d8f4bb5d04e0af5cb8f0db28fac527b731c26955f8a0c2f810c8f0d61
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Change Log
2
2
 
3
+ ## 0.0.2
4
+
5
+ - Fixed issue with aborting git branch checkout change
6
+
3
7
  ## 0.0.1
4
8
 
5
9
  - Initial version with interactive `git checkout branch`
data/README.md CHANGED
@@ -1,6 +1,10 @@
1
- # Git-TUI (Git Text-based User Interface)
1
+ # Git-TUI (Git Text-based User Interface) 0.0.2
2
2
  [![Gem Version](https://badge.fury.io/rb/git-tui.svg)](https://badge.fury.io/rb/git-tui)
3
3
 
4
+ This is an unobtrusive Git TUI (Text-based User Interface) that provides quick time-saving interactions only for Git commands that need it (e.g. `git checkout branchname`) while letting developers to continue to use Git from the command line for the rest of the option-less commands like `git pull`, especially given the ability to setup git aliases (e.g. `g pr` for `git pull --rebase`)
5
+
6
+ Git-TUI intentionally avoids what some other TUIs do in taking up the whole screen to avoid interrupting the developer completely from the terminal yet only augment their workflow with improved productivity for Git option-heavy commands that benefit from auto-completion (e.g. `git checkout branchname`).
7
+
4
8
  ![GIT TUI DEMO](git-tui-demo.gif)
5
9
 
6
10
  Other TUI gems you may be interested in:
@@ -25,7 +29,7 @@ These are the commands you need to run in order to select a Ruby and gemset, ins
25
29
 
26
30
  ```
27
31
  rvm use @default # or a different ruby version/gemset like `rvm use ruby-3.1.0@git-tui --create`
28
- gem install git-tui
32
+ gem install git-tui -v0.0.2
29
33
  git-tui-setup
30
34
  ```
31
35
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.1
1
+ 0.0.2
data/lib/git-tui.rb CHANGED
@@ -44,5 +44,5 @@ begin
44
44
  rescue TTY::Reader::InputInterrupt => e
45
45
  # No Op
46
46
  puts # a new line is needed
47
- puts "Staying at current (abort detected): #{CURRENT_RVM}"
47
+ puts "Staying at Current Branch (Abort Detected): #{current_branch}"
48
48
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: git-tui
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - andy_maleh