forked from redmine-git-hosting/redmine_git_hosting
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
58 lines (45 loc) · 1.19 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
57
58
# 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'
# Memcached client for GitCache
gem 'dalli'
# Redis client for GitCache
gem 'redis'
gem 'hiredis'
# Markdown rendering
gem 'escape_utils'
gem 'html-pipeline'
gem 'rinku'
gem 'task_list'
# Syntaxic coloration
gem 'github-markup'
gem 'RedCloth'
gem 'org-ruby'
gem 'creole'
gem 'asciidoctor'
# Rack parser for Hrack
gem 'rack-parser', require: 'rack/parser'
# temp autoloading fix
gem 'sidekiq'
gem 'sshkey'
group :development, :test do
gem 'rspec'
gem 'rspec-rails', '~> 3.5', '>= 3.5.2'
gem 'rails-controller-testing'
gem 'shoulda', '~> 3.5.0'
gem 'shoulda-context'
gem 'shoulda-matchers', '~> 2.7.0'
gem 'database_cleaner'
gem 'factory_bot_rails', '< 5.0'
gem 'rubocop', require: false
gem 'rubocop-rspec'
# Publish to CodeClimate
gem 'codeclimate-test-reporter', require: false
end
group :development do
gem 'brakeman'
gem 'bullet'
gem 'spring'
gem 'spring-commands-rspec'
end