Skip to content

Commit 69ac301

Browse files
committed
Version Updates
This change updates the versions of the dependencies. Making these updates (specifically rubocop) necessitated updates to some of the code. These code changes have been made as well.
1 parent b70d758 commit 69ac301

47 files changed

Lines changed: 309 additions & 204 deletions

Some content is hidden

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

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,4 @@
22
.idea/workspace.xml
33
.yardoc
44
build/
5-
coverage
65
doc

.idea/misc.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations/All_Tests.xml renamed to .idea/runConfigurations/All_Tests__2_2_.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations/All_Tests__2_3_.xml

Lines changed: 36 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations/All_Tests__2_4_.xml

Lines changed: 36 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations/Without_Integration_Tests.xml renamed to .idea/runConfigurations/Without_Integration_Tests__2_2_.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations/Without_Integration_Tests__2_3_.xml

Lines changed: 36 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations/Without_Integration_Tests__2_4_.xml

Lines changed: 36 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.rubocop.yml

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,15 @@ require: rubocop-rspec
33

44
AllCops:
55
Include:
6-
- '**/Rakefile'
7-
- 'rakelib/**/*'
6+
- '**/Rakefile'
7+
- 'rakelib/**/*'
88
Exclude:
9-
- 'build/**/*'
10-
- 'vendor/**/*'
9+
- 'build/**/*'
1110
Metrics/AbcSize:
1211
Max: 22
12+
Metrics/BlockLength:
13+
Exclude:
14+
- 'spec/**/*.rb'
1315
Metrics/ClassLength:
1416
Max: 250
1517
Metrics/CyclomaticComplexity:
@@ -26,17 +28,19 @@ RSpec/ExampleLength:
2628
Max: 20
2729
RSpec/AnyInstance:
2830
Enabled: false
31+
RSpec/ExpectOutput:
32+
Enabled: false
2933
RSpec/FilePath:
3034
Enabled: false
3135
RSpec/MultipleExpectations:
3236
Enabled: false
3337
RSpec/NestedGroups:
34-
MaxNesting: 4
38+
Max: 4
3539
Style/Documentation:
3640
Enabled: false
3741
Style/EmptyLinesAroundBlockBody:
3842
Exclude:
39-
- 'spec/**/*'
43+
- 'spec/**/*.rb'
4044
Style/EmptyLinesAroundClassBody:
4145
Enabled: false
4246
Style/EmptyLinesAroundModuleBody:

Gemfile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
source 'https://rubygems.org'
22

33
group :development do
4-
gem 'codeclimate-test-reporter'
54
gem 'rake'
65
gem 'redcarpet'
76
gem 'rspec'
87
gem 'rubocop'
98
gem 'rubocop-rspec'
109
gem 'rubyzip'
11-
gem 'simplecov'
1210
gem 'tee'
1311
gem 'webmock'
1412
gem 'yard'

0 commit comments

Comments
 (0)