Commit 71d6582c9f4a51623f9506648717ea8ac6584d86

Authored by Dmitriy Zaporozhets
1 parent 0592b6a8

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 5  
6 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 12 ## Requirements
13 13  
  14 +* Ubuntu/Debian
14 15 * ruby 1.9.2
15   -* mysql
  16 +* mysql or sqlite
16 17 * git
17 18 * gitolite
18 19 * redis
... ...
spec/models/project_spec.rb
... ... @@ -75,7 +75,7 @@ describe Project do
75 75 let(:project) { Factory :project }
76 76  
77 77 before do
78   - @issue = Factory :issue, :project => project,
  78 + @issue = Factory :issue, :project => project
79 79 end
80 80  
81 81 it { project.last_activity.should == Event.last }
... ...