giturl 1.1.2 → 1.1.3
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/CHANGELOG.md +9 -0
- data/README.md +41 -12
- data/bin/giturl +25 -12
- data/lib/giturl/version.rb +1 -1
- data/lib/giturl.rb +2 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d133efde0ae946e12d5c166bb0fc3ade2fea82a84a4d00a127866eeeac0c00c9
|
4
|
+
data.tar.gz: 88294d0ada19f1ca642f62668561c26c4b8c08b76a51ed354b3fbd714cfc9b71
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d2971849109e12fc832124ad2f4dc37f5bf5d6b3d6e715e47db5cc5e406f86efa2c40acbb2082d90bb55bd314b157ab9c41a5cceda310700b804d35d2807e12b
|
7
|
+
data.tar.gz: 2b6e6f0d2860581e35c51c0aa07b9d249e61e0708d2ecc9889174bdede3306c75bf89406e65ebb189d5cfcff1a8c2d2748233fad51425ef6ecb0ec3eb6e053ea
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [v1.1.3](https://github.com/shinyaohtani/giturl/tree/v1.1.3) (2020-03-16)
|
4
|
+
|
5
|
+
[Full Changelog](https://github.com/shinyaohtani/giturl/compare/v1.1.2...v1.1.3)
|
6
|
+
|
7
|
+
**Implemented enhancements:**
|
8
|
+
|
9
|
+
- Improved README.md so that you can understand what `giturl` is immediately
|
10
|
+
- Improved description for `--help` and `--version` options
|
11
|
+
|
3
12
|
## [v1.1.2](https://github.com/shinyaohtani/giturl/tree/v1.1.2) (2020-03-13)
|
4
13
|
|
5
14
|
[Full Changelog](https://github.com/shinyaohtani/giturl/compare/v1.1.1...v1.1.2)
|
data/README.md
CHANGED
@@ -1,30 +1,41 @@
|
|
1
|
-
# giturl
|
1
|
+
# Welcome to giturl !
|
2
2
|
|
3
|
-
|
3
|
+
## What is giturl?
|
4
4
|
|
5
|
-
|
5
|
+
`giturl` is a helper for accessing GitHub web pages. Do you often want to access the GitHub web page from the terminal you are working on? You can use `giturl` to display the URL corresponding to the git-managed directory given as an argument. If you want to open the URL in a browser immediately, you can specify the `girurl` option to open the URL in the browser without operating the browser. `giturl` is a simple command. you can easily use from now on.
|
6
6
|
|
7
|
-
|
7
|
+
You can use `giturl` like:
|
8
8
|
|
9
|
-
|
9
|
+
```sh
|
10
|
+
$ giturl .
|
11
|
+
https://github.com/shinyaohtani/giturl/tree/master/lib/giturl/
|
12
|
+
```
|
10
13
|
|
11
|
-
|
14
|
+
and `--open`, or simply `-o` option is given, your browser opens the URLs
|
12
15
|
|
13
|
-
```
|
14
|
-
|
16
|
+
```sh
|
17
|
+
$ giturl -o .
|
18
|
+
https://github.com/shinyaohtani/giturl/tree/master/lib/giturl/
|
19
|
+
# == your default browser automatically opens the URL ==
|
15
20
|
```
|
16
21
|
|
17
22
|
## Usage
|
18
23
|
|
19
|
-
|
20
|
-
|
21
|
-
giturl [-o or --open] dir1 [dir2, dir3, ...]
|
24
|
+
giturl [-o or --open] [-v or --verbose] dir1 [dir2, dir3, ...]
|
22
25
|
|
23
26
|
Then you will get a list of URLs:
|
24
27
|
|
25
28
|
URL1 [URL2, URL3, ...] (one URL for each line)
|
26
29
|
|
27
|
-
|
30
|
+
If `--verbose` is specified, print warnings for non-git-managed dirs:
|
31
|
+
|
32
|
+
```sh
|
33
|
+
$ giturl -v ~
|
34
|
+
Not git-managed-dir: /Users/myhome
|
35
|
+
```
|
36
|
+
|
37
|
+
## Usecase
|
38
|
+
|
28
39
|
Here is a example to open GitHub web page for current directory:
|
29
40
|
|
30
41
|
```sh
|
@@ -40,6 +51,19 @@ https://github.com/shinyaohtani/giturl/tree/master/lib/giturl/
|
|
40
51
|
|
41
52
|
# == your default browser automatically opens the URL ==
|
42
53
|
```
|
54
|
+
|
55
|
+
## Installation
|
56
|
+
|
57
|
+
Install `giturl` as:
|
58
|
+
|
59
|
+
$ gem install giturl
|
60
|
+
|
61
|
+
Or add `giturl` to your application's Gemfile and run `bundle` command:
|
62
|
+
|
63
|
+
```ruby
|
64
|
+
gem 'giturl'
|
65
|
+
```
|
66
|
+
|
43
67
|
## Changelog
|
44
68
|
|
45
69
|
Refer to [Changelog.md](./CHANGELOG.md)
|
@@ -51,3 +75,8 @@ Bug reports and pull requests are welcome on GitHub at https://github.com/shinya
|
|
51
75
|
## License
|
52
76
|
|
53
77
|
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
78
|
+
Refer to [LICENSE file](./LICENSE)
|
79
|
+
|
80
|
+
## RubyGems
|
81
|
+
|
82
|
+
https://rubygems.org/gems/giturl
|
data/bin/giturl
CHANGED
@@ -1,21 +1,34 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
|
-
#
|
5
|
-
# usage
|
6
|
-
# giturl.rb [-o or --open] dir1 [dir2, dir3, ...]
|
7
|
-
# output
|
8
|
-
# <url of dir1> [<url of dir2>, <url of dir3>, ...]
|
9
|
-
# and if -o is given, open urls in your browser.
|
10
|
-
#
|
11
|
-
|
12
4
|
require 'optparse'
|
13
5
|
require 'giturl'
|
14
|
-
|
15
|
-
opt.on('-o', '--open', 'Open the URL directly in your browser.') { |v| v }
|
16
|
-
opt.on('-v', '--verbose', 'Turn on verbose mode.') { |v| v }
|
6
|
+
|
17
7
|
params = {}
|
18
|
-
|
8
|
+
OptionParser.new do |opts|
|
9
|
+
opts.version = Giturl::VERSION
|
10
|
+
opts.on('-o', '--[no-]open', 'Open the URL directly in your browser. default: no') { |v| v }
|
11
|
+
opts.on('-v', '--[no-]verbose', 'Verbose mode. default: no') { |v| v }
|
12
|
+
opts.on_tail('-h', '--help', 'Show this message') do
|
13
|
+
puts opts
|
14
|
+
exit
|
15
|
+
end
|
16
|
+
opts.on_tail('--version', 'Show version') do
|
17
|
+
puts opts.ver
|
18
|
+
exit
|
19
|
+
end
|
20
|
+
opts.banner = <<~BANNER
|
21
|
+
|
22
|
+
#{opts.ver}
|
23
|
+
A tiny utility that displays and opens GitHub URLs for your local directory.
|
24
|
+
visit: https://github.com/shinyaohtani/giturl
|
25
|
+
|
26
|
+
Usage: #{opts.program_name} [options] [dirs]
|
27
|
+
[options] are:
|
28
|
+
BANNER
|
29
|
+
|
30
|
+
opts.parse!(ARGV, into: params)
|
31
|
+
end
|
19
32
|
|
20
33
|
ARGV.each do |arg|
|
21
34
|
if Giturl::Giturl.git_managed?(arg)
|
data/lib/giturl/version.rb
CHANGED
data/lib/giturl.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: giturl
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Shinya Ohtani (shinyaohtani@github)
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-03-
|
11
|
+
date: 2020-03-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|