forked from ivaldi/brimir
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
85 lines (59 loc) · 1.5 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
source 'https://rubygems.org'
gem 'rails', '~> 4.2.0'
gem 'sass-rails', '~> 5.0.0'
gem 'coffee-rails', '~> 4.1.0'
gem 'uglifier', '>= 1.0.3'
gem 'compass-rails', '~> 2.0.0'
gem 'foundation-rails', '~> 5.5.0'
gem 'jquery-rails'
# foundation form errors
gem 'foundation_rails_helper'
# to use debugger
gem 'byebug', group: [:development, :test]
group :development do
# Spring application pre-loader
gem 'spring'
end
group :test do
# for travis-ci
gem 'rake'
# for coveralls
gem 'coveralls'
end
# Optional PostgreSQL for production
gem 'pg', group: :postgresql
# Optional MySQL for production
gem 'mysql2', group: :mysql
# Optional SQLite for development
gem 'sqlite3', group: :sqlite
# authentication
gem 'devise'
gem 'devise_ldap_authenticatable'
# omniauth
gem 'omniauth-google-oauth2'
# authorization
gem 'cancancan'
# pagination
gem 'will_paginate'
# attachments, thumbnails etc
gem 'paperclip'
# select2 replacement for selectboxes
gem 'select2-rails'
gem 'font-awesome-rails', '~> 4.0'
# TinyMCE 4 for WYSIWYG in textareas
gem 'tinymce-rails'
# for language detection
gem 'http_accept_language'
# internationalisation
gem 'rails-i18n'
gem 'devise-i18n'
# non-digested assets for brimir-plugin js/css
gem 'non-stupid-digest-assets'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.2'
# time traveling
gem 'timecop'
# fancybox for showing image in lightbox
gem 'fancybox2-rails', '~> 0.2.8'
# gravatar for user avatar images
gem 'gravatar_image_tag'