Skip to content
This repository has been archived by the owner on Dec 26, 2022. It is now read-only.

Commit

Permalink
Merge pull request #115 from stephannv/dev
Browse files Browse the repository at this point in the history
Prepare release
  • Loading branch information
stephannv authored Jan 23, 2022
2 parents 47d7c47 + 77fed13 commit 389d1bf
Show file tree
Hide file tree
Showing 65 changed files with 618 additions and 533 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,11 @@
# Ignore uploaded files in development.
/storage/*
!/storage/.keep
/tmp/storage/*
!/tmp/storage/
!/tmp/storage/.keep

/public/assets
.byebug_history

# Ignore master key for decrypting credentials and more.
/config/master.key
Expand Down
6 changes: 6 additions & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,9 @@ Metrics/MethodLength:
Naming/VariableNumber:
Enabled: false

Rails/RedundantPresenceValidationOnBelongsTo:
Enabled: false

Rails/SkipsModelValidations:
Enabled: false

Expand All @@ -72,6 +75,9 @@ Style/Documentation:
Style/FrozenStringLiteralComment:
Enabled: true

Style/HashSyntax:
EnforcedShorthandSyntax: either

Style/StringLiterals:
AutoCorrect: true

Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ruby-3.0.2
ruby-3.1.0
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ruby 3.0.2
ruby 3.1.0
70 changes: 34 additions & 36 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,60 +3,58 @@
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }

ruby '3.0.2'
ruby '3.1.0'

gem 'algolia', '2.1.1'
gem 'algolia', '2.2.2'
gem 'awesome_print', '1.9.2'
gem 'bootsnap', '1.7.7', require: false
gem 'bootsnap', '1.10.2', require: false
gem 'bytesize', '0.1.2'
gem 'devise', '4.8.0'
gem 'down', '5.2.3'
gem 'enumerate_it', '3.2.0'
gem 'devise', '4.8.1'
gem 'down', '5.2.4'
gem 'enumerate_it', '3.2.2'
gem 'friendly_id', '5.4.2'
gem 'httparty', '0.18.1'
gem 'i18n_data', '0.13.0'
gem 'meta-tags', '2.15.0'
gem 'money-rails', '1.14.0'
gem 'nokogiri', '1.12.1'
gem 'httparty', '0.20.0'
gem 'i18n_data', '0.15.0'
gem 'meta-tags', '2.16.0'
gem 'money-rails', '1.15.0'
gem 'nokogiri', '1.13.1'
gem 'omniauth', '2.0.4'
gem 'omniauth-discord', '1.0.0'
gem 'omniauth-discord', '1.0.2'
gem 'omniauth-rails_csrf_protection', '1.0.0'
gem 'omniauth-twitter', '1.4.0'
gem 'pagy', '4.10.1'
gem 'pagy', '5.9.1'
gem 'pg', '1.2.3'
gem 'pg_search', '2.3.5'
gem 'puma', '5.4.0'
gem 'rails', '6.1.4'
gem 'rails-i18n', '6.0.0'
gem 'sass-rails', '6.0.0'
gem 'sentry-rails', '4.6.4'
gem 'sentry-ruby', '4.6.4'
gem 'service_actor', '3.1.1'
gem 'pg_search', '2.3.6'
gem 'puma', '5.5.2'
gem 'rails', '7.0.1'
gem 'rails-i18n', '7.0.1'
gem 'sassc-rails', '2.1.2'
gem 'sentry-rails', '5.0.0'
gem 'service_actor', '3.1.3'
gem 'slim-rails', '3.3.0'
gem 'sprockets-rails', '3.4.2'
gem 'tzinfo-data', '2.0.4', platforms: %i[mingw mswin x64_mingw jruby]
gem 'view_component', '2.36.0', require: 'view_component/engine'
gem 'webpacker', '5.4.0'
gem 'view_component', '2.48.0'
gem 'webpacker', '5.4.3'

group :development, :test do
gem 'byebug', '11.1.3', platforms: %i[mri mingw x64_mingw]
gem 'debug', '1.4.0', platforms: %i[mri mingw x64_mingw]
gem 'factory_bot_rails', '6.2.0'
gem 'faker', '2.18.0'
gem 'faker', '2.19.0'
end

group :development do
gem 'listen', '3.6.0'
gem 'rack-mini-profiler', '2.3.2'
gem 'rubocop', '1.18.4'
gem 'rubocop-performance', '1.11.4'
gem 'rubocop-rails', '2.11.3'
gem 'rubocop-rspec', '2.4.0'
gem 'spring', '2.1.1'
gem 'web-console', '4.1.0'
gem 'rack-mini-profiler', '2.3.3'
gem 'rubocop', '1.25.0'
gem 'rubocop-performance', '1.13.2'
gem 'rubocop-rails', '2.13.2'
gem 'rubocop-rspec', '2.7.0'
gem 'web-console', '4.2.0'
end

group :test do
gem 'rspec-rails', '5.0.1'
gem 'shoulda-matchers', '5.0.0'
gem 'rspec-rails', '5.0.2'
gem 'shoulda-matchers', '5.1.0'
gem 'simplecov', '0.21.2'
gem 'webmock', '3.13.0'
gem 'webmock', '3.14.0'
end
Loading

0 comments on commit 389d1bf

Please sign in to comment.