-
Notifications
You must be signed in to change notification settings - Fork 4
/
Gemfile
59 lines (48 loc) · 1.71 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
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) {|repo| "https://github.com/#{repo}.git"}
ruby '>= 3.2', '< 4'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 7.2.2'
# Use mysql as the database for Active Record
gem 'mysql2', '>= 0.4.4', '< 0.6.0'
# Use Puma as the app server
gem 'puma', '~> 6.4'
# Use JavaScript with ESM import maps [https://github.com/rails/importmap-rails]
gem 'importmap-rails'
gem 'dartsass-rails', '~> 0.5.0'
gem 'propshaft'
gem 'turbo-rails'
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.1.0', require: false
gem 'activerecord-import'
gem 'oanda_api'
gem 'resque'
gem 'resque-scheduler'
gem 'sinatra', '~> 4.0.0' # Suppress Dependabot's PR
group :development do
gem 'brakeman'
gem 'bullet'
gem 'erb_lint', require: false
gem 'rubocop-minitest', require: false
gem 'rubocop-performance', require: false
gem 'rubocop-rails', require: false
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem 'web-console', '>= 3.3.0'
# Display performance information such as SQL time and flame graphs for each request in your browser.
# Can be configured to work on production as well see: https://github.com/MiniProfiler/rack-mini-profiler/blob/master/README.md
gem 'rack-mini-profiler', '~> 3.3', require: false
end
group :test do
# Adds support for Capybara system testing and selenium driver
gem 'capybara', '>= 2.15', '< 4.0'
gem 'minitest-ci'
gem 'selenium-webdriver'
gem 'simplecov', require: false
gem 'simplecov-cobertura', require: false
end
group :itamae do
gem 'itamae'
gem 'net-scp', '>= 3.0.0'
gem 'resurrected_god'
end