-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
113 lines (101 loc) · 5.67 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
source 'https://rubygems.org'
ruby '3.0.1'
# Backend
gem 'rails', '7.0.4' # 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 'discard' # Soft deletes for ActiveRecord
gem 'sidekiq' # background processing for Ruby
gem 'bootsnap', require: false # Reduces boot times through caching; required in config/boot.rb
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby] # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'haml-rails'
gem 'simple_form'
gem 'turbo-rails'
gem 'stimulus-rails'
gem 'ferrum' #Ferrum::Browser to crawl url
gem 'active_storage_validations' # ActiveStorage Validator
gem "chartkick" # Create beautiful JavaScript charts with one line of Ruby
gem 'ransack'
gem 'doorkeeper', '5.4'
gem 'view_component'
gem 'jbuilder' # Build JSON APIs with ease
gem 'redis' # Use Redis adapter to run Action Cable in production
# gem 'kredis' # Use Kredis to get higher-level data types in Redis
# gem 'bcrypt' # Use Active Model has_secure_password
# Authentications & Authorizations
gem 'devise' # Authentication solution for Rails with Warden
gem 'pundit' # Minimal authorization through OO design and pure Ruby classes
# Assets
gem 'sprockets-rails' # The original asset pipeline for Rails
gem 'cssbundling-rails' # Bundle and process CSS
gem 'jsbundling-rails' # Bundle and transpile JavaScript
# gem 'image_processing' # Use Active Storage variants
# Translations
# gem 'devise-i18n' # Translations for Devise
# gem 'rails-i18n', '~> 6.0.0' # Translations for Rails
gem 'i18n-js', '3.9.0' # A library to provide the I18n translations on the Javascript
# 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
# gem 'web-console' # Use console on exceptions pages
end
group :development, :test do
# Debugging
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 'debug', platforms: %i[ mri mingw x64_mingw ] # Official debug
# Utilities
gem 'figaro' # Simple Rails app configuration
gem 'listen' # Listens to file modifications
gem 'letter_opener' # Preview mail in the browser instead of sending
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
# Testing
gem 'rspec-rails', '~> 5.0.2' # Rails testing engine
# Code Analysis
gem 'bullet' # help to kill N+1 queries and unused eager loading
gem 'brakeman', require: false # A static analysis security vulnerability scanner for Ruby on Rails applications
gem 'parser', '3.0.1.1' # Use correct parser version to avoid parser warnings
gem 'rubocop', require: false # A Ruby static code analyzer and formatter, based on the community Ruby style guide.
gem 'rubocop-rails', require: false # A RuboCop extension focused on enforcing Rails best practices and coding conventions.
gem 'rubocop-rspec', require: false # Code style checking for RSpec files
gem 'rubocop-performance', require: false # An extension of RuboCop focused on code performance checks.
gem 'undercover' # Report missing test coverage in new changes
gem 'danger' # Automated code review.
gem 'danger-eslint' # ESLint
gem 'danger-stylelint' # Stylelint
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.
gem 'danger-simplecov_json' # Report your Ruby app test suite code coverage in Danger.
gem 'danger-undercover' # Report missing test coverage of new changes in Danger
end
group :test do
gem 'rspec-retry' # Retry randomly failing rspec example.
gem 'capybara' # 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 'simplecov-json', require: false # JSON formatter for simplecov
gem 'simplecov-lcov', require: false # LCOV report for undercover
gem 'vcr' # Gem for recording test suite's HTTP interactions
gem 'timecop' # Gem for time travel
gem 'rails-controller-testing' # Gem that allow to use assigns as well ass assert_template
end
group :production do
gem 'rack-timeout' # Rack middleware which aborts requests that have been running for longer than a specified timeout.
end