-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
57 lines (48 loc) · 1.19 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
source 'https://rubygems.org'
# Rails
gem 'rails', '4.0.3'
# PostrgeSQL DBMS
gem 'pg'
# JS, CSS and HTML gems
gem 'haml', '~> 4.0.4'
gem 'sass-rails', '~> 4.0.1'
gem 'bootstrap-sass', '~> 3.1.1.0'
gem 'jquery-rails', '~> 3.1.0'
gem 'jquery-ui-rails', '~> 4.2.0'
gem 'jbuilder', '~> 1.0.2'
gem 'uglifier', '~> 2.1.1'
# date time picker
gem 'momentjs-rails', '~> 2.5.0'
gem 'bootstrap3-datetimepicker-rails', '~> 2.1.30'
# BTC Market APIs
gem 'btce', github: 'kpheasey/ruby-btce'
gem 'cryptsy-api', '~> 0.1.2'
# General gems
gem 'activeadmin', github: 'gregbell/active_admin'
gem 'daemons-rails', '~> 1.2.1'
gem 'devise', '~> 3.2.2'
gem 'friendly_id', '~> 5.0.0'
gem 'newrelic_rpm'
gem 'puma'
gem 'redis', '~> 3.0.7'
gem 'sidekiq', '~> 2.17.7'
gem 'sinatra', require: false
gem 'turbolinks'
gem 'whenever', require: false
# deployments
group :development do
gem 'capistrano', '~> 3.1'
gem 'capistrano-bundler', '~> 1.1.2'
gem 'capistrano-rails', '~> 1.1'
gem 'capistrano-rvm'
end
# debugging
group :development, :test do
gem 'better_errors'
gem 'binding_of_caller'
gem 'debugger'
end
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', require: false
end