giturl 1.3.2 → 1.3.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/.rubocop.yml +1 -1
- data/CHANGELOG.md +23 -1
- data/Gemfile +6 -0
- data/README.md +1 -1
- data/Rakefile +39 -39
- data/giturl.gemspec +2 -2
- data/lib/giturl/version.rb +7 -9
- metadata +12 -14
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e43435dd2f65994223cba6a0102f6115be87e134fda05f1a3f3f9a070615f67a
|
4
|
+
data.tar.gz: 41ec81451225da88086dec1ecdd0cd497ea0af313b6697df7ea6304fe1b00925
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 820f72055d3b78a15959da42539745736a8da5e0d7107ddab76f3841fa232e3bb8b4175fde24e98f91fae1200aa1656653a5f53fabfbcd210b39bfe6dd3e2505
|
7
|
+
data.tar.gz: cda6f2388376fd9e4d1174d236dfe10bc7671e38f44b537499a66793586bd71b24e73dfdb834c63b4ec312e25bc13f23ac7fd31f26f2e27248fadfd621477892
|
data/.rubocop.yml
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,28 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
-
## [v1.3.
|
3
|
+
## [v1.3.4](https://github.com/shinyaohtani/giturl/tree/v1.3.4 (2024-02-24)
|
4
|
+
|
5
|
+
[Full Changelog](https://github.com/shinyaohtani/giturl/compare/v1.3.3...v1.3.4)
|
6
|
+
|
7
|
+
- No changes in behavior
|
8
|
+
- code refactoring only.
|
9
|
+
|
10
|
+
**Closed issues:**
|
11
|
+
|
12
|
+
- none
|
13
|
+
|
14
|
+
## [v1.3.3](https://github.com/shinyaohtani/giturl/tree/v1.3.3) (2024-02-24)
|
15
|
+
|
16
|
+
[Full Changelog](https://github.com/shinyaohtani/giturl/compare/v1.3.2...v1.3.3)
|
17
|
+
|
18
|
+
- No changes in behavior
|
19
|
+
- code refactoring only.
|
20
|
+
|
21
|
+
**Closed issues:**
|
22
|
+
|
23
|
+
- none
|
24
|
+
|
25
|
+
## [[v1.3.2](https://github.com/shinyaohtani/giturl/tree/v1.3.2) (2020-05-10)
|
4
26
|
|
5
27
|
[Full Changelog](https://github.com/shinyaohtani/giturl/compare/v1.3.1...v1.3.2)
|
6
28
|
|
data/Gemfile
CHANGED
data/README.md
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
## What is giturl?
|
5
5
|
|
6
|
-
`giturl
|
6
|
+
`giturl`: A simple navigation tool for GitHub pages from local git-cloned directories Working deep in a git-cloned project and need to view its GitHub page? `giturl` simplifies this for you. A single command unveils your repository's URL. Want more? It also opens your browser and goes straight to the page -- no extra steps needed. `giturl` streamlines your workflow, merging simplicity with sophistication.
|
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
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
|
|
10
10
|
|
11
11
|
spec.summary = 'Show or open GitHub URL for your local directory'
|
12
12
|
spec.description = Giturl::DESCRIPTION
|
13
|
-
spec.homepage = Giturl::REPOSITORY_URL
|
13
|
+
spec.homepage = "#{Giturl::REPOSITORY_URL}/blob/master/README.md"
|
14
14
|
spec.license = 'MIT'
|
15
15
|
spec.required_ruby_version = Gem::Requirement.new('>= 2.3.0')
|
16
16
|
|
@@ -18,7 +18,7 @@ Gem::Specification.new do |spec|
|
|
18
18
|
|
19
19
|
spec.metadata['homepage_uri'] = spec.homepage
|
20
20
|
spec.metadata['source_code_uri'] = Giturl::REPOSITORY_URL
|
21
|
-
spec.metadata['changelog_uri'] = Giturl::REPOSITORY_URL
|
21
|
+
spec.metadata['changelog_uri'] = "#{Giturl::REPOSITORY_URL}/blob/master/CHANGELOG.md"
|
22
22
|
|
23
23
|
# Specify which files should be added to the gem when it is released.
|
24
24
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
data/lib/giturl/version.rb
CHANGED
@@ -1,17 +1,15 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
module Giturl
|
4
|
-
VERSION = '1.3.
|
4
|
+
VERSION = '1.3.4'
|
5
5
|
DESCRIPTION = <<~DESC
|
6
|
-
A
|
7
|
-
working directories.
|
6
|
+
giturl: A simple navigation tool for GitHub pages from local git-cloned directories.
|
8
7
|
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
automatically accesses the URL without your any operation on the browser.
|
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.
|
15
13
|
DESC
|
16
14
|
REPOSITORY_URL = 'https://github.com/shinyaohtani/giturl'
|
17
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.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Shinya Ohtani (shinyaohtani@github)
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
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,15 +151,13 @@ dependencies:
|
|
151
151
|
- !ruby/object:Gem::Version
|
152
152
|
version: 1.38.1
|
153
153
|
description: |
|
154
|
-
A
|
155
|
-
working directories.
|
154
|
+
giturl: A simple navigation tool for GitHub pages from local git-cloned directories.
|
156
155
|
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
automatically accesses the URL without your any operation on the browser.
|
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.
|
163
161
|
email:
|
164
162
|
- shinya_ohtani@yahoo.co.jp
|
165
163
|
executables:
|
@@ -191,7 +189,7 @@ metadata:
|
|
191
189
|
homepage_uri: https://github.com/shinyaohtani/giturl/blob/master/README.md
|
192
190
|
source_code_uri: https://github.com/shinyaohtani/giturl
|
193
191
|
changelog_uri: https://github.com/shinyaohtani/giturl/blob/master/CHANGELOG.md
|
194
|
-
post_install_message:
|
192
|
+
post_install_message:
|
195
193
|
rdoc_options: []
|
196
194
|
require_paths:
|
197
195
|
- lib
|
@@ -206,8 +204,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
206
204
|
- !ruby/object:Gem::Version
|
207
205
|
version: '0'
|
208
206
|
requirements: []
|
209
|
-
rubygems_version: 3.
|
210
|
-
signing_key:
|
207
|
+
rubygems_version: 3.5.6
|
208
|
+
signing_key:
|
211
209
|
specification_version: 4
|
212
210
|
summary: Show or open GitHub URL for your local directory
|
213
211
|
test_files: []
|