forked from mission-met/thredded
-
Notifications
You must be signed in to change notification settings - Fork 0
/
shared.gemfile
36 lines (29 loc) · 895 Bytes
/
shared.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
# frozen_string_literal: true
gem 'test_after_commit', group: :test
gem 'capybara-screenshot', group: :test
group :debug do
gem 'derailed'
gem 'pry-rails'
gem 'rack-mini-profiler'
platform :mri do
gem 'byebug'
gem 'flamegraph'
gem 'stackprof'
end
end
if ENV['THREDDED_USE_GUARD']
group :development do
gem 'guard'
gem 'guard-livereload'
gem 'guard-rails'
end
end
group :test do
gem 'rails-controller-testing'
gem 'rspec-rails'
end
# TODO: rename all thredded repository master to main https://github.com/thredded/thredded/issues/916
gem 'db_text_search', github: 'thredded/db_text_search', branch: 'master'
gem 'thredded-markdown_coderay', git: 'https://github.com/thredded/thredded-markdown_coderay', branch: 'master'
gem 'thredded-markdown_katex', git: 'https://github.com/thredded/thredded-markdown_katex', branch: 'master'
gem 'roadie-rails'