Skip to content

Commit 06baded

Browse files
committed
Modernize code.
1 parent 235513d commit 06baded

5 files changed

Lines changed: 21 additions & 3 deletions

File tree

ext/extconf.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, 2021-2025, by Samuel Williams.
5+
# Copyright, 2021-2026, by Samuel Williams.
66
# Copyright, 2023, by Math Ieu.
77
# Copyright, 2025, by Stanislav (Stas) Katkov.
88
# Copyright, 2026, by Stan Hu.

io-event.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Gem::Specification.new do |spec|
77
spec.version = IO::Event::VERSION
88

99
spec.summary = "An event loop."
10-
spec.authors = ["Samuel Williams", "Math Ieu", "Wander Hillen", "Jean Boussier", "Benoit Daloze", "Bruno Sutic", "Shizuo Fujita", "Alex Matchneer", "Anthony Ross", "Delton Ding", "Luke Gruber", "Pavel Rosický", "Stan Hu", "Stanislav (Stas) Katkov", "William T. Nelson"]
10+
spec.authors = ["Samuel Williams", "Math Ieu", "Wander Hillen", "Jean Boussier", "Benoit Daloze", "Bruno Sutic", "Shizuo Fujita", "Alex Matchneer", "Anthony Ross", "Delton Ding", "John Hawthorn", "Luke Gruber", "Pavel Rosický", "Stan Hu", "Stanislav (Stas) Katkov", "William T. Nelson"]
1111
spec.license = "MIT"
1212

1313
spec.cert_chain = ["release.cert"]

license.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ Copyright, 2025, by Stanislav (Stas) Katkov.
1515
Copyright, 2025, by Luke Gruber.
1616
Copyright, 2026, by William T. Nelson.
1717
Copyright, 2026, by Stan Hu.
18+
Copyright, 2026, by John Hawthorn.
1819

1920
Permission is hereby granted, free of charge, to any person obtaining a copy
2021
of this software and associated documentation files (the "Software"), to deal

readme.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,23 @@ We welcome contributions to this project.
6969
4. Push to the branch (`git push origin my-new-feature`).
7070
5. Create new Pull Request.
7171

72+
### Running Tests
73+
74+
To run the test suite:
75+
76+
``` shell
77+
bundle exec bake build
78+
bundle exec sus
79+
```
80+
81+
### Making Releases
82+
83+
To make a new release:
84+
85+
``` shell
86+
bundle exec bake gem:release:patch # or minor or major
87+
```
88+
7289
### Developer Certificate of Origin
7390

7491
In order to protect users of this project, we require all contributors to comply with the [Developer Certificate of Origin](https://developercertificate.org/). This ensures that all contributions are properly licensed and attributed.

test/io/event/selector/buffered_io.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, 2021-2025, by Samuel Williams.
4+
# Copyright, 2021-2026, by Samuel Williams.
55
# Copyright, 2023, by Math Ieu.
66

77
require "io/event"

0 commit comments

Comments
 (0)