texpert/florsan

View on GitHub
Gemfile

Summary

Maintainability
Test Coverage
# frozen_string_literal: true

source 'https://rubygems.org'

ruby file: '.tool-versions'

# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.8.1', require: false
gem 'camaleon_cms', '>= 2.7.3'
# gem 'camaleon_cms', git: 'https://github.com/owen2345/camaleon-cms'
gem 'dartsass-sprockets'
gem 'draper', '>= 3'
gem 'font-awesome-rails'
gem 'genericons-rails'
gem 'net-http' # Promoted to stdlib in Ruby 3.0, required here to avoid "already initialized constant errors"
gem 'oj'
gem 'pg'
gem 'psych'
gem 'puma', '~> 6.4'
gem 'rails', '~> 7.1'
gem 'sprockets-rails', '>= 3.5.1'
gem 'turbolinks', '~> 5'

# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'

# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'

group :development, :test do
  # Call 'byebug' anywhere in the code to stop execution and get a debugger console
  # gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
end

group :development do
  gem 'benchmark-ips', '>= 2.9.1'
  gem 'derailed_benchmarks'
  gem 'localhost', require: 'localhost/authority'
  gem 'rack-mini-profiler', '~> 3.3'
  gem 'rubocop', require: false
  gem 'rubocop-capybara', require: false
  gem 'rubocop-factory_bot', require: false
  gem 'rubocop-performance', require: false
  gem 'rubocop-rails', require: false
  gem 'rubocop-rake', require: false
  gem 'rubocop-rspec', require: false
  gem 'rubocop-rspec_rails', require: false
  gem 'stackprof'
  # Access an interactive console on exception pages or by calling 'console' anywhere in the code.
  gem 'web-console', '>= 4.1.0'
end

group :test do
  # Adds support for Capybara system testing and selenium driver
  gem 'capybara', '>= 3.26'
  gem 'selenium-webdriver'
end

# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
# gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]

#################### Camaleon CMS include all gems for plugins and themes ####################
require_relative 'lib/plugin_routes'
instance_eval(PluginRoutes.draw_gems)