forked from Fustrate/baseballbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
46 lines (33 loc) · 765 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
45
46
# frozen_string_literal: true
source 'https://rubygems.org'
ruby '3.0.1'
# Date Parsing
gem 'chronic'
# Error Monitoring
gem 'honeybadger', '~> 4.0'
# MLB Stats API
gem 'mlb_stats_api', github: 'Fustrate/mlb_stats_api'
# Postgres Database
gem 'pg'
# Reddit Interaction
gem 'redd', github: 'Fustrate/redd'
# Caching
gem 'redis'
# Cron jobs
gem 'whenever'
# Time zones
gem 'tzinfo'
group :development do
# Deploy with Capistrano
gem 'capistrano', '~> 3.15', require: false
gem 'capistrano-bundler', require: false
gem 'capistrano-rbenv', '~> 2.1', require: false
# Linters
gem 'rubocop'
gem 'rubocop-performance', require: false
gem 'rubocop-rspec', require: false
end
group :test do
gem 'rspec', '~> 3.8'
gem 'webmock', '~> 3.4'
end