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
2023-01-06 16:12:41 +01:00
gem "rails", '~> 7.0'
gem 'mail', '~> 2.7.1' # bug with mail 2.8.0 https://github.com/mikel/mail/issues/1489
2014-02-20 15:04:53 +01:00
2023-01-06 16:12:41 +01:00
gem 'sassc-rails'
2014-02-20 15:04:53 +01:00
gem 'less-rails'
# 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'
2020-08-01 00:20:42 +02:00
gem 'bootsnap', require: false
2013-05-25 20:31:15 +02:00
2020-09-04 12:57:19 +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'
2023-02-23 00:18:25 +01:00
gem 'haml', '~> 5.0'
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'
2012-08-24 13:48:45 +02:00
gem 'daemons'
2018-10-13 20:16:35 +02:00
gem 'doorkeeper'
gem 'doorkeeper-i18n'
gem 'rack-cors', require: 'rack/cors'
2018-10-13 15:15:43 +02:00
gem 'active_model_serializers', '~> 0.10.0'
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'
2020-09-04 12:57:19 +02:00
gem 'sprockets', '< 4'
2014-02-20 15:04:53 +01:00
gem 'ransack'
2012-11-24 16:41:34 +01:00
gem 'acts_as_tree'
2016-02-18 22:34:06 +01:00
gem 'rails-settings-cached', '= 0.4.3' # caching breaks tests until Rails 5 https://github.com/huacnlee/rails-settings-cached/issues/73
2013-09-17 15:02:58 +02:00
gem 'resque'
2020-09-04 12:57:19 +02:00
gem 'puma'
2022-10-25 09:17:23 +02:00
gem 'sd_notify'
2013-05-25 15:03:31 +02:00
gem 'whenever', require: false # For defining cronjobs, see config/schedule.rb
2013-12-06 18:14:32 +01:00
gem 'ruby-units'
2014-06-06 16:41:01 +02:00
gem 'attribute_normalizer'
2016-06-11 19:42:14 +02:00
gem 'ice_cube'
2023-01-06 16:12:41 +01:00
# At time of development 01-06-2022 mmddyyyy necessary fix for config_helper.rb form builder was not in rubygems so we pull from github, see: https://github.com/gregschmit/recurring_select/pull/152
gem 'recurring_select', git: 'https://github.com/gregschmit/recurring_select'
2023-01-31 15:25:36 +01:00
gem 'foodsoft_article_import', git: 'https://git.local-it.org/Foodsoft/foodsoft_article_import', tag: 'v1.0'
2016-06-11 19:42:14 +02:00
gem 'roo'
2015-05-30 19:09:58 +02:00
gem 'roo-xls'
2015-01-18 02:04:57 +01:00
gem 'spreadsheet'
2017-10-03 20:36:17 +02:00
gem 'exception_notification'
2015-06-06 20:20:07 +02:00
gem 'gaffe'
2016-05-06 15:04:58 +02:00
gem 'ruby-filemagic'
2019-03-27 16:49:10 +01:00
gem 'mime-types'
2017-08-19 15:45:48 +02:00
gem 'midi-smtp-server'
2022-11-07 12:23:54 +01:00
gem 'rswag-api'
gem 'rswag-ui'
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
2017-04-09 19:03:30 +02:00
gem 'acts_as_versioned', git: 'https://github.com/technoweenie/acts_as_versioned.git'
2014-11-22 00:43:24 +01:00
gem 'foodsoft_wiki', path: 'plugins/wiki'
gem 'foodsoft_messages', path: 'plugins/messages'
2017-10-11 10:18:26 +02:00
gem 'foodsoft_documents', path: 'plugins/documents'
2017-09-22 01:14:48 +02:00
gem 'foodsoft_discourse', path: 'plugins/discourse'
2020-07-29 11:19:20 +02:00
gem 'foodsoft_links', path: 'plugins/links'
2017-11-05 22:16:32 +01:00
gem 'foodsoft_polls', path: 'plugins/polls'
2013-10-29 22:23:17 +01:00
2014-12-16 22:43:46 +01:00
# plugins not enabled by default
2021-03-01 15:27:26 +01:00
# gem 'foodsoft_current_orders', path: 'plugins/current_orders'
# gem 'foodsoft_printer', path: 'plugins/printer'
# gem 'foodsoft_uservoice', path: 'plugins/uservoice'
2014-12-16 22:43:46 +01:00
2012-11-24 15:27:48 +01:00
group :development do
2019-11-11 23:06:11 +01:00
gem 'sqlite3', '~> 1.3.6'
2013-05-29 12:35:16 +02:00
gem 'mailcatcher'
2020-09-04 12:57:19 +02:00
gem 'web-console'
2020-07-31 23:47:14 +02:00
gem 'listen'
2014-11-21 14:37:56 +01: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
2023-01-06 16:12:41 +01:00
# TODO: disabled due to https://github.com/rails/rails/issues/40781
# gem 'meta_request'
2017-04-09 19:03:30 +02:00
2013-01-26 16:16:50 +01:00
# Get infos when not using proper eager loading
gem 'bullet'
2022-03-11 22:43:43 +01:00
# Display Active Record queries as tables in the console
gem 'table_print'
2012-11-24 15:27:48 +01:00
end
2013-07-12 20:06:49 +02:00
group :development, :test do
2021-03-01 13:41:50 +01:00
gem 'rubocop', require: false
gem 'rubocop-rails', require: false
gem 'rubocop-rspec', require: false
2013-12-17 23:03:48 +01:00
gem 'ruby-prof', require: false
2019-01-25 12:27:21 +01:00
# allow to use `debugger` https://github.com/conradirwin/pry-rescue
gem 'pry-rescue'
gem 'pry-stack_explorer'
2013-07-25 14:46:25 +02:00
end
group :test do
2013-07-12 20:06:49 +02:00
gem 'rspec-rails'
2017-10-27 23:21:31 +02:00
gem 'factory_bot_rails'
2013-07-14 02:49:40 +02:00
gem 'faker'
2013-10-29 21:31:07 +01:00
gem 'capybara'
2019-10-28 09:39:32 +01:00
gem 'apparition' # Capybara javascript driver
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
2020-09-04 12:57:19 +02:00
gem 'rspec-core'
2013-11-21 00:29:24 +01:00
gem 'rspec-rerun'
2013-07-25 14:46:25 +02:00
gem 'i18n-spec'
2022-12-05 10:13:02 +01:00
gem 'rails-controller-testing'
2013-12-16 23:11:39 +01:00
# code coverage
gem 'simplecov', require: false
2021-02-18 13:18:31 +01:00
gem 'simplecov-lcov', require: false
2018-10-15 16:47:14 +02:00
# api
2022-11-07 12:23:54 +01:00
gem 'rswag-specs'
2023-01-06 16:12:41 +01:00
gem 'hashie', '~> 3.4.6', require: false # https://github.com/westfieldlabs/apivore/issues/114
2013-07-12 20:06:49 +02:00
end
2023-01-27 11:16:53 +01:00
gem "importmap-rails", "~> 1.1"
2023-02-09 17:18:25 +01:00
gem "image_processing", "~> 1.12"
2023-02-10 12:50:59 +01:00
gem "terser", "~> 1.1"