Class: Gollum::Git::Repo

Inherits:
Object
  • Object
show all
Defined in:
lib/grit_adapter/git_layer_grit.rb

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(path, options) ⇒ Repo

Returns a new instance of Repo.



276
277
278
279
280
281
282
283
284
# File 'lib/grit_adapter/git_layer_grit.rb', line 276

def initialize(path, options)
  begin
    @repo = Grit::Repo.new(path, options)
  rescue Grit::InvalidGitRepositoryError
    raise Gollum::InvalidGitRepositoryError
  rescue Grit::NoSuchPathError
    raise Gollum::NoSuchPathError
  end
end

Class Method Details

.init(path, git_options = {}, repo_options = {}) ⇒ Object



286
287
288
289
# File 'lib/grit_adapter/git_layer_grit.rb', line 286

def self.init(path, git_options = {}, repo_options = {})
  Grit::Repo.init(path, git_options, repo_options)
  self.new(path, {:is_bare => false})
end

.init_bare(path, git_options = {}, repo_options = {}) ⇒ Object



291
292
293
294
# File 'lib/grit_adapter/git_layer_grit.rb', line 291

def self.init_bare(path, git_options = {}, repo_options = {})
  Grit::Repo.init_bare(path, git_options, repo_options)
  self.new(path, {:is_bare => true})
end

Instance Method Details

#bareObject



296
297
298
# File 'lib/grit_adapter/git_layer_grit.rb', line 296

def bare
  @repo.bare
end

#commit(id) ⇒ Object



308
309
310
311
312
# File 'lib/grit_adapter/git_layer_grit.rb', line 308

def commit(id)
  commit = @repo.commit(id)
  return nil if commit.nil?
  Gollum::Git::Commit.new(@repo.commit(id))
end

#commits(start = 'master', max_count = 10, skip = 0) ⇒ Object



314
315
316
# File 'lib/grit_adapter/git_layer_grit.rb', line 314

def commits(start = 'master', max_count = 10, skip = 0)
  @repo.commits(start, max_count, skip).map{|commit| Gollum::Git::Commit.new(commit)}
end

#configObject



300
301
302
# File 'lib/grit_adapter/git_layer_grit.rb', line 300

def config
  @repo.config
end

#diff(sha1, sha2, path = nil) ⇒ Object



327
328
329
# File 'lib/grit_adapter/git_layer_grit.rb', line 327

def diff(sha1, sha2, path = nil)
  @repo.diff(sha1, sha2, path)
end

#gitObject



304
305
306
# File 'lib/grit_adapter/git_layer_grit.rb', line 304

def git
  @git ||= Gollum::Git::Git.new(@repo.git)
end

#headObject



319
320
321
# File 'lib/grit_adapter/git_layer_grit.rb', line 319

def head
  Gollum::Git::Ref.new(@repo.head)
end

#indexObject



323
324
325
# File 'lib/grit_adapter/git_layer_grit.rb', line 323

def index
  @index ||= Gollum::Git::Index.new(@repo.index)
end

#log(commit = 'master', path = nil, options = {}) ⇒ Object



331
332
333
# File 'lib/grit_adapter/git_layer_grit.rb', line 331

def log(commit = 'master', path = nil, options = {})
  @repo.log(commit, path, options).map {|grit_commit| Gollum::Git::Commit.new(grit_commit)}
end

#lstree(sha, options = {}) ⇒ Object



335
336
337
# File 'lib/grit_adapter/git_layer_grit.rb', line 335

def lstree(sha, options = {})
  @repo.lstree(sha, options)
end

#pathObject



339
340
341
# File 'lib/grit_adapter/git_layer_grit.rb', line 339

def path
  @repo.path
end

#update_ref(head, commit_sha) ⇒ Object



343
344
345
# File 'lib/grit_adapter/git_layer_grit.rb', line 343

def update_ref(head, commit_sha)
  @repo.update_ref(head, commit_sha)
end