-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
74 lines (68 loc) · 1.41 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
source 'http://rubygems.org'
gem 'activeresource'
gem 'json'
gem 'multi_json'
gem 'mysql2'
gem 'rails', '~> 6.0'
gem 'aws-sdk-ec2'
gem 'aws-sdk-ssm'
gem 'bcrypt_pbkdf'
gem 'bootsnap'
gem 'builder'
gem 'capistrano', '3.14.1'
gem 'capistrano-rails'
gem 'ed25519'
gem 'exception_notification'
gem 'httpclient'
gem 'irb'
gem 'jquery-rails'
gem 'lograge'
gem 'logstash-event'
# New lib does not use One Time Server
gem 'net-ldap'
gem 'net-smtp'
gem 'nokogiri'
gem 'orchard'
gem 'puma'
gem 'rack-cache'
gem 'rest-client'
gem 'sprockets'
gem 'thin'
gem 'uc3-ssm', git: 'https://github.com/CDLUC3/uc3-ssm.git', tag: '1.0.3'
gem 'uglifier'
gem 'unicode'
gem 'uuidtools'
gem 'will_paginate'
group :development do
gem 'web-console'
end
group :development, :test, :docker do
gem 'byebug'
gem 'colorize'
gem 'debase', '0.2.5.beta2'
gem 'launchy'
gem 'listen'
gem 'pry'
gem 'pry-rails'
gem 'pry-remote', require: 'pry-remote'
gem 'rspec-rails'
gem 'rubocop'
# gem 'ruby-debug-ide'
gem 'ruby-prof'
end
group :test do
gem 'capybara'
gem 'capybara-webmock'
gem 'database_cleaner'
gem 'diffy'
gem 'equivalent-xml'
# rails 4.2, do not unpeg the following line
gem 'factory_bot_rails'
gem 'simplecov'
gem 'simplecov-console'
# Run Selenium tests more easily with automatic installation and updates
# for all supported webdrivers.
gem 'selenium-webdriver', '~> 4.11'
# gem 'webdrivers'
gem 'webmock'
end