-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
172 lines (145 loc) Β· 6.09 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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '2.7.2'
# 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', '~> 4.3.8'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# See https://github.com/rails/execjs#readme for more supported runtimes
# gem 'mini_racer', platforms: :ruby
# Authentication solution
gem 'devise', '~> 4.8'
# Object oriented authorization for Rails applications
gem 'pundit', '~> 2.1'
# Doorkeeper is an OAuth 2 provider for Rails
gem 'doorkeeper', '~> 5.5', '>= 5.5.2'
# A generalized Rack framework for multiple-provider authentication
gem 'omniauth', '~> 2.0', '>= 2.0.4'
gem 'omniauth-facebook', '~> 8.0'
gem "omniauth-rails_csrf_protection", '~> 1.0'
# Forms made easy for Rails
gem 'simple_form', '~> 5.1'
# Search Engine Optimization (SEO) plugin for Ruby on Rails applications
gem 'meta-tags', '~> 2.14'
# Simple Ruby on Rails plugin for creating and managing a breadcrumb navigation
gem 'breadcrumbs_on_rails', '~> 4.1'
# Ancestry allows the records of a ActiveRecord model to be organized in a tree structure
gem 'ancestry', '~> 4.1'
# The fastest JSON parser and object serializer.
gem 'oj', '~> 3.11', '>= 3.11.8'
# An experimental Object-base Parallel Evaluation Environment.
gem 'oj_mimic_json', '~> 1.0', '>= 1.0.1'
# Use to easily generate fake data
gem 'faker', '~> 2.18'
# Attach cloud and local files in Rails applications
gem 'activestorage', '~> 5.2', '>= 5.2.3'
# Sass-powered version of Bootstrap 3
gem 'bootstrap-sass', '~> 3.4', '>= 3.4.1'
# Integrate SassC-Ruby into Rails.
gem 'sassc-rails', '~> 2.1', '>= 2.1.2'
# Provides jQuery and the jQuery-ujs driver for your Rails 4+ application
gem 'jquery-rails', '~> 4.4'
# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails', '~> 4.2'
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
gem 'turbolinks', '~> 5'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.5'
# Allows you to generate your JSON in an object-oriented and convention-driven manner
gem 'active_model_serializers', '~> 0.10.12'
# Use ENV vars in Rails
gem 'figaro', '~> 1.1', '>= 1.1.1'
# A lightweight templating engine for Ruby
gem 'haml', '~> 5.2', '>= 5.2.1'
gem 'haml-rails', '~> 2.0', '>= 2.0.1'
# Provides an easy-to-use interface for managing your data
gem 'rails_admin', '~> 2.1', '>= 2.1.1'
# Agnostic pagination in plain ruby
gem 'pagy', '~> 4.10', '>= 4.10.1'
# A rack middleware for throttling and blocking abusive requests
gem 'rack-attack', '~> 6.5'
# Use to tag a single model on several contexts
gem 'acts-as-taggable-on', '~> 8.1'
# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 4.0'
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# Use ActiveStorage variant
# gem 'mini_magick', '~> 4.8'
# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.1.0', require: false
group :development, :test do
# Strategies for cleaning databases
gem 'database_cleaner', '~> 2.0', '>= 2.0.1'
# Provides a framework and DSL for defining and using factories
gem 'factory_bot', '~> 6.2'
gem 'factory_bot_rails', '~> 6.2'
# Pry is a runtime developer console
gem 'pry', '~> 0.14.1'
# Extracting `assigns` and `assert_template` from ActionDispatch.
gem 'rails-controller-testing', '~> 1.0', '>= 1.0.5'
# Provides a pure Ruby implementation of the GNU readline C library
gem 'rb-readline', '~> 0.5.5'
# Set of matchers and helpers for testing API
gem 'rspec-json_expectations', '~> 2.2'
# Testing framework
gem 'rspec-rails', '~> 5.0', '>= 5.0.1'
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
end
group :development do
# Auto annotations
gem 'annotate', '~> 3.1', '>= 3.1.1', require: false
# Help to kill N+1 queries and unused eager loading
gem 'bullet', '~> 6.1', '>= 6.1.4'
# Test coverage
gem 'coveralls', require: false
# Code metric tool for rails codes
gem 'rails_best_practices', '~> 1.21', require: false
# Helps to keep the database in a good shape
gem 'active_record_doctor', '~> 1.8', require: false
# Code quality reporter
gem 'rubycritic', require: false
# Static analysis security vulnerability scanner for RoR applications
gem 'brakeman', require: false
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem 'web-console', '>= 3.3.0'
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'rack-mini-profiler', '~> 2.0'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
# Code style checking and code formatting tool
gem 'rubocop', require: false
gem 'rubocop-rake', require: false
gem 'rubocop-rails', require: false
gem 'rubocop-rspec', require: false
gem 'rubocop-faker', require: false
gem 'rubocop-performance', require: false
end
group :test do
# Provides RSpec- and Minitest-compatible one-liners to test common Rails functionality
gem 'shoulda-matchers', '~> 4.5', '>= 4.5.1'
# for launching cross-platform applications
gem 'launchy', '~> 2.5'
# RSpec matchers and Cucumber steps for testing JSON content
gem 'json_spec', '~> 1.1', '>= 1.1.5'
# RSpec matchers for database queries
gem 'db-query-matchers', '~> 0.10.0'
# Adds support for Capybara system testing and selenium driver
gem 'capybara', '>= 2.15'
gem 'selenium-webdriver'
# Easy installation and use of chromedriver to run system tests with Chrome
gem 'webdrivers'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]