forked from eurucamp/call4papers
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
49 lines (38 loc) · 934 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
source 'https://rubygems.org'
ruby File.read(File.expand_path('../.ruby-version', __FILE__)).chop
gem 'dotenv-rails', groups: [:development, :test]
gem 'rails', '4.2.6'
gem 'unicorn'
gem 'devise', '~> 3.4.1'
gem 'simple_form', '~> 3.1.0'
gem 'selectize-rails'
gem 'omniauth'
gem 'omniauth-github'
gem 'omniauth-twitter'
gem 'pg'
gem 'immigrant'
gem 'redcarpet'
gem 'settingslogic'
gem 'thin'
gem 'sass-rails', '~> 5.0.0'
gem 'foundation-rails', '~> 5.4.0'
gem 'font-awesome-sass'
gem 'bourbon'
gem 'uglifier', '>= 1.0.3'
gem 'jquery-rails', '~> 3.1.0'
gem 'rack-robotz', '~> 0.0.3'
gem 'localeapp'
group :development do
gem 'foreman'
gem 'rails_layout'
gem 'web-console', '~> 2.0'
end
group :test do
gem 'simplecov', require: false
end
group :production, :staging do
gem 'exception_notification', '~> 4.0.1'
gem 'rails_12factor'
gem 'shelly-dependencies'
gem 'dotenv-deployment'
end