Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,22 +6,22 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.0.0'

# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 6.1.3.2'
gem 'rails', '~> 7.1.0.0'

# Use Puma as the app server
gem 'puma', '~> 4.3.11'

# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
gem 'sass-rails', '~> 6.0.0'
gem 'webpacker', '>= 5.2.1'
gem 'webpacker', '>= 5.2.2'

# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
gem 'turbolinks', '~> 5.2.1'

gem 'fast_blank'
gem 'pg'

gem 'jbuilder', '>= 2.10.1'
gem 'jbuilder', '>= 2.11.3'
gem 'oj'

# i18n
Expand All @@ -32,18 +32,18 @@ gem 'parallel', require: false
gem 'ruby-progressbar', require: false

# seo
gem 'meta-tags', '>= 2.14.0'
gem 'meta-tags', '>= 2.19.0'

# For managing cros
gem 'rack-cors', require: 'rack/cors'
gem 'rack-cors', '>= 2.0.0', require: 'rack/cors'
gem 'sentry-raven'

# Detect language from text
gem 'cld3', '>= 3.4.1'

# Elasticsearch
# using excon as faraday adapter (net::http breaks)
gem 'elasticsearch-model', '>= 7.1.1'
gem 'elasticsearch-model', '>= 7.2.0'
gem 'excon'
gem 'typhoeus', github: 'naveed-ahmad/typhoeus'

Expand Down Expand Up @@ -71,15 +71,15 @@ group :development do
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem 'binding_of_caller'
gem 'pry-rails'
gem 'web-console', '>= 4.1.0'
gem 'web-console', '>= 4.2.0'

gem 'annotate', '>= 3.1.1'
gem 'annotate', '>= 3.2.0'
gem 'puma-ngrok-tunnel', '>= 1.2.0'
# gem 'rails_real_favicon', '>= 0.1.0'
gem 'listen'
gem 'rubocop', '>= 1.8.1', require: false
gem 'rubocop-performance', '>= 1.7.1'
gem 'rubocop-rails', '~> 2.3.2'
gem 'rubocop-rails', '~> 2.4.0'
gem 'rubocop-rspec', '>= 1.43.2'

# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
Expand All @@ -105,7 +105,7 @@ end

group :test do
# Adds support for Capybara system testing and selenium driver
gem 'capybara', '>= 3.35.3'
gem 'capybara', '>= 3.36.0'
gem 'selenium-webdriver'
# Easy installation and use of chromedriver to run system tests with Chrome
gem 'chromedriver-helper', '>= 2.1.1'
Expand Down
Loading
Loading