This repository was archived by the owner on Apr 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
62 lines (54 loc) · 1.35 KB
/
Gemfile
File metadata and controls
62 lines (54 loc) · 1.35 KB
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
ruby "2.1.0"
source "https://rubygems.org"
# Services
gem "dalli"
gem "feedzirra"
gem "fog"
gem "mailchimp-api", "~> 2.0.4"
gem "memcachier"
gem "pg", group: :production
gem "sqlite3", group: :development
gem "therubyracer"
# Framework
gem "rack-cache", require: "rack/cache"
gem "rails", "4.0.1"
# Data
gem "ancestry"
gem "carrierwave"
gem "dragonfly", "~>0.9.15"
gem "icalendar"
gem "publishable"
gem "rmagick"
gem "unidecode"
gem "validates_email_format_of"
# Authentication
gem "cancan", git: "https://github.com/ollym/cancan.git", branch: "2.0"
gem "devise", "3.0.4"
gem "omniauth-linkedin"
gem "rolify", git: "https://github.com/andrewjanssen/rolify", ref: "b3a2bbdee884d2b0a666619d5d27729acda3bb33"
# Testing
gem "better_errors", group: :development
gem "pry", group: [:development, :test]
# Presentation
gem "bootstrap-sass", "~> 3"
gem "coffee-rails", "~> 4.0.0"
gem "fullcalendar-rails"
gem "jbuilder", "~> 1.2"
gem "jquery-rails"
gem "kaminari"
gem "nested_form"
gem "sass-rails", "~> 4.0.0"
gem "simple_form", "~> 3.0.0beta1"
gem "slim-rails"
gem "truncato"
gem "turbolinks"
gem "uglifier", ">= 1.3.0"
# Production
gem "asset_sync"
gem "newrelic_rpm", group: :production
gem "paper_trail", ">= 3.0.0.beta1"
gem "rails_12factor", group: :production
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem "sdoc", require: false
end