-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
khiav reoy
committed
Dec 24, 2023
1 parent
54ab569
commit b36bc58
Showing
2 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
source 'https://rubygems.org' | ||
|
||
# Specify your gem's dependencies in pluck_all.gemspec | ||
|
||
gem 'sqlite3', '~> 1.4.1' | ||
gem 'zeitwerk' | ||
gem 'activerecord', '~> 7.1.2' | ||
gem 'rails_compatibility', '~> 0.0.7' | ||
|
||
gem 'carrierwave', '~> 0.11.0' | ||
gem 'mimemagic', '< 0.4.3' # Used by carrierwave gem | ||
|
||
# gem 'globalize', '~> 6.0.1' # TODO: wait for globalize to support Rails 7. | ||
|
||
group :test do | ||
gem 'simplecov', '< 0.18' | ||
end | ||
|
||
gemspec path: '../' |