Fix Repository role spec

This commit is contained in:
Robert Speicher 2012-09-26 13:21:38 -04:00
parent e9bd45060e
commit 9f0e80591a
2 changed files with 9 additions and 6 deletions

View file

@ -45,14 +45,17 @@ module Repository
File.exists?(hook_file)
end
# Returns an Array of branch names
def branches
repo.branches.collect(&:name).sort
end
# Returns an Array of tag names
def tags
repo.tags.collect(&:name).sort.reverse
end
# Returns an Array of branch and tag names
def ref_names
[branches + tags].flatten
end