forked from EOL/publishing
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
92 lines (89 loc) · 2.7 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
90
91
92
source "https://rubygems.org"
# Because we are going to create many, many records!
gem 'activerecord-import'
# Used when parsing URLs (was included in Rails 4, but not 5)
gem 'addressable'
# Acts As List simplifies ordered lists of models:
gem 'acts_as_list'
# Parse Excel files:
gem 'creek'
# Cron jobs:
gem 'crono', '~> 1.1'
# Required to run bin/delayed_job:
gem 'daemons'
# Dalli store:
gem 'dalli'
# Background jobs:
gem 'delayed_job', '~> 4.1.8'
gem 'delayed_job_active_record'
# Store users securely:
gem 'devise', '~> 4.7'
# Enums with simple_form:
gem 'enum_help'
# Because ERB is just plain silly compared to Haml:
gem 'haml-rails'
# To aid in converting language codes:
gem 'iso-639'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder'
# Use jquery as the JavaScript library
gem 'jquery-rails'
# Pagination!
gem 'kaminari'
# Helps lock processes safely (maybe not REALLY needed for our purposes, but I feel safer with it):
gem 'lockfile'
# QUIET PLEASE MAKE IT STOP:
gem 'lograge'
# Use mysql as the database for Active Record
gem 'mysql2', '0.5.3'
# Used in parsing XML for new resources:
gem 'nokogiri'
# Debugging:
gem 'pry-rails'
# Authorization:
gem 'pundit'
# Bundle edge Rails instead: gem "rails", github: "rails/rails"
gem 'rails', '5.2.4.1'
# Image resizing and manipulation:
gem 'rmagick'
# Use SCSS for stylesheets
gem 'sass-rails'
# ElasticSearch:
gem 'searchkick', '~> 4' # Depends on elasticsearch, which needs to be running our version.
gem 'elasticsearch', '~> 6' # Needs to be in sync with the version of ES you are running.
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc'
# Making forms simpler:
gem 'simple_form'
# JS runtime
gem 'therubyracer', '0.12.3'
# Turbolinks makes following links in your web application faster. Read more:
# https://github.com/rails/turbolinks
gem 'turbolinks'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier'
# Find (in order to remove) emoji in strings:
gem 'unicode-emoji'
# Use Unicorn as the app server
gem 'unicorn'
# Our own crontab. Read https://github.com/javan/whenever foe details.
gem 'whenever', :require => false
group :development, :test do
# Yes, pry is kinda redundant with byebug, but it doesnt' do stepping, sooo:
gem 'byebug'
gem 'factory_bot_rails'
# Testing framework:
gem 'rspec-rails'
gem 'solargraph'
end
group :development do
# Required after Rails 5 upgrade:
gem 'listen'
# For benchmarking queries:
gem 'meta_request'
# Spring speeds up development by keeping your application running in the background. Read more:
# https://github.com/rails/spring
gem 'spring'
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console'
end