Skip to content

Commit 2286261

Browse files
fix merge conflicts
2 parents 99fd5f7 + b74e4d2 commit 2286261

File tree

250 files changed

+3205
-4062
lines changed

Some content is hidden

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

250 files changed

+3205
-4062
lines changed

.rubocop.yml

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
Layout/LineLength:
2+
Enabled: false
3+
4+
Style/ClassAndModuleChildren:
5+
Enabled: false
6+
7+
Style/Documentation:
8+
Enabled: false
9+
10+
Style/StringLiterals:
11+
EnforcedStyle: single_quotes
12+
13+
Lint/RescueException:
14+
Enabled: false
15+
16+
Lint/UnreachableCode:
17+
Enabled: false
18+
19+
Metrics/AbcSize:
20+
Enabled: false
21+
22+
Metrics/BlockLength:
23+
Exclude:
24+
- 'config/routes.rb'
25+
26+
Metrics/ClassLength:
27+
Enabled: false
28+
29+
Metrics/CyclomaticComplexity:
30+
Enabled: false
31+
32+
Metrics/MethodLength:
33+
Enabled: false
34+
35+
Metrics/PerceivedComplexity:
36+
Enabled: false
37+
38+
Naming/AccessorMethodName:
39+
Enabled: false
40+
41+
Naming/MethodParameterName:
42+
Enabled: false
43+
44+
Naming/VariableName:
45+
Enabled: false
46+
47+
Naming/VariableNumber:
48+
Enabled: false
49+
50+
Style/FrozenStringLiteralComment:
51+
Enabled: false
52+
53+
Style/GlobalStdStream:
54+
Enabled: false
55+
56+
Style/GlobalVars:
57+
Enabled: false
58+
59+
Style/MixinUsage:
60+
Exclude:
61+
- 'bin/setup'
62+
- 'bin/update'
63+
64+
Style/RedundantFetchBlock:
65+
Exclude:
66+
- 'config/puma.rb'
67+
- 'quick_acg/config/puma.rb'
68+
69+
Style/SpecialGlobalVars:
70+
Exclude:
71+
- 'bin/bundle'
72+
- 'quick_acg/bin/bundle'

Gemfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# frozen_string_literal: true
1+
# frozen_string_literal: true
22

33
source 'https://rubygems.org'
44
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
@@ -54,6 +54,7 @@ group :development do
5454
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
5555
gem 'pry-nav', '~> 0.3.0'
5656
gem 'pry-rails', '~> 0.3.9'
57+
gem 'rubocop', '~> 1.36', require: false
5758
gem 'spring', '~> 2.1.0'
5859
gem 'spring-watcher-listen', '~> 2.0.1'
5960
end
@@ -66,11 +67,11 @@ group :test do
6667
gem 'chromedriver-helper', '~> 2.1.1'
6768
end
6869

70+
gem 'docusign_admin', '~> 1.1.0'
71+
gem 'docusign_click', '~> 1.0.0'
6972
gem 'docusign_esign', '~> 3.17.0'
7073
gem 'docusign_monitor', '~> 1.1.0'
7174
gem 'docusign_rooms', '~> 1.2.0.rc1'
72-
gem 'docusign_click', '~> 1.0.0'
73-
gem 'docusign_admin', '~> 1.1.0'
7475
gem 'omniauth-oauth2', '~> 1.7.1'
7576
gem 'omniauth-rails_csrf_protection'
7677

0 commit comments

Comments
 (0)