class Zold::Remotes::Empty

Empty, for standalone mode

Public Class Methods

new() click to toggle source
# File lib/zold/remotes.rb, line 132
def initialize
  # Nothing to init here
end

Public Instance Methods

all() click to toggle source
# File lib/zold/remotes.rb, line 136
def all
  []
end
iterate(_) click to toggle source
# File lib/zold/remotes.rb, line 144
def iterate(_)
  # Nothing to do here
end
master?(_, _) click to toggle source
# File lib/zold/remotes.rb, line 140
def master?(_, _)
  true
end
mtime() click to toggle source
# File lib/zold/remotes.rb, line 148
def mtime
  Time.now
end