Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update gems #917

Merged
merged 6 commits into from
Feb 24, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
45 changes: 10 additions & 35 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,57 +3,38 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" }

ruby "~> 2.7.2"

# Bundle edge Rails instead: gem "rails", github: "rails/rails"
gem "rails", "~> 6.1"
# Use postgresql as the database for Active Record
gem "pg", ">= 0.18", "< 2.0"
gem "strong_migrations"
gem "good_migrations"
gem "pghero"
gem "logidze", ">= 1.0.0"
gem "fx"
# Use Puma as the app server
gem "puma", "~> 4.3.6"
gem "puma", ">= 5.2.1"
gem "puma_worker_killer"
gem "barnes"
# Use SCSS for stylesheets
gem "sass-rails", ">= 6"
# See https://github.com/rails/execjs#readme for more supported runtimes
# gem "mini_racer", platforms: :ruby
gem "administrate"
# Use Redis adapter to run Action Cable in production
# gem "redis", "~> 4.0"
# Use ActiveModel has_secure_password
# gem "bcrypt", "~> 3.1.7"
gem "faraday"
gem "memoist"
gem "sidekiq", "< 7"
gem "rack-attack"

gem "bcrypt", "~> 3.1.7"

gem "bcrypt"
gem "countries"
gem "geocoder"
gem "money"
gem "sentry-raven"
gem "omniauth"
gem "omniauth-linkedin-oauth2", github: "decioferreira/omniauth-linkedin-oauth2", branch: "master"
gem "omniauth-google-oauth2"
gem "omniauth-rails_csrf_protection", "~> 0.1"

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

gem "webpacker", "~> 5.1"
gem "slim"

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

# Airrecord for querying airtable
gem "omniauth"
gem "omniauth-linkedin-oauth2", github: "decioferreira/omniauth-linkedin-oauth2", branch: "master"
gem "omniauth-google-oauth2"
gem "omniauth-rails_csrf_protection"

gem "airrecord", "~> 1.0.5"

# For graphQL endpoint
gem "graphql"
gem "parser"
gem "stripe", "~> 5.14"
Expand All @@ -70,19 +51,14 @@ gem "graphql_playground-rails"

# Guild
gem "jsonb_accessor", "~> 1.1.0"
# Remove github reference once
# https://github.com/mbleigh/acts-as-taggable-on/pull/1013
# or
# https://github.com/mbleigh/acts-as-taggable-on/pull/1012/files
# is merged
gem "acts-as-taggable-on", github: "kvokka/acts-as-taggable-on", branch: "add-rails-6-1-support"
gem "acts-as-taggable-on"
gem "acts_as_follower", github: "tcocca/acts_as_follower", branch: "master"
gem "email_reply_parser"

gem "pry"
gem "pry-rails"
gem "pry-doc"
gem "pry-byebug"
gem "pry-byebug", ">= 3.9.0"

group :development, :test do
gem "dotenv-rails"
Expand All @@ -92,7 +68,6 @@ group :development, :test do
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.2"
gem "niceql"
Expand All @@ -107,10 +82,10 @@ group :development do
gem "guard-rspec", require: false
gem "letter_opener"
gem "brakeman"
gem "solargraph"
end

group :test do
# Adds support for Capybara system testing and selenium driver
gem "capybara"
gem "timecop"
gem "selenium-webdriver"
Expand Down