Skip to content

Commit

Permalink
Merge pull request #50 from blackducksoftware/OTWO-4566
Browse files Browse the repository at this point in the history
OTWO-4566: Add tags method to AbstractAdapter for api consistency
  • Loading branch information
PDegenPortnoy committed Jan 12, 2017
2 parents ebdccda + 60f796e commit 337537b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -2,3 +2,4 @@
*.pyc
pkg/
*.cache
.byebug*
14 changes: 9 additions & 5 deletions lib/ohloh_scm/adapters/abstract/misc.rb
@@ -1,9 +1,13 @@
module OhlohScm::Adapters
class AbstractAdapter
class AbstractAdapter

def is_merge_commit?(commit)
false
end
def is_merge_commit?(commit)
false
end

end
def tags
[]
end

end
end
2 changes: 1 addition & 1 deletion lib/ohloh_scm/version.rb
@@ -1,5 +1,5 @@
module OhlohScm
module Version
STRING = '2.2.5'
STRING = '2.2.6'
end
end

0 comments on commit 337537b

Please sign in to comment.