giturl 1.3.1 → 1.3.3
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 +7 -1
- data/CHANGELOG.md +28 -2
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +6 -0
- data/README.md +1 -1
- data/Rakefile +39 -39
- data/giturl.gemspec +10 -14
- data/lib/command_giturl.rb +1 -3
- data/lib/giturl/version.rb +11 -1
- metadata +18 -11
- /data/{bin → exe}/giturl +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cc5a445a8db2ffa88af586dd605805da38acd996f696ea7a2f47bc0f561f455f
|
4
|
+
data.tar.gz: 688fbef2c8ed4b6c3bce0a562b2f238085832861aa97e04aaf36c6230f27f182
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6edc334f3c7a80a1f7a4e1cc73d5f4948eee3584c864c54ba6574fe1043cc6e25e25188000a20e8ef4207a845a41d4d18e2d31753289545fdd25768af1a51203
|
7
|
+
data.tar.gz: 844eeb6451c35bf338bda626b90cb7ba19a4b42191af7eb76581627cec351896aec201058c9b1796a09d371a47d09a10f1214a602d0cff7ca254230c4f6c02c6
|
data/.rubocop.yml
CHANGED
@@ -12,13 +12,16 @@ require:
|
|
12
12
|
- rubocop-rspec
|
13
13
|
|
14
14
|
AllCops:
|
15
|
-
TargetRubyVersion: 2.
|
15
|
+
TargetRubyVersion: 2.3
|
16
16
|
|
17
17
|
Layout/EndAlignment:
|
18
18
|
Enabled: true
|
19
19
|
EnforcedStyleAlignWith: start_of_line
|
20
20
|
AutoCorrect: true
|
21
21
|
|
22
|
+
Layout/SpaceAroundMethodCallOperator:
|
23
|
+
Enabled: true
|
24
|
+
|
22
25
|
Layout/LineLength:
|
23
26
|
Enabled: true
|
24
27
|
AutoCorrect: false
|
@@ -39,6 +42,9 @@ Metrics/MethodLength:
|
|
39
42
|
Enabled: true
|
40
43
|
Max: 30
|
41
44
|
|
45
|
+
Style/ExponentialNotation:
|
46
|
+
Enabled: true
|
47
|
+
|
42
48
|
Style/HashEachMethods:
|
43
49
|
Enabled: true
|
44
50
|
AutoCorrect: true
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,31 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [v1.3.3](https://github.com/shinyaohtani/giturl/tree/v1.3.3) (2024-02-24)
|
4
|
+
|
5
|
+
[Full Changelog](https://github.com/shinyaohtani/giturl/compare/v1.3.2...v1.3.3)
|
6
|
+
|
7
|
+
- No changes in behavior
|
8
|
+
- code refactoring only.
|
9
|
+
|
10
|
+
**Closed issues:**
|
11
|
+
|
12
|
+
- none
|
13
|
+
|
14
|
+
## [[v1.3.2](https://github.com/shinyaohtani/giturl/tree/v1.3.2) (2020-05-10)
|
15
|
+
|
16
|
+
[Full Changelog](https://github.com/shinyaohtani/giturl/compare/v1.3.1...v1.3.2)
|
17
|
+
|
18
|
+
- No changes in behavior
|
19
|
+
- code refactoring only.
|
20
|
+
|
21
|
+
**Closed issues:**
|
22
|
+
|
23
|
+
- Refactoring that isn't needed [\#27](https://github.com/shinyaohtani/giturl/issues/27)
|
24
|
+
|
25
|
+
**Merged pull requests:**
|
26
|
+
|
27
|
+
- Non urgent refactoring \#27 [\#28](https://github.com/shinyaohtani/giturl/pull/28) ([shinyaohtani](https://github.com/shinyaohtani))
|
28
|
+
|
3
29
|
## [v1.3.1](https://github.com/shinyaohtani/giturl/tree/v1.3.1) (2020-04-14)
|
4
30
|
|
5
31
|
[Full Changelog](https://github.com/shinyaohtani/giturl/compare/v1.3.0...v1.3.1)
|
@@ -16,8 +42,8 @@
|
|
16
42
|
|
17
43
|
- Introduced Rubocop-performance [\#24](https://github.com/shinyaohtani/giturl/pull/24) ([shinyaohtani](https://github.com/shinyaohtani))
|
18
44
|
|
19
|
-
**
|
20
|
-
-
|
45
|
+
**Other related topic:**
|
46
|
+
- Created PR [\#794](https://github.com/github-changelog-generator/github-changelog-generator/pull/794) about github_changelog_generator on which giturl depends
|
21
47
|
|
22
48
|
## [v1.3.0](https://github.com/shinyaohtani/giturl/tree/v1.3.0) (2020-04-08)
|
23
49
|
|
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
8
|
+
size, disability, ethnicity, gender identity and expression, level of experience,
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity and
|
10
|
+
orientation.
|
11
|
+
|
12
|
+
## Our Standards
|
13
|
+
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
15
|
+
include:
|
16
|
+
|
17
|
+
* Using welcoming and inclusive language
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
19
|
+
* Gracefully accepting constructive criticism
|
20
|
+
* Focusing on what is best for the community
|
21
|
+
* Showing empathy towards other community members
|
22
|
+
|
23
|
+
Examples of unacceptable behavior by participants include:
|
24
|
+
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
+
advances
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
+
* Public or private harassment
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
30
|
+
address, without explicit permission
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
32
|
+
professional setting
|
33
|
+
|
34
|
+
## Our Responsibilities
|
35
|
+
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
38
|
+
response to any instances of unacceptable behavior.
|
39
|
+
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
44
|
+
threatening, offensive, or harmful.
|
45
|
+
|
46
|
+
## Scope
|
47
|
+
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
49
|
+
when an individual is representing the project or its community. Examples of
|
50
|
+
representing a project or community include using an official project e-mail
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
53
|
+
further defined and clarified by project maintainers.
|
54
|
+
|
55
|
+
## Enforcement
|
56
|
+
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
+
reported by contacting the project team at @shinyaohtani. All
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
63
|
+
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
66
|
+
members of the project's leadership.
|
67
|
+
|
68
|
+
## Attribution
|
69
|
+
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
71
|
+
available at [https://contributor-covenant.org/version/1/4][version]
|
72
|
+
|
73
|
+
[homepage]: https://contributor-covenant.org
|
74
|
+
[version]: https://contributor-covenant.org/version/1/4/
|
data/Gemfile
CHANGED
data/README.md
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
## What is giturl?
|
5
5
|
|
6
|
-
`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, `
|
6
|
+
`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, `giturl` 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.
|
7
7
|
|
8
8
|
You can use `giturl` like:
|
9
9
|
|
data/Rakefile
CHANGED
@@ -15,47 +15,47 @@ GitHubChangelogGenerator::RakeTask.new :changelog do |config|
|
|
15
15
|
# other changelog options (values are default)
|
16
16
|
#
|
17
17
|
# -- labels
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
18
|
+
# :config.breaking_labels = ["backwards-incompatible", "Backwards incompatible", "breaking"]
|
19
|
+
# :config.bug_labels = ["bug", "Bug", "Type: Bug"]
|
20
|
+
# :config.deprecated_labels = ["deprecated", "Deprecated", "Type: Deprecated"]
|
21
|
+
# :config.enhancement_labels = ["enhancement", "Enhancement", "Type: Enhancement"]
|
22
|
+
# :config.exclude_labels = ['duplicate', 'question', 'invalid', 'wontfix',
|
23
|
+
# : 'Duplicate', 'Question', 'Invalid', 'Wontfix',
|
24
|
+
# : 'Meta: Exclude From Changelog']
|
25
|
+
# :config.removed_labels = ["removed", "Removed", "Type: Removed"]
|
26
|
+
# :config.security_labels = ["security", "Security", "Type: Security"]
|
27
|
+
# :config.summary_labels = ["Release summary", "release-summary", "Summary", "summary"]
|
28
28
|
# -- prefix
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
29
|
+
# :config.breaking_prefix = "**Breaking changes:**"
|
30
|
+
# :config.bug_prefix = "**Fixed bugs:**"
|
31
|
+
# :config.deprecated_prefix = "**Deprecated:**"
|
32
|
+
# :config.enhancement_prefix = "**Implemented enhancements:**"
|
33
|
+
# :config.header = "# Changelog"
|
34
|
+
# :config.issue_prefix = "**Closed issues:**"
|
35
|
+
# :config.merge_prefix = "**Merged pull requests:**"
|
36
|
+
# :config.removed_prefix = "**Removed:**"
|
37
|
+
# :config.security_prefix = "**Security fixes:**"
|
38
|
+
# :config.summary_prefix = ""
|
39
39
|
# -- others
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
40
|
+
# :config.add_issues_wo_labels = true
|
41
|
+
# :config.add_pr_wo_labels = true
|
42
|
+
# :config.add_sections = {}
|
43
|
+
# :config.author = true
|
44
|
+
# :config.compare_link = true
|
45
|
+
# :config.configure_sections = {}
|
46
|
+
# :config.date_format = "%Y-%m-%d"
|
47
|
+
# :config.filter_issues_by_milestone = true
|
48
|
+
# :config.http_cache = true
|
49
|
+
# :config.issue_line_labels = []
|
50
|
+
# :config.issues = true
|
51
|
+
# :config.max_issues = nil
|
52
|
+
# :config.output = "CHANGELOG.md"
|
53
|
+
# :config.pulls = true
|
54
|
+
# :config.require = []
|
55
|
+
# :config.simple_list = false
|
56
|
+
# :config.ssl_ca_file = nil
|
57
|
+
# :config.unreleased = true
|
58
|
+
# :config.unreleased_label = "Unreleased"
|
59
59
|
end
|
60
60
|
|
61
61
|
task default: :spec
|
data/giturl.gemspec
CHANGED
@@ -1,8 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
|
4
|
-
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
5
|
-
require 'giturl/version'
|
3
|
+
require_relative 'lib/giturl/version'
|
6
4
|
|
7
5
|
Gem::Specification.new do |spec|
|
8
6
|
spec.name = 'giturl'
|
@@ -10,27 +8,25 @@ Gem::Specification.new do |spec|
|
|
10
8
|
spec.authors = ['Shinya Ohtani (shinyaohtani@github)']
|
11
9
|
spec.email = ['shinya_ohtani@yahoo.co.jp']
|
12
10
|
|
13
|
-
spec.homepage = 'https://github.com/shinyaohtani/giturl/blob/master/README.md'
|
14
|
-
spec.license = 'MIT'
|
15
11
|
spec.summary = 'Show or open GitHub URL for your local directory'
|
16
|
-
spec.description =
|
17
|
-
|
18
|
-
|
19
|
-
|
12
|
+
spec.description = Giturl::DESCRIPTION
|
13
|
+
spec.homepage = "#{Giturl::REPOSITORY_URL}/blob/master/README.md"
|
14
|
+
spec.license = 'MIT'
|
15
|
+
spec.required_ruby_version = Gem::Requirement.new('>= 2.3.0')
|
20
16
|
|
21
|
-
|
17
|
+
spec.metadata['allowed_push_host'] = 'https://rubygems.org'
|
22
18
|
|
23
19
|
spec.metadata['homepage_uri'] = spec.homepage
|
24
|
-
spec.metadata['source_code_uri'] =
|
25
|
-
spec.metadata['changelog_uri'] =
|
20
|
+
spec.metadata['source_code_uri'] = Giturl::REPOSITORY_URL
|
21
|
+
spec.metadata['changelog_uri'] = "#{Giturl::REPOSITORY_URL}/blob/master/CHANGELOG.md"
|
26
22
|
|
27
23
|
# Specify which files should be added to the gem when it is released.
|
28
24
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
29
25
|
spec.files = Dir.chdir(File.expand_path(__dir__)) do
|
30
26
|
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
31
27
|
end
|
32
|
-
spec.bindir = '
|
33
|
-
spec.executables =
|
28
|
+
spec.bindir = 'exe'
|
29
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
34
30
|
spec.require_paths = ['lib']
|
35
31
|
|
36
32
|
spec.add_runtime_dependency 'launchy', '>= 2.5.0'
|
data/lib/command_giturl.rb
CHANGED
@@ -51,9 +51,7 @@ module Giturl
|
|
51
51
|
opts.banner = <<~BANNER
|
52
52
|
|
53
53
|
#{opts.ver}
|
54
|
-
|
55
|
-
visit: https://github.com/shinyaohtani/giturl
|
56
|
-
|
54
|
+
#{DESCRIPTION}
|
57
55
|
Usage: #{opts.program_name} [options] [dirs]
|
58
56
|
[dirs]:
|
59
57
|
Target directories. Omit this when you only specify "."
|
data/lib/giturl/version.rb
CHANGED
@@ -1,5 +1,15 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
module Giturl
|
4
|
-
VERSION = '1.3.
|
4
|
+
VERSION = '1.3.3'
|
5
|
+
DESCRIPTION = <<~DESC
|
6
|
+
giturl: A simple navigation tool for GitHub pages from local git-cloned directories
|
7
|
+
|
8
|
+
Working deep in a git-cloned project and need to view its GitHub page?
|
9
|
+
'giturl' simplifies this for you. A single command unveils your repository's URL.
|
10
|
+
Want more? It also opens your browser and goes straight to the page --
|
11
|
+
no extra steps needed.
|
12
|
+
'giturl' streamlines your workflow, merging simplicity with sophistication.
|
13
|
+
DESC
|
14
|
+
REPOSITORY_URL = 'https://github.com/shinyaohtani/giturl'
|
5
15
|
end
|
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.3.
|
4
|
+
version: 1.3.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Shinya Ohtani (shinyaohtani@github)
|
8
|
-
autorequire:
|
9
|
-
bindir:
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-02-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: launchy
|
@@ -151,8 +151,13 @@ dependencies:
|
|
151
151
|
- !ruby/object:Gem::Version
|
152
152
|
version: 1.38.1
|
153
153
|
description: |
|
154
|
-
|
155
|
-
|
154
|
+
giturl: A simple navigation tool for GitHub pages from local git-cloned directories
|
155
|
+
|
156
|
+
Working deep in a git-cloned project and need to view its GitHub page?
|
157
|
+
'giturl' simplifies this for you. A single command unveils your repository's URL.
|
158
|
+
Want more? It also opens your browser and goes straight to the page --
|
159
|
+
no extra steps needed.
|
160
|
+
'giturl' streamlines your workflow, merging simplicity with sophistication.
|
156
161
|
email:
|
157
162
|
- shinya_ohtani@yahoo.co.jp
|
158
163
|
executables:
|
@@ -164,13 +169,14 @@ files:
|
|
164
169
|
- ".rspec"
|
165
170
|
- ".rubocop.yml"
|
166
171
|
- CHANGELOG.md
|
172
|
+
- CODE_OF_CONDUCT.md
|
167
173
|
- Gemfile
|
168
174
|
- LICENSE
|
169
175
|
- README.md
|
170
176
|
- Rakefile
|
171
177
|
- bin/console
|
172
|
-
- bin/giturl
|
173
178
|
- bin/setup
|
179
|
+
- exe/giturl
|
174
180
|
- giturl.gemspec
|
175
181
|
- lib/command_giturl.rb
|
176
182
|
- lib/giturl.rb
|
@@ -179,10 +185,11 @@ homepage: https://github.com/shinyaohtani/giturl/blob/master/README.md
|
|
179
185
|
licenses:
|
180
186
|
- MIT
|
181
187
|
metadata:
|
188
|
+
allowed_push_host: https://rubygems.org
|
182
189
|
homepage_uri: https://github.com/shinyaohtani/giturl/blob/master/README.md
|
183
190
|
source_code_uri: https://github.com/shinyaohtani/giturl
|
184
191
|
changelog_uri: https://github.com/shinyaohtani/giturl/blob/master/CHANGELOG.md
|
185
|
-
post_install_message:
|
192
|
+
post_install_message:
|
186
193
|
rdoc_options: []
|
187
194
|
require_paths:
|
188
195
|
- lib
|
@@ -190,15 +197,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
190
197
|
requirements:
|
191
198
|
- - ">="
|
192
199
|
- !ruby/object:Gem::Version
|
193
|
-
version:
|
200
|
+
version: 2.3.0
|
194
201
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
195
202
|
requirements:
|
196
203
|
- - ">="
|
197
204
|
- !ruby/object:Gem::Version
|
198
205
|
version: '0'
|
199
206
|
requirements: []
|
200
|
-
rubygems_version: 3.
|
201
|
-
signing_key:
|
207
|
+
rubygems_version: 3.4.10
|
208
|
+
signing_key:
|
202
209
|
specification_version: 4
|
203
210
|
summary: Show or open GitHub URL for your local directory
|
204
211
|
test_files: []
|
/data/{bin → exe}/giturl
RENAMED
File without changes
|