giturl 1.1.0 → 1.1.1
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/bin/giturl +14 -16
- data/giturl.gemspec +5 -2
- data/lib/giturl/version.rb +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dec025036fff8aa9d85a2bf882d94b0f9b67b4aea10cccd18f33d2ecb1272e5d
|
4
|
+
data.tar.gz: e0cbc04f7989260fe654c7279ab88b55449804b330389951a94bd9749e28516a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e03e75db2302a1e4a4a46dad24bb8cd947b550e362df2ffc6dde7fc4bd2cfa773d35b724f47debbdfe0d7d6321c9536d6be42c1e4ffc70d23530dac8e2045eb1
|
7
|
+
data.tar.gz: 7ddab4bacc5712d0becfe7c4910ee3feab2cf4c494c11e17b8b62a6868e1cc2a32141e1592a9a480ac805251644daa35e411ee8f1d1c7de47ba00af2852e77e9
|
data/bin/giturl
CHANGED
@@ -9,22 +9,20 @@
|
|
9
9
|
# and if -o is given, open urls in your browser.
|
10
10
|
#
|
11
11
|
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
opt.parse!(ARGV, into: params)
|
12
|
+
require 'optparse'
|
13
|
+
require 'giturl'
|
14
|
+
opt = OptionParser.new
|
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 }
|
17
|
+
params = {}
|
18
|
+
opt.parse!(ARGV, into: params)
|
20
19
|
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
end
|
20
|
+
ARGV.each do |arg|
|
21
|
+
if Giturl::Giturl.git_managed?(arg)
|
22
|
+
url = Giturl::Giturl.url(arg)
|
23
|
+
print "#{url}\n"
|
24
|
+
system("open #{url}") if params[:open]
|
25
|
+
elsif params[:verbose]
|
26
|
+
print "Not git-managed-dir: #{arg}\n"
|
29
27
|
end
|
30
28
|
end
|
data/giturl.gemspec
CHANGED
@@ -10,9 +10,12 @@ Gem::Specification.new do |spec|
|
|
10
10
|
spec.authors = ['shinyaohtani']
|
11
11
|
spec.email = ['shinya_ohtani@yahoo.co.jp']
|
12
12
|
|
13
|
-
spec.summary = 'Show or open GitHub URL for given directory'
|
14
|
-
spec.description = 'Show or open GitHub URL for given directory'
|
15
13
|
spec.homepage = 'https://github.com/shinyaohtani/giturl'
|
14
|
+
spec.summary = 'Show or open GitHub URL for given directory'
|
15
|
+
spec.description = <<~DESCRIPTION
|
16
|
+
Show or open GitHub URL for given directory.
|
17
|
+
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.
|
18
|
+
DESCRIPTION
|
16
19
|
|
17
20
|
#:spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
|
18
21
|
|
data/lib/giturl/version.rb
CHANGED
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.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- shinyaohtani
|
@@ -38,7 +38,9 @@ dependencies:
|
|
38
38
|
- - ">="
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: 12.3.3
|
41
|
-
description:
|
41
|
+
description: |
|
42
|
+
Show or open GitHub URL for given directory.
|
43
|
+
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.
|
42
44
|
email:
|
43
45
|
- shinya_ohtani@yahoo.co.jp
|
44
46
|
executables:
|