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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 82614879807fdeb3eabbc86b9584d60d52bbd3173a4813375430b5492b0fbe64
4
- data.tar.gz: ae6e151e129cfb414e7bbe5416133ceaa8b236d9ba9856b67e402a5ee86bca7b
3
+ metadata.gz: dec025036fff8aa9d85a2bf882d94b0f9b67b4aea10cccd18f33d2ecb1272e5d
4
+ data.tar.gz: e0cbc04f7989260fe654c7279ab88b55449804b330389951a94bd9749e28516a
5
5
  SHA512:
6
- metadata.gz: ec045d7c18ea3b26f17dc56b449f4f35a731aff9376226820ddb6948e056f18de32903370d4cdc23c519cfb008e717d6343298497c1c945224fcf3cb846d8ca1
7
- data.tar.gz: 110543865646d88983386ddd473ed6acce2933545851bcd7df4fce9503761141e7240878506db5c3e77d779db9f446b2394c0b1ba658dd4a08f59d900f6b59bd
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
- if $PROGRAM_NAME == __FILE__
13
- require 'optparse'
14
- require 'giturl'
15
- opt = OptionParser.new
16
- opt.on('-o', '--open', 'Open the URL directly in your browser.') { |v| v }
17
- opt.on('-v', '--verbose', 'Turn on verbose mode.') { |v| v }
18
- params = {}
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
- ARGV.each do |arg|
22
- if Giturl::Giturl.git_managed?(arg)
23
- url = Giturl::Giturl.url(arg)
24
- print "#{url}\n"
25
- system("open #{url}") if params[:open]
26
- elsif params[:verbose]
27
- print "Not git-managed-dir: #{arg}\n"
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
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Giturl
4
- VERSION = '1.1.0'
4
+ VERSION = '1.1.1'
5
5
  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.0
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: Show or open GitHub URL for given directory
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: