forked from espen/balder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
46 lines (36 loc) · 877 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
source 'https://rubygems.org'
group :heroku do
gem 'unicorn'
gem 'rails_12factor'
end
gem 'rails', '~> 3.2.18'
gem 'authlogic'
gem 'omniauth'
gem 'omniauth-facebook'
gem 'mime-types', :require => 'mime/types'
gem 'carrierwave', '~> 0.6.1'
# -- Database
# SQLite:
group :development do
gem 'sqlite3-ruby'
end
group :production do
# MySQL:
#gem 'mysql2'
# PostgreSQL (default on heroku):
gem 'pg'
end
# -- Cloud storage
# AWS S3 support. Can be disabled if using local file system instead of cloud storage.
gem 'fog'
# -- Photo resizing
# MiniMagick
gem "mini_magick"
# ImageMagick:
#gem "rmagick", :require => 'RMagick'
# FreeImage:
#gem "RubyInline"
#gem "image_science", :git => 'git://github.com/perezd/image_science.git'
# -- EXIF
# Mini exif tool. Can be disabled. Remove exif_read and exif_write filters in photo model
gem "mini_exiftool_vendored"