forked from MyceliumGear/straight-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
41 lines (38 loc) · 1.21 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
source 'https://rubygems.org' do
if ENV['BUILD_ROOT'].to_s.empty?
gem 'straight', github: 'MyceliumGear/straight'
else
gem 'straight', git: "#{ENV['BUILD_ROOT']}/straight/.git", ref: ENV['STRAIGHT_REF']
gem 'logstash-logger', github: 'dwbutler/logstash-logger', ref: '621ba20862424f3993c620fc4b1fb0bf819da9e1' # https://github.com/dwbutler/logstash-logger/pull/54
end
gem 'pg'
gem 'satoshi-unit', '>= 0.1.8'
gem 'goliath'
gem 'faye-websocket'
gem 'socket.io-client-simple'
gem 'sequel'
gem 'logmaster', '~> 0.2.0'
gem 'ruby-hmac'
gem 'httparty'
gem 'redis'
gem 'btcruby', '1.1.1'
gem 'ruby-protocol-buffers'
gem 'rbtrace'
end
unless ENV['STRAIGHT_SERVER_IGNORE_ADDONS_GEMFILE'] # use this flag when building straight-server.gemspec
addons_gemfile = ENV['STRAIGHT_SERVER_ADDONS_GEMFILE'] || File.join(ENV['STRAIGHT_SERVER_CONFIG_DIR'] || File.join(ENV['HOME'], '.straight'), 'AddonsGemfile')
eval_gemfile addons_gemfile if File.exists?(addons_gemfile)
end
group :development do
gem 'byebug'
gem 'jeweler', '~> 2.0.1'
gem 'github_api', '0.11.3'
end
group :test do
gem 'timecop'
gem 'rspec'
gem 'factory_girl'
gem 'sqlite3'
gem 'hashie'
gem 'webmock', require: false
end