This repository was archived by the owner on Oct 1, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
52 lines (39 loc) · 1.75 KB
/
Copy pathGemfile
File metadata and controls
52 lines (39 loc) · 1.75 KB
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
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
# Loads environment variables from `.env`.
gem 'dotenv', '~> 3.1'
# A Ruby framework for rapid API development with great conventions.
gem 'grape', '~> 2.4'
# Extracted from Grape, A Ruby framework for rapid API development with great conventions.
gem 'grape-entity', '~> 1.0.1'
# Add auto generated documentation to your Grape API that can be displayed with Swagger.
gem 'grape-swagger', '~> 2.1'
# Grape swagger adapter to support grape-entity object parsing
gem 'grape-swagger-entity', '~> 0.7.0'
# Use Puma as the app server.
gem 'puma', '~> 7.0'
# Rack provides a minimal, modular and adaptable interface for developing web applications in Ruby.
gem 'rack', '~> 3.2'
# Use Rack CORS for handling Cross-Origin Resource Sharing (CORS), making cross-origin AJAX possible.
gem 'rack-cors'
# Rake is a Make-like program implemented in Ruby.
gem 'rake', '~> 13.3'
# Zeitwerk implements constant autoloading with Ruby semantics.
gem 'zeitwerk', '~> 2.7'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console.
gem 'byebug', platforms: %i[mri mingw x64_mingw]
# Pry is a runtime developer console and IRB alternative with powerful introspection capabilities.
gem 'pry', '~> 0.15.2'
gem 'rubocop', '~> 1.80.2'
gem 'rubocop-minitest', require: false
gem 'rubocop-performance', '~> 1.26', require: false
gem 'rubocop-rake', require: false
end
group :test do
# minitest provides a complete suite of testing facilities supporting TDD, BDD, mocking, and benchmarking.
gem 'minitest', '~> 5.25'
# Rack::Test is a small, simple testing API for Rack apps.
gem 'rack-test', '~> 2.2'
end