forked from matholroyd/bps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
45 lines (36 loc) · 885 Bytes
/
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
source 'http://rubygems.org'
gem 'rails', '~> 3.2'
gem 'pg'
gem 'jquery-rails'
gem 'bcrypt-ruby', require: 'bcrypt'
gem 'formtastic'
gem 'rails-backbone', git: 'https://github.com/codebrew/backbone-rails.git'
gem 'aasm'
# FFI needed to regenerate public key from private key
gem 'ffi'
gem 'bitcoin-ruby', :git => "https://github.com/mhanne/bitcoin-ruby.git"
gem 'rabl'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails'
gem 'coffee-rails'
gem 'uglifier'
gem 'bootstrap-sass'
end
group :development do
gem 'guard-spork'
end
group :development, :test do
gem 'ir_b'
gem 'steak'
gem 'faker'
gem 'machinist', :git => 'https://github.com/JamieFlournoy/machinist.git'
end
group :test do
gem 'capybara'
gem 'rspec-rails'
gem 'selenium-webdriver'
gem 'database_cleaner'
gem 'launchy'
end