-
Notifications
You must be signed in to change notification settings - Fork 23
/
Gemfile
43 lines (34 loc) · 810 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
# frozen_string_literal: true
source 'https://rubygems.org'
# source 'https://gems.ruby-china.com'
git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
# Web Services
gem 'puma', '~> 6.4.2'
gem 'sinatra', '~> 3.1.0'
gem 'sinatra-contrib', '~> 3.1.0'
# Background Job Service
gem 'sidekiq', '~> 7.1.4'
gem 'sidekiq-failures', '~> 1.0.4'
# Database
gem 'activerecord', '~> 7.1.3'
gem 'sqlite3', '~> 1.6.9'
# Tools
gem 'chronic_duration', '~> 0.10.6'
gem 'commander', '~> 5.0.0'
gem 'git', '~> 1.19.1'
gem 'gitlab', '~> 4.19.0'
gem 'rake'
gem 'sentry-ruby'
gem 'sentry-sidekiq'
gem 'settingslogic', '~> 2.0.9'
group :development, :test do
# Test
gem 'rack-test'
gem 'rspec'
gem 'rubocop'
# Debug
gem 'awesome_print'
gem 'guard'
gem 'guard-puma'
gem 'guard-sidekiq'
end