Module: Baykit::BayServer::Docker::Club

Includes:
Docker
Included in:
Base::ClubBase
Defined in:
lib/baykit/bayserver/docker/club.rb

Overview

interface

Instance Method Summary collapse

Methods included from Docker

#init, #type

Instance Method Details

#arrive(tur) ⇒ Object

Arrive

Raises:

  • (NotImplementedError)


38
39
40
# File 'lib/baykit/bayserver/docker/club.rb', line 38

def arrive(tur)
  raise NotImplementedError.new
end

#charsetObject

Get charset of club

Raises:

  • (NotImplementedError)


28
29
30
# File 'lib/baykit/bayserver/docker/club.rb', line 28

def charset
  raise NotImplementedError.new
end

#decode_path_infoObject

Check if this club decodes PATH_INFO

Raises:

  • (NotImplementedError)


33
34
35
# File 'lib/baykit/bayserver/docker/club.rb', line 33

def decode_path_info
  raise NotImplementedError.new
end

#extensionObject

Get the ext (file extension part) of club

Raises:

  • (NotImplementedError)


18
19
20
# File 'lib/baykit/bayserver/docker/club.rb', line 18

def extension()
  raise NotImplementedError.new
end

#file_nameObject

Get the file name part of club

Raises:

  • (NotImplementedError)


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

Raises:

  • (NotImplementedError)


23
24
25
# File 'lib/baykit/bayserver/docker/club.rb', line 23

def matches(fname)
  raise NotImplementedError.new
end