@@ -72,11 +72,17 @@ gem 'd3-rails', '~> 5.9.2' # used for spider charts
72
72
gem 'slack-notifier'
73
73
gem 'barnes'
74
74
75
+ # Profiling / error tracking
76
+ gem "stackprof"
77
+ gem "sentry-ruby"
78
+ gem "sentry-rails"
79
+
75
80
# Apps
76
81
#gem 'easy_translate'
77
82
#gem 'levenshtein-ffi'
78
83
79
84
# Forum
85
+ gem "html-pipeline" , "~> 2.14" # keep the pre-3.x API that Thredded expects
80
86
gem 'thredded' , git : 'https://github.com/indentlabs/thredded.git' , branch : 'feature/report-posts'
81
87
# gem 'thredded', path: "../thredded"
82
88
@@ -94,8 +100,8 @@ gem 'word_count_analyzer'
94
100
gem 'will_paginate' , '~> 4.0'
95
101
96
102
# Workers
97
- gem 'sidekiq'
98
- gem 'redis'
103
+ gem 'sidekiq' , '~> 7.3.9'
104
+ gem 'redis' , '~> 5.1.0'
99
105
100
106
# Exports
101
107
gem 'csv'
@@ -108,7 +114,16 @@ gem 'binding_of_caller' # see has_changelog.rb
108
114
109
115
group :test , :development do
110
116
gem 'pry'
111
- gem 'sqlite3'
117
+ gem 'sqlite3' , '~> 1.4'
118
+
119
+ # Call 'byebug' anywhere in the code to stop execution and get a debugger console
120
+ gem 'byebug' , platforms : [ :mri , :mingw , :x64_mingw ]
121
+ gem 'dotenv-rails'
122
+ gem 'letter_opener_web'
123
+ gem 'minitest-reporters' , '~> 1.1' , require : false
124
+
125
+ # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
126
+ gem 'spring'
112
127
end
113
128
114
129
group :production do
@@ -137,22 +152,14 @@ group :development do
137
152
gem 'bundler-audit'
138
153
end
139
154
140
- group :development , :production do
141
- # Profiling / error tracking
142
- gem "stackprof"
143
- gem "sentry-ruby"
144
- gem "sentry-rails"
145
- end
146
-
147
155
group :worker do
148
156
# These gems are only used in workers (and just so happen to slow down app startup
149
157
# by quite a bit), so we exclude them from all groups other than RAILS_GROUPS=worker.
150
158
151
159
# Document understanding
152
160
gem 'htmlentities'
153
161
gem 'birch' , git : 'https://github.com/billthompson/birch.git' , branch : 'birch-ruby22'
154
-
155
- gem 'engtagger'
162
+ gem 'engtagger' , github : 'yohasebe/engtagger' , ref : 'master' # we might want this in more groups...?
156
163
gem 'ibm_watson'
157
164
gem 'textstat'
158
165
end
0 commit comments