giturl 1.0.4 → 1.0.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/Gemfile +3 -1
- data/README.md +7 -4
- data/Rakefile +4 -2
- data/bin/giturl +2 -1
- data/giturl.gemspec +19 -17
- data/lib/giturl/version.rb +3 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 34abe50c2571b75655d804f3fade8517a6d5c7e8586020a6fd2fbabf4748ae9e
|
4
|
+
data.tar.gz: 7a81192953aa7b6a5fdca0c376c7c5cfb4b408180bbb24cb87ff2cfd2cd6b887
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bb063daf2f8b9071471c468da6dd990ef905d208bbaf0fb2aa63ba3778ebc52d626e961c84a4d0886d3c2c8fefd14eb2aa4a65207afddfb537ff470d13c6bec0
|
7
|
+
data.tar.gz: 80384712e4e0f14390643880bfa2a54939256dcb7a498b201c318081e3673abe53db829d886e40c21091a4e7448ef1bc43840b0a7b4b00e49aba52232d70c4de
|
data/Gemfile
CHANGED
data/README.md
CHANGED
@@ -4,7 +4,7 @@ Welcome to giturl! Do you often want to access the GitHub web page from the ter
|
|
4
4
|
|
5
5
|
## Installation
|
6
6
|
|
7
|
-
Install `giturl`
|
7
|
+
Install `giturl` as:
|
8
8
|
|
9
9
|
$ gem install giturl
|
10
10
|
|
@@ -16,7 +16,7 @@ gem 'giturl'
|
|
16
16
|
|
17
17
|
## Usage
|
18
18
|
|
19
|
-
|
19
|
+
You can use `giturl` as follows:
|
20
20
|
|
21
21
|
giturl [-o or --open] dir1 [dir2, dir3, ...]
|
22
22
|
|
@@ -30,12 +30,15 @@ Here is a example to open GitHub web page for current directory:
|
|
30
30
|
```sh
|
31
31
|
$ git clone git@github.com:shinyaohtani/giturl.git
|
32
32
|
$ cd giturl/lib/giturl/
|
33
|
+
|
33
34
|
# (working here)
|
34
|
-
# (some editing
|
35
|
+
# (some editing, like vim version.rb......)
|
35
36
|
# (then you want to access the GitHub web page for current dir.)
|
37
|
+
|
36
38
|
$ giturl -o .
|
37
39
|
https://github.com/shinyaohtani/giturl/tree/master/lib/giturl/
|
38
|
-
|
40
|
+
|
41
|
+
# == your default browser automatically opens the URL ==
|
39
42
|
```
|
40
43
|
|
41
44
|
## Contributing
|
data/Rakefile
CHANGED
data/bin/giturl
CHANGED
@@ -17,7 +17,8 @@ opt.parse!(ARGV, into: params)
|
|
17
17
|
|
18
18
|
ARGV.each do |arg|
|
19
19
|
remote_origin_url = `git -C #{arg} config --get remote.origin.url`.chomp
|
20
|
-
|
20
|
+
# remote_origin_url: git@github.com:shinyaohtani/giturl.git
|
21
|
+
baseurl = remote_origin_url.gsub(/:/, '/').gsub(/^.*@/, 'https://').gsub(/\.git$/, '')
|
21
22
|
|
22
23
|
gitdir_prefix = `git -C #{arg} rev-parse --show-prefix`.chomp
|
23
24
|
gitdir_branch = `git -C #{arg} rev-parse --abbrev-ref HEAD`.chomp
|
data/giturl.gemspec
CHANGED
@@ -1,32 +1,34 @@
|
|
1
|
-
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
lib = File.expand_path('lib', __dir__)
|
2
4
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
3
|
-
require
|
5
|
+
require 'giturl/version'
|
4
6
|
|
5
7
|
Gem::Specification.new do |spec|
|
6
|
-
spec.name =
|
8
|
+
spec.name = 'giturl'
|
7
9
|
spec.version = Giturl::VERSION
|
8
|
-
spec.authors = [
|
9
|
-
spec.email = [
|
10
|
+
spec.authors = ['shinyaohtani']
|
11
|
+
spec.email = ['shinya_ohtani@yahoo.co.jp']
|
10
12
|
|
11
|
-
spec.summary =
|
12
|
-
spec.description =
|
13
|
-
spec.homepage =
|
13
|
+
spec.summary = 'Show or open GitHub URL for given directory'
|
14
|
+
spec.description = 'Show or open GitHub URL for given directory'
|
15
|
+
spec.homepage = 'https://github.com/shinyaohtani/giturl'
|
14
16
|
|
15
17
|
#:spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
|
16
18
|
|
17
|
-
spec.metadata[
|
18
|
-
spec.metadata[
|
19
|
-
spec.metadata[
|
19
|
+
spec.metadata['homepage_uri'] = spec.homepage
|
20
|
+
spec.metadata['source_code_uri'] = 'https://github.com/shinyaohtani/giturl'
|
21
|
+
spec.metadata['changelog_uri'] = 'https://github.com/shinyaohtani/giturl/blob/master/README.md'
|
20
22
|
|
21
23
|
# Specify which files should be added to the gem when it is released.
|
22
24
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
23
|
-
spec.files
|
25
|
+
spec.files = Dir.chdir(File.expand_path(__dir__)) do
|
24
26
|
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
25
27
|
end
|
26
|
-
spec.bindir =
|
27
|
-
spec.executables = [
|
28
|
-
spec.require_paths = [
|
28
|
+
spec.bindir = 'bin'
|
29
|
+
spec.executables = ['giturl']
|
30
|
+
spec.require_paths = ['lib']
|
29
31
|
|
30
|
-
spec.add_development_dependency
|
31
|
-
spec.add_development_dependency
|
32
|
+
spec.add_development_dependency 'bundler', '~> 2.0'
|
33
|
+
spec.add_development_dependency 'rake', '>= 12.3.3'
|
32
34
|
end
|
data/lib/giturl/version.rb
CHANGED