21 lines
No EOL
363 B
Ruby
21 lines
No EOL
363 B
Ruby
# A sample Gemfile
|
|
source "http://rubygems.org"
|
|
|
|
gem "rails", '3.0.7'
|
|
|
|
gem 'mysql'
|
|
gem "fastercsv"
|
|
gem "prawn", '<=0.6.3'
|
|
gem 'haml', '>=2.0.6'
|
|
gem "will_paginate", "~> 3.0.pre2"
|
|
gem 'jquery-rails'
|
|
gem 'simple_form'
|
|
|
|
group :development do
|
|
gem 'annotate'
|
|
gem 'hirb'
|
|
end
|
|
|
|
group :production do
|
|
gem 'exception_notification', :require => 'exception_notifier'
|
|
end |