2011-01-30 22:59:32 +01:00
|
|
|
# A sample Gemfile
|
2012-09-30 21:38:52 +02:00
|
|
|
source "https://rubygems.org"
|
2014-02-20 15:04:53 +01:00
|
|
|
|
2015-01-02 17:40:21 +01:00
|
|
|
gem "rails", '~> 4.2'
|
2014-02-20 15:04:53 +01:00
|
|
|
|
|
|
|
|
2015-01-02 17:40:21 +01:00
|
|
|
gem 'sass-rails'
|
2014-11-21 14:37:56 +01:00
|
|
|
gem 'coffee-rails'
|
2014-02-20 15:04:53 +01:00
|
|
|
gem 'less-rails'
|
|
|
|
gem 'uglifier', '>= 1.0.3'
|
|
|
|
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
|
|
|
|
gem 'therubyracer', platforms: :ruby
|
|
|
|
|
2012-09-30 21:15:55 +02:00
|
|
|
|
|
|
|
gem 'jquery-rails'
|
2013-06-17 16:05:23 +02:00
|
|
|
gem 'select2-rails'
|
2015-05-08 17:56:08 +02:00
|
|
|
gem 'rails_tokeninput'
|
2013-07-07 01:47:22 +02:00
|
|
|
gem 'bootstrap-datepicker-rails'
|
2014-02-20 12:37:51 +01:00
|
|
|
gem 'date_time_attribute'
|
2013-10-04 18:28:45 +02:00
|
|
|
gem 'rails-assets-listjs', '0.2.0.beta.4' # remember to maintain list.*.js plugins and template engines on update
|
2014-12-10 20:07:26 +01:00
|
|
|
gem 'i18n-js', '~> 3.0.0.rc8'
|
2013-10-17 16:20:51 +02:00
|
|
|
gem 'rails-i18n'
|
2013-05-25 20:31:15 +02:00
|
|
|
|
|
|
|
gem 'mysql2'
|
2012-10-02 02:50:48 +02:00
|
|
|
gem 'prawn'
|
2014-09-02 15:41:37 +02:00
|
|
|
gem 'prawn-table'
|
2012-09-30 21:15:55 +02:00
|
|
|
gem 'haml-rails'
|
2012-10-08 15:24:32 +02:00
|
|
|
gem 'kaminari'
|
2011-05-14 17:06:32 +02:00
|
|
|
gem 'simple_form'
|
2015-06-05 14:59:54 +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-08-24 13:48:45 +02:00
|
|
|
gem 'daemons'
|
2014-11-21 14:37:56 +01:00
|
|
|
gem 'twitter-bootstrap-rails', '~> 2.2.8'
|
2015-04-11 02:12:53 +02:00
|
|
|
gem 'simple-navigation', '~> 3.14.0' # 3.x for simple_navigation_bootstrap
|
2012-10-06 17:14:57 +02:00
|
|
|
gem 'simple-navigation-bootstrap'
|
2014-02-20 15:04:53 +01:00
|
|
|
gem 'ransack'
|
2012-11-24 16:41:34 +01:00
|
|
|
gem 'acts_as_tree'
|
2014-06-05 12:24:06 +02:00
|
|
|
gem 'rails-settings-cached'
|
2013-09-17 15:02:58 +02:00
|
|
|
gem 'resque'
|
2013-05-25 15:03:31 +02:00
|
|
|
gem 'whenever', require: false # For defining cronjobs, see config/schedule.rb
|
2014-02-20 15:04:53 +01:00
|
|
|
gem 'protected_attributes'
|
2013-12-06 18:14:32 +01:00
|
|
|
gem 'ruby-units'
|
2014-06-06 16:41:01 +02:00
|
|
|
gem 'attribute_normalizer'
|
2015-05-30 18:31:49 +02:00
|
|
|
gem 'ice_cube', '~> 0.13.0'
|
2014-11-22 00:33:16 +01:00
|
|
|
gem 'recurring_select'
|
2015-05-30 19:09:58 +02:00
|
|
|
gem 'roo', '~> 2.0.0'
|
|
|
|
gem 'roo-xls'
|
2015-01-18 02:04:57 +01:00
|
|
|
gem 'spreadsheet'
|
2011-05-07 20:50:39 +02:00
|
|
|
|
2013-10-29 22:42:06 +01:00
|
|
|
# we use the git version of acts_as_versioned, and need to include it in this Gemfile
|
2014-10-16 20:57:44 +02:00
|
|
|
gem 'acts_as_versioned', github: 'technoweenie/acts_as_versioned'
|
2014-11-22 00:43:24 +01:00
|
|
|
gem 'foodsoft_wiki', path: 'plugins/wiki'
|
|
|
|
gem 'foodsoft_messages', path: 'plugins/messages'
|
2013-10-29 22:23:17 +01:00
|
|
|
|
2014-12-16 22:43:46 +01:00
|
|
|
# plugins not enabled by default
|
|
|
|
#gem 'foodsoft_uservoice', path: 'plugins/uservoice'
|
|
|
|
|
|
|
|
|
2011-05-11 11:01:47 +02:00
|
|
|
group :production do
|
2013-07-13 23:06:30 +02:00
|
|
|
gem 'exception_notification'
|
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'
|
2015-01-02 17:40:21 +01:00
|
|
|
gem 'web-console', '~> 2.0'
|
2014-11-21 14:37:56 +01:00
|
|
|
|
|
|
|
# allow to use `debugger` https://github.com/conradirwin/pry-rescue
|
|
|
|
gem 'pry-rescue'
|
|
|
|
gem 'pry-stack_explorer'
|
2013-05-29 12:35:16 +02:00
|
|
|
|
2012-12-16 13:47:45 +01:00
|
|
|
# Better error output
|
|
|
|
gem 'better_errors'
|
|
|
|
gem 'binding_of_caller'
|
2013-06-06 03:21:44 +02:00
|
|
|
# gem "rails-i18n-debug"
|
2014-05-17 16:01:17 +02:00
|
|
|
# chrome debugging extension https://github.com/dejan/rails_panel
|
|
|
|
gem 'meta_request'
|
2013-06-06 03:21:44 +02:00
|
|
|
|
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
|
2014-05-06 12:11:22 +02:00
|
|
|
gem 'capistrano', '~> 3.2.0', require: false
|
|
|
|
gem 'capistrano-rvm', require: false
|
2014-01-15 13:51:24 +01:00
|
|
|
gem 'capistrano-bundler', '>= 1.1.0', require: false
|
|
|
|
gem 'capistrano-rails', require: false
|
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
|
2013-12-17 23:03:48 +01:00
|
|
|
gem 'ruby-prof', require: false
|
2013-07-25 14:46:25 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
group :test do
|
2013-07-12 20:06:49 +02:00
|
|
|
gem 'rspec-rails'
|
2014-11-21 14:37:56 +01:00
|
|
|
gem 'factory_girl_rails'
|
2013-07-14 02:49:40 +02:00
|
|
|
gem 'faker'
|
2013-10-29 21:31:07 +01:00
|
|
|
gem 'capybara'
|
2013-07-24 12:37:20 +02:00
|
|
|
# webkit and poltergeist don't seem to work yet
|
2013-10-29 21:31:07 +01:00
|
|
|
gem 'selenium-webdriver'
|
2013-07-24 02:57:45 +02:00
|
|
|
gem 'database_cleaner'
|
2013-12-07 15:10:13 +01:00
|
|
|
gem 'connection_pool'
|
2013-07-25 14:46:25 +02:00
|
|
|
# need to include rspec components before i18n-spec or rake fails in test environment
|
2015-04-24 15:19:57 +02:00
|
|
|
gem 'rspec-core', '~> 3.2'
|
2013-11-21 00:29:24 +01:00
|
|
|
gem 'rspec-rerun'
|
2013-07-25 14:46:25 +02:00
|
|
|
gem 'i18n-spec'
|
2013-12-16 23:11:39 +01:00
|
|
|
# code coverage
|
|
|
|
gem 'simplecov', require: false
|
|
|
|
gem 'coveralls', require: false
|
2013-07-12 20:06:49 +02:00
|
|
|
end
|