giturl 1.1.1 → 1.1.2
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 +82 -0
- data/README.md +7 -0
- data/giturl.gemspec +5 -4
- data/lib/giturl/version.rb +1 -1
- metadata +9 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d6ed16d5abfbf14f4c3f29d965513249de8997b9a027770550a077efcb0cf56a
|
4
|
+
data.tar.gz: a4eb298300d9e321c959fe6d818fc30cf916bc364852be47e7de9671134be6a9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 33c2e13e16b84c23431cdfb64466fc607d2da0463cb95dcd727ba540c799e0e72326eed8acf5d6be7516217f2ab9ecf31f0a1afcb2623a9ffd93ef8b25ffa615
|
7
|
+
data.tar.gz: 9299a8a80d8e70a02e7f2955c2fe519dc4b5e121265751241cd2d90229083ea8ebe3dad476978a4b3498f16eff4c20ea38a61578d7cf1b1db3f2a91e03d41f34
|
data/CHANGELOG.md
ADDED
@@ -0,0 +1,82 @@
|
|
1
|
+
# Changelog
|
2
|
+
|
3
|
+
## [v1.1.2](https://github.com/shinyaohtani/giturl/tree/v1.1.2) (2020-03-13)
|
4
|
+
|
5
|
+
[Full Changelog](https://github.com/shinyaohtani/giturl/compare/v1.1.1...v1.1.2)
|
6
|
+
|
7
|
+
**Implemented enhancements:**
|
8
|
+
|
9
|
+
- Described CHANGELOG.md and linked to it from README.md
|
10
|
+
- Added license item to README.md
|
11
|
+
|
12
|
+
## [v1.1.1](https://github.com/shinyaohtani/giturl/tree/v1.1.1) (2020-03-12)
|
13
|
+
|
14
|
+
[Full Changelog](https://github.com/shinyaohtani/giturl/compare/v1.1.0...v1.1.1)
|
15
|
+
|
16
|
+
**Implemented enhancements:**
|
17
|
+
|
18
|
+
- Updated description for giturl in the giturl.gemspec to make it easier to understand what giturl is.
|
19
|
+
|
20
|
+
**Fixed bugs:**
|
21
|
+
|
22
|
+
- Fatal: Fixed an issue that giturl could not be run at all from the command line
|
23
|
+
|
24
|
+
## [v1.1.0](https://github.com/shinyaohtani/giturl/tree/v1.1.0) (2020-03-12)
|
25
|
+
|
26
|
+
[Full Changelog](https://github.com/shinyaohtani/giturl/compare/v1.0.5...v1.1.0)
|
27
|
+
|
28
|
+
**Implemented enhancements:**
|
29
|
+
|
30
|
+
- Modularized main function, so now you can call Giturl as a module from your ruby code.
|
31
|
+
|
32
|
+
## [v1.0.5](https://github.com/shinyaohtani/giturl/tree/v1.0.5) (2020-03-12)
|
33
|
+
|
34
|
+
[Full Changelog](https://github.com/shinyaohtani/giturl/compare/v1.0.4...v1.0.5)
|
35
|
+
|
36
|
+
**Implemented enhancements:**
|
37
|
+
|
38
|
+
- Updated README.md
|
39
|
+
- Formatted code by rubocop automatically
|
40
|
+
|
41
|
+
## [v1.0.4](https://github.com/shinyaohtani/giturl/tree/v1.0.4) (2020-03-12)
|
42
|
+
|
43
|
+
[Full Changelog](https://github.com/shinyaohtani/giturl/compare/v1.0.3...v1.0.4)
|
44
|
+
|
45
|
+
**Implemented enhancements:**
|
46
|
+
|
47
|
+
- Described how to install and how to use on README.md
|
48
|
+
|
49
|
+
## [v1.0.3](https://github.com/shinyaohtani/giturl/tree/v1.0.3) (2020-03-11)
|
50
|
+
|
51
|
+
[Full Changelog](https://github.com/shinyaohtani/giturl/compare/v1.0.2...v1.0.3)
|
52
|
+
|
53
|
+
**Fixed bugs:**
|
54
|
+
|
55
|
+
- Fatal: Fixed not following RubyGems format so it works correctly
|
56
|
+
|
57
|
+
## [v1.0.2](https://github.com/shinyaohtani/giturl/tree/v1.0.2) (2020-03-11)
|
58
|
+
|
59
|
+
[Full Changelog](https://github.com/shinyaohtani/giturl/compare/v1.0.1...v1.0.2)
|
60
|
+
|
61
|
+
**Fixed bugs:**
|
62
|
+
|
63
|
+
- Fatal: Fixed not following RubyGems format so it works correctly
|
64
|
+
|
65
|
+
## [v1.0.1](https://github.com/shinyaohtani/giturl/tree/v1.0.1) (2020-03-11)
|
66
|
+
|
67
|
+
[Full Changelog](https://github.com/shinyaohtani/giturl/compare/v1.0.0...v1.0.1)
|
68
|
+
|
69
|
+
**Fixed bugs:**
|
70
|
+
|
71
|
+
- Fatal: Fixed not following RubyGems format so it works correctly
|
72
|
+
|
73
|
+
## [v1.0.0](https://github.com/shinyaohtani/giturl/tree/v1.0.0) (2020-03-11)
|
74
|
+
|
75
|
+
[Full Changelog](https://github.com/shinyaohtani/giturl/compare/65c0df17e303408e2c8752b70b706ef3595f0b49...v1.0.0)
|
76
|
+
|
77
|
+
**Implemented enhancements:**
|
78
|
+
|
79
|
+
- First release!
|
80
|
+
|
81
|
+
|
82
|
+
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
|
data/README.md
CHANGED
@@ -40,7 +40,14 @@ https://github.com/shinyaohtani/giturl/tree/master/lib/giturl/
|
|
40
40
|
|
41
41
|
# == your default browser automatically opens the URL ==
|
42
42
|
```
|
43
|
+
## Changelog
|
44
|
+
|
45
|
+
Refer to [Changelog.md](./CHANGELOG.md)
|
43
46
|
|
44
47
|
## Contributing
|
45
48
|
|
46
49
|
Bug reports and pull requests are welcome on GitHub at https://github.com/shinyaohtani/giturl
|
50
|
+
|
51
|
+
## License
|
52
|
+
|
53
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
data/giturl.gemspec
CHANGED
@@ -7,13 +7,14 @@ require 'giturl/version'
|
|
7
7
|
Gem::Specification.new do |spec|
|
8
8
|
spec.name = 'giturl'
|
9
9
|
spec.version = Giturl::VERSION
|
10
|
-
spec.authors = ['shinyaohtani']
|
10
|
+
spec.authors = ['Shinya Ohtani (shinyaohtani@github)']
|
11
11
|
spec.email = ['shinya_ohtani@yahoo.co.jp']
|
12
12
|
|
13
13
|
spec.homepage = 'https://github.com/shinyaohtani/giturl'
|
14
|
-
spec.
|
14
|
+
spec.license = 'MIT'
|
15
|
+
spec.summary = 'Show or open GitHub URL for your local directory'
|
15
16
|
spec.description = <<~DESCRIPTION
|
16
|
-
Show or open GitHub URL for
|
17
|
+
Show or open GitHub URL for your local directory.
|
17
18
|
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.
|
18
19
|
DESCRIPTION
|
19
20
|
|
@@ -21,7 +22,7 @@ Gem::Specification.new do |spec|
|
|
21
22
|
|
22
23
|
spec.metadata['homepage_uri'] = spec.homepage
|
23
24
|
spec.metadata['source_code_uri'] = 'https://github.com/shinyaohtani/giturl'
|
24
|
-
spec.metadata['changelog_uri'] = 'https://github.com/shinyaohtani/giturl/blob/master/
|
25
|
+
spec.metadata['changelog_uri'] = 'https://github.com/shinyaohtani/giturl/blob/master/CHANGELOG.md'
|
25
26
|
|
26
27
|
# Specify which files should be added to the gem when it is released.
|
27
28
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
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.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
- shinyaohtani
|
7
|
+
- Shinya Ohtani (shinyaohtani@github)
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-03-
|
11
|
+
date: 2020-03-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -39,7 +39,7 @@ dependencies:
|
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: 12.3.3
|
41
41
|
description: |
|
42
|
-
Show or open GitHub URL for
|
42
|
+
Show or open GitHub URL for your local directory.
|
43
43
|
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.
|
44
44
|
email:
|
45
45
|
- shinya_ohtani@yahoo.co.jp
|
@@ -49,6 +49,7 @@ extensions: []
|
|
49
49
|
extra_rdoc_files: []
|
50
50
|
files:
|
51
51
|
- ".gitignore"
|
52
|
+
- CHANGELOG.md
|
52
53
|
- Gemfile
|
53
54
|
- LICENSE
|
54
55
|
- README.md
|
@@ -60,11 +61,12 @@ files:
|
|
60
61
|
- lib/giturl.rb
|
61
62
|
- lib/giturl/version.rb
|
62
63
|
homepage: https://github.com/shinyaohtani/giturl
|
63
|
-
licenses:
|
64
|
+
licenses:
|
65
|
+
- MIT
|
64
66
|
metadata:
|
65
67
|
homepage_uri: https://github.com/shinyaohtani/giturl
|
66
68
|
source_code_uri: https://github.com/shinyaohtani/giturl
|
67
|
-
changelog_uri: https://github.com/shinyaohtani/giturl/blob/master/
|
69
|
+
changelog_uri: https://github.com/shinyaohtani/giturl/blob/master/CHANGELOG.md
|
68
70
|
post_install_message:
|
69
71
|
rdoc_options: []
|
70
72
|
require_paths:
|
@@ -83,5 +85,5 @@ requirements: []
|
|
83
85
|
rubygems_version: 3.0.3
|
84
86
|
signing_key:
|
85
87
|
specification_version: 4
|
86
|
-
summary: Show or open GitHub URL for
|
88
|
+
summary: Show or open GitHub URL for your local directory
|
87
89
|
test_files: []
|