30 lines
No EOL
614 B
Ruby
30 lines
No EOL
614 B
Ruby
# A sample Gemfile
|
|
source "http://rubygems.org"
|
|
|
|
gem "rails", '3.0.12'
|
|
|
|
gem 'mysql2'
|
|
gem "fastercsv"
|
|
gem "prawn", '<=0.6.3'
|
|
gem 'haml'
|
|
gem 'sass'
|
|
gem "will_paginate", "~> 3.0.pre2"
|
|
gem 'jquery-rails'
|
|
gem 'client_side_validations'
|
|
gem 'simple_form'
|
|
gem 'rails3_acts_as_paranoid', '0.0.9'
|
|
gem 'meta_where'
|
|
gem 'meta_search'
|
|
gem 'inherited_resources'
|
|
gem 'localize_input', :git => "git://github.com/bennibu/localize_input.git"
|
|
gem 'acts_as_configurable'
|
|
gem 'wikicloth'
|
|
|
|
group :development do
|
|
gem 'annotate'
|
|
gem 'hirb'
|
|
end
|
|
|
|
group :production do
|
|
gem 'exception_notification', :require => 'exception_notifier'
|
|
end |