giturl 1.3.0 → 1.3.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 762f0ef988f2cf602f43e4e5abc74e1124d9fb8156e63a5d0fd3f4584647883c
4
- data.tar.gz: 051e0cba7445080f5dde7fd7c4dcb70e78575d72f4e5f91313e25456e182c003
3
+ metadata.gz: 6858c9b00386248c61e648e91c70d5d2ee8dcf87148623b5adc8b5629709cc00
4
+ data.tar.gz: c61fb13e943273aaac9443c0d51c69f350dc19efe0edc566b83e990cfcffa2f4
5
5
  SHA512:
6
- metadata.gz: 6c29c6eac2c5590e8415bed676d277720a43458b1c8f64ee58d1260b53ca499a417fa1aa5eec1cea4fa7d1c6ec9629b4a2328c70d56ae3a80d6eca9cf7a00622
7
- data.tar.gz: a8894f14c0bf6421b9fb1841f6971101772339acdcbba4261fd63d285267ddd45e1ab1af8da5c723b17c7686917a8dbaa7a3cd73cca64dd75de13d132c277517
6
+ metadata.gz: abc661bddd612b8aa06edce935b9b66497c9fdc38fde6314222b305f6c677a6bfb03343c655f5581ff9d68d2d3f0b38311f8753707e46d9173db29f30d54b76e
7
+ data.tar.gz: 731cf5c4cc15b4049c348ec1e5840c4f1c89fd2740d76508f8f126bf6ce22c4d59765abc6b4a697ebbef2175fb4d8f70497524390e98181f9301b67c82b84b6f
@@ -8,6 +8,7 @@
8
8
  # https://github.com/rubocop-hq/ruby-style-guide
9
9
 
10
10
  require:
11
+ - rubocop-performance
11
12
  - rubocop-rspec
12
13
 
13
14
  AllCops:
@@ -1,5 +1,24 @@
1
1
  # Changelog
2
2
 
