2011-01-30 22:59:32 +01:00
# A sample Gemfile
2023-05-12 13:01:12 +02:00
source 'https://rubygems.org'
2014-02-20 15:04:53 +01:00
2023-09-18 20:48:46 +02:00
gem 'rails', '~> 7.0', '>=7.0.4.1'
2023-01-16 18:21:43 +01:00
2014-02-20 15:04:53 +01:00
gem 'less-rails'
2023-05-12 13:01:12 +02:00
gem 'sassc-rails'
2014-02-20 15:04:53 +01:00
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer', platforms: :ruby
2023-05-12 13:01:12 +02:00
gem 'bootsnap', require: false
2013-07-07 01:47:22 +02:00
gem 'bootstrap-datepicker-rails'
2014-02-20 12:37:51 +01:00
gem 'date_time_attribute'
2014-12-10 20:07:26 +01:00
gem 'i18n-js', '~> 3.0.0.rc8'
2023-05-12 13:01:12 +02:00
gem 'jquery-rails'
gem 'rails-assets-listjs', '0.2.0.beta.4' # remember to maintain list.*.js plugins and template engines on update
2013-10-17 16:20:51 +02:00
gem 'rails-i18n'
2023-05-12 13:01:12 +02:00
gem 'rails_tokeninput'
gem 'select2-rails'
2013-05-25 20:31:15 +02:00
2023-05-12 13:01:12 +02:00
gem 'active_model_serializers', '~> 0.10.0'
gem 'acts_as_tree'
gem 'attribute_normalizer'
2012-08-24 13:48:45 +02:00
gem 'daemons'
2018-10-13 20:16:35 +02:00
gem 'doorkeeper'
gem 'doorkeeper-i18n'
2023-02-23 00:18:25 +01:00
gem 'haml', '~> 5.0'
2023-05-12 13:01:12 +02:00
gem 'haml-rails'
gem 'ice_cube'
gem 'inherited_resources'
gem 'kaminari'
gem 'mysql2'
2023-09-19 10:54:04 +02:00
gem 'net-ftp'
gem 'net-http'
2023-05-12 13:01:12 +02:00
gem 'prawn'
gem 'prawn-table'
gem 'puma'
2018-10-13 20:16:35 +02:00
gem 'rack-cors', require: 'rack/cors'
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
2023-05-12 13:01:12 +02:00
gem 'ransack'
2013-09-17 15:02:58 +02:00
gem 'resque'
2023-05-12 13:01:12 +02:00
gem 'ruby-units'
gem 'simple_form'
gem 'simple-navigation', '~> 3.14.0' # 3.x for simple_navigation_bootstrap
gem 'simple-navigation-bootstrap'
gem 'sprockets', '< 4'
gem 'twitter-bootstrap-rails', '~> 2.2.8'
2013-05-25 15:03:31 +02:00
gem 'whenever', require: false # For defining cronjobs, see config/schedule.rb
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
2017-10-03 20:36:17 +02:00
gem 'exception_notification'
2015-06-06 20:20:07 +02:00
gem 'gaffe'
2023-05-12 11:11:48 +02:00
gem 'hashie', '~> 3.4.6', require: false # https://github.com/westfieldlabs/apivore/issues/114
2023-08-04 10:52:30 +02:00
gem "image_processing", "~> 1.12"
gem "importmap-rails", "~> 1.1"
2023-05-12 13:01:12 +02:00
gem 'midi-smtp-server'
gem 'mime-types'
gem 'recurring_select', git: 'https://github.com/gregschmit/recurring_select'
gem 'roo'
gem 'roo-xls'
2023-05-12 11:11:48 +02:00
gem 'rswag-api'
gem 'rswag-ui'
2023-05-12 13:01:12 +02:00
gem 'ruby-filemagic'
gem 'spreadsheet'
2023-08-04 10:52:30 +02:00
gem "terser", "~> 1.1"
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'
2017-09-22 01:14:48 +02:00
gem 'foodsoft_discourse', path: 'plugins/discourse'
2023-05-12 13:01:12 +02:00
gem 'foodsoft_documents', path: 'plugins/documents'
2020-07-29 11:19:20 +02:00
gem 'foodsoft_links', path: 'plugins/links'
2023-05-12 13:01:12 +02:00
gem 'foodsoft_messages', path: 'plugins/messages'
2017-11-05 22:16:32 +01:00
gem 'foodsoft_polls', path: 'plugins/polls'
2023-05-12 13:01:12 +02:00
gem 'foodsoft_wiki', path: 'plugins/wiki'
2023-10-10 23:11:34 +02:00
gem 'foodsoft_automatic_invoices', path: 'plugins/automatic_invoices'
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
2023-05-12 13:01:12 +02:00
gem 'listen'
2013-05-29 12:35:16 +02:00
gem 'mailcatcher'
2023-05-12 13:01:12 +02:00
gem 'sqlite3', '~> 1.3.6'
2020-09-04 12:57:19 +02:00
gem 'web-console'
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
2019-10-28 09:39:32 +01:00
gem 'apparition' # Capybara javascript driver
2023-05-12 13:01:12 +02:00
gem 'capybara'
2013-12-07 15:10:13 +01:00
gem 'connection_pool'
2023-05-12 13:01:12 +02:00
gem 'database_cleaner'
gem 'factory_bot_rails'
gem 'faker'
gem 'rspec-rails'
2013-07-25 14:46:25 +02:00
# need to include rspec components before i18n-spec or rake fails in test environment
2023-05-12 13:01:12 +02:00
gem 'i18n-spec'
2020-09-04 12:57:19 +02:00
gem 'rspec-core'
2013-11-21 00:29:24 +01:00
gem 'rspec-rerun'
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
2023-05-12 11:11:48 +02:00
gem 'rswag-specs'
2013-07-12 20:06:49 +02:00
end