-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add start and stop callbacks (#1913)
This PR adds lifecycle events to Sinatra. Related issue: #1184 Co-authored-by: Patrik Ragnarsson <patrik@starkast.net>
- Loading branch information
Showing
4 changed files
with
88 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#!/usr/bin/env ruby -I ../lib -I lib | ||
# frozen_string_literal: true | ||
|
||
require 'sinatra' | ||
|
||
get('/') do | ||
'This shows how lifecycle events work' | ||
end | ||
|
||
on_start do | ||
puts "==============" | ||
puts " Booting up" | ||
puts "==============" | ||
end | ||
|
||
on_stop do | ||
puts "=================" | ||
puts " Shutting down" | ||
puts "=================" | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters