-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
44 lines (38 loc) · 1.08 KB
/
Gemfile
File metadata and controls
44 lines (38 loc) · 1.08 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
source "https://rubygems.org"
MODULESDIR = File.dirname(__FILE__) + '/modules'
source "https://rubygems.org" do
# A few of the below are currently only required by certain modules.
# However, they are of general use (and perhaps not too heavyweight)
# and may be required by the core as well at some point.
gem 'psych', '~> 3.1.0' # prevent e.g. https://github.com/ruby/psych/issues/503
gem 'hierarchical_menu'
gem 'sinatra', '~> 2'
gem 'rack-contrib', '~> 2'
gem 'thin'
gem 'locale', '~> 2.1', '>= 2.1.3'
gem 'i18n_data'
gem 'sinatra-r18n', '~> 2.2.0'
gem 'uuid'
gem 'facets'
gem 'archive-tar-minitar'
gem 'rubyzip', '~> 1'
gem 'cronedit'
gem 'chronic_duration'
gem 'mail'
gem 'escape'
group :test, :development do
gem 'rspec', '~> 3.8'
gem 'rack-test', '~> 0.6.3'
gem 'json_spec', '~> 1.1', '>= 1.1.5'
end
# Modules
Dir.foreach(MODULESDIR) do |mod|
next if ['..', '.'].include? mod
gemfile = "#{MODULESDIR}/#{mod}/Gemfile"
if File.exists? gemfile
group mod.to_sym do
eval_gemfile gemfile
end
end
end
end