forked from axsh/openvnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
44 lines (37 loc) · 1.11 KB
/
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
39
40
41
42
43
44
source "http://rubygems.org"
gem 'ffi-rzmq', "1.0.3"
gem "bit-struct", ">= 0.13.7"
gem "celluloid"
gem "celluloid-io"
gem "dcell"
gem "fuguta"
gem "ipaddress"
gem "json"
gem "mysql2"
gem "net-dhcp", ">= 1.1.1"
gem "net-dns"
gem "rack"
gem "rack-cors"
gem "racket", ">= 1.0.12", :git => 'https://github.com/axsh/racket.git'
gem "sequel", "4.8.0" # Updating to 4.23.0 broke the unit tests. Needs to be investigated.
gem "sequel_paranoia"
gem "sinatra"
gem "sinatra-contrib"
gem "sinatra-hashfix"
gem "sinatra-browse", ">= 0.6.1" # 0.5 and 0.6 have a bug where missing parameters would be set to nil values
gem "unicorn"
gem "activesupport", '3.0.0' # Updating to 4.2.1 broke the unit tests.
# trema and build requirement gems
gem 'paper_house', '~>0.5.0'
gem 'rant', '>= 0.5.9', :git => 'https://github.com/axsh/rant.git'
gem 'trema', :git=>'https://github.com/axsh/trema.git', :branch=>'wakame-edge'
group :development, :test do
gem "rake"
gem "rspec"
gem "rack-test"
gem "fabrication", '2.9.8' # Updating to 2.13.2 broke the unit tests.
gem 'database_cleaner'
gem "coveralls"
gem 'webmock'
gem "pry-byebug"
end