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 #910 from omu/develop
Browse files Browse the repository at this point in the history
Merge develop into master
  • Loading branch information
msdundar authored May 8, 2019
2 parents dbb1361 + 0ac9e55 commit 495bbc7
Show file tree
Hide file tree
Showing 325 changed files with 13,100 additions and 3,495 deletions.
5 changes: 5 additions & 0 deletions .codebeatsettings
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"RUBY": {
"ABC": [11, 20, 40, 60]
}
}
9 changes: 9 additions & 0 deletions .gitallowed
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
^db/encrypted_data
\byarn\.lock
\bGemfile\.lock
^app/lib/nokul/database_url\.rb
^README.md:[6-7]:
^lib/templates/ldap/.*
^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:
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
*.tar.gz filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
3 changes: 3 additions & 0 deletions .markdownlintrc
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,8 @@
},
"MD029": {
"style": "ordered"
},
"MD033": {
"allowed_elements": ["br"]
}
}
4 changes: 4 additions & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
require: rubocop-performance

Rails:
Enabled: true
Style/AsciiComments:
Expand All @@ -8,6 +10,8 @@ Style/FormatStringToken:
EnforcedStyle: template
Documentation:
Enabled: false
Naming/MemoizedInstanceVariableName:
EnforcedStyleForLeadingUnderscores: optional
Rails/UnknownEnv:
Environments:
- development
Expand Down
16 changes: 10 additions & 6 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
# core
gem 'bootsnap', '>= 1.4.0', require: false
gem 'puma', '~> 3.11'
gem 'rails', github: 'rails/rails'
gem 'rails', github: 'rails/rails', tag: 'v6.0.0.rc1'
gem 'redis', '~> 4.0'
gem 'sidekiq'

Expand All @@ -29,9 +29,12 @@ gem 'image_processing', '~> 1.2'
gem 'authy'
gem 'devise'

# authorization
gem 'pundit'

# assets: core asset dependencies
# TODO: Edge versions require coffee-rails https://github.com/rails/rails/issues/28965
gem 'coffee-rails', '~> 4.2'
gem 'coffee-rails', '~> 5.0'
gem 'sassc-rails'
gem 'uglifier', '>= 1.3.0'
gem 'webpacker'
Expand All @@ -58,7 +61,7 @@ gem 'email_address'
gem 'telephone_number'

# error tracking
gem 'rollbar', github: 'rollbar/rollbar-gem'
gem 'rollbar'
gem 'slack-notifier'

# permalinks
Expand All @@ -67,17 +70,18 @@ gem 'friendly_id', '~> 5.2.0'
# sms
gem 'nexmo'
gem 'smstools'
gem 'twilio-ruby', '~> 5.21.2'
gem 'twilio-ruby', '~> 5.22.3'

group :development, :test do
gem 'brakeman', require: false
gem 'bullet', github: 'flyerhzm/bullet'
gem 'bullet'
gem 'bundler-audit'
gem 'byebug', platforms: %i[mri mingw x64_mingw]
gem 'dotenv-rails'
gem 'erb_lint', require: false
gem 'lol_dba'
gem 'rubocop'
gem 'rubocop-performance'
gem 'simplecov', require: false
end

Expand All @@ -97,7 +101,7 @@ group :development do
gem 'ruby-progressbar'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'web-console', github: 'rails/web-console'
gem 'web-console'
end

# core plugins
Expand Down
Loading

0 comments on commit 495bbc7

Please sign in to comment.