diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2012-05-21 23:17:41 +0300 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2012-05-21 23:17:41 +0300 |
commit | 1b2068eaa91e5002d01a220c65da21dad8ccb071 (patch) | |
tree | fcfeafc2d1ad23aa3b5ae4e8d19b76c3cd2efcdc /app/models/commit.rb | |
parent | 09831488c9be082f424c774e8eecd3f002dbae37 (diff) | |
download | gitlab-ce-1b2068eaa91e5002d01a220c65da21dad8ccb071.tar.gz |
Gem updates & githost logger
* Grit gem updated
* gitolite-client updated
* logger added
* few fixes
Diffstat (limited to 'app/models/commit.rb')
-rw-r--r-- | app/models/commit.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/commit.rb b/app/models/commit.rb index 574f69bc213..ad6d7127e76 100644 --- a/app/models/commit.rb +++ b/app/models/commit.rb @@ -73,7 +73,7 @@ class Commit repo.commits(ref, limit, offset) else repo.commits(ref) - end.map{ |c| Commit.new(c) } + end.map{ |c| Commit.new(c) } end def commits_between(repo, from, to) |