This repository has been archived by the owner on May 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGemfile
157 lines (120 loc) · 4.9 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
151
152
153
154
155
156
157
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '2.6.3'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 5.2.3'
# Use postgresql as the database for Active Record
gem 'pg', '>= 0.18', '< 2.0'
# Use Puma as the app server
gem 'puma', '~> 3.12.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '~> 4.1.0'
# See https://github.com/rails/execjs#readme for more supported runtimes
gem 'mini_racer', '~> 0.2.0', platforms: :ruby
# Turbolinks makes navigating your web application faster.
# Read more: https://github.com/turbolinks/turbolinks
gem 'turbolinks', '~> 5.2.0'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.8.0'
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '~> 1.4.0', require: false
gem 'bootstrap-sass', '~> 3.4.0'
# Use SCSS for stylesheets.
# Uses the C implementation of SASS for better performance.
gem 'sassc-rails', '~> 2.1.0'
# Required by bootstrap
gem 'jquery-rails', '~> 4.3.0'
# Required by the bootstrap_form_for in .erb
gem 'bootstrap_form', '~> 4.2.0'
# Used for user authentication
gem 'devise', '~> 4.6.0'
# Used to show donations across multiple pages
gem 'will_paginate', '~> 3.1.0'
# USed to apply bootstrap themes to will_paginate tags.
gem 'will_paginate-bootstrap4', '~> 0.2.0'
# Used for continuous integration
gem 'travis', '~> 1.8.0'
# Helper gem used to verify a .travis.yml file is valid
gem 'travis-lint', '~> 2.0.0'
# Used to support image upload stored on Cloudinary's servers.
gem 'activestorage-cloudinary-service', '~> 0.2.0'
gem 'cloudinary', '~> 1.11.0', require: false
# Used by Active Storage for image analysis and manipulation
gem 'image_processing', '~> 1.9.0'
gem 'mini_magick', '~> 4.9.0'
# A static code analyzer for Ruby
gem 'rubocop', '~> 0.68.0'
# A performance analyzer for user with Rubocop
gem 'rubocop-performance', '~> 1.2.0'
# Used for search engine optimization.
gem 'meta-tags', '~> 2.11.0'
# Used to soft delete donations, so users can view their history.
gem 'discard', '~> 1.1.0'
# Used to access PostgreSQL's native text search features. For the search bar.
gem 'pg_search', '~> 2.1.0'
# Used to pass Ruby variables to Javascript.
gem 'gon', '~> 6.2.0'
# Used for user authorization, ie different user roles. (Business and admin.)
gem 'cancancan', '~> 3.0.0'
# Used to create an admin dashboard, for admin users only (ie devs).
gem 'rails_admin', '~> 1.4.0'
# Used for performance monitoring in production.
gem 'newrelic_rpm', '~> 6.3.0'
group :development, :test do
# Call 'byebug' anywhere in the code to
# stop execution and get a debugger console
gem 'byebug', '~> 11.0.0', platforms: %i[mri mingw x64_mingw]
end
group :development do
# Access an interactive console on exception pages or
# by calling 'console' anywhere in the code.
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'web-console', '~> 3.7.0'
# Spring speeds up development by keeping your application
# running in the background. Read more: https://github.com/rails/spring
gem 'spring', '~> 2.0.0'
gem 'spring-watcher-listen', '~> 2.0.0'
# Used to audit the Gemfile for security vulnerabilities
gem 'bundler-audit', '~> 0.6.0'
# Used for better, and interactive, error messages
gem 'better_errors', '~> 2.5.0'
gem 'binding_of_caller', '~> 0.8.0'
# Used to automatically generate entity-relationship diagram
gem 'rails-erd', '~> 1.5.0'
# Used to annotate source code with comments describing the datbase schema
gem 'annotate', '~> 2.7.0'
# Used to display a performance badge on each page, during development only.
gem 'rack-mini-profiler', '~> 1.0.0'
# Used by rack mini profiler for memory profiling
gem 'memory_profiler', '~> 0.9.0'
# Used by rack mini profiler for call stack profiling
gem 'flamegraph', '~> 0.9.0'
gem 'stackprof', '~> 0.2.0'
# A static code analyzer for Rails
gem 'rails_best_practices', '~> 1.19.0'
# Another static code analyzer for Rails
gem 'brakeman', '~> 4.5.0'
# Another static code analyzer for Ruby.
gem 'rubycritic', '~> 4.0.0', require: false
# Used to profiler the database models,
# and see if any columns should be indexed.
gem 'lol_dba', '~> 2.1.0'
# Used to detect database queries that could be optimized.
gem 'bullet', '~> 6.0.0'
# Used to suggest performance improvements for Ruby.
gem 'fasterer', '~> 0.5.0'
# Used to detect unused or unreachable routes.
gem 'traceroute', '~> 0.8.0'
# Used for benchmarking.
gem 'derailed_benchmarks', '~> 1.3.0'
end
group :test do
gem 'webdrivers', '~> 3.9.0'
# Adds support for Capybara system testing and selenium driver
gem 'capybara', '~> 3.19.0'
# Used to provide test coverage.
gem 'simplecov', '~> 0.16.0', require: false
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]