-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
61 lines (49 loc) · 1.44 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
source 'https://rubygems.org'
gem 'openssl'
group :terminal, :console, optional: false do
# Console gems (wthc)
gem 'tty-cursor'
gem 'tty-screen'
gem "tty-reader"
gem "tty-spinner"
gem 'pastel'
gem 'terminal-table'
#gem 'tty-pager' # Need to use
# Convert ansi to html
gem 'terminal'
end
# System gems
gem 'os' # OS detection
gem 'sys-cpu' # Semi annoying system data
gem 'lightly' # File cache
#gem 'opencl-bindings'
# Deep state gems
gem 'rest-client'
gem 'concurrent-ruby', require: 'concurrent' # Used for threads
gem 'symbolized' # For the love of ... Ruby hash needs help
gem 'zeitwerk' # Code auto loader/reloader magic
gem 'semantic_logger'
# Misc
gem 'lucky_case' # Adds various "case" conversions (snake, camel, etc)
gem 'sorted_set' # Sort AoA?
gem 'deep_dup'
# Server gems
gem 'daemons'
# Web server (wthd)
gem 'webrick' # Current web server. Should rpelace with thin or puma or unicorn
# Modules / Plugins
gem 'coingecko_ruby'
# Notification clients
# Pushover client for notifications
group :pushover, optional: true do gem 'rushover'; end
#group :lab, optional: true do
gem 'irbtools' # Interactive ruby console
#end
#group :tor, :socksify, optional: true do
gem 'socksify'
#end
# TODO: Add other OS gems as needed
install_if -> { RUBY_PLATFORM =~ /mswin|mingw|cygwin/i } do
gem 'winrm'
gem 'ruby-pwsh' # Interface to powershell ... may not end up using it. So far, hasn't done what I needed it for.
end