-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
47 lines (42 loc) · 1.16 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
source 'https://rubygems.org'
gem 'rails', '5.1.4'
gem 'pg', '0.20.0'
gem 'unicorn', '~> 5.1'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.2'
gem 'jquery-rails', '~> 4.3', '>= 4.3.1'
gem 'jbuilder', '~> 2.5'
gem 'devise', '~> 4.2'
gem 'omniauth-twitter', '~> 1.2', '>= 1.2.1'
gem 'omniauth-github', '~> 1.1', '>= 1.1.2'
gem 'gravatar_image_tag'
gem "autoprefixer-rails"
gem 'bootstrap-sass', '~> 3.3.7'
gem 'sass-rails', '>= 3.2'
gem 'font-awesome-sass', '~> 5.0.6'
gem 'redcarpet', '~> 3.3', '>= 3.3.4'
gem 'haml'
gem 'simple_form', '~> 3.5'
gem 'fullcalendar-rails'
gem 'momentjs-rails'
gem 'jquery-ui-rails'
gem 'figaro', '~> 1.1', '>= 1.1.1'
gem 'sdoc', '~> 1.0', group: :doc
group :development, :test do
gem 'byebug', '9.0.6', platform: :mri
end
group :development do
gem 'web-console', '>= 3.3.0'
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'pry-rails'
end
group :test do
gem 'rails-controller-testing'
gem 'minitest-reporters'
gem 'guard'
gem 'guard-minitest'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]