giturl 1.2.0 → 1.2.1
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/CHANGELOG.md +12 -7
- data/README.md +7 -2
- data/lib/command_giturl.rb +6 -2
- data/lib/giturl/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9936c88458e72690ff551a1e072260576656070707fc995d9d1608eaa669a823
|
4
|
+
data.tar.gz: 7136bfde9dfe0d7d39c216dfb9fe0c0e381671eb38be400b2182e95c358b9b07
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 48fc760dd6a801ae2e130ccb1e672df6ee987391d37d4e944c7acb219fffacdc1e730f7b689c1163eafa16eb015652edea40c7d1e4869c6a991fbe36d9b1a287
|
7
|
+
data.tar.gz: 53f2dc9b6a67655ec6628141678c8d50fb4391b724f3836f4b42262fb153e850f6b69e5c7016ab39d0ac17dae9b6fdf7869222cf490a54c179f5de292e83920f
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,17 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [v1.2.1](https://github.com/shinyaohtani/giturl/tree/v1.2.1) (2020-03-27)
|
4
|
+
|
5
|
+
[Full Changelog](https://github.com/shinyaohtani/giturl/compare/v1.2.0...v1.2.1)
|
6
|
+
|
7
|
+
**Closed issues:**
|
8
|
+
|
9
|
+
- Open application even if --app alone without --open [\#13](https://github.com/shinyaohtani/giturl/issues/13)
|
10
|
+
|
11
|
+
**Merged pull requests:**
|
12
|
+
|
13
|
+
- Issue \#13 support for forgetting `--open` with `--app` [\#14](https://github.com/shinyaohtani/giturl/pull/14) ([shinyaohtani](https://github.com/shinyaohtani))
|
14
|
+
|
3
15
|
## [v1.2.0](https://github.com/shinyaohtani/giturl/tree/v1.2.0) (2020-03-24)
|
4
16
|
|
5
17
|
[Full Changelog](https://github.com/shinyaohtani/giturl/compare/v1.1.6...v1.2.0)
|
@@ -14,8 +26,6 @@
|
|
14
26
|
|
15
27
|
- Feature/\#8 if no directories are specified [\#11](https://github.com/shinyaohtani/giturl/pull/11) ([shinyaohtani](https://github.com/shinyaohtani))
|
16
28
|
|
17
|
-
# Changelog
|
18
|
-
|
19
29
|
## [v1.1.6](https://github.com/shinyaohtani/giturl/tree/v1.1.6) (2020-03-23)
|
20
30
|
|
21
31
|
[Full Changelog](https://github.com/shinyaohtani/giturl/compare/v1.1.5...v1.1.6)
|
@@ -28,8 +38,6 @@
|
|
28
38
|
|
29
39
|
- Feature/\#3 test code [\#9](https://github.com/shinyaohtani/giturl/pull/9) ([shinyaohtani](https://github.com/shinyaohtani))
|
30
40
|
|
31
|
-
# Changelog
|
32
|
-
|
33
41
|
## [v1.1.5](https://github.com/shinyaohtani/giturl/tree/v1.1.5) (2020-03-18)
|
34
42
|
|
35
43
|
[Full Changelog](https://github.com/shinyaohtani/giturl/compare/v1.1.4...v1.1.5)
|
@@ -145,7 +153,4 @@
|
|
145
153
|
- First release!
|
146
154
|
|
147
155
|
|
148
|
-
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
|
149
|
-
|
150
|
-
|
151
156
|
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
|
data/README.md
CHANGED
@@ -23,9 +23,12 @@ https://github.com/shinyaohtani/giturl/tree/master/lib/giturl/
|
|
23
23
|
|
24
24
|
```usage
|
25
25
|
Usage: giturl [options] [dirs]
|
26
|
-
[
|
26
|
+
[dirs]:
|
27
|
+
Target directories. Omit this when you only specify "."
|
28
|
+
|
29
|
+
[options]:
|
27
30
|
-o, --open Open the URL in your browser. default: no
|
28
|
-
-a, --app
|
31
|
+
-a, --app [APPNAME] Specify a browser. i.e. "Safari.app"
|
29
32
|
-v, --verbose Verbose mode. default: no
|
30
33
|
-h, --help Show this message
|
31
34
|
-V, --version Show version
|
@@ -49,6 +52,8 @@ $ giturl --open --app="Safari.app" .
|
|
49
52
|
$ giturl --open --app="/Applications/any_browser_you_have.app" .
|
50
53
|
```
|
51
54
|
|
55
|
+
When you specify `--app`, you often forget to specify `--open` at the same time, but don't worry. If `--app` is specified and `--open` is forgotten, it automatically operates as if `--open` was specified.
|
56
|
+
|
52
57
|
If no directory is specified, the behavior is the same as when the current directory is specified.
|
53
58
|
|
54
59
|
```sh
|
data/lib/command_giturl.rb
CHANGED
@@ -15,7 +15,7 @@ module Giturl
|
|
15
15
|
OptionParser.new do |opts|
|
16
16
|
opts.version = VERSION
|
17
17
|
opts.on('-o', '--open', 'Open the URL in your browser. default: no') { |v| v }
|
18
|
-
opts.on('-a APPNAME', '--app
|
18
|
+
opts.on('-a [APPNAME]', '--app [APPNAME]', 'Specify a browser. i.e. "Safari.app"') { |v| v }
|
19
19
|
opts.on('-v', '--verbose', 'Verbose mode. default: no') { |v| v }
|
20
20
|
opts.on_tail('-h', '--help', 'Show this message') do
|
21
21
|
puts opts
|
@@ -32,10 +32,14 @@ module Giturl
|
|
32
32
|
visit: https://github.com/shinyaohtani/giturl
|
33
33
|
|
34
34
|
Usage: #{opts.program_name} [options] [dirs]
|
35
|
-
[
|
35
|
+
[dirs]:
|
36
|
+
Target directories. Omit this when you only specify "."
|
37
|
+
|
38
|
+
[options]:
|
36
39
|
BANNER
|
37
40
|
|
38
41
|
opts.parse!(ARGV, into: @params)
|
42
|
+
@params[:open] = true if @params.keys.include?(:app)
|
39
43
|
end
|
40
44
|
end
|
41
45
|
|
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.2.
|
4
|
+
version: 1.2.1
|
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-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|