-
Notifications
You must be signed in to change notification settings - Fork 22
/
Gemfile
68 lines (50 loc) · 1.38 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
66
67
source 'http://rubygems.org'
gem 'bitcoin-ruby', require: 'bitcoin',
git: 'git://github.com/mhanne/bitcoin-ruby.git', branch: 'next'
# path: '../bitcoin-ruby'
gem 'bitcoin-ruby-blockchain', require: 'bitcoin/blockchain',
git: 'git://github.com/mhanne/bitcoin-ruby-blockchain'
# path: '../bitcoin-ruby-blockchain'
gem 'bitcoin-ruby-node', require: 'bitcoin/node',
git: 'git://github.com/mhanne/bitcoin-ruby-node'
# path: '../bitcoin-ruby-node'
gem 'bitcoin-ruby-wallet', require: 'bitcoin/wallet',
git: 'git://github.com/mhanne/bitcoin-ruby-wallet'
# path: '../bitcoin-ruby-wallet'
gem 'namecoin-ruby', require: 'bitcoin/namecoin',
git: 'git://github.com/mhanne/namecoin-ruby'
# path: '../namecoin-ruby'
gem 'bitcoin-ruby-config', require: 'bitcoin/config',
git: 'git://github.com/mhanne/bitcoin-ruby-config'
# path: '../bitcoin-ruby-config'
gem 'thin'
gem 'rails', '4.2.6'
gem 'responders', '~> 2.0'
gem 'actionpack-page_caching'
gem 'actionpack-action_caching'
gem 'exception_notification'
gem 'haml'
gem 'sass'
gem 'therubyracer'
gem 'sequel'
gem 'sqlite3'
gem 'pg'
gem 'will_paginate'
group :assets do
gem 'coffee-rails'
gem 'uglifier'
end
group :development, :test do
gem 'rspec'
gem 'rspec-rails'
gem 'pry'
gem 'yard'
end
gem 'jquery-rails'
gem 'jquery-ui-rails'
gem 'em-websocket'
gem 'svg-graph'
gem 'ffi'
gem 'simplecov'
gem 'coveralls'
gem 'test-unit'