Class: Madness::Item
- Inherits:
-
Object
- Object
- Madness::Item
- Includes:
- ServerHelper
- Defined in:
- lib/madness/item.rb
Instance Attribute Summary collapse
-
#path ⇒ Object
readonly
Returns the value of attribute path.
-
#type ⇒ Object
readonly
Returns the value of attribute type.
Instance Method Summary collapse
- #dir? ⇒ Boolean
- #file? ⇒ Boolean
- #href ⇒ Object
-
#initialize(path, type) ⇒ Item
constructor
A new instance of Item.
- #label ⇒ Object
Methods included from ServerHelper
#config, #disallowed_static?, #docroot, #find_static_file, #log, #theme
Constructor Details
#initialize(path, type) ⇒ Item
Returns a new instance of Item.
8 9 10 11 |
# File 'lib/madness/item.rb', line 8 def initialize(path, type) @path = path @type = type end |
Instance Attribute Details
#path ⇒ Object (readonly)
Returns the value of attribute path.
6 7 8 |
# File 'lib/madness/item.rb', line 6 def path @path end |
#type ⇒ Object (readonly)
Returns the value of attribute type.
6 7 8 |
# File 'lib/madness/item.rb', line 6 def type @type end |
Instance Method Details
#dir? ⇒ Boolean
24 25 26 |
# File 'lib/madness/item.rb', line 24 def dir? type == :dir end |
#file? ⇒ Boolean
28 29 30 |
# File 'lib/madness/item.rb', line 28 def file? type == :file end |
#href ⇒ Object
17 18 19 20 21 22 |
# File 'lib/madness/item.rb', line 17 def href @href ||= begin result = path_without_extension.sub(/^#{docroot}/, '').to_href "#{config.base_uri}#{result}" end end |
#label ⇒ Object
13 14 15 |
# File 'lib/madness/item.rb', line 13 def label @label ||= label! end |