foodsoft/Gemfile

73 lines
1.9 KiB
Ruby
Raw Normal View History

# A sample Gemfile
2012-09-30 21:38:52 +02:00
source "https://rubygems.org"
ruby "1.9.3"
2013-01-11 11:56:47 +01:00
gem "rails", '~> 3.2.9'
gem 'jquery-rails'
gem 'bootstrap-datepicker-rails'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
2013-05-25 15:03:31 +02:00
gem 'therubyracer', platforms: :ruby
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'less-rails-bootstrap'
gem 'uglifier', '>= 1.0.3'
end
2013-05-25 20:31:15 +02:00
gem 'mysql2'
gem 'prawn'
gem 'haml-rails'
gem 'kaminari'
gem 'simple_form'
gem 'client_side_validations'
gem 'client_side_validations-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"
gem 'wikicloth'
gem 'daemons'
gem 'twitter-bootstrap-rails'
gem 'simple-navigation'
gem 'simple-navigation-bootstrap'
2012-10-19 01:12:47 +02:00
gem 'meta_search'
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'
gem 'resque'
2013-05-25 15:03:31 +02:00
gem 'whenever', require: false # For defining cronjobs, see config/schedule.rb
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'
end
group :development do
gem 'sqlite3'
gem 'mailcatcher'
# Better error output
gem 'better_errors'
gem 'binding_of_caller'
# Re-enable rails benchmarker/profiler
gem 'ruby-prof'
gem 'test-unit'
# Get infos when not using proper eager loading
gem 'bullet'
# 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'
#gem 'common_deploy', require: false, path: '../../common_deploy' # pending foodcoops/foodsoft#34, git: 'git://github.com/fsmanuel/common_deploy.git'
# Avoid having content-length warnings
gem 'thin'
end