-
Notifications
You must be signed in to change notification settings - Fork 72
Expand file tree
/
Copy pathGemfile
More file actions
64 lines (51 loc) · 2.03 KB
/
Gemfile
File metadata and controls
64 lines (51 loc) · 2.03 KB
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
source ENV['RUBYGEMS_URL'] || "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
# Ultimately we want to deploy on 3.x but we don't want to mandate it here
# ruby '3.0'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 8.1.0'
# Use anycable instead of actioncable
gem 'anycable-rails', '~> 1.6'
gem 'anycable', '~> 1.6'
# The following gems are installed in the OpenC3 base container openc3-base
# which this Dockerfile depends on: puma, redis, nokogiri
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
# gem 'jbuilder', '~> 2.7'
# Use prometheus-client for /metrics
gem 'prometheus-client', '~> 4.0'
# Use Active Model has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.9.3', require: false
# Use Rack CORS for handling Cross-Origin Resource Sharing (CORS), making cross-origin AJAX possible
gem 'rack-cors', '~> 3.0'
# Use gem to get JSON logs
gem 'rails_semantic_logger', '~> 4.17'
# For downloading files to the server (e.g. plugin install from the app store)
gem 'down', '~> 5.4', '>= 5.4.2'
# Only define development/test gems if not in production build
# Set SKIP_DEV_GEMS=1 in Dockerfile to exclude these groups entirely
unless ENV['SKIP_DEV_GEMS']
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platforms: [:mri, :windows]
gem 'rspec-rails', '~> 8.0'
gem 'simplecov', '~> 0.22'
gem 'simplecov-cobertura', '~> 3.0'
gem 'rexml', '~> 3.4'
# simplecov_json_formatter formatter supports SonarQube
# gem 'simplecov_json_formatter', '~> 0.1'
end
group :test do
gem 'mock_redis', '~> 0.47'
end
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data'
if ENV['OPENC3_DEVEL']
gem 'openc3', :path => ENV['OPENC3_DEVEL']
elsif ENV['OPENC3_PATH']
gem 'openc3', :path => ENV['OPENC3_PATH']
else
gem 'openc3', '7.0.0.pre.rc4'
end