-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
37 lines (28 loc) · 940 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
source "https://rubygems.org"
# An object-relational mapper
# https://guides.rubyonrails.org/active_record_basics.html
gem "activerecord", "~> 6.1"
# Configures common Rake tasks for working with Active Record
# https://github.com/sinatra-activerecord/sinatra-activerecord
gem "sinatra-activerecord"
# Run common tasks from the command line
# https://github.com/ruby/rake
gem "rake"
# Provides functionality to interact with a SQLite3 database
# https://github.com/sparklemotion/sqlite3-ruby
gem "sqlite3", "~> 1.4"
# Require all files in a folder
# https://github.com/jarmo/require_all
gem "require_all"
# These gems will only be used when we are running the application locally
group :development do
# Used to generate seed data
# https://github.com/faker-ruby/faker
gem "faker", "~> 2.18"
gem "pry"
end
# These gems will only be used when we are running tests
group :test do
gem "database_cleaner"
gem "rspec"
end