Class | Grit::GitRuby::Tree |
In: |
lib/grit/git-ruby/git_object.rb
lib/grit/git-ruby/object.rb |
Parent: | GitObject |
entry | [RW] | |
entry | [RW] |
# File lib/grit/git-ruby/object.rb, line 182 def self.from_raw(rawobject, repository=nil) raw = StringIO.new(rawobject.content) entries = [] while !raw.eof? mode = Grit::GitRuby.read_bytes_until(raw, ' ') file_name = Grit::GitRuby.read_bytes_until(raw, "\0") raw_sha = raw.read(20) sha = raw_sha.unpack("H*").first entries << DirectoryEntry.new(mode, file_name, sha) end new(entries, repository) end
# File lib/grit/git-ruby/git_object.rb, line 198 def self.from_raw(rawobject, repository=nil) raw = StringIO.new(rawobject.content) entries = [] while !raw.eof? mode = Grit::GitRuby.read_bytes_until(raw, ' ') file_name = Grit::GitRuby.read_bytes_until(raw, "\0") raw_sha = raw.read(20) sha = raw_sha.unpack("H*").first entries << DirectoryEntry.new(mode, file_name, sha) end new(entries, repository) end
# File lib/grit/git-ruby/git_object.rb, line 213 def initialize(entries=[], repository = nil) @entry = entries @repository = repository end
# File lib/grit/git-ruby/object.rb, line 197 def initialize(entries=[], repository = nil) @entry = entries @repository = repository end
# File lib/grit/git-ruby/object.rb, line 212 def actual_raw #@entry.collect { |e| e.raw.join(' '), e.name].join("\t") }.join("\n") end
# File lib/grit/git-ruby/git_object.rb, line 228 def actual_raw #@entry.collect { |e| e.raw.join(' '), e.name].join("\t") }.join("\n") end
# File lib/grit/git-ruby/git_object.rb, line 222 def raw_content # TODO: sort correctly #@entry.sort { |a,b| a.name <=> b.name }. @entry.collect { |e| [[e.format_mode, e.format_type, e.sha1].join(' '), e.name].join("\t") }.join("\n") end