-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
78 lines (56 loc) · 1.94 KB
/
Gemfile
File metadata and controls
78 lines (56 loc) · 1.94 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "3.0.2"
# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
gem "rails", "~> 7.0.4"
# The original asset pipeline for Rails [https://github.com/rails/sprockets-rails]
gem "sprockets-rails"
# Use the Puma web server [https://github.com/puma/puma]
gem "puma", "~> 5.0"
# Use JavaScript with ESM import maps [https://github.com/rails/importmap-rails]
gem "importmap-rails"
# Hotwire's SPA-like page accelerator [https://turbo.hotwired.dev]
gem "turbo-rails"
# Hotwire's modest JavaScript framework [https://stimulus.hotwired.dev]
gem "stimulus-rails"
# Build JSON APIs with ease [https://github.com/rails/jbuilder]
gem "jbuilder"
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data"
gem "tzinfo"
# Reduces boot times through caching; required in config/boot.rb
gem "bootsnap", require: false
# User model for authentication, registration, session, views, access control
gem 'devise'
# FactoryBot for mocks and stubs with testing
gem 'factory_bot_rails'
# Creates random data for mocks and stubs
gem 'faker', :git => 'https://github.com/faker-ruby/faker.git', :branch => 'main'
# For testing flash message responses in the controller
gem 'shoulda'
# Front-end framework for HTML, CSS, JavaScript
gem 'bootstrap', '~> 5.2.2'
# JavaScript can optionally use jQuery
gem 'jquery-rails'
# Was typically included in examples, increases performance
gem 'turbolinks'
gem 'active_link_to'
group :production do
gem 'pg' # for Heroku deployment
gem 'rails_12factor'
end
group :development, :test do
gem "debug", platforms: %i[ mri mingw x64_mingw ]
gem "sqlite3", "~> 1.4"
gem "rspec-rails", "~> 4.0.1"
gem "capybara"
gem "simplecov", require: false
end
group :development do
gem "web-console"
end
group :test do
gem "selenium-webdriver"
gem "webdrivers"
gem 'database_cleaner-active_record'
end