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

Commit e5dedc9

Browse files
authored
Merge pull request #1429 from omu/develop
Merge branch develop into master
2 parents 52ed93e + 8eceb2b commit e5dedc9

File tree

147 files changed

+3282
-1586
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

147 files changed

+3282
-1586
lines changed

.erb-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ linters:
1414
Enabled: false
1515
Style/FrozenStringLiteralComment:
1616
Enabled: false
17-
Metrics/LineLength:
17+
Layout/LineLength:
1818
Enabled: false
1919
Lint/UselessAssignment:
2020
Enabled: false

.gitallowed

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,10 @@
22
\byarn\.lock
33
\bGemfile\.lock
44
^app/lib/nokul/database_url\.rb
5-
^README.md:[6-7]:
5+
^README.md:[6-8]:
66
^lib/templates/ldap/.*
7+
^test/controllers/accounts/settings/emails_controller_test.rb:23:
8+
^test/controllers/accounts/settings/passwords_controller_test.rb:25:
79
^test/fixtures/users.yml:(1|6|11|16):
810
^test/system/account_settings_page_flow_test.rb:20:
911
^test/system/login_page_flow_test.rb:15:

.gitattributes

Lines changed: 0 additions & 2 deletions
This file was deleted.

.rubocop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Rails/UnknownEnv:
1111
- development
1212
- production
1313
- test
14-
Metrics/LineLength:
14+
Layout/LineLength:
1515
Exclude:
1616
- app/validators/employee_validator.rb # Won't fix
1717
Metrics/BlockLength:

.rubocop_common.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Layout/HashAlignment:
77
EnforcedHashRocketStyle: table
88
EnforcedColonStyle: table
99

10-
Metrics/LineLength:
10+
Layout/LineLength:
1111
Max: 120
1212

1313
Naming/MemoizedInstanceVariableName:

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.6.4
1+
2.7.0

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ondokuz/ruby:buster-19.1
1+
FROM ondokuz/ruby:buster-20.1
22

33
ENV PATH=/app/bin:$PATH
44

Gemfile

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,13 @@ gem 'ancestry'
2323

2424
# active-storage
2525
gem 'aws-sdk-s3', require: false
26-
gem 'image_processing', '~> 1.2'
27-
gem 'ruby-vips', '~> 2.0.16'
26+
gem 'image_processing', '~> 1.10.3'
27+
gem 'ruby-vips', '~> 2.0.17'
2828

2929
# authentication
3030
gem 'authy'
3131
gem 'devise'
32+
gem 'omniauth_openid_connect'
3233

3334
# authorization
3435
gem 'pundit'
@@ -99,7 +100,7 @@ group :test do
99100
gem 'capybara'
100101
gem 'codacy-coverage', require: false
101102
gem 'minitest-focus'
102-
gem 'webdrivers', '~> 4.1'
103+
gem 'webdrivers', '~> 4.2'
103104
gem 'webmock'
104105
end
105106

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

126127
gem name, path: File.dirname(gemspec), require: false
127128
end
129+
130+
gem 'active_flag'

0 commit comments

Comments
 (0)