Class: Toys::Utils::GitCache::RefInfo

Inherits:
Object
  • Object
show all
Includes:
Comparable
Defined in:
lib/toys/utils/git_cache.rb

Overview

Information about a git ref used in a cache.

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#last_accessedTime? (readonly)

The timestamp when this ref was last accessed

Returns:

  • (Time, nil)


666
667
668
# File 'lib/toys/utils/git_cache.rb', line 666

def last_accessed
  @last_accessed
end

#last_updatedTime? (readonly)

The timestamp when this ref was last updated

Returns:

  • (Time, nil)


673
674
675
# File 'lib/toys/utils/git_cache.rb', line 673

def last_updated
  @last_updated
end

#refString (readonly)

The git ref

Returns:

  • (String)


652
653
654
# File 'lib/toys/utils/git_cache.rb', line 652

def ref
  @ref
end

#shaString (readonly)

The git sha last associated with the ref

Returns:

  • (String)


659
660
661
# File 'lib/toys/utils/git_cache.rb', line 659

def sha
  @sha
end

Instance Method Details

#<=>(other) ⇒ Integer

Comparison function

Parameters:

Returns:

  • (Integer)


696
697
698
# File 'lib/toys/utils/git_cache.rb', line 696

def <=>(other)
  ref <=> other.ref
end

#to_hHash

Convert this RefInfo to a hash suitable for JSON output

Returns:

  • (Hash)


680
681
682
683
684
685
686
687
688
# File 'lib/toys/utils/git_cache.rb', line 680

def to_h
  result = {
    "ref" => ref,
    "sha" => sha,
  }
  result["last_accessed"] = last_accessed.to_i if last_accessed
  result["last_updated"] = last_updated.to_i if last_updated
  result
end