Sha256: 42aa023ca8b774ed19a1af4423183f3e59f9b4b075092bad40e8684f77a4f25c

Contents?: true

Size: 303 Bytes

Versions: 1

Compression:

Stored size: 303 Bytes

Contents

module Houston
  module Adapters
    module VersionControl
      class NullCommit
        
        def sha
          Houston::NULL_GIT_COMMIT
        end
        
        def to_s
          sha[0...7]
        end
        
        def nil?
          true
        end
        
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
houston-core-0.5.0.beta1 app/adapters/houston/adapters/version_control/null_commit.rb