foodsoft/Gemfile

59 lines
1.4 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'
# 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'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
2012-09-30 21:38:52 +02:00
gem 'therubyracer', :platforms => :ruby
gem 'uglifier', '>= 1.0.3'
end
gem 'jquery-rails'
gem 'mysql2'
gem 'prawn'
gem 'haml-rails'
gem 'kaminari'
gem 'client_side_validations'
gem 'simple_form'
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"
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'
2012-12-26 14:03:35 +01:00
gem 'whenever', :require => false # For defining cronjobs, see config/schedule.rb
2011-05-11 11:01:47 +02:00
group :production do
gem 'exception_notification', :require => 'exception_notifier'
end
group :development do
gem 'sqlite3'
# 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'
end