Project

General

Profile

Download (1.8 KB) Statistics
| Branch: | Tag: | Revision:
d5a28dec Lukas Zapletal
# foreman plugins import this file therefore __FILE__ cannot be used
FOREMAN_GEMFILE = __FILE__ unless defined? FOREMAN_GEMFILE
9415a01d Sam Kottler
source 'https://rubygems.org'
017e1049 Ohad Levy
180f62f3 Eric D. Helms
gem 'rails', '~> 6.1.6'
f848c95f mdellweg
gem 'rest-client', '>= 2.0.0', '< 3', :require => 'rest_client'
ffbe8b9b Ewoud Kohl van Wijngaarden
gem 'audited', '~> 5.0', '!= 5.1.0'
c85b0ce0 Ewoud Kohl van Wijngaarden
gem 'will_paginate', '~> 3.3'
c2210372 Ewoud Kohl van Wijngaarden
gem 'ancestry', '~> 4.0'
e8b6911d Ewoud Kohl van Wijngaarden
gem 'scoped_search', '>= 4.1.10', '< 5'
0070c1d9 Ondřej Ezr
gem 'ldap_fluff', '>= 0.5.0', '< 1.0'
5af03382 Evgeni Golov
gem 'apipie-rails', '>= 0.8.0', '< 2'
02eb6356 Evgeni Golov
gem 'apipie-dsl', '>= 2.6.2'
bad15051 Ondřej Ezr
# Pin rdoc to prevent updating bundled psych (https://github.com/ruby/rdoc/commit/ebe185c8775b2afe844eb3da6fa78adaa79e29a4)
# Rails 6.0 is incompatible with Psych 4, Rails 6.1 should work
fe777203 Ewoud Kohl van Wijngaarden
gem 'rdoc', RUBY_VERSION < '3.1' ? '< 6.4' : nil
de4a4c52 Eric D. Helms
gem 'rabl', '>= 0.15.0', '< 1'
61347251 Ewoud Kohl van Wijngaarden
gem 'oauth', '~> 1.0'
9a92ed90 Michael Moll
gem 'deep_cloneable', '>= 3', '< 4'
ce63b54f Michael Moll
gem 'validates_lengths_from_database', '~> 0.5'
d6c10e8d Ewoud Kohl van Wijngaarden
gem 'friendly_id', '>= 5.4.2', '< 6'
6eb130ef Michael Moll
gem 'secure_headers', '~> 6.3'
93ac254d Ewoud Kohl van Wijngaarden
gem 'safemode', '>= 1.4', '< 2'
bbca4738 Oleh Fedorenko
gem 'fast_gettext', '~> 2.1'
c7e160b4 Ondřej Ezr
gem 'gettext_i18n_rails', '~> 1.8'
4ce57261 Ewoud Kohl van Wijngaarden
gem 'rails-i18n', '~> 7.0'
3088e641 Eric D. Helms
gem 'logging', '>= 1.8.0', '< 3.0.0'
f8ba14cb Evgeni Golov
gem 'fog-core', '~> 2.1'
4a8834e4 Dominic Cleal
gem 'net-scp'
d4569bb4 Ewoud Kohl van Wijngaarden
gem 'net-ssh'
d06c7e56 Ohad Levy
gem 'net-ldap', '>= 0.16.0'
0f791ba5 Daniel Lobato Garcia
gem 'net-ping', :require => false
c03c4a44 Eric D. Helms
gem 'activerecord-session_store', '>= 2.0.0', '< 3'
6cc3bb9e Ondřej Ezr
gem 'sprockets', '~> 4.0'
b8139123 Michael Moll
gem 'sprockets-rails', '~> 3.0'
ce63b54f Michael Moll
gem 'responders', '~> 3.0'
507d0423 Ewoud Kohl van Wijngaarden
gem 'roadie-rails', '~> 3.0'
03510341 Lukas Zapletal
gem 'deacon', '~> 1.0'
18934f16 Tomer Brisker
gem 'mail', '~> 2.7'
1c6c5d4c Ewoud Kohl van Wijngaarden
gem 'sshkey', '~> 2.0'
1cf4147a Leos Stejskal
gem 'dynflow', '>= 1.6.5', '< 2.0.0'
9be0ad74 Michael Moll
gem 'daemons'
b58d736e Lukas Zapletal
gem 'bcrypt', '~> 3.1'
1ed59c63 Daniel Lobato Garcia
gem 'get_process_mem'
308618a1 Ewoud Kohl van Wijngaarden
gem 'rack-cors', '~> 1.1', require: 'rack/cors'
ab0aa35a Evgeni Golov
gem 'jwt', '>= 2.2.2', '< 3.0'
952e1614 Evgeni Golov
gem 'graphql', '~> 1.13.0'
d1e18585 Timo Goebel
gem 'graphql-batch'
d5226015 Dominic Cleal
1f5980de Ewoud Kohl van Wijngaarden
# A bundled gem since Ruby 3.0
gem 'rss' if RUBY_VERSION >= '3.0'

d5a28dec Lukas Zapletal
Dir["#{File.dirname(FOREMAN_GEMFILE)}/bundler.d/*.rb"].each do |bundle|
c86ed9c6 Michael Moll
instance_eval(Bundler.read_file(bundle))
22335095 Ohad Levy
end