forked from IT61/it61.info
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
56 lines (49 loc) · 1 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
source 'https://rubygems.org'
gem 'rails', '~> 4.1.1'
gem 'rails-i18n'
gem 'unicode'
gem 'sorcery'
gem 'responders'
gem 'has_scope'
gem 'active_link_to'
gem 'gon'
gem 'pg'
gem 'cancancan', '~> 1.7'
gem 'mini_magick'
gem 'carrierwave'
gem 'high_voltage', '~> 2.1.0'
gem 'sass-rails', '~> 4.0.3'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'slim-rails'
gem 'bootstrap-sass'
gem 'bootstrap_form'
gem 'compass-rails'
gem 'marked-rails'
gem 'redcarpet'
gem 'styx'
gem 'draper'
gem 'jquery-rails'
gem 'jbuilder', '~> 2.0'
gem 'sdoc', '~> 0.4.0', group: :doc
gem 'unicorn'
gem 'rollbar'
group :development do
gem 'spring'
gem 'awesome_print'
gem 'quiet_assets'
gem 'capistrano'
gem 'capistrano-rails', '~> 1.0.0'
gem "capistrano-rvm"
gem 'capistrano-bundler'
gem 'capistrano3-unicorn'
end
group :development, :test do
gem 'forgery'
gem 'factory_girl_rails'
gem 'shoulda-matchers', require: false
gem 'rspec-rails'
gem 'spring-commands-rspec'
gem 'guard-rspec'
gem 'rb-fsevent'
end