Class: Zold::Remotes::Empty
- Inherits:
-
Object
- Object
- Zold::Remotes::Empty
- Defined in:
- lib/zold/remotes.rb
Overview
Empty, for standalone mode
Instance Method Summary collapse
- #all ⇒ Object
-
#initialize ⇒ Empty
constructor
A new instance of Empty.
- #iterate(_) ⇒ Object
- #mtime ⇒ Object
Constructor Details
#initialize ⇒ Empty
Returns a new instance of Empty.
114 115 116 |
# File 'lib/zold/remotes.rb', line 114 def initialize # Nothing to init here end |
Instance Method Details
#all ⇒ Object
118 119 120 |
# File 'lib/zold/remotes.rb', line 118 def all [] end |
#iterate(_) ⇒ Object
122 123 124 |
# File 'lib/zold/remotes.rb', line 122 def iterate(_) # Nothing to do here end |
#mtime ⇒ Object
126 127 128 |
# File 'lib/zold/remotes.rb', line 126 def mtime Time.now end |