OfficeMomsandDads/scheduler

View on GitHub
Gemfile

Summary

Maintainability
Test Coverage
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }

ruby '3.0.5'

# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 6.1.4'
# Use postgresql as the database for Active Record
gem 'pg'
# Use Puma as the app server
gem 'puma'
# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
gem 'webpacker'
gem 'react-rails'
gem 'sassc-rails'
# See https://github.com/rails/execjs#readme for more supported runtimes
# gem 'mini_racer', platforms: :ruby

# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
gem 'turbolinks'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder'
# Use Redis adapter to run Action Cable in production
gem 'redis'
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'

# Use ActiveStorage variant
# gem 'mini_magick', '~> 4.8'

# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development

# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', require: false

# Admin framework
gem 'activeadmin'
gem 'selectize-rails'

# User registration & authorization
gem 'devise'
gem 'devise_invitable'

# For user permissions
gem 'pundit'

# Address Verification & Geocoding
gem 'mainstreet'
gem 'geocoder'

gem 'haml-rails'

# For expanding rrule strings
gem 'rrule'

# For callable service objects
gem 'procto'
gem 'adamantium'
gem 'concord'

gem 'redis-namespace'
gem 'sidekiq'
gem 'twilio-ruby'
gem 'sidekiq-cron'

# Exception monitoring
gem 'honeybadger'

# For phone number validation/formatting
gem 'telephone_number'

group :development, :test do
  # Call 'byebug' anywhere in the code to stop execution and get a debugger console
  gem 'awesome_print'
  gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
  gem 'dotenv-rails'
  gem 'faker'
  gem 'pry-rails'
  gem 'pry-byebug'
  gem 'rspec-rails', '>= 4.0.0.beta3'
  gem 'rspec-collection_matchers'
  gem 'shoulda-matchers'
  gem 'pundit-matchers'
  gem 'factory_bot_rails'
  gem 'rspec_junit_formatter'
  gem 'rspec-jumpstart'
  gem 'spring-commands-rspec'
  gem 'rails-controller-testing'
  gem 'webmock'
  gem 'vcr'
  gem 'spring'
  gem 'spring-watcher-listen'
  gem 'selective-ruby-rspec'
end

group :development do
  # Access an interactive console on exception pages or by calling 'console' anywhere in the code.
  gem 'web-console'
  gem 'listen'
  gem 'rubocop'
  gem 'rubocop-rails'
  gem 'rubocop-rspec'
  gem 'rubocop-performance'
end

group :test do
  # Mutant license key is scoped to
  # https://github.com/OfficeMomsandDads/scheduler
  # and will not be useful elsewhere
  source 'https://oss:FwSfIZqXnuDWxwB4bivZrsfvvVPP4iNW@gem.mutant.dev' do
    gem 'mutant-license'
  end

  gem 'capybara'
  gem 'mutant'
  gem 'mutant-rspec'
  gem 'selenium-webdriver'
  gem 'simplecov', require: false
end