-
Notifications
You must be signed in to change notification settings - Fork 4
/
Gemfile
65 lines (47 loc) · 1.28 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
source 'http://rubygems.org'
ruby "2.7.1"
gem 'yajl-ruby'
gem "sinatra"
gem "json"
gem "blizz"
gem "voidtools"
gem "haml"
gem "sass"
gem "rake"
gem "redis"
gem "hiredis" # pipelining
gem "dm-core"
gem "dm-mysql-adapter"
gem "dm-migrations"
gem "dm-validations"
group :bitstamp do
gem "bitstamp"
end
# gem "rom", git: 'git@github.com:rom-rb/rom'
# # gem "axiom-memory-adapter"
# gem "axiom", git: 'git@github.com:dkubb/axiom'
# gem "axiom-do-adapter", git: 'git@github.com:dkubb/axiom-do-adapter'
# # gem "do_mysql"
# gem 'do_sqlite3'
gem "bitcoin-client", git: "git@github.com:makevoid/bitcoin-client"
group :development do
gem "guard"
gem "guard-sass", require: false
gem "guard-coffeescript", require: false, github: "guard/guard-coffeescript" # TODO: temporary
gem "guard-livereload", require: false
gem 'guard-concat', require: false, github: "makevoid/guard-concat"
# gem 'guard-concat', require: false, path: "~/apps/guard_concat_eze"
end
group :test do
gem "rspec-core"
gem "rspec-mocks"
gem "rspec-expectations"
# gem "rspec-refinements" # github: amatsuda/rspec-refinements
gem "rack-test"
end
# nice gems to consider
#
# orderbook & API: https://github.com/kenichi/angelo
#
# satoshi-unit: https://github.com/snitko/satoshi-unit
gem "puma"