-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
29 lines (26 loc) · 940 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
ruby '1.9.3'
source "http://rubygems.org"
group :runtime do
gem "sequel", "~> 4.4"
gem "pg", "0.16.0"
gem "thin", "~> 1.6"
gem "uuid", "~> 2.3"
gem "rack", "~> 1.5"
gem "sinatra", "~> 1.4"
gem "wlang", "~> 2.1"
gem "kramdown", "~> 0.13.4"
gem "rack-robustness", "~> 1.0"
gem "alf-core", git: "git://github.com/alf-tool/alf-core"
gem "alf-sql", git: "git://github.com/alf-tool/alf-sql.git"
gem "alf-shell", git: "git://github.com/alf-tool/alf-shell.git"
gem "alf-sequel", git: "git://github.com/alf-tool/alf-sequel.git"
gem "alf-rack", git: "git://github.com/alf-tool/alf-rack.git"
gem "alf-repl", git: "git://github.com/alf-tool/alf-repl.git"
gem "alf", git: "git://github.com/alf-tool/alf.git"
end
group :development do
gem "rake", "~> 10.0"
gem "rspec", "~> 2.14"
gem "cucumber", "~> 1.3"
gem "http", git: "git://github.com/blambeau/http"
end