-
Notifications
You must be signed in to change notification settings - Fork 50
/
Gemfile
45 lines (38 loc) · 1.03 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
source "https://rubygems.org"
group :development do
gem "capistrano", "2.15.0"
gem "net-ssh", "~> 2.7.0"
gem 'byebug'
end
gem 'iconv'
gem 'json', '~>1.8.0'
gem 'rails', '~> 4.2.7'
gem 'mysql2', '~> 0.3.15'
gem 'haml', '~>4.0.7'
gem 'jquery-rails', '~>4.1.1'
gem 'will_paginate', '~>3.1.0'
gem 'audited-activerecord', '~>4.2.0'
gem 'devise', '~>3.5.6'
gem 'awesome_print', '~> 1.0'
gem 'responders', '~>2.1.2'
gem 'citrus', '~> 2.4.1'
gem 'validation_scopes', '~> 0.4.1'
gem 'syslogger', '~> 1.3'
gem 'unicorn', '~>5.1.0'
gem 'activerecord-import', '~>0.13.0'
gem 'whenever', '0.9.4'
gem 'devise-encryptable'
gem 'protected_attributes'
gem 'rest-client'
gem 'net-ping'
gem "select2-rails"
group :assets do
gem 'sass-rails', '~>5.0.4'
gem 'coffee-rails', '~>4.1.1'
gem 'therubyracer', '~>0.12.2'
gem 'uglifier', '~>3.0.0'
end
group :development, :test do
# gem 'rspec-rails', '~> 2.6.0'
# gem 'RedCloth', '>= 4.1.1'
end