-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathGemfile
More file actions
34 lines (25 loc) · 694 Bytes
/
Gemfile
File metadata and controls
34 lines (25 loc) · 694 Bytes
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_name| "https://github.com/#{repo_name}" }
gem "bundler", ">= 2.2", "< 3.0"
# Required for Ruby 3.3+ to fix runtime warnings
gem "base64"
gem "bigdecimal"
gem "mutex_m"
gem "database_cleaner", "~> 2.0"
gem "rake", ">= 10.0"
gem "rspec", "~> 3.0"
# gem "rspec-sqlimit", "~> 0.0.5"
gem "simplecov", "~> 0.16"
group :development, :test do
gem "rubocop", require: false
gem "rubocop-performance", require: false
gem "rubocop-rake", require: false
gem "rubocop-rspec", require: false
gem "dotenv"
gem "byebug"
gem "pry"
gem "pry-byebug"
gem "rails_sql_prettifier" # niceql
end
gemspec