Skip to content

Commit

Permalink
Update copyrights.
Browse files Browse the repository at this point in the history
  • Loading branch information
ioquatix committed Nov 2, 2024
1 parent 20d41c6 commit 1f3ece0
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion gems.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# frozen_string_literal: true

# Released under the MIT License.
# Copyright, 2022-2023, by Samuel Williams.
# Copyright, 2022-2024, by Samuel Williams.

source 'https://rubygems.org'

Expand Down
2 changes: 1 addition & 1 deletion lib/rackup.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# frozen_string_literal: true

# Released under the MIT License.
# Copyright, 2022-2023, by Samuel Williams.
# Copyright, 2022-2024, by Samuel Williams.

require_relative 'rackup/handler'
require_relative 'rackup/server'
Expand Down
1 change: 1 addition & 0 deletions license.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ Copyright, 2022, by Akira Matsuda.
Copyright, 2022, by Andrew Hoglund.
Copyright, 2024, by Olle Jonsson.
Copyright, 2024, by Geremia Taglialatela.
Copyright, 2024, by Petrik de Heus.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion rackup.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Gem::Specification.new do |spec|
spec.version = Rackup::VERSION

spec.summary = "A general server command for Rack applications."
spec.authors = ["Samuel Williams", "James Tucker", "Leah Neukirchen", "Jeremy Evans", "Joshua Peek", "Megan Batty", "Rafael França", "Anurag Priyam", "Max Cantor", "Michael Fellinger", "Sophie Deziel", "Yoshiyuki Hirano", "Aaron Patterson", "Jean Boussier", "Katsuhiko Yoshida", "Konstantin Haase", "Krzysztof Rybka", "Martin Hrdlicka", "Nick LaMuro", "Aaron Pfeifer", "Akira Matsuda", "Andrew Bortz", "Andrew Hoglund", "Bas Vodde", "Blake Mizerany", "Carl Lerche", "David Celis", "Dillon Welch", "Genki Takiuchi", "Geremia Taglialatela", "Hal Brodigan", "Hrvoje Šimić", "Igor Bochkariov", "Jeremy Kemper", "Joe Fiorini", "John Barnette", "John Sumsion", "Julik Tarkhanov", "Kang Sheng", "Kazuya Hotta", "Lenny Marks", "Loren Segal", "Marc-André Cournoyer", "Misaki Shioi", "Olle Jonsson", "Peter Wilmott", "Richard Schneeman", "Ryunosuke Sato", "Sean McGivern", "Stephen Paul Weber", "Tadashi Saito", "Tim Moore", "Timur Batyrshin", "Trevor Wennblom", "Tsutomu Kuroda", "Uchio Kondo", "Wyatt Pan", "Yehuda Katz", "Zachary Scott"]
spec.authors = ["Samuel Williams", "James Tucker", "Leah Neukirchen", "Jeremy Evans", "Joshua Peek", "Megan Batty", "Rafael França", "Anurag Priyam", "Max Cantor", "Michael Fellinger", "Sophie Deziel", "Yoshiyuki Hirano", "Aaron Patterson", "Jean Boussier", "Katsuhiko Yoshida", "Konstantin Haase", "Krzysztof Rybka", "Martin Hrdlicka", "Nick LaMuro", "Aaron Pfeifer", "Akira Matsuda", "Andrew Bortz", "Andrew Hoglund", "Bas Vodde", "Blake Mizerany", "Carl Lerche", "David Celis", "Dillon Welch", "Genki Takiuchi", "Geremia Taglialatela", "Hal Brodigan", "Hrvoje Šimić", "Igor Bochkariov", "Jeremy Kemper", "Joe Fiorini", "John Barnette", "John Sumsion", "Julik Tarkhanov", "Kang Sheng", "Kazuya Hotta", "Lenny Marks", "Loren Segal", "Marc-André Cournoyer", "Misaki Shioi", "Olle Jonsson", "Peter Wilmott", "Petrik de Heus", "Richard Schneeman", "Ryunosuke Sato", "Sean McGivern", "Stephen Paul Weber", "Tadashi Saito", "Tim Moore", "Timur Batyrshin", "Trevor Wennblom", "Tsutomu Kuroda", "Uchio Kondo", "Wyatt Pan", "Yehuda Katz", "Zachary Scott"]
spec.license = "MIT"

spec.homepage = "https://github.com/rack/rackup"
Expand Down
8 changes: 4 additions & 4 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ $ puma ...

In summary, the maintainers of `rack` recommend the following:

- Libraries should not depend on `rackup` if possible. `rackup` as an executable made sense when webrick shipped with Ruby, so there was always a fallback. But that hasn't been true since Ruby 3.0.
- Frameworks and applications should focus on providing `config.ru` files, so that users can use the webserver program of their choice directly (e.g. puma, falcon).
- There is still some value in the generic `rackup` and `Rackup::Handler` interfaces, but we encourage users to invoke the server command directly if possible.
- Webrick should be avoided if possible.
- Libraries should not depend on `rackup` if possible. `rackup` as an executable made sense when webrick shipped with Ruby, so there was always a fallback. But that hasn't been true since Ruby 3.0.
- Frameworks and applications should focus on providing `config.ru` files, so that users can use the webserver program of their choice directly (e.g. puma, falcon).
- There is still some value in the generic `rackup` and `Rackup::Handler` interfaces, but we encourage users to invoke the server command directly if possible.
- Webrick should be avoided if possible.

## Contributing

Expand Down

0 comments on commit 1f3ece0

Please sign in to comment.