ruby

https://github.com/ruby/ruby

Ruby

The Ruby Programming Language

CGI::Session#delete

Delete the session from storage.  Also closes the storage.

Note that the session's data is _not_ automatically deleted
upon the session expiring.

Source | Google | Stack overflow

Edit

git clone [email protected]:ruby/ruby.git

cd ruby

open lib/cgi/session.rb

Contribute

# Make a new branch

git checkout -b -your-name--update-docs-CGI--Session-delete-for-pr


# Commit to git

git add lib/cgi/session.rbgit commit -m "better docs for CGI::Session#delete"


# Open pull request

gem install hub # on a mac you can `brew install hub`

hub fork

git push <your name> -your-name--update-docs-CGI--Session-delete-for-pr

hub pull-request


# Celebrate!