module GithubSnapshot

Constants

Error
VERSION

Public Class Methods

exec(cmd) click to toggle source
# File lib/github_snapshot/snapshot.rb, line 29
def self.exec(cmd)
  Utilities.exec cmd, @@logger
end
git_clone_cmd() click to toggle source
# File lib/github_snapshot/snapshot.rb, line 16
def self.git_clone_cmd;     @@git_clone_cmd;      end
git_clone_timeout() click to toggle source
# File lib/github_snapshot/snapshot.rb, line 19
def self.git_clone_timeout; @@git_clone_timeout;  end
git_clone_timeout=(git_clone_timeout) click to toggle source
# File lib/github_snapshot/snapshot.rb, line 25
def self.git_clone_timeout=(git_clone_timeout)
  @@git_clone_timeout = git_clone_timeout
end
logger() click to toggle source
# File lib/github_snapshot/snapshot.rb, line 15
def self.logger;            @@logger;             end
releases_to_keep() click to toggle source
# File lib/github_snapshot/snapshot.rb, line 18
def self.releases_to_keep;  @@releases_to_keep;   end
releases_to_keep=(releases_to_keep) click to toggle source
# File lib/github_snapshot/snapshot.rb, line 21
def self.releases_to_keep=(releases_to_keep)
  @@releases_to_keep = releases_to_keep
end
time_now() click to toggle source
# File lib/github_snapshot/snapshot.rb, line 17
def self.time_now;          @@time_now;           end