-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathGemfile
More file actions
38 lines (33 loc) · 711 Bytes
/
Gemfile
File metadata and controls
38 lines (33 loc) · 711 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
# frozen_string_literal: true
source 'https://rubygems.org'
ruby '~> 3.4'
gem 'pg', '~> 1.6'
gem 'puma'
gem 'activerecord'
gem 'activesupport', '>= 6.0.3.1'
gem 'bcrypt'
gem 'coffee-script'
gem 'erubi', '~> 1.13'
gem 'haml'
gem 'ostruct', '~> 0.6.2'
gem 'rack', '~> 3.2'
gem 'rackup', '~> 2.3'
gem 'rake'
gem 'sassc'
gem 'sass-embedded'
gem 'sinatra', '~> 4.2'
gem 'sinatra-activerecord'
gem 'sinatra-contrib', '~> 4.0'
gem 'sinatra-flash'
gem 'sprockets'
gem 'turbolinks'
gem 'uglifier'
gem 'warden'
gem 'yui-compressor'
group :test, :development do
gem 'pry'
gem 'rack-test', '~> 2.2'
gem 'rubocop', require: false
gem 'solargraph', require: false
gem 'test-unit', '~> 3.7', require: false
end