2011-01-30 22:59:32 +01:00
|
|
|
# A sample Gemfile
|
2012-09-30 21:38:52 +02:00
|
|
|
source "https://rubygems.org"
|
2011-01-30 22:59:32 +01:00
|
|
|
|
2012-09-30 21:38:52 +02:00
|
|
|
gem "rails", '3.2.8'
|
2012-09-30 21:15:55 +02:00
|
|
|
|
|
|
|
# Gems used only for assets and not required
|
|
|
|
# in production environments by default.
|
|
|
|
group :assets do
|
2012-09-30 21:38:52 +02:00
|
|
|
gem 'sass-rails', '~> 3.2.3'
|
|
|
|
gem 'coffee-rails', '~> 3.2.1'
|
2012-09-30 21:15:55 +02:00
|
|
|
|
|
|
|
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
|
2012-09-30 21:38:52 +02:00
|
|
|
gem 'therubyracer', :platforms => :ruby
|
2012-09-30 21:15:55 +02:00
|
|
|
|
|
|
|
gem 'uglifier', '>= 1.0.3'
|
|
|
|
end
|
|
|
|
|
|
|
|
gem 'jquery-rails'
|
2011-01-30 22:59:32 +01:00
|
|
|
|
2012-04-16 08:48:01 +02:00
|
|
|
gem 'mysql2'
|
2012-10-18 10:08:29 +02:00
|
|
|
gem 'sqlite3', :group => :development
|
2011-01-30 22:59:32 +01:00
|
|
|
gem "fastercsv"
|
2012-10-02 02:50:48 +02:00
|
|
|
gem 'prawn'
|
2012-09-30 21:15:55 +02:00
|
|
|
gem 'haml-rails'
|
2011-05-11 12:31:17 +02:00
|
|
|
gem "will_paginate", "~> 3.0.pre2"
|
2011-05-19 22:35:13 +02:00
|
|
|
gem 'client_side_validations'
|
2011-05-14 17:06:32 +02:00
|
|
|
gem 'simple_form'
|
2012-09-30 21:15:55 +02:00
|
|
|
gem 'rails3_acts_as_paranoid', "~>0.1.4"
|
2011-05-19 22:22:05 +02:00
|
|
|
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"
|
2012-04-15 19:13:38 +02:00
|
|
|
gem 'wikicloth'
|
2012-08-24 13:48:45 +02:00
|
|
|
gem 'daemons'
|
|
|
|
gem 'delayed_job_active_record'
|
2011-05-07 20:50:39 +02:00
|
|
|
|
2011-05-11 11:01:47 +02:00
|
|
|
group :production do
|
|
|
|
gem 'exception_notification', :require => 'exception_notifier'
|
2012-10-15 17:31:12 +02:00
|
|
|
end
|