Skip to content

Commit

Permalink
Fix RuboCop offenses in NightlyVersionGenerator
Browse files Browse the repository at this point in the history
  • Loading branch information
p0deje committed Nov 26, 2022
1 parent 538c11a commit 2589a32
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion rb/lib/selenium/webdriver/support/nightly_version_generator.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
# frozen_string_literal: true

# Licensed to the Software Freedom Conservancy (SFC) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The SFC licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
Expand All @@ -22,7 +33,7 @@ module Support

class NightlyVersionGenerator

REGEXP = /VERSION = ['"]([\d\.]+)['"]/
REGEXP = /VERSION = ['"]([\d.]+)['"]/.freeze

def self.call(version_file, version_suffix)
version_suffix ||= Date.today.strftime('%Y%m%d')
Expand Down

0 comments on commit 2589a32

Please sign in to comment.