Module: Baykit::BayServer::Docker::Club
Overview
interface
Instance Method Summary collapse
-
#arrive(tur) ⇒ Object
Arrive.
-
#charset ⇒ Object
Get charset of club.
-
#decode_path_info ⇒ Object
Check if this club decodes PATH_INFO.
-
#extension ⇒ Object
Get the ext (file extension part) of club.
-
#file_name ⇒ Object
Get the file name part of club.
-
#matches(fname) ⇒ Object
Check if file name matches this club.
Methods included from Docker
Instance Method Details
#arrive(tur) ⇒ Object
Arrive
38 39 40 |
# File 'lib/baykit/bayserver/docker/club.rb', line 38 def arrive(tur) raise NotImplementedError.new end |
#charset ⇒ Object
Get charset of club
28 29 30 |
# File 'lib/baykit/bayserver/docker/club.rb', line 28 def charset raise NotImplementedError.new end |
#decode_path_info ⇒ Object
Check if this club decodes PATH_INFO
33 34 35 |
# File 'lib/baykit/bayserver/docker/club.rb', line 33 def decode_path_info raise NotImplementedError.new end |
#extension ⇒ Object
Get the ext (file extension part) of club
18 19 20 |
# File 'lib/baykit/bayserver/docker/club.rb', line 18 def extension() raise NotImplementedError.new end |
#file_name ⇒ Object
Get the file name part of club
13 14 15 |
# File 'lib/baykit/bayserver/docker/club.rb', line 13 def file_name() raise NotImplementedError.new end |
#matches(fname) ⇒ Object
Check if file name matches this club
23 24 25 |
# File 'lib/baykit/bayserver/docker/club.rb', line 23 def matches(fname) raise NotImplementedError.new end |