forked from davout/bitcoin-central
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
61 lines (47 loc) · 1.09 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
source 'http://rubygems.org'
gem 'rails', '3.1.3'
gem 'rake'
gem 'mysql2'
gem 'addressable'
gem 'devise'
gem 'whenever'
gem 'capistrano'
gem 'active_scaffold'
gem 'haml'
gem 'jquery-rails'
gem 'sass-rails'
gem 'coffee-rails'
gem 'recaptcha',
:require => 'recaptcha/rails'
gem 'exception_notification',
:git => "git@github.com:rails/exception_notification.git",
:require => 'exception_notifier'
gem 'transitions',
:require => ["transitions", "active_record/transitions"]
gem 'will_paginate', '~> 3.0.pre2'
# OTP toolbox
gem 'rotp', '~> 1.3.0'
# QR Code generation
gem 'qrencoder'
# IBAN format validations
gem 'iban-tools'
gem 'delayed_job'
# CSS toolbox
gem 'blueprint-rails'
gem 'bourbon'
# File attachment with database storage support
gem 'paperclip',
:git => 'https://github.com/patshaughnessy/paperclip.git'
# Apple push notifications
gem 'apn_on_rails',
:git => 'https://github.com/natescherer/apn_on_rails.git',
:branch => 'rails3'
group :test do
gem 'mocha', :require => false
gem 'factory_girl_rails'
end
group :assets do
gem 'uglifier'
gem 'execjs'
gem 'therubyracer'
end