forked from thredded/thredded
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshared.gemfile
More file actions
56 lines (46 loc) · 1.22 KB
/
shared.gemfile
File metadata and controls
56 lines (46 loc) · 1.22 KB
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
# 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', '>= 3.5.0'
gem 'capybara', '~> 3.0'
gem 'cuprite', '>= 0.5'
gem 'database_cleaner-active_record', '~> 2.0'
gem 'factory_bot', '>= 5.0.2'
gem 'faker', '>= 1.9.3'
gem 'launchy'
gem 'simplecov'
gem 'webmock'
end
gem 'db_text_search', github: 'thredded/db_text_search', branch: 'main'
gem 'thredded-markdown_coderay', git: 'https://github.com/thredded/thredded-markdown_coderay', branch: 'main'
gem 'thredded-markdown_katex', git: 'https://github.com/thredded/thredded-markdown_katex', branch: 'main'
gem 'roadie-rails'
# converted from gemspec development dependencies
# dummy app dependencies
gem 'http_accept_language'
gem 'kaminari-i18n'
gem 'puma'
gem 'rails_email_preview', '>= 2.2.1'
gem 'twemoji'
gem 'web-console'
# dummy app frontend
gem 'turbolinks'