-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
68 lines (50 loc) · 2.51 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
# frozen_string_literal: true
source "https://rubygems.org"
ruby file: ".ruby-version"
# The API framework-related gems
gem "grape", "~> 2.2"
gem "grape-entity", "~> 1.0"
gem "grape-swagger"
gem "grape-swagger-entity"
gem "falcon" # The app server
gem "bcrypt" # Used by rodauth for password hashing
gem "jwt" # Used by rodauth jwt
gem "roda" # Used for the login middleware
gem "rodauth" # Used for login
# gem "rotp" # Used by rodauth otp feature
# gem "rqrcode" # Used by rodauth otp feature
# Database-related gems
gem "pg" # Postgresql driver used by Sequel
gem "sequel" # The base gem for accessing the database layer
# CLI-related gems
gem "pastel" # Used for coloring the output of rake tasks
gem "rake" # CLI for common tasks such as database creation and so on
gem "zeitwerk" # Used for autoloading the code in the API
gem "async-http" # Used for making requests towards other APIs
gem "address_composer", github: "retromeet/address_composer", submodules: true
group :development, :test do
gem "dotenv" # Used to load environment variables from .env files
gem "rerun", require: false # Used to reload the server when code changes
gem "debug" # Used for calling debugger from the code
# Code formatting and hooks
gem "lefthook", require: false # Used to make git hooks available between dev machines
gem "pronto", "~> 0.11", require: false # pronto analyzes code on changed code only
gem "pronto-rubocop", require: false # pronto-rubocop extends pronto for rubocop
gem "rubocop", require: false # A static code analyzer and formatter
gem "rubocop-factory_bot", require: false # A rubocop extension for factory bot
gem "rubocop-minitest", require: false # A rubocop extension for minitest
gem "rubocop-performance", require: false # A rubocop extension with performance suggestions
gem "rubocop-rake", require: false # A rubocop extension for Rakefiles
gem "rubocop-sequel", require: false # A rubocop extension for Sequel
gem "rubocop-yard", require: false # A rubocop extension for yard documentation
end
group :test do
gem "minitest" # The test framework
gem "minitest-hooks", require: "minitest/hooks/default" # Adds before(:all) hooks to improve test time
gem "rack-test" # Adds functionality to test Rack apps
gem "database_cleaner-sequel" # Cleans the database between tests
gem "factory_bot" # makes it easier to create objects for tests
gem "faker" # provides fake data for tests
gem "mocha" # adds mocking capabilities
gem "webmock" # Used for avoiding real requests in the test enviroment
end