This repository has been archived by the owner on Feb 27, 2024. It is now read-only.
forked from openedx/cs_comments_service
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
70 lines (52 loc) · 1.45 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
source 'https://rubygems.org'
ruby "2.5.7"
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 'nokogiri', "~>1.8.1"
gem 'elasticsearch', '~> 1.1.2'
gem 'elasticsearch-model', '~> 0.1.9'
gem 'dalli'
gem 'rest-client'
group :test do
gem 'codecov', :require => false
gem 'mongoid_cleaner', '~> 1.2.0'
gem 'factory_girl', '~> 4.0'
gem 'faker', '~> 1.6'
gem 'guard'
gem 'guard-unicorn'
gem 'rack-test', :require => 'rack/test'
gem 'rspec', '~> 3.6.0'
gem 'rspec-its'
gem 'rspec-collection_matchers'
gem 'webmock', '~> 3.0.1'
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'