Skip to content

Commit

Permalink
re-generate SPEC by rake spec
Browse files Browse the repository at this point in the history
  • Loading branch information
yhirano55 authored and jeremy committed Apr 17, 2018
1 parent 7ec585f commit 154ac52
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions SPEC
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,8 @@ below.
the presence or absence of the
appropriate HTTP header in the
request. See
{https://tools.ietf.org/html/rfc3875#section-4.1.18
RFC3875 section 4.1.18} for
specific behavior.
{RFC3875 section 4.1.18}[https://tools.ietf.org/html/rfc3875#section-4.1.18]
for specific behavior.
In addition to this, the Rack environment must include these
Rack-specific variables:
<tt>rack.version</tt>:: The Array representing this version of Rack
Expand Down Expand Up @@ -98,12 +97,13 @@ Rack-specific variables:
Additional environment specifications have approved to
standardized middleware APIs. None of these are required to
be implemented by the server.
<tt>rack.session</tt>:: A hash like interface for storing request session data.
<tt>rack.session</tt>:: A hash like interface for storing
request session data.
The store must implement:
store(key, value) (aliased as []=);
fetch(key, default = nil) (aliased as []);
delete(key);
clear;
store(key, value) (aliased as []=);
fetch(key, default = nil) (aliased as []);
delete(key);
clear;
<tt>rack.logger</tt>:: A common object interface for logging messages.
The object must implement:
info(message, &block)
Expand Down

0 comments on commit 154ac52

Please sign in to comment.