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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d6ed16d5abfbf14f4c3f29d965513249de8997b9a027770550a077efcb0cf56a
4
- data.tar.gz: a4eb298300d9e321c959fe6d818fc30cf916bc364852be47e7de9671134be6a9
3
+ metadata.gz: d133efde0ae946e12d5c166bb0fc3ade2fea82a84a4d00a127866eeeac0c00c9
4
+ data.tar.gz: 88294d0ada19f1ca642f62668561c26c4b8c08b76a51ed354b3fbd714cfc9b71
5
5
  SHA512:
6
- metadata.gz: 33c2e13e16b84c23431cdfb64466fc607d2da0463cb95dcd727ba540c799e0e72326eed8acf5d6be7516217f2ab9ecf31f0a1afcb2623a9ffd93ef8b25ffa615
7
- data.tar.gz: 9299a8a80d8e70a02e7f2955c2fe519dc4b5e121265751241cd2d90229083ea8ebe3dad476978a4b3498f16eff4c20ea38a61578d7cf1b1db3f2a91e03d41f34
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
- Welcome to giturl! 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, and open the URL directly in your browser if needed. `giturl` is a simple command. you can easily use from now on.
3
+ ## What is giturl?
4
4
 
5
- ## Installation
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
- Install `giturl` as:
7
+ You can use `giturl` like:
8
8
 
9
- $ gem install giturl
9
+ ```sh
10
+ $ giturl .
11
+ https://github.com/shinyaohtani/giturl/tree/master/lib/giturl/
12
+ ```
10
13
 
11
- Or add `giturl` to your application's Gemfile and run `bundle` command:
14
+ and `--open`, or simply `-o` option is given, your browser opens the URLs
12
15
 
13
- ```ruby
14
- gem 'giturl'
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
- You can use `giturl` as follows:
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
- and if `--open` is given, open the URLs on your browser.
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
- 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 }
6
+
17
7
  params = {}
18
- opt.parse!(ARGV, into: params)
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)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Giturl
4
- VERSION = '1.1.2'
4
+ VERSION = '1.1.3'
5
5
  end
data/lib/giturl.rb CHANGED
@@ -1,6 +1,8 @@
1
1
  #!/usr/bin/env ruby
2
2
  # frozen_string_literal: true
3
3
 
4
+ require 'giturl/version'
5
+
4
6
  module Giturl
5
7
  class Giturl
6
8
  def self.git_managed?(path)
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.2
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-13 00:00:00.000000000 Z
11
+ date: 2020-03-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler