giturl 1.0.3 → 1.0.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 +4 -4
- data/README.md +25 -17
- data/giturl.gemspec +1 -1
- data/lib/giturl/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8f6f9e7ec47158f1d04f1554971e51c956b401aae8a37ded0f48a5a523adfe47
|
4
|
+
data.tar.gz: a1e4311d6612f041e9d716fba2e66f3244aa963f49aff6eab02535feb1792e38
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c5a306cffec79b182b4eee89482def8493429e8480e303932607bb383290a689da3019a52f45dee9ce7e8c90bc75058c0c1eeb83d70aba7f02b87ad8b9b802b0
|
7
|
+
data.tar.gz: 867f196bbb91818a4eab525237bb18120b0af039caf5da271a5eeff98e59fa8e652211e9c8cd59c3913ee310d080f3858e428f13375a6f0e96dcb4ab8e64b6d2
|
data/README.md
CHANGED
@@ -1,35 +1,43 @@
|
|
1
|
-
#
|
1
|
+
# giturl
|
2
2
|
|
3
|
-
Welcome to
|
4
|
-
|
5
|
-
TODO: Delete this and the text above, and describe your gem
|
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.
|
6
4
|
|
7
5
|
## Installation
|
8
6
|
|
9
|
-
|
7
|
+
Install `giturl` yourself as:
|
8
|
+
|
9
|
+
$ gem install giturl
|
10
|
+
|
11
|
+
Or add `giturl` to your application's Gemfile and run `bundle` command:
|
10
12
|
|
11
13
|
```ruby
|
12
14
|
gem 'giturl'
|
13
15
|
```
|
14
16
|
|
15
|
-
|
16
|
-
|
17
|
-
$ bundle
|
17
|
+
## Usage
|
18
18
|
|
19
|
-
|
19
|
+
If you have it installed, you can use `giturl` as follows:
|
20
20
|
|
21
|
-
|
21
|
+
giturl [-o or --open] dir1 [dir2, dir3, ...]
|
22
22
|
|
23
|
-
|
23
|
+
Then you will get a list of URLs:
|
24
24
|
|
25
|
-
|
25
|
+
URL1 [URL2, URL3, ...] (one URL for each line)
|
26
26
|
|
27
|
-
|
27
|
+
and if `--open` is given, open the URLs on your browser.
|
28
|
+
Here is a example to open GitHub web page for current directory:
|
28
29
|
|
29
|
-
|
30
|
-
|
31
|
-
|
30
|
+
```sh
|
31
|
+
$ git clone git@github.com:shinyaohtani/giturl.git
|
32
|
+
$ cd giturl/lib/giturl/
|
33
|
+
# (working here)
|
34
|
+
# (some editing. like vim version.rb......)
|
35
|
+
# (then you want to access the GitHub web page for current dir.)
|
36
|
+
$ giturl -o .
|
37
|
+
https://github.com/shinyaohtani/giturl/tree/master/lib/giturl/
|
38
|
+
# and your default browser automatically opens the URL
|
39
|
+
```
|
32
40
|
|
33
41
|
## Contributing
|
34
42
|
|
35
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
43
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/shinyaohtani/giturl
|
data/giturl.gemspec
CHANGED
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
|
|
10
10
|
|
11
11
|
spec.summary = %q{Show or open GitHub URL for given directory}
|
12
12
|
spec.description = %q{Show or open GitHub URL for given directory}
|
13
|
-
spec.homepage = "https://
|
13
|
+
spec.homepage = "https://github.com/shinyaohtani/giturl"
|
14
14
|
|
15
15
|
#:spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
|
16
16
|
|
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.0.
|
4
|
+
version: 1.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- shinyaohtani
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-03-
|
11
|
+
date: 2020-03-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -56,10 +56,10 @@ files:
|
|
56
56
|
- bin/setup
|
57
57
|
- giturl.gemspec
|
58
58
|
- lib/giturl/version.rb
|
59
|
-
homepage: https://
|
59
|
+
homepage: https://github.com/shinyaohtani/giturl
|
60
60
|
licenses: []
|
61
61
|
metadata:
|
62
|
-
homepage_uri: https://
|
62
|
+
homepage_uri: https://github.com/shinyaohtani/giturl
|
63
63
|
source_code_uri: https://github.com/shinyaohtani/giturl
|
64
64
|
changelog_uri: https://github.com/shinyaohtani/giturl/blob/master/README.md
|
65
65
|
post_install_message:
|