-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathGemfile
More file actions
51 lines (39 loc) · 1.04 KB
/
Gemfile
File metadata and controls
51 lines (39 loc) · 1.04 KB
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
# frozen_string_literal: true
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
# Specify your gem's dependencies in strata.gemspec.
gemspec
gem "puma"
gem "sprockets-rails"
gem "importmap-rails"
# Start debugger with binding.b [https://github.com/ruby/debug]
# gem "debug", ">= 1.0.0"
group :development, :test do
gem "pg", "~> 1.1"
gem "pundit"
gem "guard-rspec", require: false
gem "rspec-rails", "~> 7.0.0"
gem "shoulda-matchers", "~> 6.0"
gem "faker"
gem "dotenv"
gem "rails-controller-testing"
# Lookbook
gem "lookbook", ">= 2.3.9"
gem "factory_bot_rails"
end
group :development do
# Linting
gem "rubocop-rails-omakase", require: false
gem "rubocop-rspec", require: false
gem "rubocop-yard", require: false
# Hot reloading for Lookbook
gem "listen"
gem "actioncable"
end
group :test do
gem "simplecov", require: false
gem "capybara"
gem "temporary_tables", require: false
gem "pundit-matchers"
end
gem "debug", "~> 1.11", groups: [ :test, :development ]