-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGemfile
51 lines (40 loc) · 930 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Various gems I use on every system
source "https://rubygems.org"
ruby "~> 3"
gem "binman"
gem "md2man"
gem "rainbow"
gem "tty"
gem "uniscribe"
gem "net-ntp"
gem "optimist"
# These gems I use within irb. Check config/irb/irb_conf.rb for details.
group :irb do
gem "irb"
gem "irbtools"
gem "looksee"
gem "net-http-spy"
gem "pry" # because it's so damn neat and useful
gem "racksh"
end
group :development do
gem "octokit"
gem "rubocop"
gem "standard"
# This is the ruby Language Server -- bringing IDE functionality to every editor
gem "ruby-lsp"
gem "solargraph"
end
# These gems I like to have available for my machine or are commonly installed.
group :common do
gem "faraday"
gem "nokogiri"
gem "patron"
gem "typhoeus"
gem "yard"
end
# Neovim gem enables ruby support in neovim
gem "neovim"
# better tags generation using Ripper, the Ruby parser library
gem "ripper-tags"
gem "rufo"