giturl 1.1.3 → 1.1.4
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/.gitignore +2 -1
- data/CHANGELOG.md +10 -0
- data/README.md +15 -0
- data/bin/giturl +4 -4
- data/giturl.gemspec +1 -0
- data/lib/giturl/version.rb +1 -1
- data/lib/giturl.rb +17 -5
- metadata +15 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c164d5737cc9207b19779245f547671575724f8fef6a4d24efb767d3ca69abe0
|
4
|
+
data.tar.gz: 905b82675e666a7ca6d29dcaa3c261b0b69a45d7123b9503fd52abe82994678d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0134d3f7591471ee836560fbcd24494f347bb2f447f496b9b3a23046077ccfc048f71cdf1c4f66523fcf00b0b900dccb1d6cf97099cad8a630aac0fe7ccaaad1
|
7
|
+
data.tar.gz: a0bbd2bf6331592d3ae8ea91af67073676d6fc43ae0b7ab296a729babacb18e2d50b8f1a218e3406fe19f892d5a6c63d4193b0b06cff0ebf6f34adf5bebe2b00
|
data/.gitignore
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,15 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [v1.1.4](https://github.com/shinyaohtani/giturl/tree/v1.1.4) (2020-03-16)
|
4
|
+
|
5
|
+
[Full Changelog](https://github.com/shinyaohtani/giturl/compare/v1.1.3...v1.1.4)
|
6
|
+
|
7
|
+
**Implemented enhancements:**
|
8
|
+
|
9
|
+
- Changed method name
|
10
|
+
- url to convert: low level method. git-managed dir only
|
11
|
+
- safe_url to url: check if git-managed and convert to url
|
12
|
+
|
3
13
|
## [v1.1.3](https://github.com/shinyaohtani/giturl/tree/v1.1.3) (2020-03-16)
|
4
14
|
|
5
15
|
[Full Changelog](https://github.com/shinyaohtani/giturl/compare/v1.1.2...v1.1.3)
|
data/README.md
CHANGED
@@ -64,6 +64,21 @@ Or add `giturl` to your application's Gemfile and run `bundle` command:
|
|
64
64
|
gem 'giturl'
|
65
65
|
```
|
66
66
|
|
67
|
+
## Giturl module
|
68
|
+
|
69
|
+
`Giturl` is also a module, so you can get urls from your ruby code.
|
70
|
+
(*G*iturl is a name of module version of `giturl`)
|
71
|
+
|
72
|
+
```ruby
|
73
|
+
require 'giturl'
|
74
|
+
|
75
|
+
path = './lib'
|
76
|
+
url = Giturl::Giturl.url(path)
|
77
|
+
p url unless url.nil?
|
78
|
+
```
|
79
|
+
|
80
|
+
See [code](./lib/giturl.rb)
|
81
|
+
|
67
82
|
## Changelog
|
68
83
|
|
69
84
|
Refer to [Changelog.md](./CHANGELOG.md)
|
data/bin/giturl
CHANGED
@@ -7,9 +7,9 @@ require 'giturl'
|
|
7
7
|
params = {}
|
8
8
|
OptionParser.new do |opts|
|
9
9
|
opts.version = Giturl::VERSION
|
10
|
-
opts.on('-o', '--
|
11
|
-
opts.on('-v', '--
|
12
|
-
opts.on_tail('-h', '--help',
|
10
|
+
opts.on('-o', '--open', 'Open the URL directly in your browser. default: no') { |v| v }
|
11
|
+
opts.on('-v', '--verbose', 'Verbose mode. default: no') { |v| v }
|
12
|
+
opts.on_tail('-h', '--help', 'Show this message') do
|
13
13
|
puts opts
|
14
14
|
exit
|
15
15
|
end
|
@@ -32,7 +32,7 @@ end
|
|
32
32
|
|
33
33
|
ARGV.each do |arg|
|
34
34
|
if Giturl::Giturl.git_managed?(arg)
|
35
|
-
url = Giturl::Giturl.
|
35
|
+
url = Giturl::Giturl.convert(arg)
|
36
36
|
print "#{url}\n"
|
37
37
|
system("open #{url}") if params[:open]
|
38
38
|
elsif params[:verbose]
|
data/giturl.gemspec
CHANGED
data/lib/giturl/version.rb
CHANGED
data/lib/giturl.rb
CHANGED
@@ -5,6 +5,18 @@ require 'giturl/version'
|
|
5
5
|
|
6
6
|
module Giturl
|
7
7
|
class Giturl
|
8
|
+
# Check if path is a git-managed directory and return the URL of the GitHub web page for that path
|
9
|
+
#
|
10
|
+
# @param path [String] path to any directory. Both relative and absolute forms are accepted.
|
11
|
+
# @return [String] GitHub web page URL. This returns nil if the path is NOT a git-managed dir.
|
12
|
+
def self.url(path)
|
13
|
+
convert(path) if git_managed?(path)
|
14
|
+
end
|
15
|
+
|
16
|
+
# Check if the path is in the git-managed directory
|
17
|
+
#
|
18
|
+
# @param path [String] path to check. Both relative and absolute forms are accepted.
|
19
|
+
# @return [Boolean] git-managed directory or not.
|
8
20
|
def self.git_managed?(path)
|
9
21
|
stderr_old = $stderr.dup
|
10
22
|
$stderr.reopen('/dev/null')
|
@@ -14,7 +26,11 @@ module Giturl
|
|
14
26
|
inside == 'true'
|
15
27
|
end
|
16
28
|
|
17
|
-
|
29
|
+
# Convert path to git-managed directory to GitHub web page URL
|
30
|
+
#
|
31
|
+
# @param path [String] path for a git-managed directory. Both relative and absolute forms are accepted.
|
32
|
+
# @return [String] GitHub web page URL for the given git-managed directory
|
33
|
+
def self.convert(path)
|
18
34
|
gitdir_prefix = `git -C #{path} rev-parse --show-prefix`.chomp
|
19
35
|
gitdir_branch = `git -C #{path} rev-parse --abbrev-ref HEAD`.chomp
|
20
36
|
remote_origin_url = `git -C #{path} config --get remote.origin.url`.chomp
|
@@ -24,9 +40,5 @@ module Giturl
|
|
24
40
|
|
25
41
|
"#{baseurl}/tree/#{gitdir_branch}/#{gitdir_prefix}"
|
26
42
|
end
|
27
|
-
|
28
|
-
def self.safe_url(path)
|
29
|
-
url(path) if git_managed?(path)
|
30
|
-
end
|
31
43
|
end
|
32
44
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
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.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Shinya Ohtani (shinyaohtani@github)
|
@@ -38,6 +38,20 @@ dependencies:
|
|
38
38
|
- - ">="
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: 12.3.3
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: irb
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
41
55
|
description: |
|
42
56
|
Show or open GitHub URL for your local directory.
|
43
57
|
You can use giturl to display the URL corresponding to the git-managed directory given as an argument, and you can open the URL directly in your browser if needed.
|