-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathGemfile
55 lines (50 loc) · 1.57 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
source 'https://rubygems.org'
ruby '2.3.8'
gem 'rails', '~> 5.0.0', '>= 5.0.7.2'
gem 'pg', '~> 0.21.0'
gem 'puma', '~> 3.12'
gem 'jwt', '1.5.4'
gem 'hashie', '~> 3.4', '>= 3.4.6'
gem 'active_model_serializers', '~> 0.10.8'
gem 'activemodel-associations', '~> 0.2.0'
gem 'octokit', '~> 4.10.0', '>= 4.10.0'
gem 'faraday', '~> 0.15.2', '>= 0.15.2'
gem 'friendly_id', '~> 5.2'
gem 'cancancan', '~> 2.1.3'
gem 'pg_search', '~> 2.0', '>= 2.0.1'
gem 'composite_primary_keys', '~> 9.0', '>= 9.0.10'
gem 'classy_hash', '~> 0.2.0'
gem 'attribute-defaults', '~> 0.8.0'
gem 'delayed_job', '~> 4.1', '>= 4.1.4'
gem 'delayed_job_active_record', '~> 4.1', '>= 4.1.2'
gem 'slack-notifier', '~> 2.2', '>= 2.2.2'
gem 'unread', '~> 0.10.0'
gem 'aws-sdk', '~> 2'
gem 'rinku', '~> 2.0', '>= 2.0.3'
gem 'hash-initializer', '~> 0.1.2'
gem 'kaminari', '~> 1.1', '>= 1.1.1'
gem 'api-pagination', '~> 4.7'
gem 'memoist', '~> 0.16.0'
gem 'has_scope', '~> 0.7.2'
gem 'elasticsearch-persistence', '~> 5.1'
gem 'commonmarker', '~> 0.18.1'
gem 'gitlab', '~> 4.5'
gem 'exception_notification', '~> 4.2', '>= 4.2.2'
gem 'shoryuken', '~> 4.0', '>= 4.0.2'
gem 'tzinfo-data', '>= 1.2019.0'
group :development, :test do
gem 'byebug', platform: :mri
gem 'rspec-rails', '~> 3.7', '>= 3.7.2'
gem 'rails-controller-testing', '~> 1.0'
gem 'dotenv-rails', '~> 2.2', '>= 2.2.0'
gem 'factory_bot_rails', '~> 4.8'
gem 'shoulda-matchers', '~> 3.1', '>= 3.1.2'
end
group :development do
gem 'listen', '~> 3.1.5'
gem 'spring-watcher-listen', '~> 2.0.1'
end
group :test do
gem 'timecop', '~> 0.9.1'
gem 'with_model', '~> 2.0'
end