source 'https://rubygems.org' git_source(:github) { |repo| "https://github.com/#{repo}.git" } ruby '2.7.6' # Bundle edge Rails instead: gem 'rails', github: 'rails/rails' gem 'rails', '~> 6.0.2', '>= 6.0.2.1' # Use mysql as the database for Active Record gem 'mysql2', '>= 0.3.13', '< 0.5' gem 'puma', '~> 4.1' # Use SCSS for stylesheets gem 'sass-rails', '>= 6' gem 'webpacker', '~> 4.2.0' # Use jquery as the JavaScript library #gem 'jquery-rails', '~> 4.3.3' #gem 'jquery-ui-rails', '~> 6.0.1' gem 'turbolinks', '~> 5' # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder gem 'jbuilder', '~> 2.7' gem 'bootsnap', '>= 1.4.2', require: false gem 'devise', ">= 4.7.1" gem 'ransack', '~> 2.3.2' gem 'kaminari', '~> 1.2.0' gem 'base58', '~> 0.2.3' gem 'carrierwave', '~> 1.3.1' gem 'mini_magick', '~> 4.10' gem 'whenever', '~> 1.0.0', :require => false # Excel operation gem 'rubyXL', "= 3.3.8" gem "rails-settings-cached", '~> 2.1.1' gem 'redis', '~> 4.0' gem 'hiredis' gem 'rails-i18n', '~> 6.0.0' gem 'rubocop-rails', require: false group :production do gem "sentry-raven" gem 'newrelic_rpm' end # 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 # Access an interactive console on exception pages or by calling 'console' anywhere in the code. gem 'web-console', '>= 3.3.0' gem 'listen', '>= 3.0.5', '< 3.2' # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring gem 'spring' gem 'spring-watcher-listen', '~> 2.0.0' # Annotate Rails classes with schema and routes info # Usage: bundle exec annotate gem 'annotate' end group :test do # Adds support for Capybara system testing and selenium driver gem 'capybara', '>= 2.15' gem 'selenium-webdriver' # Easy installation and use of web drivers to run system tests with browsers gem 'webdrivers' end # Windows does not include zoneinfo files, so bundle the tzinfo-data gem gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]