38 lines
913 B
Ruby
38 lines
913 B
Ruby
# A sample Gemfile
|
|
source "https://rubygems.org"
|
|
|
|
gem "rails", '3.2.8'
|
|
|
|
# Gems used only for assets and not required
|
|
# in production environments by default.
|
|
group :assets do
|
|
gem 'sass-rails', '~> 3.2.3'
|
|
gem 'coffee-rails', '~> 3.2.1'
|
|
|
|
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
|
|
gem 'therubyracer', :platforms => :ruby
|
|
|
|
gem 'uglifier', '>= 1.0.3'
|
|
end
|
|
|
|
gem 'jquery-rails'
|
|
|
|
gem 'mysql2'
|
|
gem 'sqlite3', :group => :development
|
|
gem "fastercsv"
|
|
gem 'prawn'
|
|
gem 'haml-rails'
|
|
gem "will_paginate", "~> 3.0.pre2"
|
|
gem 'client_side_validations'
|
|
gem 'simple_form'
|
|
gem 'rails3_acts_as_paranoid', "~>0.1.4"
|
|
gem 'meta_search'
|
|
gem 'inherited_resources'
|
|
gem 'localize_input', :git => "git://github.com/bennibu/localize_input.git"
|
|
gem 'wikicloth'
|
|
gem 'daemons'
|
|
gem 'delayed_job_active_record'
|
|
|
|
group :production do
|
|
gem 'exception_notification', :require => 'exception_notifier'
|
|
end
|