-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGemfile
98 lines (87 loc) · 3.17 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '2.7.7'
gem 'dotenv-rails', require: 'dotenv/rails-now'
gem 'envied', '~> 0.9.3'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 5.2.0'
# Use postgresql as the database for Active Record
gem 'pg', '~> 1.1'
# Use Redis adapter to run Action Cable in production
gem 'redis-rails'
# Use Iodine as the app server
gem 'iodine', '~> 0.7.50', github: 'boazsegev/iodine', ref: '1840a84a89c690fa4737ff4eade2343e5a0c76eb' # https://github.com/boazsegev/iodine/issues/132
gem 'rack-cors', require: 'rack/cors'
# Background processing
gem 'sidekiq', '~> 5.2'
gem 'sidekiq-scheduler', '~> 3.0'
# Business logic encapsulation
gem 'interactor-rails'
gem 'enumerate_it', '~> 1.7'
gem 'dry-struct', '0.6.0'
gem 'dry-validation', '0.13.1'
# Errors logging
gem 'sentry-rails'
# Straight
gem 'btcruby', github: 'EugZol/btcruby' # https://github.com/oleganza/btcruby/issues/29#issuecomment-565481659
gem 'satoshi-unit', '0.1.8' # newer version does not like floats: Satoshi::TooManyDigitsAfterDecimalPoint (Too many digits (20) after decimal point used for btc value, while 8 allowed)
# gem 'httparty', '~> 0.13.5'
# gem 'faraday'
gem 'concurrent-ruby'
# Suppress some warnings
# gem 'warning'
# Straight Server
# gem 'socket.io-client-simple'
gem 'sequel', '~> 4.25' # TODO: upgrade?
gem 'sequel-rails' #, '~> 1.0.1'
# gem 'logmaster', '~> 0.2.0'
# gem 'ruby-hmac'
gem 'ruby-protocol-buffers'
# gem 'rbtrace'
# Utils
# gem 'ice_nine', require: %w[ice_nine ice_nine/core_ext/object]
gem 'bigdecimal', '1.4.4' # https://github.com/ruby/bigdecimal#which-version-should-you-select
# indirect deps, break on update
gem 'dry-configurable', '~> 0.8.2'
gem 'dry-container', '~> 0.7.0'
gem 'dry-core', '~> 0.4.7' # just in case
gem 'redis', '~> 4.5.1'
gem 'redis-store', '1.6.0' # why it gets downgraded to 1.3.0?
gem 'mail', '~> 2.7.1'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
gem 'rspec-rails'
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.1.0', require: false
gem 'rubocop-rspec'
gem 'rb-readline'
end
group :development do
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem 'web-console', '>= 3.3.0'
gem 'listen', '~> 3.0'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
# gem 'spring'
# gem 'spring-watcher-listen', '~> 2.0.0'
gem 'guard-rspec', require: false
gem 'guard-bundler', require: false
gem 'foreman'
end
group :test do
gem 'rspec-retry'
gem 'capybara', '~> 2.15'
gem 'geckodriver-helper'
gem 'selenium-webdriver', '~> 3.141'
gem 'rubyzip', '~> 2.3'
gem 'webmock'
gem 'vcr'
gem 'tcr'
gem 'timecop'
gem 'factory_bot_rails', require: false
gem 'database_cleaner', '~> 1.7'
gem 'json_matchers'
gem 'simplecov', require: false
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
# gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]