gnav 0.3.0 → 0.3.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/Gemfile +1 -0
- data/Gemfile.lock +3 -1
- data/README.md +8 -15
- data/bin/release/gnav +1 -1
- data/lib/gnav/version.rb +1 -1
- data/lib/gnav.rb +0 -4
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8b7e79cbdf5cf836f06a23a8b09e190bc356d2530409fb4cd8716ea6298f60d7
|
4
|
+
data.tar.gz: efd61790bae168e306b07910741d3c00aee7baebbd2aa1ce197e123dd391de78
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b093501f3dab75937f63cd620396de323d9321c50953fd2876d251856603d1dc60d035c0bdd051c319da24118eaa2e94f222450f9dece50314461e0c58138715
|
7
|
+
data.tar.gz: e5cc017bd44a23bd93da97774b97c77e553f5aaec8d8ec9afa000d902f0f509597b65808982e611cd24dcb7d573a88ae06a2b4486b34cb772028067687bcff3e
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
gnav (0.3.
|
4
|
+
gnav (0.3.1)
|
5
5
|
git
|
6
6
|
tty-prompt (>= 0.22.0, < 0.24)
|
7
7
|
|
@@ -33,6 +33,7 @@ GEM
|
|
33
33
|
binding_of_caller (~> 1.0)
|
34
34
|
pry (~> 0.13)
|
35
35
|
public_suffix (5.0.3)
|
36
|
+
rake (13.1.0)
|
36
37
|
rchardet (1.8.0)
|
37
38
|
rspec (3.12.0)
|
38
39
|
rspec-core (~> 3.12.0)
|
@@ -73,6 +74,7 @@ DEPENDENCIES
|
|
73
74
|
pry
|
74
75
|
pry-byebug
|
75
76
|
pry-stack_explorer
|
77
|
+
rake
|
76
78
|
rspec
|
77
79
|
simplecov
|
78
80
|
|
data/README.md
CHANGED
@@ -1,24 +1,16 @@
|
|
1
1
|
# GNav
|
2
2
|
|
3
|
-
|
3
|
+
`gnav` is a simple command line tool to choose git tag and branch interactively.
|
4
4
|
|
5
|
-
TODO: Delete this and the text above, and describe your gem
|
6
5
|
|
7
6
|
## Installation
|
8
7
|
|
9
|
-
|
8
|
+
Simply, install it with gem.
|
10
9
|
|
11
|
-
```
|
12
|
-
gem 'gnav'
|
10
|
+
```shell
|
11
|
+
$ gem 'gnav'
|
13
12
|
```
|
14
13
|
|
15
|
-
And then execute:
|
16
|
-
|
17
|
-
$ bundle install
|
18
|
-
|
19
|
-
Or install it yourself as:
|
20
|
-
|
21
|
-
$ gem install gnav
|
22
14
|
|
23
15
|
## Usage
|
24
16
|
|
@@ -26,13 +18,14 @@ TODO: Write usage instructions here
|
|
26
18
|
|
27
19
|
## Development
|
28
20
|
|
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.
|
21
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `bundle exec rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
30
22
|
|
31
23
|
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
24
|
|
25
|
+
|
33
26
|
## Contributing
|
34
27
|
|
35
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
28
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/suzukimilanpaak/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/suzukimilanpaak/gnav/blob/master/CODE_OF_CONDUCT.md).
|
36
29
|
|
37
30
|
|
38
31
|
## License
|
@@ -41,4 +34,4 @@ The gem is available as open source under the terms of the [MIT License](https:/
|
|
41
34
|
|
42
35
|
## Code of Conduct
|
43
36
|
|
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/
|
37
|
+
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/suzukimilanpaak/gnav/blob/master/CODE_OF_CONDUCT.md).
|
data/bin/release/gnav
CHANGED
data/lib/gnav/version.rb
CHANGED
data/lib/gnav.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gnav
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tatsuya Suzuki
|
8
8
|
autorequire:
|
9
9
|
bindir: bin/release
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-11-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: git
|
@@ -107,7 +107,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
107
107
|
- !ruby/object:Gem::Version
|
108
108
|
version: '0'
|
109
109
|
requirements: []
|
110
|
-
rubygems_version: 3.
|
110
|
+
rubygems_version: 3.2.3
|
111
111
|
signing_key:
|
112
112
|
specification_version: 4
|
113
113
|
summary: Interactive git tag and branch selector
|