-
Notifications
You must be signed in to change notification settings - Fork 13
/
Gemfile
98 lines (72 loc) · 1.61 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
source 'https://rubygems.org'
gem 'rails'
gem 'activeadmin'
gem 'pg'
gem 'schema_plus'
gem 'devise'
gem 'pundit'
gem 'ancestry'
gem 'paperclip'
gem 'resque'
gem 'resque-status'
gem 'resque_mailer'
gem 'resque-scheduler', '~> 2.5.4'
gem 'perform_later', git: 'https://github.com/KensoDev/perform_later.git' # should be after resque_mailer
gem 'russian'
gem 'state_machines-activerecord'
gem 'redis-rails'
gem 'ngmin-rails'
gem 'grack', git: 'https://github.com/rosa-abf/grack.git'
gem 'grit', git: 'https://github.com/rosa-abf/grit.git', branch: 'rosa'
gem 'charlock_holmes'
gem 'github-linguist', require: 'linguist'
gem 'diff-display'
gem 'redcarpet', '~> 3.5'
gem 'jbuilder'
gem 'rails3-jquery-autocomplete'
gem 'sprockets'
gem 'will_paginate'
gem 'haml-rails'
gem 'jquery-rails'
gem 'slim'
gem 'simple_form', '3.1.0.rc2'
gem 'friendly_id'
gem 'rest-client'
gem 'ffi'
gem 'attr_encrypted'
gem 'gemoji'
gem 'js-routes'
gem 'time_diff'
gem 'sass-rails'
gem 'coffee-rails'
gem 'bootstrap-sass'
gem 'font-awesome-rails'
gem 'uglifier'
gem 'codemirror-rails', '~> 4.5'
gem 'sentry-raven'
gem 'rails-assets-notifyjs', '0.3.2', path: 'vendor/gems/rails-assets-notifyjs-0.3.2'
gem 'rack-utf8_sanitizer'
gem 'redis-semaphore'
gem 'connection_pool'
gem 'recaptcha'
gem 'rouge'
gem 'puma'
gem 'oj'
gem 'connection_pool'
group :development do
gem 'rack-mini-profiler', require: false
end
group :development, :test do
gem 'rspec-rails'
end
group :test do
gem 'factory_girl_rails'
gem 'rr'
gem 'shoulda'
gem 'shoulda-matchers'
gem 'mock_redis'
gem 'webmock'
gem 'rake'
gem 'test_after_commit'
gem 'timecop'
end