photomix/Gemfile

35 lines
756 B
Ruby
Raw Normal View History

2010-09-17 17:57:33 +02:00
source 'http://rubygems.org'
2011-04-11 12:07:31 +02:00
gem 'rails'
2010-09-17 17:57:33 +02:00
gem 'authlogic'
2010-09-17 17:57:33 +02:00
gem 'mime-types', :require => 'mime/types'
gem 'carrierwave', :git => 'git://github.com/jnicklas/carrierwave.git'
# -- Database
# SQLite
gem 'sqlite3-ruby'
2010-09-21 21:27:38 +02:00
# MySQL:
2011-04-11 13:39:27 +02:00
#gem 'mysql2'
2010-09-21 21:27:38 +02:00
# PostgreSQL:
2011-04-11 13:39:27 +02:00
#gem 'pg'
2010-10-11 16:03:34 +02:00
# -- Cloud storage
# AWS S3 support. Can be disabled if using local file system instead of cloud storage.
gem 'fog', :git => 'git://github.com/geemus/fog.git'
2010-09-21 21:27:38 +02:00
# -- Photo resizing
# MiniMagick
gem "mini_magick"
2010-09-21 21:27:38 +02:00
# ImageMagick:
#gem "rmagick", :require => 'RMagick'
2010-09-21 21:27:38 +02:00
# FreeImage:
#gem "RubyInline"
2010-10-11 16:03:34 +02:00
#gem "image_science", :git => 'git://github.com/perezd/image_science.git'
2010-09-21 21:27:38 +02:00
# -- EXIF
# Mini exif tool. Can be disabled. Remove exif_read and exif_write filters in photo model
gem "mini_exiftool"