Class: Blogit::Archive::List
- Inherits:
-
Object
- Object
- Blogit::Archive::List
- Defined in:
- lib/blogit/archive/list.rb
Overview
The main class to be accessed when creating a HTML post archive.
Instance Attribute Summary (collapse)
-
- (Object) archiveables
Gets/Sets the list of archiveable objects for this Archive List.
-
- (Object) years
Gets/Sets the list of years for this archive object.
Instance Method Summary (collapse)
-
- (List) initialize(archiveables)
constructor
Create a new List object.
-
- (Object) to_partial_path
The name of the partial to load for a List object.
Constructor Details
Instance Attribute Details
- (Object) archiveables
Gets/Sets the list of archiveable objects for this Archive List.
11 12 13 |
# File 'lib/blogit/archive/list.rb', line 11 def archiveables @archiveables end |
- (Object) years
Gets/Sets the list of years for this archive object.
8 9 10 |
# File 'lib/blogit/archive/list.rb', line 8 def years @years end |
Instance Method Details
- (Object) to_partial_path
The name of the partial to load for a List object
27 28 29 |
# File 'lib/blogit/archive/list.rb', line 27 def to_partial_path self.class.name.underscore end |