Skip to content

Commit

Permalink
resync the translations
Browse files Browse the repository at this point in the history
  • Loading branch information
naveed-ahmad committed Jan 20, 2021
1 parent efb8e87 commit 695f054
Show file tree
Hide file tree
Showing 67 changed files with 1,841 additions and 1,082 deletions.
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.7.1
3.0.0
42 changes: 21 additions & 21 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }

ruby '2.7.1'
ruby '3.0.0'

# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 6.0.3.4'
gem 'rails', '~> 6.1'

# Use Puma as the app server
gem 'puma', '~> 3.12.6'
Expand All @@ -32,23 +32,25 @@ gem 'parallel', require: false
gem 'ruby-progressbar', require: false

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

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

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

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

gem 'actionpack-action_caching', '>= 1.2.1'
gem "actionpack-page_caching", ">= 1.2.3"
# update the version once actionpack-action-caching is released
# https://github.com/rails/actionpack-action_caching/commit/7bdfa663274a2620dde8daad7dcb995c1cfef840
gem 'actionpack-action_caching', github: 'rails/actionpack-action_caching'#, '>= 1.2.1'
gem "actionpack-page_caching", github: 'rails/actionpack-page_caching'#, ">= 1.2.3"

# Pagination
gem 'pagy', '= 3.7.3'
Expand All @@ -67,34 +69,32 @@ gem 'sitemap_generator'

group :development do
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem 'binding_of_caller'
#gem 'binding_of_caller'
gem 'pry-rails'
gem 'web-console', '>= 4.0.4'
gem 'puma-ngrok-tunnel', '>= 1.0.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 'annotate', '= 2.7.4'
gem 'rails_real_favicon', '>= 0.1.0'
gem 'annotate', '>= 3.1.1'
#gem 'rails_real_favicon', '>= 0.1.0'
gem 'rubocop', '>= 0.79', require: false
gem 'rubocop-performance'
gem 'rubocop-rails', '~> 2.3.2'
gem 'rubocop-rspec'

gem 'listen'
# 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'

# Linters
gem 'scss_lint'
# Pronto specific gems will analyze code and add comments on Github PR
gem 'pronto'
gem 'pronto-blacklist', require: false
gem 'pronto-brakeman', require: false
gem 'pronto-erb_lint', '>= 0.1.5', require: false
gem 'pronto-fasterer', require: false
gem 'pronto-flay', require: false
gem 'pronto-rubocop', require: false
gem 'pronto-scss', require: false
#gem 'pronto'
#gem 'pronto-blacklist', require: false
#gem 'pronto-brakeman', require: false
#gem 'pronto-erb_lint', '>= 0.1.5', require: false
#gem 'pronto-fasterer', require: false
#gem 'pronto-flay', require: false
#gem 'pronto-rubocop', require: false
#gem 'pronto-scss', require: false
end

group :test do
Expand Down
Loading

0 comments on commit 695f054

Please sign in to comment.