Skip to content
This repository has been archived by the owner on Jun 16, 2021. It is now read-only.

Commit

Permalink
Merge pull request #1429 from omu/develop
Browse files Browse the repository at this point in the history
Merge branch develop into master
  • Loading branch information
huseyin authored Jan 21, 2020
2 parents 52ed93e + 8eceb2b commit e5dedc9
Show file tree
Hide file tree
Showing 147 changed files with 3,282 additions and 1,586 deletions.
2 changes: 1 addition & 1 deletion .erb-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ linters:
Enabled: false
Style/FrozenStringLiteralComment:
Enabled: false
Metrics/LineLength:
Layout/LineLength:
Enabled: false
Lint/UselessAssignment:
Enabled: false
Expand Down
4 changes: 3 additions & 1 deletion .gitallowed
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@
\byarn\.lock
\bGemfile\.lock
^app/lib/nokul/database_url\.rb
^README.md:[6-7]:
^README.md:[6-8]:
^lib/templates/ldap/.*
^test/controllers/accounts/settings/emails_controller_test.rb:23:
^test/controllers/accounts/settings/passwords_controller_test.rb:25:
^test/fixtures/users.yml:(1|6|11|16):
^test/system/account_settings_page_flow_test.rb:20:
^test/system/login_page_flow_test.rb:15:
2 changes: 0 additions & 2 deletions .gitattributes

This file was deleted.

2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Rails/UnknownEnv:
- development
- production
- test
Metrics/LineLength:
Layout/LineLength:
Exclude:
- app/validators/employee_validator.rb # Won't fix
Metrics/BlockLength:
Expand Down
2 changes: 1 addition & 1 deletion .rubocop_common.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Layout/HashAlignment:
EnforcedHashRocketStyle: table
EnforcedColonStyle: table

Metrics/LineLength:
Layout/LineLength:
Max: 120

Naming/MemoizedInstanceVariableName:
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.6.4
2.7.0
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ondokuz/ruby:buster-19.1
FROM ondokuz/ruby:buster-20.1

ENV PATH=/app/bin:$PATH

Expand Down
9 changes: 6 additions & 3 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,13 @@ gem 'ancestry'

# active-storage
gem 'aws-sdk-s3', require: false
gem 'image_processing', '~> 1.2'
gem 'ruby-vips', '~> 2.0.16'
gem 'image_processing', '~> 1.10.3'
gem 'ruby-vips', '~> 2.0.17'

# authentication
gem 'authy'
gem 'devise'
gem 'omniauth_openid_connect'

# authorization
gem 'pundit'
Expand Down Expand Up @@ -99,7 +100,7 @@ group :test do
gem 'capybara'
gem 'codacy-coverage', require: false
gem 'minitest-focus'
gem 'webdrivers', '~> 4.1'
gem 'webdrivers', '~> 4.2'
gem 'webmock'
end

Expand All @@ -125,3 +126,5 @@ Dir['plugins/tenant/**/*.gemspec'].each do |gemspec|

gem name, path: File.dirname(gemspec), require: false
end

gem 'active_flag'
Loading

0 comments on commit e5dedc9

Please sign in to comment.