Commit 71d6582c9f4a51623f9506648717ea8ac6584d86
1 parent
0592b6a8
Exists in
master
and in
4 other branches
fixed spec coma
Showing
2 changed files
with
6 additions
and
5 deletions
Show diff stats
README.md
@@ -5,14 +5,15 @@ GitLab is a free project and repository management application | @@ -5,14 +5,15 @@ GitLab is a free project and repository management application | ||
5 | 5 | ||
6 | ## Application details | 6 | ## Application details |
7 | 7 | ||
8 | -* rails 3.1 | ||
9 | -* works only with gitolite | ||
10 | -* sqlite as default a database | 8 | +* based on Ruby on Rails |
9 | +* distributed under the MIT License | ||
10 | +* works with gitolite | ||
11 | 11 | ||
12 | ## Requirements | 12 | ## Requirements |
13 | 13 | ||
14 | +* Ubuntu/Debian | ||
14 | * ruby 1.9.2 | 15 | * ruby 1.9.2 |
15 | -* mysql | 16 | +* mysql or sqlite |
16 | * git | 17 | * git |
17 | * gitolite | 18 | * gitolite |
18 | * redis | 19 | * redis |
spec/models/project_spec.rb
@@ -75,7 +75,7 @@ describe Project do | @@ -75,7 +75,7 @@ describe Project do | ||
75 | let(:project) { Factory :project } | 75 | let(:project) { Factory :project } |
76 | 76 | ||
77 | before do | 77 | before do |
78 | - @issue = Factory :issue, :project => project, | 78 | + @issue = Factory :issue, :project => project |
79 | end | 79 | end |
80 | 80 | ||
81 | it { project.last_activity.should == Event.last } | 81 | it { project.last_activity.should == Event.last } |