This repository has been archived by the owner on Dec 22, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 298
/
Gemfile
90 lines (62 loc) · 1.56 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
86
87
88
89
90
source 'https://rubygems.org'
gem 'rails', '~> 4.1.0'
gem 'sass-rails', '~> 4.0.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'uglifier', '>= 1.0.3'
gem 'compass-rails', '~> 1.1.2'
gem 'foundation-rails', '~> 5.4.2'
gem 'jquery-rails'
# foundation form errors
gem 'foundation_rails_helper'
group :development do
# to use debugger
gem 'byebug'
# sqlite database during development
gem 'sqlite3'
# deploy with Capistrano
gem 'capistrano'
gem 'capistrano-rvm'
gem 'capistrano-rails'
# 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
# authentication
gem 'devise'
# authorization
gem 'cancancan'
# pagination
gem 'will_paginate'
# attachments, thumbnails etc
gem 'paperclip'
# Markdown
gem 'redcarpet'
# 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', '~> 1.2'
# time traveling
gem 'timecop'
# fancybox for showing image in lightbox
gem 'fancybox2-rails', '~> 0.2.8'
# may be needed explicity if development system is windows
gem 'tzinfo-data', platforms: [:mingw, :mswin]