2011-01-30 22:59:32 +01:00
|
|
|
# A sample Gemfile
|
2012-09-30 21:38:52 +02:00
|
|
|
source "https://rubygems.org"
|
2012-12-14 18:10:46 +01:00
|
|
|
ruby "1.9.3"
|
2011-01-30 22:59:32 +01:00
|
|
|
|
2012-11-24 16:36:40 +01:00
|
|
|
gem "rails", '3.2.9'
|
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-02 02:50:48 +02:00
|
|
|
gem 'prawn'
|
2012-09-30 21:15:55 +02:00
|
|
|
gem 'haml-rails'
|
2012-10-08 15:24:32 +02:00
|
|
|
gem 'kaminari'
|
2011-05-19 22:35:13 +02:00
|
|
|
gem 'client_side_validations'
|
2011-05-14 17:06:32 +02:00
|
|
|
gem 'simple_form'
|
2012-10-17 20:45:52 +02:00
|
|
|
gem 'rails3_acts_as_paranoid', "~>0.2.0"
|
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'
|
2012-10-06 17:14:57 +02:00
|
|
|
gem 'twitter-bootstrap-rails'
|
|
|
|
gem 'simple-navigation'
|
|
|
|
gem 'simple-navigation-bootstrap'
|
2012-10-19 01:12:47 +02:00
|
|
|
gem 'meta_search'
|
2012-11-24 16:36:40 +01:00
|
|
|
gem 'acts_as_versioned', git: 'git://github.com/technoweenie/acts_as_versioned.git' # Use this instead of rubygem
|
2012-11-24 16:41:34 +01:00
|
|
|
gem 'acts_as_tree'
|
2012-11-24 16:49:19 +01:00
|
|
|
gem 'acts_as_configurable', git: 'git://github.com/bwalding/acts_as_configurable.git'
|
2012-12-23 17:38:04 +01:00
|
|
|
gem 'resque'
|
2012-12-26 14:03:35 +01:00
|
|
|
gem 'whenever', :require => false # For defining cronjobs, see config/schedule.rb
|
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
|
2012-11-24 15:27:48 +01:00
|
|
|
|
|
|
|
group :development do
|
|
|
|
gem 'sqlite3'
|
2012-12-16 13:47:45 +01:00
|
|
|
|
|
|
|
# Better error output
|
|
|
|
gem 'better_errors'
|
|
|
|
gem 'binding_of_caller'
|
|
|
|
|
|
|
|
# Re-enable rails benchmarker/profiler
|
|
|
|
gem 'ruby-prof'
|
|
|
|
gem 'test-unit'
|
2012-11-24 15:27:48 +01:00
|
|
|
end
|