-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile.tt
90 lines (67 loc) · 2.21 KB
/
Gemfile.tt
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
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "<%= RUBY_VERSION %>"
# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
gem "rails", "~> <%= Rails.version[/\d+\.\d+\.\d+/] %>"
# The original asset pipeline for Rails [https://github.com/rails/sprockets-rails]
<%= gemfile_entry "sprockets-rails" -%>
# Use postgresql as the database for Active Record
<%= gemfile_entry "pg" -%>
# Use the Puma web server [https://github.com/puma/puma]
<%= gemfile_entry "puma" -%>
# Use JavaScript with ESM import maps [https://github.com/rails/importmap-rails]
<%= gemfile_entry "importmap-rails" -%>
# Hotwire's SPA-like page accelerator [https://turbo.hotwired.dev]
<%= gemfile_entry "turbo-rails" -%>
# Hotwire's modest JavaScript framework [https://stimulus.hotwired.dev]
<%= gemfile_entry "stimulus-rails" -%>
# Build JSON APIs with ease [https://github.com/rails/jbuilder]
<%= gemfile_entry "jbuilder" -%>
# Use Redis adapter to run Action Cable in production
<%= gemfile_entry "redis" -%>
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data", platforms: %i[ mingw mswin x64_mingw jruby ]
# Reduces boot times through caching; required in config/boot.rb
<%= gemfile_entry "bootsnap" -%>
group :development, :test do
gem "byebug"
gem "debug", platforms: %i[ mri mingw x64_mingw ]
<%= gemfile_entry "web-console" -%>
<%= gemfile_entry "capybara" -%>
<%= gemfile_entry "selenium-webdriver" -%>
<%= gemfile_entry "webdrivers" -%>
# Utilidades
gem "letter_opener"
# Segurança
gem 'brakeman'
# Teste
gem 'rspec-rails', '~> 6.0.0'
gem "shoulda-context"
gem "shoulda-matchers"
gem 'faker'
gem "factory_bot_rails"
end
# Essencial
gem "sidekiq"
gem "devise", "~> 4.9"
# Configuração
gem 'figaro'
# Utilidades
gem 'acts_as_paranoid'
gem 'audited'
gem 'exception_notification'
gem 'whenever'
gem 'cocoon'
gem 'kaminari'
gem 'auto_increment'
gem 'wicked_pdf'
gem 'wkhtmltopdf-binary'
gem 'protokoll'
gem 'seed_migration'
gem "array_enum"
gem "enum_attributes_validation"
gem 'carrierwave', '>= 3.0.0.rc', '< 4.0'
gem "recaptcha"
# Segurança
gem 'rack-attack'
gem 'cancancan'