-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGemfile
89 lines (84 loc) · 2.97 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
source "https://rubygems.org"
# Bundle edge Rails instead: gem "rails", github: "rails/rails"
gem 'rails', '5.2.6'
# "Interal" EOL gems:
gem 'eol_terms', git: 'https://github.com/EOL/eol_terms.git', branch: 'main'
# Because we are going to create many, many records!
gem 'activerecord-import', '~> 1.3'
# Used when parsing URLs (was included in Rails 4, but not 5)
gem 'addressable', '~> 2.8'
# Acts As List simplifies ordered lists of models:
gem 'acts_as_list', '~> 1.0'
# Parse Excel files:
gem 'creek', '~> 2.5'
# Required to run bin/delayed_job:
gem 'daemons', '~> 1.4'
# mem_cache_store needs this:
gem 'dalli', '~> 2.7'
# Background jobs:
gem 'delayed_job', '~> 4.1'
gem 'delayed_job_active_record', '~> 4.1'
# Store users securely:
gem 'devise', '~> 4.9'
# Enums with simple_form:
gem 'enum_help', '~> 0.0'
# Because ERB is just plain silly compared to Haml:
gem 'haml-rails', '~> 2.0'
# To aid in converting language codes:
gem 'iso-639', '~> 0.3'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.11'
# Use jquery as the JavaScript library
gem 'jquery-rails', '~> 4.4'
# Pagination!
gem 'kaminari', '~> 1.2'
# Helps lock processes safely (maybe not REALLY needed for our purposes, but I feel safer with it):
gem 'lockfile', '~> 2.1'
# QUIET PLEASE MAKE IT STOP:
gem 'lograge', '~> 0.11'
# Use mysql as the database for Active Record
gem 'mysql2', '0.5.3'
# Used in parsing XML for new resources:
gem 'nokogiri', '~> 1.13'
# Debugging:
gem 'pry-rails', '~> 0.3'
# Authorization:
gem 'pundit', '~> 2.1'
# Image resizing and manipulation:
gem 'rmagick', '~> 4.2'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 6.0'
# ElasticSearch:
gem 'searchkick', '~> 4.4' # Depends on elasticsearch, which needs to be running our version.
gem 'elasticsearch', '~> 6.8' # Needs to be in sync with the version of ES you are running.
# Making forms simpler:
gem 'simple_form', '~> 5.1'
# Turbolinks makes following links in your web application faster. Read more:
# https://github.com/rails/turbolinks
gem 'turbolinks', '~> 5.2'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '~> 4.2'
# Use Unicorn as the app server
gem 'unicorn', '~> 6.1'
gem 'unicorn-worker-killer', '~> 0.4'
# Our own crontab. Read https://github.com/javan/whenever foe details.
gem 'whenever', '~> 1.0', require: false
group :development, :test do
# Yes, pry is kinda redundant with byebug, but it doesnt' do stepping, sooo:
gem 'byebug', '~> 11.1'
# Testing framework:
gem 'rspec-rails', '~> 5.0', '>= 5.0.1'
gem 'factory_bot_rails', '~> 6.2'
gem 'solargraph', '~> 0.40'
end
group :development do
# Required after Rails 5 upgrade:
gem 'listen', '~> 3.7'
# For benchmarking queries:
gem 'meta_request', '~> 0.7'
# Spring speeds up development by keeping your application running in the background. Read more:
# https://github.com/rails/spring
gem 'spring', '~> 2.1'
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console', '~> 3.7'
end