-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGemfile
49 lines (35 loc) · 1.08 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
# frozen_string_literal: true
source 'https://rubygems.org'
# General dependencies
gem 'blur', '~> 3.0.0pre.alpha', git: 'https://github.com/mkroman/blur', branch: 'main'
gem 'httpx', '~> 1.2'
gem 'brotli', '~> 0.6'
# Used by the `dig' script
gem 'net-dns', '~> 0.20', require: 'net/dns'
# Used by the `r2` script
gem 'aws-sdk-s3', '~> 1.146'
gem 'activesupport', '~> 7.1'
gem 'oj', '~> 3.16'
gem 'multi_json', '~> 1.15'
# Used by the `spotify` script
gem 'rspotify', '~> 2.12'
# Used by the `tvmaze` script
gem 'dotiw', '~> 5.3'
# # Required by multiple scripts.
gem 'nokogiri', '~> 1.16'
gem 'htmlentities', '~> 4.3'
# Required by the ddo script.
gem 'ordnet', path: 'vendor/ordnet'
# Required by the imdb script.
gem 'mk-imdb', path: 'vendor/mk-imdb'
# Required by scripts with CLI-like argument parsing.
gem 'optimist', '~> 3.1'
# Required by scripts that allow fuzzy-matching.
gem 'fuzzy_match', '~> 2.1'
# Used by the `unicode-utils` script
gem 'unicode-categories', '~> 1.9'
gem 'unicode-name', '~> 1.12'
gem 'unicode-sequence_name', '~> 1.13'
group :development do
gem 'solargraph'
end