viehlieb
4b5775e107
use filetypes for manual uploading bnn, odin, foodsoft file use opts in .parse adapt specs to include file format add specs for odin, bnn, foodsoft files adapt localize input to remove ',' separator and replace with '.' remove depr foodsoftfile.rb and spreadsheet.rb remove todo
132 lines
4 KiB
Ruby
132 lines
4 KiB
Ruby
# A sample Gemfile
|
|
source "https://rubygems.org"
|
|
|
|
gem "rails", '~> 7.0'
|
|
gem 'mail', '~> 2.7.1' # bug with mail 2.8.0 https://github.com/mikel/mail/issues/1489
|
|
|
|
|
|
gem 'sassc-rails'
|
|
gem 'less-rails'
|
|
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
|
|
gem 'therubyracer', platforms: :ruby
|
|
|
|
gem 'jquery-rails'
|
|
gem 'select2-rails'
|
|
gem 'rails_tokeninput'
|
|
gem 'bootstrap-datepicker-rails'
|
|
gem 'date_time_attribute'
|
|
gem 'rails-assets-listjs', '0.2.0.beta.4' # remember to maintain list.*.js plugins and template engines on update
|
|
gem 'i18n-js', '~> 3.0.0.rc8'
|
|
gem 'rails-i18n'
|
|
gem 'bootsnap', require: false
|
|
|
|
gem 'mysql2'
|
|
gem 'prawn'
|
|
gem 'prawn-table'
|
|
gem 'haml', '~> 5.0'
|
|
gem 'haml-rails'
|
|
gem 'kaminari'
|
|
gem 'simple_form'
|
|
gem 'inherited_resources'
|
|
gem 'daemons'
|
|
gem 'doorkeeper'
|
|
gem 'doorkeeper-i18n'
|
|
gem 'rack-cors', require: 'rack/cors'
|
|
gem 'active_model_serializers', '~> 0.10.0'
|
|
gem 'twitter-bootstrap-rails', '~> 2.2.8'
|
|
gem 'simple-navigation', '~> 3.14.0' # 3.x for simple_navigation_bootstrap
|
|
gem 'simple-navigation-bootstrap'
|
|
gem 'sprockets', '< 4'
|
|
gem 'ransack'
|
|
gem 'acts_as_tree'
|
|
gem 'rails-settings-cached', '= 0.4.3' # caching breaks tests until Rails 5 https://github.com/huacnlee/rails-settings-cached/issues/73
|
|
gem 'resque'
|
|
gem 'puma'
|
|
gem 'sd_notify'
|
|
gem 'whenever', require: false # For defining cronjobs, see config/schedule.rb
|
|
gem 'ruby-units'
|
|
gem 'attribute_normalizer'
|
|
gem 'ice_cube'
|
|
# 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'
|
|
gem 'foodsoft_article_import', git: 'https://git.local-it.org/Foodsoft/foodsoft_article_import', tag: 'v1.0'
|
|
gem 'roo'
|
|
gem 'roo-xls'
|
|
gem 'spreadsheet'
|
|
gem 'exception_notification'
|
|
gem 'gaffe'
|
|
gem 'ruby-filemagic'
|
|
gem 'mime-types'
|
|
gem 'midi-smtp-server'
|
|
gem 'rswag-api'
|
|
gem 'rswag-ui'
|
|
|
|
# we use the git version of acts_as_versioned, and need to include it in this Gemfile
|
|
gem 'acts_as_versioned', git: 'https://github.com/technoweenie/acts_as_versioned.git'
|
|
gem 'foodsoft_wiki', path: 'plugins/wiki'
|
|
gem 'foodsoft_messages', path: 'plugins/messages'
|
|
gem 'foodsoft_documents', path: 'plugins/documents'
|
|
gem 'foodsoft_discourse', path: 'plugins/discourse'
|
|
gem 'foodsoft_links', path: 'plugins/links'
|
|
gem 'foodsoft_polls', path: 'plugins/polls'
|
|
|
|
# plugins not enabled by default
|
|
# gem 'foodsoft_current_orders', path: 'plugins/current_orders'
|
|
# gem 'foodsoft_printer', path: 'plugins/printer'
|
|
# gem 'foodsoft_uservoice', path: 'plugins/uservoice'
|
|
|
|
group :development do
|
|
gem 'sqlite3', '~> 1.3.6'
|
|
gem 'mailcatcher'
|
|
gem 'web-console'
|
|
gem 'listen'
|
|
|
|
# Better error output
|
|
gem 'better_errors'
|
|
gem 'binding_of_caller'
|
|
# gem "rails-i18n-debug"
|
|
# chrome debugging extension https://github.com/dejan/rails_panel
|
|
# TODO: disabled due to https://github.com/rails/rails/issues/40781
|
|
# gem 'meta_request'
|
|
|
|
# Get infos when not using proper eager loading
|
|
gem 'bullet'
|
|
# Display Active Record queries as tables in the console
|
|
gem 'table_print'
|
|
end
|
|
|
|
group :development, :test do
|
|
gem 'rubocop', require: false
|
|
gem 'rubocop-rails', require: false
|
|
gem 'rubocop-rspec', require: false
|
|
gem 'ruby-prof', require: false
|
|
|
|
# allow to use `debugger` https://github.com/conradirwin/pry-rescue
|
|
gem 'pry-rescue'
|
|
gem 'pry-stack_explorer'
|
|
end
|
|
|
|
group :test do
|
|
gem 'rspec-rails'
|
|
gem 'factory_bot_rails'
|
|
gem 'faker'
|
|
gem 'capybara'
|
|
gem 'apparition' # Capybara javascript driver
|
|
gem 'database_cleaner'
|
|
gem 'connection_pool'
|
|
# need to include rspec components before i18n-spec or rake fails in test environment
|
|
gem 'rspec-core'
|
|
gem 'rspec-rerun'
|
|
gem 'i18n-spec'
|
|
gem 'rails-controller-testing'
|
|
# code coverage
|
|
gem 'simplecov', require: false
|
|
gem 'simplecov-lcov', require: false
|
|
# api
|
|
gem 'rswag-specs'
|
|
gem 'hashie', '~> 3.4.6', require: false # https://github.com/westfieldlabs/apivore/issues/114
|
|
end
|
|
|
|
gem "importmap-rails", "~> 1.1"
|
|
gem "image_processing", "~> 1.12"
|
|
gem "terser", "~> 1.1"
|