forked from openedx/cs_comments_service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
72 lines (53 loc) · 1.47 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
source 'https://rubygems.org'
ruby ">= 3.1"
gem 'pry'
gem 'pry-nav'
# Use with command-line debugging, but not RubyMine
#gem 'debugger'
gem 'bundler'
gem 'rake'
gem 'sinatra'
gem 'sinatra-param', '~> 1.4'
gem 'yajl-ruby', '~> 1.3.1'
gem 'activemodel'
gem 'protected_attributes_continued'
gem 'mongoid'
gem 'bson'
gem 'bson_ext'
gem 'delayed_job'
gem 'delayed_job_mongoid'
gem "enumerize"
gem 'mongoid-tree', :git => 'https://github.com/edx/mongoid-tree'
gem 'rs_voteable_mongo', '~> 1.3'
gem 'mongoid_magic_counter_cache'
# Before updating will_paginate version, we need to make sure that property 'total_entries'
# exists otherwise use updated property name to fetch total collection count in lib/helpers.rb's
# function 'handle_threads_query'.
gem 'will_paginate_mongoid', "~>2.0"
gem 'rdiscount'
gem 'elasticsearch', '~> 7.8.0'
gem 'elasticsearch-model', '~> 7.1.0'
gem 'dalli'
gem 'rest-client'
group :test do
gem 'simplecov-cobertura', :require => false
gem 'mongoid_cleaner', '~> 1.2.0'
gem 'factory_bot'
gem 'faker'
gem 'guard'
gem 'guard-unicorn'
gem 'rack-test', :require => 'rack/test'
gem 'rspec'
gem 'rspec-its'
gem 'rspec-collection_matchers'
gem 'webmock'
end
group 'newrelic_rpm' do
gem 'newrelic_rpm'
end
gem 'unicorn'
gem "rack-timeout"
gem "i18n"
gem "rack-contrib", :git => 'https://github.com/rack/rack-contrib.git', :ref => '6ff3ca2b2d988911ca52a2712f6a7da5e064aa27'
gem "timecop", "~> 0.9.5"
gem 'ddtrace', require: 'ddtrace/auto_instrument'