We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0764caa + e4c9dec commit 077ce4bCopy full SHA for 077ce4b
2 files changed
.rubocop.yml
@@ -36,6 +36,11 @@ Style/RedundantRegexpEscape:
36
Style/SlicingWithRange:
37
Enabled: true
38
39
+# Disable this cop until this isssue gets a clear answer:
40
+# https://github.com/rubocop/rubocop/issues/10675
41
+Gemspec/DeprecatedAttributeAssignment:
42
+ Enabled: false
43
+
44
AllCops:
45
TargetRubyVersion: 2.5
46
Exclude:
lib/solidus_dev_support/rake_tasks.rb
@@ -78,6 +78,7 @@ def install_changelog_task
78
79
GitHubChangelogGenerator::RakeTask.new(:changelog) do |config|
80
require 'octokit'
81
+ require 'octokit/repository'
82
repo = Octokit::Repository.from_url(gemspec.metadata['source_code_uri'] || gemspec.homepage)
83
84
config.user = repo.owner
0 commit comments