-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
44 lines (38 loc) · 897 Bytes
/
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
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '2.6.3'
gem 'active_model_serializers'
gem 'bootsnap', '>= 1.4.2', require: false
gem 'daemons'
gem 'delayed_job_active_record'
gem 'discordrb'
gem 'interactor', '~> 3.0'
gem 'jbuilder', '~> 2.7'
gem 'pg'
gem 'puma', '~> 4.3'
gem 'rails', '~> 6.0.0'
gem 'rails_event_store'
gem 'sentry-raven'
gem 'slack-notifier'
gem 'snitcher'
gem 'twitter'
group :development, :test do
gem 'factory_bot_rails'
gem 'figaro'
gem 'listen'
gem 'pry-byebug'
gem 'pry-rails'
end
group :development do
gem 'rubocop', require: false
gem 'rubocop-performance', require: false
gem 'rubocop-rspec', require: false
end
group :test do
gem 'capybara', '>= 2.15'
gem 'rspec-collection_matchers'
gem 'rspec-rails'
gem 'selenium-webdriver'
gem 'shoulda-matchers'
end