-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathGemfile
More file actions
47 lines (44 loc) · 874 Bytes
/
Gemfile
File metadata and controls
47 lines (44 loc) · 874 Bytes
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
source 'https://rubygems.org'
# gems shared with puavo-rest
gem 'rails', '7.2.3'
gem 'sprockets'
gem 'sqlite3'
gem 'prawn'
gem 'net-ldap'
gem 'activeldap', require: 'active_ldap'
gem 'rmagick'
gem 'nokogiri'
gem 'concurrent-ruby'
gem 'sprockets-rails'
# puavo-web specific gems
gem 'pry'
gem 'unicorn'
gem 'gibberish'
gem 'http'
gem 'json'
gem 'sinatra-support', require: 'sinatra/support'
gem 'jwt'
gem 'jwe'
gem 'sshkey'
gem 'i18n-js'
gem 'byebug'
gem 'gettext_i18n_rails'
gem 'ttfunk'
gem 'gettext'
gem 'redis'
gem 'redis-client'
gem 'redis-namespace'
gem 'jquery-rails'
gem 'parse-cron'
gem 'webrick' # Rails needs this but it isn't marked as a dependency?
group :test do
gem 'capybara'
gem 'colorize'
gem 'cucumber'
gem 'cucumber-rails', require: false
gem 'greenletters'
gem 'rspec'
gem 'rspec-rails'
gem 'timecop'
gem 'webmock'
end