-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGemfile
41 lines (28 loc) · 857 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
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.2.2'
# Specify your gem's dependencies in locale_ninja.gemspec.
gemspec
gem 'puma'
gem 'sqlite3'
gem 'sprockets-rails'
gem 'octokit', '~> 5.0', require: false
gem 'httparty', '~> 0.21.0', require: false
group :development, :test do
gem 'pry-byebug'
gem 'rack-mini-profiler'
gem 'rspec-rails', '~> 6.0.0'
gem 'rubocop', require: false
gem 'rubocop-performance', require: false
gem 'rubocop-rails', require: false
gem 'rubocop-rspec', require: false
# used with rack-mini-profiler to generate flamegraph
gem 'stackprof'
end
group :development do
gem 'better_errors'
end
# Start debugger with binding.b [https://github.com/ruby/debug]
# gem "debug", ">= 1.0.0"
gem 'tailwindcss-rails', '~> 2.0'