-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
38 lines (34 loc) · 855 Bytes
/
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
# frozen_string_literal: true
source 'https://rubygems.org'
ruby '3.1.0'
# Specify your gem's dependencies in emr.gemspec
gem 'activemodel', '~> 7.0', '>= 7.0.4'
gem 'activerecord', '~> 7.0', '>= 7.0.4'
gem 'active_record_fix_integer_limit'
gem 'bcrypt', '~> 3.1.2'
gem 'dm-core'
gem 'dotenv'
gem 'pry'
gem 'rack-flash3'
gem 'rake'
gem 'require_all'
gem 'shotgun', git: 'https://github.com/delonnewman/shotgun.git'
gem 'sinatra', '~> 3.0', '>= 3.0.4'
gem 'sinatra-activerecord', '~> 2.0', '>= 2.0.26', require: 'sinatra/activerecord'
gem 'sysrandom'
gem 'thin', '~> 1.7'
gem 'erb-formatter'
group :development do
gem 'sqlite3'
gem 'tux'
gem 'erb-formatter'
end
group :production do
gem 'pg'
end
group :test do
gem 'capybara'
gem 'database_cleaner', git: 'https://github.com/bmabey/database_cleaner.git'
gem 'rack-test'
gem 'rspec'
end