forked from OperationCode/operationcode_backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
56 lines (48 loc) · 1.25 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
#ruby=ruby-2.3.3
#ruby-gemset=operationcode_backend
source 'https://rubygems.org'
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?('/')
"https://github.com/#{repo_name}.git"
end
gem 'activeadmin', '~> 1.1'
gem 'active_model_serializers'
gem 'acts-as-taggable-on', '~> 5.0'
gem 'cancancan', '~> 2.0'
gem 'devise'
gem 'geocoder'
gem 'gibbon'
gem 'httparty'
gem 'jwt'
gem 'lograge'
gem 'logstash-event'
gem 'operationcode-slack'
gem 'pg', '~> 0.18'
gem 'puma', '~> 3.0'
gem 'rack-cors'
gem 'rails', '~> 5.0.2'
gem 'redis', '~> 3.0'
gem 'rubocop', '~> 0.55.0', require: false
gem 'sendgrid-ruby'
gem 'sentry-raven'
gem 'sidekiq'
gem 'skylight'
gem 'pry-rails'
group :development, :test do
gem 'awesome_print', '~> 1.8'
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platform: :mri
gem 'factory_girl_rails'
gem 'faker'
gem 'mocha'
gem 'vcr', '~> 3.0', '>= 3.0.3'
gem 'webmock', '~> 3.0', '>= 3.0.1'
end
group :development do
gem 'listen', '~> 3.0.5'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
end
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'