-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
40 lines (37 loc) · 1.64 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
# frozen_string_literal: true
source 'https://rubygems.org'
# [https://rubygems.org/gems/aws-sdk-s3]
# Official AWS Ruby gem for Amazon Simple Storage Service (Amazon S3).
# This gem is part of the AWS SDK for Ruby.
gem 'aws-sdk-s3', '~> 1.117', '>= 1.117.2'
# [https://rubygems.org/gems/listen]
# The Listen gem listens to file modifications and notifies you about the
# changes. Works everywhere!
gem 'listen', '~> 3.7', '>= 3.7.1'
# [https://rubygems.org/gems/sqlite3]
# This module allows Ruby programs to interface with the SQLite3 database engine
gem 'sqlite3', '~> 1.5', '>= 1.5.4'
# [https://rubygems.org/gems/async]
# Async is a Ruby library for writing concurrent code using the event loop
gem 'async', '~> 2.3', '>= 2.3.1'
# [https://rubygems.org/gems/dotenv]
# Loads environment variables from `.env`.
gem 'dotenv', '~> 2.8', '>= 2.8.1'
group :development, :test do
# [https://rubygems.org/gems/rake]
# Rake is a Make-like program implemented in Ruby. Tasks and dependencies are
# specified in standard Ruby syntax
gem 'rake', '~> 13.0', '>= 13.0.6'
# [https://rubygems.org/gems/debug]
# Debugging functionality for Ruby. This is completely rewritten debug.rb
# which was contained by the ancient Ruby versions.
gem 'debug', '~> 1.7', '>= 1.7.1'
# [https://rubygems.org/gems/minitest]
# minitest provides a complete suite of testing facilities supporting TDD,
# BDD, mocking, and benchmarking.
gem 'minitest', '~> 5.17'
# [https://rubygems.org/gems/minitest-pride]
# Automatic Minitest code style checking tool. A RuboCop extension focused on
# enforcing Minitest best practices and coding conventions.
gem 'rubocop-minitest'
end