forked from redmine-git-hosting/redmine_git_hosting
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
56 lines (43 loc) · 1.12 KB
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# Gitolite Admin repository management
gem 'gitolite-rugged', git: 'https://github.com/jbox-web/gitolite-rugged.git', tag: '1.2.0'
# Ruby/Rack Git Smart-HTTP Server Handler
gem 'gitlab-grack', '~> 2.0.0', git: 'https://github.com/jbox-web/grack.git', require: 'grack', branch: 'fix_gemfile'
# HAML views
gem 'haml-rails'
# Memcached client for GitCache
gem 'dalli'
# Redis client for GitCache
gem 'redis'
gem 'hiredis'
# Syntaxic coloration
gem 'github-markup'
gem 'RedCloth'
gem 'org-ruby'
gem 'creole'
gem 'asciidoctor'
gem 'rdoc', '>= 2.4.2'
# Rack parser for Hrack
gem 'rack-parser', require: 'rack/parser'
group :development, :test do
gem 'rspec'
gem 'rspec-rails'
gem 'shoulda', '~> 3.5.0'
gem 'shoulda-matchers', '~> 2.7.0'
gem 'shoulda-context'
gem 'factory_girl'
gem 'factory_girl_rails'
gem 'faker'
gem 'sshkey'
gem 'database_cleaner'
# Publish to Coveralls
gem 'coveralls', require: false
# Publish to CodeClimate
gem 'codeclimate-test-reporter', require: false
end
group :development do
gem 'spring'
gem 'spring-commands-rspec'
gem 'quiet_assets'
gem 'brakeman'
gem 'bullet'
end