Class: YARD::Server::Commands::FramesCommand
- Inherits:
-
DisplayObjectCommand
- Object
- Base
- LibraryCommand
- DisplayObjectCommand
- YARD::Server::Commands::FramesCommand
- Defined in:
- lib/yard/server/commands/frames_command.rb
Overview
Displays an object wrapped in frames
Basic Command and Adapter Options (collapse)
-
- (Adapter) adapter
inherited
from Base
The server adapter.
-
- (Boolean) caching
inherited
from Base
Whether to cache.
-
- (Hash) command_options
inherited
from Base
The options passed to the command's constructor.
Attributes Set Per Request (collapse)
-
- (String) body
inherited
from Base
The response body.
-
- (Hash{String => String}) headers
inherited
from Base
Response headers.
-
- (String) path
inherited
from Base
The path after the command base URI.
-
- (Request) request
inherited
from Base
Request object.
-
- (Numeric) status
inherited
from Base
Status code.
Instance Attribute Summary (collapse)
-
- (Boolean) incremental
inherited
from LibraryCommand
Whether to reparse data.
-
- (LibraryVersion) library
inherited
from LibraryCommand
The object containing library information.
-
- (LibraryOptions) options
inherited
from LibraryCommand
Default options for the library.
-
- (Serializers::Base) serializer
inherited
from LibraryCommand
The serializer used to perform file linking.
-
- (Boolean) single_library
inherited
from LibraryCommand
Whether router should route for multiple libraries.
Instance Method Summary (collapse)
Methods included from DocServerHelper
#base_path, #router, #url_for, #url_for_file, #url_for_frameset, #url_for_index, #url_for_list, #url_for_main
Constructor Details
This class inherits a constructor from YARD::Server::Commands::LibraryCommand
Instance Attribute Details
- (String) body Originally defined in class Base
Returns the response body. Defaults to empty string.
- (Boolean) caching Originally defined in class Base
Returns whether to cache
- (Hash) command_options Originally defined in class Base
Returns the options passed to the command's constructor
- (Boolean) incremental Originally defined in class LibraryCommand
Returns whether to reparse data
- (LibraryVersion) library Originally defined in class LibraryCommand
Returns the object containing library information
- (LibraryOptions) options Originally defined in class LibraryCommand
Returns default options for the library
- (Request) request Originally defined in class Base
Returns request object
- (Serializers::Base) serializer Originally defined in class LibraryCommand
Returns the serializer used to perform file linking
- (Boolean) single_library Originally defined in class LibraryCommand
Returns whether router should route for multiple libraries
- (Numeric) status Originally defined in class Base
Returns status code. Defaults to 200 per request
Instance Method Details
- (Object) run
6 7 8 9 10 11 |
# File 'lib/yard/server/commands/frames_command.rb', line 6 def run .update(:frames => true, :type => :fulldoc) tpl = fulldoc_template tpl.generate_frameset cache(tpl.contents) end |