-
Notifications
You must be signed in to change notification settings - Fork 7
/
Gemfile
79 lines (63 loc) · 1.43 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
69
70
71
72
73
74
75
76
77
78
79
source 'https://rubygems.org'
ruby '3.0.3'
gem 'concurrent-ruby'
gem 'html2text'
gem 'listen'
gem 'oj'
gem 'pg'
gem 'pg_search'
gem 'rails', '~> 6.0'
gem 'ruby-stemmer', '>=0.8.3', require: 'lingua/stemmer'
gem 'scenic'
gem 'view_component'
gem 'webpacker'
gem 'wicked_pdf'
gem 'wkhtmltopdf-binary'
gem 'parslet', git: 'https://github.com/kschiess/parslet.git'
# send email on error
gem 'exception_notification'
# github auth
gem 'omniauth'
gem 'omniauth-github'
gem 'solid_use_case', github: 'kevin-klein/solid_use_case'
# github integration
gem 'octokit'
gem 'rexml'
# roles and permissions
gem 'cancancan'
gem 'validate_url'
group :development, :test do
gem 'better_errors'
gem 'binding_of_caller'
gem 'database_cleaner'
gem 'factory_bot_rails'
gem 'mina'
gem 'rails-controller-testing'
gem 'rails-erd'
gem 'rspec-rails'
gem 'rubocop-github'
gem 'rubocop-performance', require: false
gem 'rubocop-rails', require: false
gem 'rubocop-rspec', require: false
gem 'simplecov', require: false
end
gem 'awesome_print'
# web server
gem 'puma'
gem 'chartkick'
gem 'groupdate'
gem 'hightop'
# work with wiki markdown
gem 'wikicloth', git: 'https://github.com/101companies/wikicloth'
# source text highlighting
gem 'pygments.rb'
# better work with form -> bindings to models
gem 'simple_form'
# ui for diff
gem 'differ'
gem 'react-rails'
gem 'jbuilder'
gem 'flamegraph'
gem 'memory_profiler'
gem 'rack-mini-profiler'
gem 'stackprof'