-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
34 lines (29 loc) · 830 Bytes
/
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
# frozen_string_literal: true
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
# Specify your gem's dependencies in fox_tail.gemspec.
gemspec
gem "cssbundling-rails", "~> 1.1"
gem "faker"
gem "jsbundling-rails", "~> 1.1"
gem "lookbook", ">= 2.0.5"
gem "puma"
gem "rails", "~> 7.0"
gem "sprockets-rails", "~> 3.4"
gem "sqlite3"
gem "view_component", "~> 3.0"
group :development, :test do
gem "capybara"
gem "faraday"
gem "listen"
gem "rubocop", require: false
gem "rubocop-minitest", require: false
gem "standard", require: false
gem "rubocop-md", require: false
gem "rubocop-rails", require: false
gem "rubocop-capybara", require: false
gem "brakeman"
gem "rubyzip"
end
# Start debugger with binding.b [https://github.com/ruby/debug]
gem "debug", ">= 1.0.0"