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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d133efde0ae946e12d5c166bb0fc3ade2fea82a84a4d00a127866eeeac0c00c9
4
- data.tar.gz: 88294d0ada19f1ca642f62668561c26c4b8c08b76a51ed354b3fbd714cfc9b71
3
+ metadata.gz: c164d5737cc9207b19779245f547671575724f8fef6a4d24efb767d3ca69abe0
4
+ data.tar.gz: 905b82675e666a7ca6d29dcaa3c261b0b69a45d7123b9503fd52abe82994678d
5
5
  SHA512:
6
- metadata.gz: d2971849109e12fc832124ad2f4dc37f5bf5d6b3d6e715e47db5cc5e406f86efa2c40acbb2082d90bb55bd314b157ab9c41a5cceda310700b804d35d2807e12b
7
- data.tar.gz: 2b6e6f0d2860581e35c51c0aa07b9d249e61e0708d2ecc9889174bdede3306c75bf89406e65ebb189d5cfcff1a8c2d2748233fad51425ef6ecb0ec3eb6e053ea
6
+ metadata.gz: 0134d3f7591471ee836560fbcd24494f347bb2f447f496b9b3a23046077ccfc048f71cdf1c4f66523fcf00b0b900dccb1d6cf97099cad8a630aac0fe7ccaaad1
7
+ data.tar.gz: a0bbd2bf6331592d3ae8ea91af67073676d6fc43ae0b7ab296a729babacb18e2d50b8f1a218e3406fe19f892d5a6c63d4193b0b06cff0ebf6f34adf5bebe2b00
data/.gitignore CHANGED
@@ -1,4 +1,4 @@
1
- Gemfile.lock
1
+ .DS_Store
2
2
  /.bundle/
3
3
  /.yardoc
4
4
  /_yardoc/
@@ -7,3 +7,4 @@ Gemfile.lock
7
7
  /pkg/
8
8
  /spec/reports/
9
9
  /tmp/
10
+ Gemfile.lock
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', '--[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
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.url(arg)
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
@@ -35,4 +35,5 @@ Gem::Specification.new do |spec|
35
35
 
36
36
  spec.add_development_dependency 'bundler', '~> 2.0'
37
37
  spec.add_development_dependency 'rake', '>= 12.3.3'
38
+ spec.add_development_dependency 'irb'
38
39
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Giturl
4
- VERSION = '1.1.3'
4
+ VERSION = '1.1.4'
5
5
  end
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
- def self.url(path)
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.3
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.