-
Notifications
You must be signed in to change notification settings - Fork 116
/
Gemfile
68 lines (53 loc) · 1.54 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
59
60
61
62
63
64
65
66
67
68
# frozen_string_literal: true
source 'https://rubygems.org'
# Gitolite Admin repository management
gem 'gitolite-rugged', git: 'https://github.com/jbox-web/gitolite-rugged.git', tag: '1.5.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'
gem 'redmine_plugin_kit'
# Memcached client for GitCache
gem 'dalli'
# Redis client for GitCache
gem 'hiredis'
gem 'redis'
# Markdown rendering
gem 'escape_utils'
gem 'rinku'
# Syntaxic coloration
gem 'asciidoctor'
gem 'creole'
gem 'github-markup'
gem 'org-ruby'
gem 'RedCloth'
# Rack parser for Hrack
gem 'rack-parser', require: 'rack/parser'
# temp autoloading fix
gem 'sidekiq', '<7'
gem 'sshkey'
group :development, :test do
gem 'rspec'
gem 'rspec-rails'
gem 'shoulda'
gem 'shoulda-context'
gem 'shoulda-matchers', '~> 4.0'
gem 'database_cleaner-active_record'
gem 'factory_bot_rails', '< 5.0'
end
group :development do
gem 'bullet'
gem 'spring'
gem 'spring-commands-rspec'
# this is only used for development.
# if you want to use it, do:
# - create .enable_dev file in additionals directory
# - remove rubocop entries from REDMINE/Gemfile
# - remove REDMINE/.rubocop* files
if File.file? File.expand_path './.enable_dev', __dir__
gem 'brakeman', require: false
gem 'pandoc-ruby', require: false
gem 'rubocop', require: false
gem 'rubocop-performance', require: false
gem 'rubocop-rails', require: false
gem 'slim_lint', require: false
end
end