-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
90 lines (79 loc) · 4.45 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
source 'https://rubygems.org'
ruby '2.7.1'
# Backend
gem 'rails', '6.0.3.2' # Latest stable
gem 'pg' # Use Postgresql as database
gem 'puma' # Use Puma as the app server
gem 'mini_magick' # A ruby wrapper for ImageMagick or GraphicsMagick command line
gem 'pagy' # A pagination gem that is very light and fast
gem 'paranoia', '2.4.2' # Paranoia is a re-implementation of acts_as_paranoid for Rails 3 and Rails 4. Soft-deletion of records
gem 'ffaker' # A library for generating fake data such as names, addresses, and phone numbers.
gem 'fabrication' # Fabrication generates objects in Ruby. Fabricators are schematics for your objects, and can be created as needed anywhere in your app or specs.
gem 'sidekiq' # background processing for Ruby
gem 'bootsnap', require: false # Reduces boot times through caching; required in config/boot.rb
gem 'i18n-js', '3.5.1' # A library to provide the I18n translations on the Javascript
gem 'httparty' # A library to make http request easier
gem 'nokogiri' # A HTML parser library
gem 'kaminari' # A pagination library
gem 'fast_jsonapi' # JSON API Serializer
# Authentications & Authorizations
gem 'devise' # Authentication solution for Rails with Warden
gem 'pundit' # Minimal authorization through OO design and pure Ruby classes
gem 'doorkeeper' # OAuth 2 provider functionality to Ruby on Rails
# Templating
gem 'slim'
# Assets
gem 'webpacker', '~>5.2.0' # Transpile app-like JavaScript
gem 'sass-rails' # SASS
# Translations
# gem 'rails-i18n', '~> 6.0.0' # Translations for Rails
# gem 'devise-i18n' # Translations for Devise
group :development do
gem 'foreman' # Manage Procfile-based applications
gem 'better_errors' # Better error page for Rails and other Rack apps
gem 'binding_of_caller' # Retrieve the binding of a method's caller in MRI 1.9.2+
gem 'awesome_print' # Pretty print your Ruby objects with style -- in full color and with proper indentation
gem 'roadie-rails' # Mailers
gem 'spring' # Spring speeds up development by keeping your application running in the background.
gem 'spring-commands-rspec' # This gem implements the rspec command for Spring.
gem 'spring-watcher-listen', '2.0.1' # Makes Spring watch the filesystem for changes using Listen
end
group :development, :test do
gem 'bullet' # help to kill N+1 queries and unused eager loading
gem 'figaro' # Simple Rails app configuration
gem 'pry-rails' # Call 'binding.pry' anywhere in the code to stop execution and get a debugger console
gem 'pry-byebug' # Step by step debugging and stack navigation in Pry
gem 'listen', '3.1.5' # Listens to file modifications
gem 'letter_opener' # Preview mail in the browser instead of sending.
gem 'sassc-rails' # Gem to generate scss source maps.
gem 'brakeman', require: false # A static analysis security vulnerability scanner for Ruby on Rails applications
gem 'rspec-rails', '~> 4.0.1' # Rails testing engine
gem 'rubocop', require: false
gem 'rubocop-rails', require: false
gem 'danger' # Automated code review.
gem 'danger-eslint' # ESLint
gem 'scss_lint' # SCSS lint
gem 'danger-rubocop' # A Danger plugin for Rubocop.
gem 'danger-rails_best_practices' # Analyze code regarding best practices.
gem 'danger-reek' # Detect code smell.
gem 'danger-brakeman_scanner' # Security static analysis scanner in danger.
gem 'danger-suggester' # Suggest code changes based on configured code formatter.
end
group :test do
gem 'rspec-retry' # Retry randomly failing rspec example.
gem 'capybara', '>= 2.15' # Integration testing
gem 'webdrivers' # Run Selenium tests more easily with automatic installation and updates for all supported webdrivers
gem 'database_cleaner' # Use Database Cleaner
gem 'shoulda-matchers' # Tests common Rails functionalities
gem 'json_matchers' # Validate the JSON returned by your Rails JSON APIs
gem 'webmock' # Library for stubbing and setting expectations on HTTP requests in Ruby
gem 'simplecov', require: false # code coverage analysis tool for Ruby
gem 'vcr' # Gem for recording test suite's HTTP interactions
gem 'timecop' # Gem for time travel
gem 'rails-controller-testing' # Brings back assigns to your controller tests as well as assert_template to both controller and integration tests.
end
group :production do
gem 'rack-timeout' # Rack middleware which aborts requests that have been running for longer than a specified timeout.
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]