-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
74 lines (57 loc) · 2.1 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
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
source 'https://rubygems.org'
ruby "3.2.2"
gem 'rails', '~> 7.1.2'
gem 'mysql2'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails', '~> 4.2'
# Use jquery as the JavaScript library
gem 'jquery-rails'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
gem 'nokogiri'
gem 'rainbow', '~> 3.0'
# fcd1, 12/22/23: Passenger on diglib-rails-dev1 complaining:
# You have already activated base64 0.1.1, but your Gemfile requires base64 0.2.0
# so gonna lock version to 0.1.1
gem 'base64', '0.1.1'
# Use ActiveModel has_secure_password
gem 'bcrypt', '~> 3.1.7'
# Use devise and omniauth for authentication
gem 'devise'
gem 'omniauth'
gem 'omniauth-cul', '~> 0.2.0'
# Use Unicorn as the app server
# gem 'unicorn'
# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development
gem 'rubyzip'
# fcd1, 05/09/22: Added bootsnap when upgrading from rails 4.2.10 to 5.2.7
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.4.2', require: false
group :development, :test do
gem 'listen'
gem 'sqlite3', '~> 1.4'
gem 'rspec-rails'
# Rubocul for linting
gem 'rubocul', '~> 4.0'
# simplecov for test coverage
gem 'simplecov', '~> 0.22', require: false
end
group :development do
# Use Puma as the app server
gem 'puma'
# Use Capistrano for deployment
gem 'capistrano', '~> 3.17.3', require: false
# Rails and Bundler integrations were moved out from Capistrano 3
gem 'capistrano-rails', '~> 1.4', require: false
gem 'capistrano-bundler', '~> 1.1', require: false
# "idiomatic support for your preferred ruby version manager"
gem 'capistrano-rvm', '~> 0.1', require: false
# The `deploy:restart` hook for passenger applications is now in a separate gem
# Just add it to your Gemfile and require it in your Capfile.
gem 'capistrano-passenger', '~> 0.2', require: false
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
end