-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGemfile
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 '3.0.6'
# Backend
gem 'rails', '7.0.4.3' # 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' # A library to provide the I18n translations on the Javascript
gem 'jsonapi-serializer' # A fast JSON:API serializer for Ruby
gem 'rack-cors' # Provides support for CORS
gem 'graphql' # Ruby implementation of GraphQL
gem 'faraday-retry' # Faraday middleware for retrying failed requests
# Authentications & Authorizations
gem 'devise' # Authentication solution for Rails with Warden
gem 'pundit' # Minimal authorization through OO design and pure Ruby classes
gem 'doorkeeper' # An OAuth 2 provider for Ruby on Rails
# Assets
gem 'jsbundling-rails' # Use JSBundling for Rails
gem "sprockets-rails", require: 'sprockets/railtie' # Sprockets integration for Rails 4.0+
gem 'inline_svg' # Use Inline SVG for styling SVG with CSS
# Templating
gem 'slim' # light weight template engine
# 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
gem 'svgeez' # Gem for generating an SVG sprite from a folder of SVG icons.
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' # Listens to file modifications
gem 'letter_opener' # Preview mail in the browser instead of sending.
gem 'brakeman', require: false # A static analysis security vulnerability scanner for Ruby on Rails applications
gem 'rubocop', require: false
gem 'rubocop-rails', require: false
gem 'danger' # Automated code review.
gem 'danger-brakeman_scanner' # Security static analysis scanner in danger
gem 'danger-eslint' # Lint JavaScript code
gem 'danger-rails_best_practices' # Analyze code regarding best practices
gem 'danger-reek' # Detect code smell
gem 'danger-rubocop' # A Danger plugin for Rubocop
gem 'danger-slim_lint' # Lint slim files
gem 'danger-suggester' # Suggest code changes based on configured code
end
group :test do
gem 'rspec-rails', '>=4.0.0.beta2' # Rails testing engine
gem 'rspec-retry' # Retry randomly failing rspec example.
gem 'capybara', '>= 2.15' # Integration testing
gem 'selenium-webdriver' # Ruby bindings for Selenium
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
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]