summaryrefslogtreecommitdiff
path: root/lib/container_registry/path.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/container_registry/path.rb')
-rw-r--r--lib/container_registry/path.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/container_registry/path.rb b/lib/container_registry/path.rb
index 9b2a61cdedc..b9cc49cb379 100644
--- a/lib/container_registry/path.rb
+++ b/lib/container_registry/path.rb
@@ -27,16 +27,16 @@ module ContainerRegistry
end
def components
- @components ||= @path.split('/')
+ @components ||= @path.split("/")
end
# rubocop: disable CodeReuse/ActiveRecord
def nodes
raise InvalidRegistryPathError unless valid?
- @nodes ||= components.size.downto(2).map do |length|
- components.take(length).join('/')
- end
+ @nodes ||= components.size.downto(2).map { |length|
+ components.take(length).join("/")
+ }
end
# rubocop: enable CodeReuse/ActiveRecord
@@ -66,7 +66,7 @@ module ContainerRegistry
def repository_name
return unless has_project?
- @path.remove(%r(^#{Regexp.escape(project_path)}/?))
+ @path.remove(%r{^#{Regexp.escape(project_path)}/?})
end
def project_path