From 6fe874ff82c9aafbd17881dddedbc3804fae17ab Mon Sep 17 00:00:00 2001 From: Samuel Williams Date: Wed, 23 Aug 2023 15:39:11 +1200 Subject: [PATCH] Update authors. --- ext/extconf.rb | 21 +-------------------- io-event.gemspec | 2 +- lib/io/event/selector.rb | 2 +- test/io/event/selector/interrupt.rb | 2 +- test/io/event/selector/process_io.rb | 1 + 5 files changed, 5 insertions(+), 23 deletions(-) diff --git a/ext/extconf.rb b/ext/extconf.rb index dcb06a5f..eb81c6b6 100755 --- a/ext/extconf.rb +++ b/ext/extconf.rb @@ -3,26 +3,7 @@ # Released under the MIT License. # Copyright, 2021-2023, by Samuel Williams. - -# Copyright, 2021, by Samuel G. D. Williams. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. +# Copyright, 2023, by Math Ieu. return if RUBY_DESCRIPTION =~ /jruby/ diff --git a/io-event.gemspec b/io-event.gemspec index 019792bd..d412c40b 100644 --- a/io-event.gemspec +++ b/io-event.gemspec @@ -7,7 +7,7 @@ Gem::Specification.new do |spec| spec.version = IO::Event::VERSION spec.summary = "An event loop." - spec.authors = ["Samuel Williams", "Bruno Sutic", "Math Ieu", "Alex Matchneer", "Benoit Daloze", "Delton Ding"] + spec.authors = ["Samuel Williams", "Math Ieu", "Bruno Sutic", "Alex Matchneer", "Benoit Daloze", "Delton Ding"] spec.license = "MIT" spec.cert_chain = ['release.cert'] diff --git a/lib/io/event/selector.rb b/lib/io/event/selector.rb index 8de89b38..f6302bf3 100644 --- a/lib/io/event/selector.rb +++ b/lib/io/event/selector.rb @@ -1,7 +1,7 @@ # frozen_string_literal: true # Released under the MIT License. -# Copyright, 2021-2022, by Samuel Williams. +# Copyright, 2021-2023, by Samuel Williams. require_relative 'selector/select' require_relative 'debug/selector' diff --git a/test/io/event/selector/interrupt.rb b/test/io/event/selector/interrupt.rb index 2c45c228..2d782f8f 100644 --- a/test/io/event/selector/interrupt.rb +++ b/test/io/event/selector/interrupt.rb @@ -1,7 +1,7 @@ # frozen_string_literal: true # Released under the MIT License. -# Copyright, 2021-2023, by Samuel Williams. +# Copyright, 2023, by Samuel Williams. require 'io/event' require 'io/event/selector' diff --git a/test/io/event/selector/process_io.rb b/test/io/event/selector/process_io.rb index 2a535a1b..293b8d85 100644 --- a/test/io/event/selector/process_io.rb +++ b/test/io/event/selector/process_io.rb @@ -2,6 +2,7 @@ # Released under the MIT License. # Copyright, 2022, by Samuel Williams. +# Copyright, 2023, by Math Ieu. require 'io/event' require 'io/event/selector'