-
Notifications
You must be signed in to change notification settings - Fork 384
/
Gemfile
113 lines (87 loc) · 3.14 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
# frozen_string_literal: true
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "3.3.3"
gem "react_on_rails", "14.0.3"
gem "shakapacker", "8.0.0"
# Bundle edge Rails instead: gem "rails", github: "rails/rails"
gem "listen"
gem "rails", "~> 7.1"
gem "pg"
gem "puma"
# Use SCSS for stylesheets
gem "sass-rails"
# Use Uglifier as compressor for JavaScript assets
gem "uglifier"
# Use CoffeeScript for .js.coffee assets and views
gem "coffee-rails"
# Turbolinks makes following links in your web application faster.
# Read more: https://github.com/turbolinks/turbolinks
# Get turbolinks from npm!
# gem 'turbolinks', '>= 5.0.0.beta2'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem "jbuilder"
gem "redis", "~> 4.0"
# bundle exec rake doc:rails generates the API under doc/api.
gem "sdoc", group: :doc
# Use ActiveModel has_secure_password
# gem "bcrypt", "~> 3.1.7"
# Use Rails Html Sanitizer for HTML sanitization
gem "rails-html-sanitizer"
gem "autoprefixer-rails"
gem "awesome_print"
# Needed until Ruby 3.3.4 is released https://github.com/ruby/ruby/pull/11006
# Related issue: https://github.com/ruby/net-pop/issues/26
# TODO: When Ruby 3.3.4 is released, upgrade Ruby and remove this line
gem "net-pop", github: "ruby/net-pop"
gem "redcarpet"
# jquery as the JavaScript library has been moved under /client and managed by npm.
# It is critical to not include any of the jquery gems when following this pattern or
# else you might have multiple jQuery versions.
group :development do
# Access an IRB console on exceptions page and /console in development
gem "web-console"
end
group :development, :test do
################################################################################
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem "spring"
gem "spring-commands-rspec"
################################################################################
# Manage application processes
gem "factory_bot_rails"
gem "foreman"
################################################################################
# Linters and Security
gem "rubocop", "1.24.1", require: false
gem "rubocop-performance", "~> 1.13"
gem "rubocop-rails"
gem "rubocop-rspec", "~> 2.7"
# Critical that require: false be set! https://github.com/brigade/scss-lint/issues/278
gem "scss_lint", require: false
################################################################################
# Favorite debugging gems
gem "debug", ">= 1.0.0"
gem "pry"
gem "pry-byebug"
gem "pry-doc"
gem "pry-rails"
gem "pry-rescue"
gem "pry-stack_explorer"
################################################################################
# Color console output
gem "rainbow"
end
group :test do
gem "capybara"
gem "capybara-screenshot"
gem "coveralls_reborn", "~> 0.25.0", require: false
gem "database_cleaner"
gem "generator_spec"
gem "launchy"
gem "rails_best_practices"
gem "rspec-rails", "~> 6.0.0"
gem "selenium-webdriver", "~> 4"
end
gem "stimulus-rails", "~> 1.2"
gem "turbo-rails", "~> 1.4"