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.



266
267
268
269
270
271
272
273
274
# File 'lib/grit_adapter/git_layer_grit.rb', line 266

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



276
277
278
279
# File 'lib/grit_adapter/git_layer_grit.rb', line 276

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



281
282
283
284
# File 'lib/grit_adapter/git_layer_grit.rb', line 281

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



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

def bare
  @repo.bare
end

#commit(id) ⇒ Object



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

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



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

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

#configObject



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

def config
  @repo.config
end

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



317
318
319
# File 'lib/grit_adapter/git_layer_grit.rb', line 317

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

#gitObject



294
295
296
# File 'lib/grit_adapter/git_layer_grit.rb', line 294

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

#headObject



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

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

#indexObject



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

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

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



321
322
323
# File 'lib/grit_adapter/git_layer_grit.rb', line 321

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



325
326
327
# File 'lib/grit_adapter/git_layer_grit.rb', line 325

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

#pathObject



329
330
331
# File 'lib/grit_adapter/git_layer_grit.rb', line 329

def path
  @repo.path
end

#update_ref(head, commit_sha) ⇒ Object



333
334
335
# File 'lib/grit_adapter/git_layer_grit.rb', line 333

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