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

Commit 495bbc7

Browse files
authored
Merge pull request #910 from omu/develop
Merge develop into master
2 parents dbb1361 + 0ac9e55 commit 495bbc7

File tree

325 files changed

+13100
-3495
lines changed

Some content is hidden

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

325 files changed

+13100
-3495
lines changed

.codebeatsettings

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"RUBY": {
3+
"ABC": [11, 20, 40, 60]
4+
}
5+
}

.gitallowed

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
^db/encrypted_data
2+
\byarn\.lock
3+
\bGemfile\.lock
4+
^app/lib/nokul/database_url\.rb
5+
^README.md:[6-7]:
6+
^lib/templates/ldap/.*
7+
^test/fixtures/users.yml:(1|6|11|16):
8+
^test/system/account_settings_page_flow_test.rb:20:
9+
^test/system/login_page_flow_test.rb:15:

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
*.tar.gz filter=lfs diff=lfs merge=lfs -text
2+
*.gz filter=lfs diff=lfs merge=lfs -text

.markdownlintrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,8 @@
1515
},
1616
"MD029": {
1717
"style": "ordered"
18+
},
19+
"MD033": {
20+
"allowed_elements": ["br"]
1821
}
1922
}

.rubocop.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
require: rubocop-performance
2+
13
Rails:
24
Enabled: true
35
Style/AsciiComments:
@@ -8,6 +10,8 @@ Style/FormatStringToken:
810
EnforcedStyle: template
911
Documentation:
1012
Enabled: false
13+
Naming/MemoizedInstanceVariableName:
14+
EnforcedStyleForLeadingUnderscores: optional
1115
Rails/UnknownEnv:
1216
Environments:
1317
- development

Gemfile

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
88
# core
99
gem 'bootsnap', '>= 1.4.0', require: false
1010
gem 'puma', '~> 3.11'
11-
gem 'rails', github: 'rails/rails'
11+
gem 'rails', github: 'rails/rails', tag: 'v6.0.0.rc1'
1212
gem 'redis', '~> 4.0'
1313
gem 'sidekiq'
1414

@@ -29,9 +29,12 @@ gem 'image_processing', '~> 1.2'
2929
gem 'authy'
3030
gem 'devise'
3131

32+
# authorization
33+
gem 'pundit'
34+
3235
# assets: core asset dependencies
3336
# TODO: Edge versions require coffee-rails https://github.com/rails/rails/issues/28965
34-
gem 'coffee-rails', '~> 4.2'
37+
gem 'coffee-rails', '~> 5.0'
3538
gem 'sassc-rails'
3639
gem 'uglifier', '>= 1.3.0'
3740
gem 'webpacker'
@@ -58,7 +61,7 @@ gem 'email_address'
5861
gem 'telephone_number'
5962

6063
# error tracking
61-
gem 'rollbar', github: 'rollbar/rollbar-gem'
64+
gem 'rollbar'
6265
gem 'slack-notifier'
6366

6467
# permalinks
@@ -67,17 +70,18 @@ gem 'friendly_id', '~> 5.2.0'
6770
# sms
6871
gem 'nexmo'
6972
gem 'smstools'
70-
gem 'twilio-ruby', '~> 5.21.2'
73+
gem 'twilio-ruby', '~> 5.22.3'
7174

7275
group :development, :test do
7376
gem 'brakeman', require: false
74-
gem 'bullet', github: 'flyerhzm/bullet'
77+
gem 'bullet'
7578
gem 'bundler-audit'
7679
gem 'byebug', platforms: %i[mri mingw x64_mingw]
7780
gem 'dotenv-rails'
7881
gem 'erb_lint', require: false
7982
gem 'lol_dba'
8083
gem 'rubocop'
84+
gem 'rubocop-performance'
8185
gem 'simplecov', require: false
8286
end
8387

@@ -97,7 +101,7 @@ group :development do
97101
gem 'ruby-progressbar'
98102
gem 'spring'
99103
gem 'spring-watcher-listen', '~> 2.0.0'
100-
gem 'web-console', github: 'rails/web-console'
104+
gem 'web-console'
101105
end
102106

103107
# core plugins

0 commit comments

Comments
 (0)