40 lines
No EOL
942 B
Ruby
40 lines
No EOL
942 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 "fastercsv"
|
|
gem 'prawn'
|
|
gem 'haml-rails'
|
|
gem 'kaminari'
|
|
gem 'client_side_validations'
|
|
gem 'simple_form'
|
|
gem 'rails3_acts_as_paranoid', "~>0.2.0"
|
|
gem 'inherited_resources'
|
|
gem 'localize_input', :git => "git://github.com/bennibu/localize_input.git"
|
|
gem 'wikicloth'
|
|
gem 'daemons'
|
|
gem 'delayed_job_active_record'
|
|
gem 'twitter-bootstrap-rails'
|
|
gem 'simple-navigation'
|
|
gem 'simple-navigation-bootstrap'
|
|
gem 'meta_search'
|
|
|
|
group :production do
|
|
gem 'exception_notification', :require => 'exception_notifier'
|
|
end |