giturl 1.1.4 → 1.1.5
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/.rubocop.yml +33 -0
- data/CHANGELOG.md +17 -0
- data/README.md +28 -8
- data/Rakefile +9 -0
- data/bin/console +4 -3
- data/bin/giturl +8 -3
- data/giturl.gemspec +4 -1
- data/lib/giturl.rb +8 -1
- data/lib/giturl/version.rb +1 -1
- metadata +49 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0cd0034eb1d5897662378ec2299ed0ebb78aae1847310f8f6926a1933d7e24ef
|
4
|
+
data.tar.gz: c253a97c533af3fea0f486a404de79bb10ab7d1a1494cb13140330e132be2b84
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 87484d6e3e5c4ba8a7ad1e673d2f6e1f740c07e60a8dbd8bd4d86c8881542c9238a1d8cde82d15305f102a2222692eb48aab84d7892900db17af176df809baec
|
7
|
+
data.tar.gz: 49097b99ce67f5dc95c125deed74d958e56188e5f7a6027c55f6b92585a97dba41c21fe5a4e2db180f677401932f0380643df6cf79afcc8d60d2b51aa5eee73a
|
data/.rubocop.yml
ADDED
@@ -0,0 +1,33 @@
|
|
1
|
+
# ** Default values of all configuration are written in**
|
2
|
+
# https://github.com/rubocop-hq/rubocop/blob/master/config/default.yml
|
3
|
+
#
|
4
|
+
# Detail examples of each configuration are
|
5
|
+
# https://rubocop.readthedocs.io/en/latest/cops_layout
|
6
|
+
#
|
7
|
+
# General guide-line is
|
8
|
+
# https://github.com/rubocop-hq/ruby-style-guide
|
9
|
+
|
10
|
+
AllCops:
|
11
|
+
TargetRubyVersion: 2.5
|
12
|
+
|
13
|
+
Layout/EndAlignment:
|
14
|
+
Enabled: true
|
15
|
+
EnforcedStyleAlignWith: start_of_line
|
16
|
+
AutoCorrect: true
|
17
|
+
|
18
|
+
Layout/LineLength:
|
19
|
+
Enabled: true
|
20
|
+
AutoCorrect: false
|
21
|
+
Max: 120
|
22
|
+
|
23
|
+
Style/HashEachMethods:
|
24
|
+
Enabled: true
|
25
|
+
AutoCorrect: true
|
26
|
+
|
27
|
+
Style/HashTransformKeys:
|
28
|
+
Enabled: true
|
29
|
+
AutoCorrect: true
|
30
|
+
|
31
|
+
Style/HashTransformValues:
|
32
|
+
Enabled: true
|
33
|
+
AutoCorrect: true
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,22 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [1.1.5](https://github.com/shinyaohtani/giturl/tree/1.1.5) (2020-03-18)
|
4
|
+
|
5
|
+
[Full Changelog](https://github.com/shinyaohtani/giturl/compare/v1.1.4...1.1.5)
|
6
|
+
|
7
|
+
**Implemented enhancements:**
|
8
|
+
|
9
|
+
- Specify a browser to open [\#1](https://github.com/shinyaohtani/giturl/issues/1)
|
10
|
+
|
11
|
+
**Fixed bugs:**
|
12
|
+
|
13
|
+
- Encoding is required if the branch name contains '\#' etc. [\#4](https://github.com/shinyaohtani/giturl/issues/4)
|
14
|
+
|
15
|
+
**Merged pull requests:**
|
16
|
+
|
17
|
+
- bugfix: encoded the target branch name [\#6](https://github.com/shinyaohtani/giturl/pull/6) ([shinya-ohtani](https://github.com/shinya-ohtani))
|
18
|
+
- Feature/\#1 specify a browser to open [\#5](https://github.com/shinyaohtani/giturl/pull/5) ([shinyaohtani](https://github.com/shinyaohtani))
|
19
|
+
|
3
20
|
## [v1.1.4](https://github.com/shinyaohtani/giturl/tree/v1.1.4) (2020-03-16)
|
4
21
|
|
5
22
|
[Full Changelog](https://github.com/shinyaohtani/giturl/compare/v1.1.3...v1.1.4)
|
data/README.md
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
## What is giturl?
|
4
4
|
|
5
|
-
`giturl` is a helper for accessing GitHub web pages.
|
5
|
+
`giturl` is a helper for accessing GitHub web pages. Have you ever wanted to access a GitHub web page while working on a git-cloned local directory? You can use `giturl` to display the URL corresponding to the git-managed directory given as an argument. And furthermore, if you want to access the URL immediately with your browser, `girurl` opens your browser and automatically accesses the URL without your any operation on the browser. `giturl` is a simple command. you can easily use from now on.
|
6
6
|
|
7
7
|
You can use `giturl` like:
|
8
8
|
|
@@ -21,17 +21,32 @@ https://github.com/shinyaohtani/giturl/tree/master/lib/giturl/
|
|
21
21
|
|
22
22
|
## Usage
|
23
23
|
|
24
|
-
|
24
|
+
```usage
|
25
|
+
Usage: giturl [options] [dirs]
|
26
|
+
[options] are:
|
27
|
+
-o, --open Open the URL in your browser. default: no
|
28
|
+
-a, --app=APPNAME Specify a browser. "Safari.app"
|
29
|
+
-v, --verbose Verbose mode. default: no
|
30
|
+
-h, --help Show this message
|
31
|
+
-V, --version Show version
|
32
|
+
```
|
25
33
|
|
26
|
-
|
34
|
+
You can specify several directories at once. If `--verbose` is specified, print warnings for non-git-managed dirs:
|
27
35
|
|
28
|
-
|
36
|
+
```sh
|
37
|
+
$ giturl --verbose ~
|
38
|
+
Not git-managed-dir: /Users/myhome
|
39
|
+
```
|
29
40
|
|
30
|
-
|
41
|
+
You can specify a browser to open:
|
31
42
|
|
32
43
|
```sh
|
33
|
-
|
34
|
-
|
44
|
+
### Chrome ###
|
45
|
+
$ giturl --open --app="Google\ Chrome.app" .
|
46
|
+
### Safari ###
|
47
|
+
$ giturl --open --app="Safari.app" .
|
48
|
+
### any other is ok ###
|
49
|
+
$ giturl --open --app="/Applications/any_browser_you_have.app" .
|
35
50
|
```
|
36
51
|
|
37
52
|
## Usecase
|
@@ -85,7 +100,12 @@ Refer to [Changelog.md](./CHANGELOG.md)
|
|
85
100
|
|
86
101
|
## Contributing
|
87
102
|
|
88
|
-
Bug reports and pull requests are welcome
|
103
|
+
Bug reports and pull requests are welcome!
|
104
|
+
1. Fork it ( https://github.com/shinyaohtani/giturl )
|
105
|
+
1. Create your feature branch (git checkout -b my-new-feature)
|
106
|
+
1. Commit your changes (git commit -am 'Add some feature')
|
107
|
+
1. Push to the branch (git push origin my-new-feature)
|
108
|
+
1. Create a new Pull Request
|
89
109
|
|
90
110
|
## License
|
91
111
|
|
data/Rakefile
CHANGED
@@ -2,3 +2,12 @@
|
|
2
2
|
|
3
3
|
require 'bundler/gem_tasks'
|
4
4
|
task default: :spec
|
5
|
+
|
6
|
+
require 'github_changelog_generator/task'
|
7
|
+
|
8
|
+
GitHubChangelogGenerator::RakeTask.new :changelog do |config|
|
9
|
+
config.user = 'shinyaohtani'
|
10
|
+
config.project = 'giturl'
|
11
|
+
config.base = 'CHANGELOG.md'
|
12
|
+
config.future_release = Giturl::VERSION
|
13
|
+
end
|
data/bin/console
CHANGED
@@ -1,7 +1,8 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
|
+
# frozen_string_literal: true
|
2
3
|
|
3
|
-
require
|
4
|
-
require
|
4
|
+
require 'bundler/setup'
|
5
|
+
require 'giturl'
|
5
6
|
|
6
7
|
# You can add fixtures and/or initialization code here to make experimenting
|
7
8
|
# with your gem easier. You can also use a different console, if you like.
|
@@ -10,5 +11,5 @@ require "giturl"
|
|
10
11
|
# require "pry"
|
11
12
|
# Pry.start
|
12
13
|
|
13
|
-
require
|
14
|
+
require 'irb'
|
14
15
|
IRB.start(__FILE__)
|
data/bin/giturl
CHANGED
@@ -7,13 +7,14 @@ require 'giturl'
|
|
7
7
|
params = {}
|
8
8
|
OptionParser.new do |opts|
|
9
9
|
opts.version = Giturl::VERSION
|
10
|
-
opts.on('-o', '--open', 'Open the URL
|
10
|
+
opts.on('-o', '--open', 'Open the URL in your browser. default: no') { |v| v }
|
11
|
+
opts.on('-a APPNAME', '--app=APPNAME', 'Specify a browser. "Safari.app"') { |v| v }
|
11
12
|
opts.on('-v', '--verbose', 'Verbose mode. default: no') { |v| v }
|
12
13
|
opts.on_tail('-h', '--help', 'Show this message') do
|
13
14
|
puts opts
|
14
15
|
exit
|
15
16
|
end
|
16
|
-
opts.on_tail('--version', 'Show version') do
|
17
|
+
opts.on_tail('-V', '--version', 'Show version') do
|
17
18
|
puts opts.ver
|
18
19
|
exit
|
19
20
|
end
|
@@ -34,7 +35,11 @@ ARGV.each do |arg|
|
|
34
35
|
if Giturl::Giturl.git_managed?(arg)
|
35
36
|
url = Giturl::Giturl.convert(arg)
|
36
37
|
print "#{url}\n"
|
37
|
-
|
38
|
+
if params[:open]
|
39
|
+
comm = +"open #{url}"
|
40
|
+
comm << " -a #{params[:app]}" if params[:app]
|
41
|
+
system(comm)
|
42
|
+
end
|
38
43
|
elsif params[:verbose]
|
39
44
|
print "Not git-managed-dir: #{arg}\n"
|
40
45
|
end
|
data/giturl.gemspec
CHANGED
@@ -34,6 +34,9 @@ Gem::Specification.new do |spec|
|
|
34
34
|
spec.require_paths = ['lib']
|
35
35
|
|
36
36
|
spec.add_development_dependency 'bundler', '~> 2.0'
|
37
|
-
spec.add_development_dependency '
|
37
|
+
spec.add_development_dependency 'github_changelog_generator', '>= 1.15.0'
|
38
38
|
spec.add_development_dependency 'irb'
|
39
|
+
spec.add_development_dependency 'pry'
|
40
|
+
spec.add_development_dependency 'rake', '>= 12.3.3'
|
41
|
+
spec.add_development_dependency 'rubocop', '>= 0.80.1'
|
39
42
|
end
|
data/lib/giturl.rb
CHANGED
@@ -3,7 +3,12 @@
|
|
3
3
|
|
4
4
|
require 'giturl/version'
|
5
5
|
|
6
|
+
# converter module from path to url
|
6
7
|
module Giturl
|
8
|
+
require 'erb'
|
9
|
+
# Main class of `Giturl` module.
|
10
|
+
#
|
11
|
+
# `self.url` is recommended to get URL like: Giturl.url('./lib')
|
7
12
|
class Giturl
|
8
13
|
# Check if path is a git-managed directory and return the URL of the GitHub web page for that path
|
9
14
|
#
|
@@ -37,8 +42,10 @@ module Giturl
|
|
37
42
|
|
38
43
|
# remote_origin_url: git@github.com:shinyaohtani/giturl.git
|
39
44
|
baseurl = remote_origin_url.gsub(/:/, '/').gsub(/^.*@/, 'https://').gsub(/\.git$/, '')
|
45
|
+
# gitdir_branch: feature/#1_user_named_branch
|
46
|
+
encoded_branch = gitdir_branch.split('/').map { |e| ERB::Util.url_encode(e) }.join('/')
|
40
47
|
|
41
|
-
"#{baseurl}/tree/#{
|
48
|
+
"#{baseurl}/tree/#{encoded_branch}/#{gitdir_prefix}"
|
42
49
|
end
|
43
50
|
end
|
44
51
|
end
|
data/lib/giturl/version.rb
CHANGED
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.
|
4
|
+
version: 1.1.5
|
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-
|
11
|
+
date: 2020-03-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -25,19 +25,19 @@ dependencies:
|
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '2.0'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
|
-
name:
|
28
|
+
name: github_changelog_generator
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - ">="
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version:
|
33
|
+
version: 1.15.0
|
34
34
|
type: :development
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - ">="
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version:
|
40
|
+
version: 1.15.0
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: irb
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -52,6 +52,48 @@ dependencies:
|
|
52
52
|
- - ">="
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: pry
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: rake
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: 12.3.3
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: 12.3.3
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: rubocop
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: 0.80.1
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - ">="
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: 0.80.1
|
55
97
|
description: |
|
56
98
|
Show or open GitHub URL for your local directory.
|
57
99
|
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.
|
@@ -63,6 +105,7 @@ extensions: []
|
|
63
105
|
extra_rdoc_files: []
|
64
106
|
files:
|
65
107
|
- ".gitignore"
|
108
|
+
- ".rubocop.yml"
|
66
109
|
- CHANGELOG.md
|
67
110
|
- Gemfile
|
68
111
|
- LICENSE
|
@@ -96,7 +139,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
96
139
|
- !ruby/object:Gem::Version
|
97
140
|
version: '0'
|
98
141
|
requirements: []
|
99
|
-
rubygems_version: 3.
|
142
|
+
rubygems_version: 3.1.2
|
100
143
|
signing_key:
|
101
144
|
specification_version: 4
|
102
145
|
summary: Show or open GitHub URL for your local directory
|