-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
33 lines (27 loc) · 877 Bytes
/
Gemfile
File metadata and controls
33 lines (27 loc) · 877 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
source "https://rubygems.org"
ruby '2.7.2'
gem 'thin'
gem "sequel", "~> 4.2"
gem "rack-robustness", "~> 1.1"
gem "rack-timeout", "~> 0.6"
gem "rake", "~> 13.0"
gem 'sprockets', '~> 4.0'
gem 'sinatra', '~> 1.4'
gem 'wlang', '~> 2.3'
gem "alf-core", :git => "https://github.com/alf-tool/alf-core.git"
gem "alf-doc", :git => "https://github.com/alf-tool/alf-doc.git"
gem "alf-sql", :git => "https://github.com/alf-tool/alf-sql.git"
gem "alf-sequel", :git => "https://github.com/alf-tool/alf-sequel.git"
gem "alf-rack", :git => "https://github.com/alf-tool/alf-rack.git"
gem "ruby_cop", :git => "https://github.com/blambeau/RubyCop.git"
group :runtime do
gem "pg", "~> 1.2"
end
group :development do
gem "sqlite3", "~> 1.3"
gem "redcarpet"
gem "albino", "~> 1.3.3"
gem "rspec", "~> 3.0"
gem "rack-test", "~> 0.6"
gem 'sinatra-reloader', '~> 1.0'
end