-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathGemfile
97 lines (65 loc) · 2.55 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
# frozen_string_literal: true
source 'https://rubygems.org'
ruby '3.0.0'
# Routing Tree Web Toolkit.
gem 'roda', '>= 3.41'
# Use Puma as the app server.
gem 'puma', '~> 5.6'
# A make-like build utility for Ruby.
gem 'rake'
# Sequel: The Database Toolkit for Ruby.
gem 'sequel', '>= 5.41'
# Faster SELECTs when using Sequel with pg.
gem 'sequel_pg', '>= 1.14'
# A runtime developer console and IRB alternative with powerful introspection capabilities.
gem 'pry'
# YARD is a Ruby Documentation tool. The Y stands for "Yay!"
gem 'yard'
# A fast JSON parser and Object marshaller as a Ruby gem.
gem 'oj'
# bcrypt-ruby is a Ruby binding for the OpenBSD bcrypt() password hashing algorithm, allowing you to easily store a secure hash of your users' passwords.
gem 'bcrypt'
# Validation library with type-safe schemas and rules.
gem 'dry-validation'
# A powerful logger for Roda with a few tricks up it's sleeve.
gem 'roda-enhanced_logger'
# Organize your code into reusable components.
gem 'dry-system'
# A toolkit of support libraries and Ruby core extensions extracted from the Rails framework.
gem 'activesupport'
# Plugin that adds BCrypt authentication and password hashing to Sequel models.
gem 'sequel_secure_password'
# A gem providing "time travel" and "time freezing" capabilities, making it dead simple to test time-dependent code. It provides a unified method to mock Time.now, Date.today, and DateTime.now in a single call.
gem 'timecop'
# Ruby internationalization and localization (i18n) solution.
gem 'i18n'
# Rack middleware for blocking & throttling.
gem 'rack-attack'
# Redis is an in-memory database that persists on disk.
gem 'redis'
# Simple, efficient background processing for Ruby.
gem 'sidekiq'
# Efficient and thread-safe code loader for Ruby.
gem 'zeitwerk'
group :development, :test do
# A library for setting up Ruby objects as test data.
gem 'factory_bot'
# A Ruby gem to load environment variables from `.env`.
gem 'dotenv'
# A Ruby static code analyzer and formatter, based on the community Ruby style guide.
gem 'rubocop'
# An extension of RuboCop focused on code performance checks.
gem 'rubocop-performance'
# Code style checking for RSpec files.
gem 'rubocop-rspec'
# Thread-safety analysis for your projects.
gem 'rubocop-thread_safety'
# Code style checking for Sequel.
gem 'rubocop-sequel'
# A RuboCop plugin for Rake
gem 'rubocop-rake'
# RSpec meta-gem that depends on the other components.
gem 'rspec'
# Rack::Test is a layer on top of Rack's MockRequest similar to Merb's RequestHelper.
gem 'rack-test'
end