-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGemfile
More file actions
36 lines (24 loc) · 704 Bytes
/
Gemfile
File metadata and controls
36 lines (24 loc) · 704 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
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
# Specify your gem's dependencies in activejob-web.gemspec.
gemspec
gem 'puma'
gem 'pg'
gem 'image_processing', '>= 1.2'
gem 'sprockets-rails'
group :development do
gem 'brakeman'
gem 'bundler-audit', require: false
gem 'overcommit', '~> 0.60.0'
end
group :development, :test do
gem 'factory_bot_rails'
gem 'rspec-rails'
gem 'rubocop', require: false
end
gem 'rails-controller-testing', '~> 1.0', '>= 1.0.5'
# For streaming logs to cloudwatch
gem 'cloudwatchlogger'
# Start debugger with binding.b [https://github.com/ruby/debug]
# gem "debug", ">= 1.0.0"