3
+ ## [v1.3.1](https://github.com/shinyaohtani/giturl/tree/v1.3.1) (2020-04-14)
4
+
5
+ [Full Changelog](https://github.com/shinyaohtani/giturl/compare/v1.3.0...v1.3.1)
6
+
7
+ **Summary:**
8
+
9
+ - No changes for users are included.
10
+
11
+ **Closed issues:**
12
+
13
+ - Introduce Rubocop-performance for readability [\#23](https://github.com/shinyaohtani/giturl/issues/23)
14
+
15
+ **Merged pull requests:**
16
+
17
+ - Introduced Rubocop-performance [\#24](https://github.com/shinyaohtani/giturl/pull/24) ([shinyaohtani](https://github.com/shinyaohtani))
18
+
19
+ **other topic
20
+ - Create PR [\#794](https://github.com/github-changelog-generator/github-changelog-generator/pull/794) about github_changelog_generator on which giturl depends
21
+
3
22
  ## [v1.3.0](https://github.com/shinyaohtani/giturl/tree/v1.3.0) (2020-04-08)
4
23
 
5
24
  [Full Changelog](https://github.com/shinyaohtani/giturl/compare/v1.2.1...v1.3.0)
@@ -13,8 +32,6 @@
13
32
  - Feature/\#2 support windows linux [\#17](https://github.com/shinyaohtani/giturl/pull/17) ([shinyaohtani](https://github.com/shinyaohtani))
14
33
  - fixed an Abc warning from rubocop [\#16](https://github.com/shinyaohtani/giturl/pull/16) ([shinyaohtani](https://github.com/shinyaohtani))
15
34
 
16
- # Changelog
17
-
18
35
  ## [v1.2.1](https://github.com/shinyaohtani/giturl/tree/v1.2.1) (2020-03-27)
19
36
 
20
37
  [Full Changelog](https://github.com/shinyaohtani/giturl/compare/v1.2.0...v1.2.1)
data/README.md CHANGED
@@ -12,13 +12,14 @@ $ giturl .
12
12
  https://github.com/shinyaohtani/giturl/tree/master/lib/giturl/
13
13
  ```
14
14
 
15
- and `--open`, or simply `-o` option is given, your browser opens the URLs
15
+ and `--open`, or simply `-o` option is given, your default browser opens the URLs
16
16
 
17
17
  ```sh
18
18
  $ giturl -o .
19
19
  https://github.com/shinyaohtani/giturl/tree/master/lib/giturl/
20
20
  # == your default browser automatically opens the URL ==
21
21
  ```
22
+ Browser cooperation works on any OS of macOS, Windows and Linux.
22
23
 
23
24
  ## Usage
24
25
 
data/Rakefile CHANGED
@@ -6,10 +6,56 @@ RSpec::Core::RakeTask.new(:spec)
6
6
 
7
7
  require 'github_changelog_generator/task'
8
8
  GitHubChangelogGenerator::RakeTask.new :changelog do |config|
9
- config.user = 'shinyaohtani'
10
- config.project = 'giturl'
11
9
  config.base = 'CHANGELOG.md'
12
10
  config.future_release = "v#{Giturl::VERSION}"
11
+ config.project = 'giturl'
12
+ config.user = 'shinyaohtani'
13
+ config.verbose = false
14
+
15
+ # other changelog options (values are default)
16
+ #
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"]
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 = ""
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"
13
59
  end
14
60
 
15
61
  task default: :spec
@@ -42,5 +42,6 @@ Gem::Specification.new do |spec|
42
42
  spec.add_development_dependency 'rake', '>= 12.3.3'
43
43
  spec.add_development_dependency 'rspec', '>= 3.9.0'
44
44
  spec.add_development_dependency 'rubocop', '>= 0.80.1'
45
+ spec.add_development_dependency 'rubocop-performance', '>= 1.5.2'
45
46
  spec.add_development_dependency 'rubocop-rspec', '>= 1.38.1'
46
47
  end
@@ -16,7 +16,7 @@ module Giturl
16
16
  OptionParser.new do |opts|
17
17
  opts = define_options(opts)
18
18
  opts.parse!(ARGV, into: @params)
19
- @params[:open] = true if @params.keys.include?(:app)
19
+ @params[:open] = true if @params.key?(:app)
20
20
  end
21
21
  end
22
22
 
@@ -41,7 +41,7 @@ module Giturl
41
41
  remote_origin_url = `git -C #{path} config --get remote.origin.url`.chomp
42
42
 
43
43
  # remote_origin_url: git@github.com:shinyaohtani/giturl.git
44
- baseurl = remote_origin_url.gsub(/:/, '/').gsub(/^.*@/, 'https://').gsub(/\.git$/, '')
44
+ baseurl = remote_origin_url.tr(':', '/').gsub(/^.*@/, 'https://').gsub(/\.git$/, '')
45
45
  # gitdir_branch: feature/#1_user_named_branch
46
46
  encoded_branch = gitdir_branch.split('/').map { |e| ERB::Util.url_encode(e) }.join('/')
47
47
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Giturl
4
- VERSION = '1.3.0'
4
+ VERSION = '1.3.1'
5
5
  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.0
4
+ version: 1.3.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-04-08 00:00:00.000000000 Z
11
+ date: 2020-04-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: launchy
@@ -122,6 +122,20 @@ dependencies:
122
122
  - - ">="
123
123
  - !ruby/object:Gem::Version
124
124
  version: 0.80.1
125
+ - !ruby/object:Gem::Dependency
126
+ name: rubocop-performance
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - ">="
130
+ - !ruby/object:Gem::Version
131
+ version: 1.5.2
132
+ type: :development
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - ">="
137
+ - !ruby/object:Gem::Version
138
+ version: 1.5.2
125
139
  - !ruby/object:Gem::Dependency
126
140
  name: rubocop-rspec
127
141
  requirement: !ruby/object:Gem::Requirement