-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
54 lines (46 loc) · 1 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
source 'https://rubygems.org'
gem 'bundler'
gem 'rails', '4.2.0'
gem 'rails-api'
gem 'active_model_serializers', '0.9.3'
gem 'ffaker'
gem 'devise', '~>3.4.1'
gem 'sidekiq', '~>3.4.0'
gem 'sidekiq-superworker'
#For sidekiq web interface
gem 'sinatra', require: false
gem 'exception_handler'
gem 'figaro'
gem 'seed-fu', '~> 2.3'
gem 'geocoder'
gem 'public_activity'
#For the list of languages in language model
gem 'language_list'
#For cors operations
gem 'rack-cors'
gem 'mina'
gem 'wisper'
gem 'state_machines-activerecord'
gem 'addressable'
#For integration with elasticsearch
gem 'chewy', '0.8.1'
group :development do
gem 'byebug'
gem 'sqlite3'
gem 'pry-rails'
gem 'rails-erd'
gem 'railroady'
end
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', require: false
end
group :test do
gem "rspec-rails"
gem "factory_girl_rails"
gem 'capybara'
# gem 'debugger'
gem "shoulda-matchers"
end
gem 'pg', group: :production
gem 'rails_12factor', group: :production