Skip to content

Commit a9c6579

Browse files
committed
Modernize gem.
1 parent 0347d89 commit a9c6579

File tree

14 files changed

+22
-12
lines changed

14 files changed

+22
-12
lines changed

benchmark/core/fiber-creation.rb

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# frozen_string_literal: true
2+
3+
# Released under the MIT License.
4+
# Copyright, 2023, by Samuel Williams.
5+
16
puts RUBY_VERSION
27

38
times = []

benchmark/core/thread-creation.rb

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# frozen_string_literal: true
2+
3+
# Released under the MIT License.
4+
# Copyright, 2023, by Samuel Williams.
5+
16
puts RUBY_VERSION
27

38
times = []

config/sus.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# frozen_string_literal: true
22

33
# Released under the MIT License.
4-
# Copyright, 2022, by Samuel Williams.
4+
# Copyright, 2022-2023, by Samuel Williams.
55

66
require 'covered/sus'
77
include Covered::Sus

examples/dataloader/dataloader.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# frozen_string_literal: true
22

33
# Released under the MIT License.
4-
# Copyright, 2022, by Samuel Williams.
4+
# Copyright, 2022-2023, by Samuel Williams.
55

66
require 'net/http'
77
require 'uri'

examples/dataloader/gems.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# frozen_string_literal: true
22

33
# Released under the MIT License.
4-
# Copyright, 2022, by Samuel Williams.
4+
# Copyright, 2022-2023, by Samuel Williams.
55

66
source "https://rubygems.org"
77

examples/dataloader/main.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# frozen_string_literal: true
33

44
# Released under the MIT License.
5-
# Copyright, 2022, by Samuel Williams.
5+
# Copyright, 2022-2023, by Samuel Williams.
66

77
require 'async'
88
require_relative 'dataloader'

fixtures/timer_quantum.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# frozen_string_literal: true
22

33
# Released under the MIT License.
4-
# Copyright, 2022, by Samuel Williams.
4+
# Copyright, 2022-2023, by Samuel Williams.
55

66
class TimerQuantum
77
def self.resolve

lib/async/semaphore.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# frozen_string_literal: true
22

33
# Released under the MIT License.
4-
# Copyright, 2018-2022, by Samuel Williams.
4+
# Copyright, 2018-2023, by Samuel Williams.
55

66
require_relative 'list'
77

license.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# MIT License
22

3-
Copyright, 2017-2022, by Samuel Williams.
3+
Copyright, 2017-2023, by Samuel Williams.
44
Copyright, 2017, by Kent Gruber.
55
Copyright, 2017, by Devin Christensen.
66
Copyright, 2018, by Sokolov Yura.

test/async/children.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# frozen_string_literal: true
22

33
# Released under the MIT License.
4-
# Copyright, 2022, by Samuel Williams.
4+
# Copyright, 2022-2023, by Samuel Williams.
55

66
require 'async/node'
77

0 commit comments

Comments
 (0)