foodsoft/Gemfile

37 lines
863 B
Ruby
Raw Normal View History

# A sample Gemfile
source "http://rubygems.org"
gem "rails", '3.1.8'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.1.5'
gem 'coffee-rails', '~> 3.1.1'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer'
gem 'uglifier', '>= 1.0.3'
end
gem 'jquery-rails'
gem 'mysql2'
gem "fastercsv"
gem "prawn", '<=0.6.3'
gem 'haml-rails'
2011-05-11 12:31:17 +02:00
gem "will_paginate", "~> 3.0.pre2"
gem 'client_side_validations'
gem 'simple_form'
gem 'rails3_acts_as_paranoid', "~>0.1.4"
gem 'meta_search'
2011-05-18 16:10:30 +02:00
gem 'inherited_resources'
2011-05-20 00:19:58 +02:00
gem 'localize_input', :git => "git://github.com/bennibu/localize_input.git"
gem 'wikicloth'
gem 'daemons'
gem 'delayed_job_active_record'
2011-05-11 11:01:47 +02:00
group :production do
gem 'exception_notification', :require => 'exception_notifier'
end