-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathGemfile
More file actions
34 lines (25 loc) · 801 Bytes
/
Copy pathGemfile
File metadata and controls
34 lines (25 loc) · 801 Bytes
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
# frozen_string_literal: true
source "https://rubygems.org"
# An object-relational mapper
# https://guides.rubyonrails.org/active_record_basics.html
gem "activerecord", "~> 7.1"
# Run common tasks from the command line
# https://github.com/ruby/rake
gem "rake", "~> 13.0"
# Provides functionality to interact with a SQLite3 database
gem "sqlite3", "~> 1.7"
# Require all files in a folder
gem "require_all", "~> 3.0"
gem "standalone_migrations"
# These gems will only be used when we are running the application locally
group :development do
gem "pry", "~> 0.14.1"
# Ruby linter and formatter
# https://github.com/rubocop/rubocop
gem "rubocop"
end
# These gems will only be used when we are running tests
group :test do
gem "database_cleaner", "~> 2.0"
gem "rspec", "~> 3.10"
end