Class: Hyrax::VersionPresenter
- Inherits:
-
Object
- Object
- Hyrax::VersionPresenter
- Defined in:
- app/presenters/hyrax/version_presenter.rb
Instance Attribute Summary collapse
-
#current ⇒ Object
(also: #current?)
readonly
Returns the value of attribute current.
-
#version ⇒ Object
readonly
Returns the value of attribute version.
Instance Method Summary collapse
- #committer ⇒ Object
- #created ⇒ Object
- #current! ⇒ Object
-
#initialize(version) ⇒ VersionPresenter
constructor
A new instance of VersionPresenter.
Constructor Details
#initialize(version) ⇒ VersionPresenter
Returns a new instance of VersionPresenter.
6 7 8 9 |
# File 'app/presenters/hyrax/version_presenter.rb', line 6 def initialize(version) @version = version @current = false end |
Instance Attribute Details
#current ⇒ Object (readonly) Also known as: current?
Returns the value of attribute current.
4 5 6 |
# File 'app/presenters/hyrax/version_presenter.rb', line 4 def current @current end |
#version ⇒ Object (readonly)
Returns the value of attribute version.
4 5 6 |
# File 'app/presenters/hyrax/version_presenter.rb', line 4 def version @version end |
Instance Method Details
#committer ⇒ Object
22 23 24 25 26 |
# File 'app/presenters/hyrax/version_presenter.rb', line 22 def committer Hyrax::VersionCommitter .find_by(version_id: @version.uri) &.committer_login end |
#created ⇒ Object
18 19 20 |
# File 'app/presenters/hyrax/version_presenter.rb', line 18 def created @created ||= version.created.in_time_zone.to_formatted_s(:long_ordinal) end |
#current! ⇒ Object
14 15 16 |
# File 'app/presenters/hyrax/version_presenter.rb', line 14 def current! @current = true end |