photomix/Gemfile

35 lines
720 B
Ruby
Raw Normal View History

2010-09-17 17:57:33 +02:00
source 'http://rubygems.org'
2011-09-25 06:51:39 +02:00
gem 'rails', '3.1.0'
2010-09-17 17:57:33 +02:00
gem 'authlogic'
2010-09-17 17:57:33 +02:00
gem 'mime-types', :require => 'mime/types'
2011-08-02 11:06:53 +02:00
gem 'carrierwave'
# -- Database
# SQLite
gem 'sqlite3-ruby'
2010-09-21 21:27:38 +02:00
# MySQL:
2011-08-02 11:06:53 +02:00
#gem 'mysql2', '~> 0.2.7' # Use version 0.3 and up for Rails 3.1
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.
2011-08-02 11:06:53 +02:00
gem 'fog'
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"