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

+5
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

+5
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

test/async/list.rb

+1-1
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/list'
77

test/async/semaphore.rb

+1-1
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 'async/semaphore'
77
require 'async/barrier'

test/async/variable.rb

+1-1
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 'sus/fixtures/async'
77
require 'async/variable'

test/async/waiter.rb

+1-1
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/waiter'
77
require 'sus/fixtures/async'

0 commit comments

Comments
 (0)