-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGemfile
More file actions
40 lines (33 loc) · 733 Bytes
/
Gemfile
File metadata and controls
40 lines (33 loc) · 733 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
# frozen_string_literal: true
source 'https://rubygems.org'
ruby ::File.read('.ruby-version').split('-').last
# Application Dependencies
gem 'activesupport'
gem 'puma'
gem 'sinatra', require: false
gem 'sinatra-contrib'
gem 'sinatra-flash'
# Settings
gem 'config'
# Datastore Dependencies
gem 'actionpack', require: false
gem 'activerecord'
gem 'pg'
gem 'standalone_migrations'
# Rake & Job Dependencies
gem 'bundler-audit'
gem 'progressbar'
gem 'rake'
group :development, :test do
gem 'capybara'
gem 'factory_bot'
gem 'faker'
gem 'rack-test'
gem 'racksh'
gem 'rspec'
gem 'rspec-json_expectations'
gem 'rubocop', require: false
gem 'rubocop-performance'
gem 'shoulda'
gem 'simplecov', require: false
end