Class: Gollum::Git::Repo

Inherits:
Object
  • Object
show all
Defined in:
lib/rugged_adapter/git_layer_rugged.rb

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(path, options) ⇒ Repo

Returns a new instance of Repo.



530
531
532
533
534
535
536
537
538
# File 'lib/rugged_adapter/git_layer_rugged.rb', line 530

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

Class Method Details

.init(path) ⇒ Object



540
541
542
543
# File 'lib/rugged_adapter/git_layer_rugged.rb', line 540

def self.init(path)
  Rugged::Repository.init_at(path, false)
  self.new(path, :is_bare => false)
end

.init_bare(path) ⇒ Object



545
546
547
548
# File 'lib/rugged_adapter/git_layer_rugged.rb', line 545

def self.init_bare(path)
  Rugged::Repository.init_at(path, true)
  self.new(path, :is_bare => true)
end

Instance Method Details

#bareObject



550
551
552
# File 'lib/rugged_adapter/git_layer_rugged.rb', line 550

def bare
  @repo.bare?
end

#commit(id) ⇒ Object



562
563
564
# File 'lib/rugged_adapter/git_layer_rugged.rb', line 562

def commit(id)
  git.commit_from_ref(id)
end

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



566
567
568
# File 'lib/rugged_adapter/git_layer_rugged.rb', line 566

def commits(start = 'refs/heads/master', max_count = 10, skip = 0)
  git.log(start, nil, :max_count => max_count, :skip => skip)
end

#configObject



554
555
556
# File 'lib/rugged_adapter/git_layer_rugged.rb', line 554

def config
  @repo.config
end

#diff(sha1, sha2, *paths) ⇒ Object



578
579
580
581
582
583
584
585
# File 'lib/rugged_adapter/git_layer_rugged.rb', line 578

def diff(sha1, sha2, *paths)
  opts = path == nil ? {} : {:path => path}
  patches = @repo.diff(sha1, sha2, opts).patches
  if not paths.empty?
    patches.keep_if { |p| paths.include? p.delta.new_file[:path] }
  end
  patches.map  {|patch| OpenStruct.new(:diff => patch.to_s.split("\n")[2..-1].join("\n").force_encoding("UTF-8"))}.reverse # First remove two superfluous lines. Rugged seems to order the diffs differently than Grit, so reverse.
end

#gitObject



558
559
560
# File 'lib/rugged_adapter/git_layer_rugged.rb', line 558

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

#headObject



570
571
572
# File 'lib/rugged_adapter/git_layer_rugged.rb', line 570

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

#indexObject



574
575
576
# File 'lib/rugged_adapter/git_layer_rugged.rb', line 574

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

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



587
588
589
# File 'lib/rugged_adapter/git_layer_rugged.rb', line 587

def log(commit = 'refs/heads/master', path = nil, options = {})
  git.log(commit, path, options)
end

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



591
592
593
594
595
596
597
598
599
600
601
# File 'lib/rugged_adapter/git_layer_rugged.rb', line 591

def lstree(sha, options = {})
  results = []
  @repo.lookup(sha).tree.walk(:postorder) do |root, entry|
    entry[:sha] = entry[:oid]
    entry[:mode] = entry[:filemode].to_s(8)
    entry[:type] = entry[:type].to_s
    entry[:path] = "#{root}#{entry[:name]}" 
    results << entry
  end
  results
end

#pathObject



603
604
605
# File 'lib/rugged_adapter/git_layer_rugged.rb', line 603

def path
  @repo.path
end

#update_ref(ref, commit_sha) ⇒ Object

Checkout branch and if necessary first create it. Currently used only in gollum-lib’s tests.



608
609
610
611
612
613
614
615
616
# File 'lib/rugged_adapter/git_layer_rugged.rb', line 608

def update_ref(ref, commit_sha)
  ref = "refs/heads/#{ref}" unless ref =~ /^refs\/heads\//
  if _ref = @repo.references[ref]
    @repo.references.update(_ref, commit_sha)
  else
    @repo.create_branch(ref, commit_sha)
    @repo.checkout(ref, :strategy => :force) unless @repo.bare?
  end
end