-
Notifications
You must be signed in to change notification settings - Fork 28
/
Gemfile
149 lines (115 loc) · 3.84 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
source "https://rubygems.org"
# https://bundler.io/v1.5/gemfile.html
# https://guides.rubygems.org/patterns/#semantic-versioning
# Note: check Dockerfile for Version dependencies!
# Because we install gems with native extension before running bundle install
# This avoids recompiling them everytime the Gemfile.lock changes.
# The versions need to be kept in sync with the Gemfile.lock
# Avoid g++ dependency https://github.com/knu/ruby-domain_name/issues/3
# # unf is pulled in by the ruby-arc-client
gem "unf", ">= 0.2.0beta2"
gem "rails", "7.0.8.1"
gem "jsbundling-rails"
gem "bootstrap-sass"
gem "haml-rails"
gem "simple_form"
gem "redcarpet"
gem "spinners"
gem "friendly_id"
gem "high_voltage"
gem "simple-navigation" # Navigation menu builder
gem "font-awesome-sass", "~>4"
gem "kaminari"
gem "filewatcher"
gem "responders"
# # make it fancy with react
# gem 'react-rails', '~> 2.2.1'
# Database
gem "pg", "1.3.4"
gem "activerecord-session_store"
# Openstack
gem "net-ssh"
# ed25519 support for ssh keys
gem 'ed25519', '>= 1.2', '< 2.0'
gem 'bcrypt_pbkdf', '>= 1.0', '< 2.0'
gem "netaddr", "2.0.4"
gem "colorize"
gem "ruby-radius"
# Extras
gem "config", "~> 2.2.1"
# Prometheus instrumentation
gem "prometheus-client"
# Sentry client
gem "sentry-raven"
gem "httpclient" # The only faraday backend that handled no_proxy :|
# Automation
gem "lyra-client", git: "https://github.com/sapcc/lyra-client.git"
gem "arc-client", git: "https://github.com/sapcc/arc-client.git"
# auth
gem "monsoon-openstack-auth", git: "https://github.com/sapcc/monsoon-openstack-auth.git"
# gem 'monsoon-openstack-auth', path: '../monsoon-openstack-auth'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
# gem 'jbuilder', '~> 2.0'
# bundle exec rake doc:rails generates the API under doc/api.
gem "sdoc", "~> 2.6.0", group: :doc
# if you update puma check Dockerfile for Version dependencies!
# gem 'puma', '= 4.3.9', require: false
gem "puma", "6.4.3"
###################### PLUGINS #####################
# backlist plugins (global)
black_list = [""] # e.g. ['compute']
if ENV.key?("BLACK_LIST_PLUGINS")
ENV["BLACK_LIST_PLUGINS"].split(",").each { |plugin_name| black_list << plugin_name.strip }
end
# load all plugins except blacklisted plugins
Dir.glob("plugins/*").each do |plugin_path|
unless black_list.include?(plugin_path.gsub("plugins/", ""))
gemspec path: plugin_path
end
end
# email_service
gem "aws-sdk-ses"
gem "aws-sdk-sesv2"
gem "aws-sdk-cloudwatch"
######################## END #######################
group :api_client do
gem "elektron", git: "https://github.com/sapcc/elektron", tag: "v2.2.3"
# gem 'elektron', path: '../elektron'
end
# Avoid double log lines in development
# See: https://github.com/heroku/rails_stdout_logging/issues/1
group :production do
# We are not using the railtie because it comes to late,
# we are setting the logger in production.rb
gem "rails_stdout_logging", require: "rails_stdout_logging/rails"
end
group :development, :production do
# Views and Assets
gem "sass-rails"
end
group :development do
# Access an IRB console on exception pages or by using <%= console %> in views
gem "web-console"
end
group :development, :test do
gem "dotenv-rails"
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem "byebug"
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem "spring"
gem "foreman", "~> 0.87.0"
# Testing
gem "rspec-rails"
# gem 'factory_girl_rails', '~> 4.0'
gem "factory_bot_rails"
gem "database_cleaner"
gem "pry-rails"
gem "prettier"
gem "listen"
end
group :test do
gem "rails-controller-testing"
end
gem "faraday-httpclient", "~> 2.0"