forked from shakacode/react-webpack-rails-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
108 lines (85 loc) · 3.01 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
# frozen_string_literal: true
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "2.7.5"
gem "react_on_rails", "12.5.2"
gem "shakapacker", "6.0.2"
# Bundle edge Rails instead: gem "rails", github: "rails/rails"
gem "listen"
gem "rails", "~> 6.1.4"
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", "3.3.3"
# 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"
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# mini_racer is probably faster than therubyracer
gem "mini_racer", platforms: :ruby
gem "autoprefixer-rails"
gem "awesome_print"
# 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-rspec", "~> 2.7"
gem 'rubocop-rails'
gem "rubocop-performance", "~> 1.13"
# Critical that require: false be set! https://github.com/brigade/scss-lint/issues/278
gem "brakeman", require: false
gem "bundler-audit", require: false
gem "scss_lint", require: false
################################################################################
# Favorite debugging gems
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", require: false
gem "database_cleaner"
gem "generator_spec"
gem "launchy"
gem "rails_best_practices"
gem "rspec-rails"
gem "selenium-webdriver"
gem "webdrivers", "3.9.4"
end