-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
68 lines (60 loc) · 1.7 KB
/
Gemfile
File metadata and controls
68 lines (60 loc) · 1.7 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# frozen_string_literal: true
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
gem "rails", "~> 8.0"
gem "rails-i18n"
# Use Puma as the app server
gem "puma"
group :development do
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem "web-console", ">= 3.3.0"
gem "listen", "< 3.2", ">= 3.0.5"
end
group :test do
# Adds support for Capybara system testing and selenium driver
gem "capybara", ">= 2.15", "< 4.0"
gem "selenium-webdriver"
end
##############################################################################
#
# Otis
#
##############################################################################
gem "accept_language"
gem "canister"
gem "checkpoint"
gem "csv"
gem "dotenv-rails"
gem "ettin"
gem "jira-ruby", "~> 2.3"
gem "kaminari"
gem "keycard", github: "mlibrary/keycard"
gem "maxmind-geoip2"
gem "trilogy"
gem "ostruct"
gem "ransack"
# Freeze Sequel version number because of Checkpoint prepared statement issues
gem "sequel"
# ActiveModel extension that automatically strips all attributes of leading and trailing whitespace before validation
gem "strip_attributes"
gem "whois"
# Unofficial but more up-to-date fork, check status at https://github.com/jarthod/whois-parser
gem "whois-parser", github: "jarthod/whois-parser"
gem "zinzout"
group :development, :test do
# Futz with ENV in a block
gem "climate_control"
gem "debug"
gem "factory_bot_rails"
gem "faker"
gem "i18n-tasks"
gem "rspec-rails"
gem "simplecov"
gem "simplecov-lcov"
gem "standard"
# Flux capacitor goodies for testing code that uses `Time.now`
gem "timecop"
end
group :test do
gem "rails-controller-testing"
end