-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
44 lines (40 loc) · 1.46 KB
/
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
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
# Specify your gem's dependencies in stripe_billing.gemspec.
gemspec
group :development, :test do
# A Ruby gem to load environment variables from `.env`.
gem "dotenv-rails"
# A PostgreSQL client library for Ruby
gem "pg", "~> 1.3.1"
# Detect non-atomic interactions within DB transactions
gem "isolator"
# Sprockets Rails integration
gem "sprockets-rails"
# Ruby on Rails Logtail integration
gem "logtail-rails", "~> 0.1.6"
end
group :development do
# Use the Puma web server [https://github.com/puma/puma]
gem "puma", "~> 5.0"
# Use JavaScript with ESM import maps [https://github.com/rails/ -rails]
gem "importmap-rails", "~> 1.0"
# Hotwire's modest JavaScript framework [https://stimulus.hotwired.dev]
gem "stimulus-rails"
# Use Tailwind CSS [https://github.com/rails/tailwindcss-rails]
gem "tailwindcss-rails", "~> 2.0"
end
group :test do
# RSpec for Rails 5+
gem "rspec-rails", "~> 5.0.0"
# Simple one-liner tests for common Rails functionality
gem "shoulda-matchers", "~> 5.0"
# A library for setting up Ruby objects as test data
gem "factory_bot_rails"
# Library for stubbing and setting expectations on HTTP requests in Ruby
gem "webmock"
# Brings back `assigns` and `assert_template` to your Rails tests
gem "rails-controller-testing"
# A library for generating fake data such as names, addresses, and phone numbers
gem "faker"
end