-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
42 lines (34 loc) · 888 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
35
36
37
38
39
40
41
42
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
# Specify your gem's dependencies in bali.gemspec.
gemspec
gem 'bulma-rails', '~> 0.9.3'
gem 'caxlsx', '~> 4.1'
gem 'dartsass-rails'
gem 'device_detector'
gem 'sprockets-rails'
gem 'lookbook'
gem 'ransack'
gem 'simple_command'
gem 'view_component'
gem 'view_component-contrib'
# Start debugger with binding.b [https://github.com/ruby/debug]
gem 'debug', '>= 1.0.0'
group :development do
gem 'puma', '< 7'
gem 'rubocop', '~> 1', require: false
gem 'rubocop-rails', '~> 2'
end
group :test do
gem 'capybara', '~> 3'
gem 'simplecov', require: false
gem 'sqlite3', '~> 2.0'
end
group :development, :test do
gem 'dotenv'
gem 'importmap-rails', '~> 2.0'
gem 'rspec-rails', '~> 7'
gem 'stimulus-rails', '~> 1.3'
gem 'turbo-rails', '~> 2'
end