forked from teritorio/Underpass-API
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
34 lines (26 loc) · 615 Bytes
/
Gemfile
File metadata and controls
34 lines (26 loc) · 615 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'
ruby '>= 3'
# Use the Puma web server [https://github.com/puma/puma]
gem 'puma', '~> 6.0'
gem 'hanami-api'
# gem 'duckdb'
gem 'overpass_parser', git: 'https://github.com/teritorio/overpass_parser-rb.git'
gem 'pg'
gem 'sorbet-runtime'
group :development do
gem 'rake'
gem 'rubocop', require: false
gem 'rubocop-rake', require: false
gem 'ruby-lsp', require: false
gem 'sorbet'
gem 'tapioca', require: false
gem 'test-unit'
# Only for sorbet typechecker
gem 'psych'
gem 'racc'
gem 'rbi'
end
group :test do
gem 'minitest'
end