-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
37 lines (28 loc) · 722 Bytes
/
Gemfile
File metadata and controls
37 lines (28 loc) · 722 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
34
35
36
37
source "http://rubygems.org"
gem 'ffi'
gem 'bitcoin-ruby',
git: "git://github.com/mhanne/bitcoin-ruby", branch: "next", require: "bitcoin"
# path: '../bitcoin-ruby'
gem 'bitcoin-ruby-blockchain',
git: "git://github.com/mhanne/bitcoin-ruby-blockchain"
# path: '../bitcoin-ruby-blockchain'
gem 'bitcoin-ruby-wallet',
git: "git://github.com/mhanne/bitcoin-ruby-wallet"
# path: '../bitcoin-ruby-wallet'
gem 'bitcoin-ruby-config',
git: "git://github.com/mhanne/bitcoin-ruby-config"
# path: "../bitcoin-ruby-config"
gem 'eventmachine'
gem 'sequel'
gem 'sqlite3'
gem 'pg'
gem 'mysql'
gem 'em-dns'
gem 'log4r'
group :development do
gem 'rake'
gem 'yard'
gem 'minitest'
gem 'rspec'
gem 'pry'
end