gnav 0.3.0

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 70f934204fa83c3be087521f7b7911601f3af3f5434c481b0fc8c4d4701125ba
4
+ data.tar.gz: 5f7a6e7f0301681dba18cb37f76540b0a2510cb437a51edaca27d587cc96483f
5
+ SHA512:
6
+ metadata.gz: f12e75d7607bfd17f881e60bf7442e6821defcc60acfc678bc711de1ae14fcdf32fa1bbac5aa9f40f2612befe8d46287fc78f1dfe69045f5be2f7efc9a5d6c8b
7
+ data.tar.gz: c0c84af7849a2030097421735d1f11e5a6c515fad2ca070748b0e77fde1bc3a126c22cd92505912a459771eafa2040c76d2f68823911a5200b93429c7eed3ecd
@@ -0,0 +1,22 @@
1
+ name: RSpec
2
+
3
+ on: [push]
4
+
5
+ jobs:
6
+ spec:
7
+ runs-on: ubuntu-latest
8
+
9
+ strategy:
10
+ matrix:
11
+ ruby-version: ['3.2', '3.1', '3.0', '2.7']
12
+
13
+ steps:
14
+ - uses: actions/checkout@v4
15
+ - name: Set up Ruby ${{ matrix.ruby-version }}
16
+ uses: ruby/setup-ruby@ec02537da5712d66d4d50a0f33b7eb52773b5ed1
17
+ with:
18
+ ruby-version: ${{ matrix.ruby-version }}
19
+ - name: Install dependent ruby gems
20
+ run: bundle install
21
+ - name: Run RSpec
22
+ run: bundle exec rspec
data/.gitignore ADDED
@@ -0,0 +1,11 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+
10
+ # rspec failure tracking
11
+ .rspec_status
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.travis.yml ADDED
@@ -0,0 +1,6 @@
1
+ ---
2
+ language: ruby
3
+ cache: bundler
4
+ rvm:
5
+ - 2.7.6
6
+ before_install: gem install bundler -v 2.1.4
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at tatsuya.suzuki@sage.com. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [https://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: https://contributor-covenant.org
74
+ [version]: https://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ source 'https://rubygems.org'
4
+
5
+ gemspec
6
+
7
+ group :development, :test do
8
+ gem 'pry', require: true
9
+ gem 'pry-byebug'
10
+ gem 'pry-stack_explorer'
11
+ gem 'simplecov', require: false
12
+ end
data/Gemfile.lock ADDED
@@ -0,0 +1,80 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ gnav (0.3.0)
5
+ git
6
+ tty-prompt (>= 0.22.0, < 0.24)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ addressable (2.8.5)
12
+ public_suffix (>= 2.0.2, < 6.0)
13
+ binding_of_caller (1.0.0)
14
+ debug_inspector (>= 0.0.1)
15
+ byebug (11.1.3)
16
+ coderay (1.1.3)
17
+ debug_inspector (1.1.0)
18
+ diff-lcs (1.5.0)
19
+ docile (1.4.0)
20
+ git (1.18.0)
21
+ addressable (~> 2.8)
22
+ rchardet (~> 1.8)
23
+ method_source (1.0.0)
24
+ pastel (0.8.0)
25
+ tty-color (~> 0.5)
26
+ pry (0.14.2)
27
+ coderay (~> 1.1)
28
+ method_source (~> 1.0)
29
+ pry-byebug (3.10.1)
30
+ byebug (~> 11.0)
31
+ pry (>= 0.13, < 0.15)
32
+ pry-stack_explorer (0.6.1)
33
+ binding_of_caller (~> 1.0)
34
+ pry (~> 0.13)
35
+ public_suffix (5.0.3)
36
+ rchardet (1.8.0)
37
+ rspec (3.12.0)
38
+ rspec-core (~> 3.12.0)
39
+ rspec-expectations (~> 3.12.0)
40
+ rspec-mocks (~> 3.12.0)
41
+ rspec-core (3.12.1)
42
+ rspec-support (~> 3.12.0)
43
+ rspec-expectations (3.12.2)
44
+ diff-lcs (>= 1.2.0, < 2.0)
45
+ rspec-support (~> 3.12.0)
46
+ rspec-mocks (3.12.3)
47
+ diff-lcs (>= 1.2.0, < 2.0)
48
+ rspec-support (~> 3.12.0)
49
+ rspec-support (3.12.0)
50
+ simplecov (0.22.0)
51
+ docile (~> 1.1)
52
+ simplecov-html (~> 0.11)
53
+ simplecov_json_formatter (~> 0.1)
54
+ simplecov-html (0.12.3)
55
+ simplecov_json_formatter (0.1.4)
56
+ tty-color (0.6.0)
57
+ tty-cursor (0.7.1)
58
+ tty-prompt (0.23.1)
59
+ pastel (~> 0.8)
60
+ tty-reader (~> 0.8)
61
+ tty-reader (0.9.0)
62
+ tty-cursor (~> 0.7)
63
+ tty-screen (~> 0.8)
64
+ wisper (~> 2.0)
65
+ tty-screen (0.8.1)
66
+ wisper (2.0.1)
67
+
68
+ PLATFORMS
69
+ ruby
70
+
71
+ DEPENDENCIES
72
+ gnav!
73
+ pry
74
+ pry-byebug
75
+ pry-stack_explorer
76
+ rspec
77
+ simplecov
78
+
79
+ BUNDLED WITH
80
+ 2.1.4
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2023 Tatsuya Suzuki
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,44 @@
1
+ # GNav
2
+
3
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/gnav`. To experiment with that code, run `bin/console` for an interactive prompt.
4
+
5
+ TODO: Delete this and the text above, and describe your gem
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'gnav'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle install
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install gnav
22
+
23
+ ## Usage
24
+
25
+ TODO: Write usage instructions here
26
+
27
+ ## Development
28
+
29
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
30
+
31
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
+
33
+ ## Contributing
34
+
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/gnav. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/[USERNAME]/gnav/blob/master/CODE_OF_CONDUCT.md).
36
+
37
+
38
+ ## License
39
+
40
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
41
+
42
+ ## Code of Conduct
43
+
44
+ Everyone interacting in the GNav project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/gnav/blob/master/CODE_OF_CONDUCT.md).
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "gnav"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
data/bin/release/gnav ADDED
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require_relative '../../lib/gnav.rb'
4
+
5
+ GNav.run
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
data/gnav.gemspec ADDED
@@ -0,0 +1,35 @@
1
+ require_relative 'lib/gnav/version'
2
+
3
+ Gem::Specification.new do |spec|
4
+ spec.name = "gnav"
5
+ spec.version = GNav::VERSION
6
+ spec.authors = ["Tatsuya Suzuki"]
7
+ spec.email = ["ttsysuzuki@googlemail.com"]
8
+
9
+ spec.summary = 'Interactive git tag and branch selector'
10
+ spec.description = 'A CLI to let you interactive select tag and branch'
11
+ spec.homepage = 'https://github.com/suzukimilanpaak/gnav'
12
+
13
+ spec.license = "MIT"
14
+ spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
15
+
16
+
17
+ spec.metadata["homepage_uri"] = spec.homepage
18
+ spec.metadata["source_code_uri"] = 'https://github.com/suzukimilanpaak/gnav'
19
+ spec.metadata["changelog_uri"] = 'https://github.com/suzukimilanpaak/blob/master/CHANGELOG.md'
20
+
21
+ # Specify which files should be added to the gem when it is released.
22
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
23
+ spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
24
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
25
+ end
26
+ spec.bindir = 'bin/release'
27
+ # spec.executables = spec.files.grep(%r{^bin/release}) { |f| File.basename(f) }
28
+ spec.executables = ['gnav']
29
+ spec.require_paths = ["lib"]
30
+
31
+ spec.add_dependency 'git'
32
+ # see monkey_patches/tty/prompt.rb for more details
33
+ spec.add_dependency 'tty-prompt', '>= 0.22.0', '< 0.24'
34
+ spec.add_development_dependency 'rspec'
35
+ end
data/lib/git_prompt.rb ADDED
@@ -0,0 +1,85 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'git'
4
+ require 'tty-prompt'
5
+ require 'logger'
6
+ require_relative './treeish_extractor'
7
+ require_relative './monkey_patches/tty/prompt.rb'
8
+
9
+ class GitPrompt
10
+ SELECT_OPTIONS_PER_PAGE = 10
11
+
12
+ attr_reader :git, :extractor, :prompt, :logger
13
+
14
+ def initialize(git: nil)
15
+ @git = git || Git.open(Dir.pwd)
16
+ @extractor = TreeishExtractor.new(git: git)
17
+
18
+ create_prompt
19
+ define_key_events
20
+ display_select(:branch, extractor.recent_branch_names)
21
+ end
22
+
23
+ private
24
+
25
+ def define_key_events
26
+ prompt.on(:keypress) do |event|
27
+ if event.value == 'q'
28
+ exit
29
+ end
30
+
31
+ # move up/down in the list
32
+
33
+ if event.value == 'j'
34
+ prompt.trigger(:keydown)
35
+ end
36
+
37
+ if event.value == 'k'
38
+ prompt.trigger(:keyup)
39
+ end
40
+
41
+ # Select a mode
42
+
43
+ if event.value == 'b'
44
+ prompt.clear!
45
+ display_select(:branch, extractor.recent_branch_names)
46
+ end
47
+
48
+ if event.value == 't'
49
+ prompt.clear!
50
+ display_select(:tag, extractor.recent_tag_names)
51
+ end
52
+ end
53
+ end
54
+
55
+ def create_prompt
56
+ @prompt = TTY::Prompt.new(quiet: false)
57
+ end
58
+
59
+ def display_select(treeish_type, treeishes)
60
+ message = prompt.decorate("Select #{treeish_type.to_s.capitalize} > ", :green)
61
+ message += <<~MSG.chomp
62
+ [b] branch view [t] tag view
63
+ j: down, k: up, q: quit, Enter: choose tag
64
+ MSG
65
+
66
+ if treeishes.size > 0
67
+ prompt.select(message, filter: false, per_page: SELECT_OPTIONS_PER_PAGE) do |menu|
68
+ treeishes.each do |treeish|
69
+ menu.choice(treeish[:name], -> { checkout(treeish[:value]) })
70
+ end
71
+ end
72
+ else
73
+ prompt.ok 'No tags were found'
74
+ end
75
+ rescue TTY::Reader::InputInterrupt => e
76
+ # exit automatically
77
+ end
78
+
79
+ def checkout(treeish_name)
80
+ git.checkout(treeish_name)
81
+ exit
82
+ rescue Git::GitExecuteError => e
83
+ prompt.error(e.message)
84
+ end
85
+ end
@@ -0,0 +1,3 @@
1
+ module GNav
2
+ VERSION = "0.3.0"
3
+ end
data/lib/gnav.rb ADDED
@@ -0,0 +1,14 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'bundler/setup'
4
+ require_relative './gnav/version'
5
+ require_relative '../lib/git_prompt'
6
+
7
+ # Load bundled gems
8
+ Bundler.require(:default)
9
+
10
+ module GNav
11
+ def self.run
12
+ GitPrompt.new
13
+ end
14
+ end
@@ -0,0 +1,15 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative '../../git_prompt.rb'
4
+
5
+ module TTY
6
+ # original - https://github.com/piotrmurach/tty-prompt/blob/master/lib/tty/prompt.rb
7
+ class Prompt
8
+ # :nocov:
9
+ def clear!
10
+ # 2 is for the prompt message
11
+ print(TTY::Cursor.clear_lines(GitPrompt::SELECT_OPTIONS_PER_PAGE + 2, :up))
12
+ end
13
+ # :nocov:
14
+ end
15
+ end
@@ -0,0 +1,60 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'git'
4
+ require 'open3'
5
+
6
+ class TreeishExtractor
7
+ attr_reader :git
8
+
9
+ def initialize(git: nil)
10
+ @git = git || Git.open(Dir.pwd)
11
+ end
12
+
13
+ def recent_tag_names
14
+ cmd = 'git tag --sort=-committerdate'
15
+ get_treeishes(cmd) do |line, names|
16
+ names << {
17
+ value: line.strip,
18
+ name: line.strip
19
+ }
20
+ end
21
+ end
22
+
23
+ def recent_branch_names
24
+ cmd = 'git branch --sort=-committerdate'
25
+ get_treeishes(cmd) do |line, names|
26
+ next if REJECT_STRATEGY.call(line, names).nil?
27
+ names << {
28
+ value: VALUE_STRATEGY.call(line, names),
29
+ name: NAME_STRATEGY.call(line, names)
30
+ }
31
+ end
32
+ end
33
+
34
+ private
35
+
36
+ REJECT_STRATEGY = lambda do |line, _|
37
+ # 'HEAD detached' means the last commit is detached from its HEAD.
38
+ # We don't need this information and remove it.
39
+ line unless line =~ /HEAD detached/
40
+ end
41
+ VALUE_STRATEGY = lambda do |line, _|
42
+ line.sub('*', '').strip
43
+ end
44
+ NAME_STRATEGY = lambda do |line, _|
45
+ if line.match(/\*\s/)
46
+ line.strip
47
+ else
48
+ " #{line.sub('*', '').strip}"
49
+ end
50
+ end
51
+
52
+ def get_treeishes(cmd)
53
+ names = []
54
+ _stdin, stdout, _stderr, _wait_thr = Open3.popen3(cmd)
55
+ stdout.each(sep="\n") do |line|
56
+ yield(line, names)
57
+ end
58
+ names
59
+ end
60
+ end
metadata ADDED
@@ -0,0 +1,114 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: gnav
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.3.0
5
+ platform: ruby
6
+ authors:
7
+ - Tatsuya Suzuki
8
+ autorequire:
9
+ bindir: bin/release
10
+ cert_chain: []
11
+ date: 2023-10-29 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: git
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: tty-prompt
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: 0.22.0
34
+ - - "<"
35
+ - !ruby/object:Gem::Version
36
+ version: '0.24'
37
+ type: :runtime
38
+ prerelease: false
39
+ version_requirements: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ version: 0.22.0
44
+ - - "<"
45
+ - !ruby/object:Gem::Version
46
+ version: '0.24'
47
+ - !ruby/object:Gem::Dependency
48
+ name: rspec
49
+ requirement: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - ">="
52
+ - !ruby/object:Gem::Version
53
+ version: '0'
54
+ type: :development
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - ">="
59
+ - !ruby/object:Gem::Version
60
+ version: '0'
61
+ description: A CLI to let you interactive select tag and branch
62
+ email:
63
+ - ttsysuzuki@googlemail.com
64
+ executables:
65
+ - gnav
66
+ extensions: []
67
+ extra_rdoc_files: []
68
+ files:
69
+ - ".github/workflows/rspec.yml"
70
+ - ".gitignore"
71
+ - ".rspec"
72
+ - ".travis.yml"
73
+ - CODE_OF_CONDUCT.md
74
+ - Gemfile
75
+ - Gemfile.lock
76
+ - LICENSE.txt
77
+ - README.md
78
+ - Rakefile
79
+ - bin/console
80
+ - bin/release/gnav
81
+ - bin/setup
82
+ - gnav.gemspec
83
+ - lib/git_prompt.rb
84
+ - lib/gnav.rb
85
+ - lib/gnav/version.rb
86
+ - lib/monkey_patches/tty/prompt.rb
87
+ - lib/treeish_extractor.rb
88
+ homepage: https://github.com/suzukimilanpaak/gnav
89
+ licenses:
90
+ - MIT
91
+ metadata:
92
+ homepage_uri: https://github.com/suzukimilanpaak/gnav
93
+ source_code_uri: https://github.com/suzukimilanpaak/gnav
94
+ changelog_uri: https://github.com/suzukimilanpaak/blob/master/CHANGELOG.md
95
+ post_install_message:
96
+ rdoc_options: []
97
+ require_paths:
98
+ - lib
99
+ required_ruby_version: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: 2.3.0
104
+ required_rubygems_version: !ruby/object:Gem::Requirement
105
+ requirements:
106
+ - - ">="
107
+ - !ruby/object:Gem::Version
108
+ version: '0'
109
+ requirements: []
110
+ rubygems_version: 3.4.10
111
+ signing_key:
112
+ specification_version: 4
113
+ summary: Interactive git tag and branch selector
114
+ test_files: []