-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathGemfile
More file actions
43 lines (36 loc) · 822 Bytes
/
Gemfile
File metadata and controls
43 lines (36 loc) · 822 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
35
36
37
38
39
40
41
42
43
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby file: ".ruby-version"
gem "activerecord", "~> 8.1.0"
gem "actionpack", "~> 8.1.0"
gem "actionview", "~> 8.1.0"
gem "railties", "~> 8.1.0"
gem "activesupport", "~> 8.1.0"
gem "secure_headers"
gem "sprockets-rails"
gem "pg"
gem "puma"
gem "jbuilder"
gem "sassc-rails"
gem 'bootstrap'
gem 'jquery-rails'
gem 'bootstrap-icons', require: "bootstrap_icons"
gem 'appsignal'
gem 'ostruct'
# Authentication
gem 'omniauth'
gem 'omniauth-github'
gem 'omniauth-rails_csrf_protection'
gem 'bcrypt'
# Payment processing
gem 'stripe'
group :test do
gem "rails-controller-testing"
gem "mocha"
gem "factory_bot_rails"
gem "webmock"
gem "minitest", "~> 6"
end
group :development, :test do
gem "dotenv-rails", "~> 3.2"
end