-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
53 lines (37 loc) · 872 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
46
47
48
49
50
51
source 'https://rubygems.org'
gem 'rails', '4.0.2'
gem 'mysql2'
gem 'sass-rails', '~> 4.0.0'
gem 'bootstrap-sass', '~> 3.0.3.0'
# Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.0.0'
gem "haml-rails"
gem 'jquery-rails'
gem "font-awesome-rails"
gem "breadcrumbs_on_rails"
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 1.2'
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', require: false
end
group :development do
gem 'rvm-capistrano'
gem 'capistrano'
end
group :production do
gem 'unicorn'
end
gem 'russian', '~> 0.6.0'
gem 'devise'
gem 'omniauth-twitter'
gem "pundit"
gem "figaro"
gem 'simple_form'
gem 'kaminari'
gem "rmagick"
gem 'carrierwave'
gem 'friendly_id'
gem 'annotate', ">=2.6.0"
gem 'newrelic_rpm'