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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3a27789c78c7e8e406c013e70dab4327347993b0a63d8bc55fb318fa2a17e011
4
- data.tar.gz: 17f074f48f48224c860ff5eefd29cfd27fe50b998b5121d99504e45a825f7f5e
3
+ metadata.gz: e43435dd2f65994223cba6a0102f6115be87e134fda05f1a3f3f9a070615f67a
4
+ data.tar.gz: 41ec81451225da88086dec1ecdd0cd497ea0af313b6697df7ea6304fe1b00925
5
5
  SHA512:
6
- metadata.gz: d3183cc7457280ab61080e4cc6577ecb4ce66e61bcb00aff304a4cf56304fa79a6e9075d381e06cdb97e9a935dcd383fcb45584f9a46ea1180d8a7e17342e1e5
7
- data.tar.gz: 5406b80bc481bd73d88e82e43ae48107489fe16b99b36def6e89baa8f05a070eafd24a1929ffa37e51cc5c55deafd55ae9636f9fd7535632cfe0b3583df83a7e
6
+ metadata.gz: 820f72055d3b78a15959da42539745736a8da5e0d7107ddab76f3841fa232e3bb8b4175fde24e98f91fae1200aa1656653a5f53fabfbcd210b39bfe6dd3e2505
7
+ data.tar.gz: cda6f2388376fd9e4d1174d236dfe10bc7671e38f44b537499a66793586bd71b24e73dfdb834c63b4ec312e25bc13f23ac7fd31f26f2e27248fadfd621477892
data/.rubocop.yml CHANGED
@@ -12,7 +12,7 @@ require:
12
12
  - rubocop-rspec
13
13
 
14
14
  AllCops:
15
- TargetRubyVersion: 2.5
15
+ TargetRubyVersion: 2.3
16
16
 
17
17
  Layout/EndAlignment:
18
18
  Enabled: true
data/CHANGELOG.md CHANGED
@@ -1,6 +1,28 @@
1
1
  # Changelog
2
2
 
3
- ## [v1.3.2](https://github.com/shinyaohtani/giturl/tree/v1.3.2) (2020-05-10)
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
@@ -4,3 +4,9 @@ source 'https://rubygems.org'
4
4
 
5
5
  # Specify your gem's dependencies in giturl.gemspec
6
6
  gemspec
7
+
8
+ gem 'rake', '~> 13.0'
9
+
10
+ gem 'rspec', '~> 3.0'
11
+
12
+ gem 'rubocop', '~> 1.21'
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, `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.
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
- #: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"]
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
- #: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 = ""
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
- #: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"
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 + '/blob/master/README.md'
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 + '/blob/master/CHANGELOG.md'
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.
@@ -1,17 +1,15 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Giturl
4
- VERSION = '1.3.2'
4
+ VERSION = '1.3.4'
5
5
  DESCRIPTION = <<~DESC
6
- A tiny helper for accessing GitHub web pages corresponding to local
7
- working directories.
6
+ giturl: A simple navigation tool for GitHub pages from local git-cloned directories.
8
7
 
9
- Have you ever wanted to access a GitHub web page while working on
10
- a git-cloned local directory?
11
- You can use 'giturl' to display the URL corresponding to the git-managed
12
- directory given as an argument. And furthermore, if you want to access
13
- the URL immediately with your browser, 'giturl' opens your browser and
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.2
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: 2020-05-10 00:00:00.000000000 Z
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 tiny helper for accessing GitHub web pages corresponding to local
155
- working directories.
154
+ giturl: A simple navigation tool for GitHub pages from local git-cloned directories.
156
155
 
157
- Have you ever wanted to access a GitHub web page while working on
158
- a git-cloned local directory?
159
- You can use 'giturl' to display the URL corresponding to the git-managed
160
- directory given as an argument. And furthermore, if you want to access
161
- the URL immediately with your browser, 'giturl' opens your browser and
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.1.2
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: []