Skip to content
This repository has been archived by the owner on May 16, 2021. It is now read-only.

Commit

Permalink
RuboCop 0.78.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pooza committed Jan 13, 2020
1 parent 479f733 commit a0aed58
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .rubocop.yml
@@ -1,3 +1,5 @@
require: rubocop-performance

AllCops:
AllowSymlinksInCacheRootDirectory: true
DisplayCopNames: true
Expand Down
2 changes: 1 addition & 1 deletion app/lib/cucumber_feed/feed_renderer.rb
Expand Up @@ -135,7 +135,7 @@ def parse_url(href)
unless url.absolute?
local_url = url
url = Ginseng::URI.parse(self.url)
if href.to_s =~ %r{^/}
if %r{^/}.match?(href.to_s)
url.path = local_url.path
else
url.path = File.join(url.path, local_url.path)
Expand Down
2 changes: 1 addition & 1 deletion config/application.yaml
@@ -1,5 +1,5 @@
package:
version: 1.3.15
version: 1.3.16
url: https://github.com/pooza/cucumber-feed
authors:
- Tatsuya Koishi
Expand Down

0 comments on commit a0aed58

Please sign in to comment.