-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
38 lines (30 loc) · 1.07 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
source "https://rubygems.org"
def override_with_local(local_dir, opts = {})
unless local_dir.start_with? '/'
local_dir = File.join(File.dirname(__FILE__), local_dir)
end
#puts "Checking for '#{local_dir}'"
Dir.exist?(local_dir) ? {path: local_dir} : opts
end
gem 'omf_base', override_with_local('../omf_base')
gem 'omf_sfa', override_with_local('../omf_sfa', git: 'https://github.com/mytestbed/omf_sfa.git')
gem 'dm-noisy-failures'
gem 'god'
gem 'thin_async'
gem "pg"
gem "em-pg-client", "~> 0.2.1", :require => ['pg/em', 'em-synchrony/pg']
gem "em-pg-sequel"
#gem 'em-xmlrpc-client', '~> 1.0.1', require: ['em-http-request']
#gem 'em-xmlrpc-client', override_with_local('../em-xmlrpc-client')
gem 'em-xmlrpc-client', git: 'https://github.com/maxott/em-xmlrpc-client.git', :branch => 'ssl'
gem 'em-http-request'
gem "uuid", "~> 2.3.5"
# Cross domain request
gem 'rack-cors', :require => 'rack/cors'
# TODO: Check if this is still needed. New macaddr gem forgot that
gem 'systemu'
group :development, :test do
gem 'rspec'
gem "rack-test", require: "rack/test"
gem 'pry'
end