-
Notifications
You must be signed in to change notification settings - Fork 3
/
Gemfile
52 lines (42 loc) · 970 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
43
44
45
46
47
48
49
50
51
52
# frozen_string_literal: true
source "https://rubygems.org"
ruby "~> 3.2.2"
gem "dotenv-rails", :groups => %i[ development test ]
gem "pg", "~> 1.2"
gem "puma", "~> 6.0"
gem "rails", "~> 7.2.1"
gem "sass-rails", ">= 6"
gem "turbolinks", "~> 5"
gem "webpacker", "6.0.0.rc.6"
gem "bootsnap", ">= 1.4.2", :require => false
gem "decent_exposure"
gem "devise"
gem "faraday"
gem "invisible_captcha"
gem "lastfm"
gem "musicbrainz", :git => "https://github.com/inkstak/musicbrainz.git"
gem "nokogiri"
gem "omniauth"
gem "omniauth-rails_csrf_protection"
gem "postmark-rails"
gem "premailer-rails"
gem "rspotify"
gem "rubocop"
gem "rubocop-performance"
gem "rubocop-rails"
group :production do
gem "bugsnag"
end
group :development, :test do
gem "byebug", :platforms => %i[mri mingw x64_mingw]
gem "rspec-rails"
end
group :development do
gem "sslocal"
gem "web-console", ">= 3.3.0"
end
group :test do
gem "capybara"
gem "capybara-email"
gem "webmock"
end