forked from cbothner/readback
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
150 lines (129 loc) · 3.24 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
# frozen_string_literal: true
source 'https://rubygems.org'
##################
# Infrastructure #
##################
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 6.1.3.2'
# Heroku needs 12factor for logs and assets
gem 'rails_12factor', group: :production
# Use postgresql as the database for Active Record
gem 'pg'
# Don't use WEBBrick because it's slow
gem 'puma'
# Cache
gem 'dalli'
gem 'kgio'
gem 'rack-cache'
# Queue
gem 'redis', '~> 3.0'
gem 'sidekiq'
# Monitoring
gem 'newrelic_rpm', group: :production
gem 'sentry-raven'
# File Storage
gem 'aws-sdk-s3', require: false
gem 'mini_magick'
# SSH
gem 'net-ssh'
#gem 'mimemagic', '~> 0.3.10'
#gem 'mimemagic', github: 'mimemagicrb/mimemagic', ref: '01f92d86d15d85cfd0f20dabd025dcbd36a8a60f'
#########
# Other #
#########
gem 'icalendar'
##########
# Models #
##########
# Decorator pattern
gem 'draper'
# What are English times?
gem 'chronic'
# What are recurring times?!
gem 'ice_cube'
#####################
# View interpreters #
#####################
# Use HAML
gem 'haml'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails', '~> 4.1'
# Render PDFs with LaTeX
gem 'rails-latex'
# For markdown interpretation in show notes
gem 'redcarpet'
# For so I only have to write the emails once.
gem 'maildown'
##############
# JavaScript #
##############
# Webpacker for the npm ecosystem
gem 'webpacker', '~> 3.5'
# Use jquery as the JavaScript library
gem 'jquery-rails'
gem 'jquery-ui-rails'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.0'
gem 'json'
########################
# Forms and Validation #
########################
gem 'best_in_place', '= 3.0.1'
gem 'jc-validates_timeliness'
####################################
# Authentication and Authorization #
####################################
gem 'authority'
gem 'devise', '~> 4.0'
gem 'encrypted_strings'
gem 'rolify'
##############
# Production #
##############
group :production do
gem 'lograge'
gem 'memcachier'
end
###############
# Development #
###############
group :development do
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console'
end
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'capybara'
gem 'factory_bot_rails'
gem 'rspec-rails'
# To identify database inefficiencies like n+1 queries and unused eager
# loading
gem 'bullet'
gem 'seed_dump'
gem 'guard'
gem 'guard-rspec', require: false
# Preview emails!
gem 'letter_opener'
end
# To make console access better in development and on the production server
gem 'awesome_print'
gem 'table_print'
###########
# Testing #
###########
group :test do
gem 'faker'
gem 'shoulda-matchers'
gem 'simplecov', require: false
gem 'webdrivers'
end
ruby '2.5.0'