class Gitenv::Repository
Attributes
path[R]
Public Class Methods
new(path)
click to toggle source
# File lib/gitenv/repository.rb, line 5 def initialize(path) @path = path end
Public Instance Methods
==(other)
click to toggle source
# File lib/gitenv/repository.rb, line 9 def ==(other) other.path == path end