Class: YARD::Server::Commands::LibraryOptions
Overview
Instance Attribute Summary collapse
Instance Method Summary
collapse
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
in the class YARD::Options
Instance Attribute Details
#command ⇒ Object
13
14
15
|
# File 'lib/yard/server/commands/library_command.rb', line 13
def command
@command
end
|
#frames ⇒ Object
14
15
16
|
# File 'lib/yard/server/commands/library_command.rb', line 14
def frames
@frames
end
|
Instance Method Details
#adapter ⇒ Object
7
|
# File 'lib/yard/server/commands/library_command.rb', line 7
def adapter; @command.adapter end
|
#each {|:adapter, adapter| ... } ⇒ Object
16
17
18
19
20
21
22
|
# File 'lib/yard/server/commands/library_command.rb', line 16
def each(&block)
super(&block)
yield(:adapter, adapter)
yield(:library, library)
yield(:single_library, single_library)
yield(:serializer, serializer)
end
|
#library ⇒ Object
8
|
# File 'lib/yard/server/commands/library_command.rb', line 8
def library; @command.library end
|
#serialize ⇒ Object
11
|
# File 'lib/yard/server/commands/library_command.rb', line 11
def serialize; false end
|
#serializer ⇒ Object
10
|
# File 'lib/yard/server/commands/library_command.rb', line 10
def serializer; @command.serializer end
|
#single_library ⇒ Object
9
|
# File 'lib/yard/server/commands/library_command.rb', line 9
def single_library; @command.single_library end
|