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
|
|
|
|
2013-01-11 11:56:47 +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
|
2013-05-25 15:03:31 +02:00
|
|
|
gem 'therubyracer', platforms: :ruby
|
2012-09-30 21:15:55 +02:00
|
|
|
|
|
|
|
gem 'uglifier', '>= 1.0.3'
|
|
|
|
end
|
|
|
|
|
|
|
|
gem 'jquery-rails'
|
2013-07-07 01:47:22 +02:00
|
|
|
gem 'bootstrap-datepicker-rails'
|
2011-01-30 22:59:32 +01:00
|
|
|
|
2013-05-25 20:31:15 +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'
|
2011-05-18 16:10:30 +02:00
|
|
|
gem 'inherited_resources'
|
2013-05-25 15:03:31 +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'
|
2013-05-25 15:03:31 +02: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
|
2013-05-25 15:03:31 +02:00
|
|
|
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'
|
2013-05-29 12:35:16 +02:00
|
|
|
gem 'mailcatcher'
|
|
|
|
|
2012-12-16 13:47:45 +01:00
|
|
|
# Better error output
|
|
|
|
gem 'better_errors'
|
|
|
|
gem 'binding_of_caller'
|
|
|
|
|
2013-01-26 16:16:50 +01:00
|
|
|
# Get infos when not using proper eager loading
|
|
|
|
gem 'bullet'
|
2013-04-08 15:08:18 +02:00
|
|
|
|
|
|
|
# Hide assets requests in log
|
|
|
|
gem 'quiet_assets'
|
2013-05-25 19:38:14 +02:00
|
|
|
|
|
|
|
# Deploy with Capistrano
|
|
|
|
gem 'capistrano', '2.13.5'
|
|
|
|
gem 'capistrano-ext'
|
2013-06-06 14:54:54 +02:00
|
|
|
#gem 'common_deploy', require: false, path: '../../common_deploy' # pending foodcoops/foodsoft#34, git: 'git://github.com/fsmanuel/common_deploy.git'
|
2013-06-09 17:33:11 +02:00
|
|
|
# Avoid having content-length warnings
|
|
|
|
gem 'thin'
|
2012-11-24 15:27:48 +01:00
|
|
|
end
|
2013-07-12 20:06:49 +02:00
|
|
|
|
|
|
|
group :development, :test do
|
|
|
|
gem 'rspec-rails'
|
|
|
|
gem 'factory_girl_rails', '~> 4.0'
|
2013-07-14 02:49:40 +02:00
|
|
|
gem 'faker'
|
2013-07-12 20:06:49 +02:00
|
|
|
end
|