Skip to content

Commit e505092

Browse files
committed
Update copyrights.
1 parent 7c7c3c1 commit e505092

File tree

9 files changed

+20
-18
lines changed

9 files changed

+20
-18
lines changed

.git-blame-ignore-revs

Lines changed: 0 additions & 6 deletions
This file was deleted.

.github/workflows/test-coverage.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,10 @@ jobs:
3434
timeout-minutes: 5
3535
run: bundle exec bake test
3636

37-
- uses: actions/upload-artifact@v3
37+
- uses: actions/upload-artifact@v4
3838
with:
39+
include-hidden-files: true
40+
if-no-files-found: error
3941
name: coverage-${{matrix.os}}-${{matrix.ruby}}
4042
path: .covered.db
4143

@@ -50,7 +52,7 @@ jobs:
5052
ruby-version: "3.3"
5153
bundler-cache: true
5254

53-
- uses: actions/download-artifact@v3
55+
- uses: actions/download-artifact@v4
5456

5557
- name: Validate coverage
5658
timeout-minutes: 5

.mailmap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
Mitsutaka Mimura <takkanm@gmail.com>
22
Kyle Tam <kyle_tam1@hotmail.com>
33
Claudiu Garba <claudiu.garba@gmail.com>
4-
4+
Martin Hrdlicka <deepjungle.maca@gmail.com>

.rubocop.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,3 +47,7 @@ Layout/EmptyLinesAroundModuleBody:
4747

4848
Style/FrozenStringLiteralComment:
4949
Enabled: true
50+
51+
Style/StringLiterals:
52+
Enabled: true
53+
EnforcedStyle: double_quotes

examples/websockets/falcon.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, 2019-2023, by Samuel Williams.
5+
# Copyright, 2024, by Samuel Williams.
66

77
require 'falcon/environment/self_signed_tls'
88
require 'falcon/environment/rack'

falcon.gemspec

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ Gem::Specification.new do |spec|
77
spec.version = Falcon::VERSION
88

99
spec.summary = "A fast, asynchronous, rack-compatible web server."
10-
spec.authors = ["Samuel Williams", "Janko Marohnić", "Bryan Powell", "Trevor Turk", "Claudiu Garba", "Kyle Tam", "Mitsutaka Mimura", "Peter Schrammel", "Sho Ito", "Adam Daniels", "Colby Swandale", "Daniel Evans", "Kent Gruber", "Michael Adams", "Mikel Kew", "Nick Janetakis", "Olle Jonsson", "Santiago Bartesaghi", "Sh Lin", "Stefan Buhrmester", "Tad Thorley", "Tasos Latsas", "dependabot[bot]"]
10+
spec.authors = ["Samuel Williams", "dependabot[bot]", "Janko Marohnić", "Bryan Powell", "Trevor Turk", "Claudiu Garba", "Kyle Tam", "Mitsutaka Mimura", "Peter Schrammel", "Sho Ito", "Adam Daniels", "Colby Swandale", "Daniel Evans", "Ismael Celis", "Kent Gruber", "Martin Hrdlicka", "Michael Adams", "Mikel Kew", "Nick Janetakis", "Olle Jonsson", "Santiago Bartesaghi", "Sh Lin", "Stefan Buhrmester", "Tad Thorley", "Tasos Latsas"]
1111
spec.license = "MIT"
1212

13-
spec.cert_chain = ['release.cert']
14-
spec.signing_key = File.expand_path('~/.gem/release.pem')
13+
spec.cert_chain = ["release.cert"]
14+
spec.signing_key = File.expand_path("~/.gem/release.pem")
1515

1616
spec.homepage = "https://github.com/socketry/falcon"
1717

@@ -20,7 +20,7 @@ Gem::Specification.new do |spec|
2020
"source_code_uri" => "https://github.com/socketry/falcon.git",
2121
}
2222

23-
spec.files = Dir.glob(['{bake,bin,lib}/**/*', '*.md'], File::FNM_DOTMATCH, base: __dir__)
23+
spec.files = Dir.glob(["{bake,bin,lib}/**/*", "*.md"], File::FNM_DOTMATCH, base: __dir__)
2424

2525
spec.executables = ["falcon", "falcon-host"]
2626

@@ -34,8 +34,8 @@ Gem::Specification.new do |spec|
3434
spec.add_dependency "bundler"
3535
spec.add_dependency "localhost", "~> 1.1"
3636
spec.add_dependency "openssl", "~> 3.0"
37-
spec.add_dependency "protocol-http", "~> 0.31"
3837
spec.add_dependency "process-metrics", "~> 0.2"
38+
spec.add_dependency "protocol-http", "~> 0.31"
3939
spec.add_dependency "protocol-rack", "~> 0.7"
4040
spec.add_dependency "samovar", "~> 2.3"
4141
end

lib/falcon/middleware/redirect.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-2023, by Samuel Williams.
4+
# Copyright, 2018-2024, by Samuel Williams.
55

66
require 'async/http/client'
77

license.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,12 @@ Copyright, 2018, by Tad Thorley.
77
Copyright, 2018, by Mitsutaka Mimura.
88
Copyright, 2018, by Kyle Tam.
99
Copyright, 2018, by Claudiu Garba.
10+
Copyright, 2018, by Martin Hrdlicka.
1011
Copyright, 2019, by Bryan Powell.
1112
Copyright, 2019, by Sh Lin.
1213
Copyright, 2019, by Sho Ito.
1314
Copyright, 2019, by Colby Swandale.
15+
Copyright, 2019-2024, by dependabot[bot].
1416
Copyright, 2020, by Daniel Evans.
1517
Copyright, 2020, by Mikel Kew.
1618
Copyright, 2020, by Michael Adams.
@@ -20,9 +22,9 @@ Copyright, 2023, by Nick Janetakis.
2022
Copyright, 2024, by Peter Schrammel.
2123
Copyright, 2024, by Santiago Bartesaghi.
2224
Copyright, 2024, by Trevor Turk.
23-
Copyright, 2024, by dependabot[bot].
2425
Copyright, 2024, by Adam Daniels.
2526
Copyright, 2024, by Stefan Buhrmester.
27+
Copyright, 2024, by Ismael Celis.
2628

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

test/falcon/server.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, 2017-2023, by Samuel Williams.
4+
# Copyright, 2017-2024, by Samuel Williams.
55

66
require 'server_context'
77
require 'sus/fixtures/openssl/valid_certificate_context'

0 commit comments

Comments
 (0)