Path: blob/trunk/rb/lib/selenium/support/nightly_version_generator.rb
1864 views
# frozen_string_literal: true12# Licensed to the Software Freedom Conservancy (SFC) under one3# or more contributor license agreements. See the NOTICE file4# distributed with this work for additional information5# regarding copyright ownership. The SFC licenses this file6# to you under the Apache License, Version 2.0 (the7# "License"); you may not use this file except in compliance8# with the License. You may obtain a copy of the License at9#10# http://www.apache.org/licenses/LICENSE-2.011#12# Unless required by applicable law or agreed to in writing,13# software distributed under the License is distributed on an14# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY15# KIND, either express or implied. See the License for the16# specific language governing permissions and limitations17# under the License.1819require 'date'2021module Selenium22module Support23#24# Updates version in `version.rb` file with nightly suffix:25# - VERSION = '4.6.1'26# + VERSION = '4.6.1.nightly.20221126'27#28# @api private29#3031class NightlyVersionGenerator32REGEXP = /VERSION = ['"]([\d.]+\.nightly)['"]/3334def self.call(version_file, version_suffix)35version_suffix ||= Date.today.strftime('%Y%m%d')36version_file_contents = File.read(version_file)37version_file_contents.gsub!(REGEXP) do38old_version = Regexp.last_match(1)39new_version = [old_version, version_suffix].join('.')40puts("#{old_version} -> #{new_version}")4142"VERSION = '#{new_version}'"43end4445File.write(version_file, version_file_contents)46end47end # NightlyVersionGenerator48end # Support49end # Selenium5051if __FILE__ == $PROGRAM_NAME52version_file, version_suffix = *ARGV53Selenium::Support::NightlyVersionGenerator.call(version_file, version_suffix)54end555657