Skip to content

Commit

Permalink
Update gems and Rubocop config
Browse files Browse the repository at this point in the history
  • Loading branch information
paulfioravanti committed Jun 22, 2019
1 parent 837fead commit 549d264
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 28 deletions.
6 changes: 4 additions & 2 deletions .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,13 +67,13 @@ Naming/RescuedExceptionsVariableName:

RSpec/ExampleLength:
# NOTE: Pretty much the fault of the FontExtractor module needing to mock
# out the entirety of its interactiion with Zip::File, as well as the
# out the entirety of its interaction with Zip::File, as well as the
# amount of expectations needed in the application_spec to trace the
# application flow all the way to opening a generated resume.
Max: 15

# NOTE: RSpec cop seems to ignore the AllCops directive and complains that
# the resume.rb file isn't a *_spec.rb file, so suppress that issue.
# the resume.rb file isn't a *_spec.rb file. Therefore, suppress that issue.
RSpec/FilePath:
Exclude:
- "resume.rb"
Expand Down Expand Up @@ -108,6 +108,8 @@ Style/Documentation:
Style/FrozenStringLiteralComment:
Enabled: false

# NOTE: There are some places where having modifier-if just looks strange to me,
# so this rule is disabled.
Style/IfUnlessModifier:
Enabled: false

Expand Down
44 changes: 22 additions & 22 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ GEM
descendants_tracker (0.0.4)
thread_safe (~> 0.3, >= 0.3.1)
diff-lcs (1.3)
docile (1.3.1)
docile (1.3.2)
equalizer (0.0.11)
ffi (1.10.0)
ffi (1.11.1)
formatador (0.2.5)
fuubar (2.3.2)
fuubar (2.4.0)
rspec-core (~> 3.0)
ruby-progressbar (~> 1.4)
guard (2.15.0)
Expand Down Expand Up @@ -74,11 +74,11 @@ GEM
i18n (1.6.0)
concurrent-ruby (~> 1.0)
ice_nine (0.11.2)
jaro_winkler (1.5.2)
jaro_winkler (1.5.3)
json (2.2.0)
kramdown (2.1.0)
kwalify (0.7.2)
license_finder (5.7.1)
license_finder (5.9.1)
bundler
rubyzip
thor
Expand Down Expand Up @@ -127,28 +127,28 @@ GEM
rspec-core (~> 3.8.0)
rspec-expectations (~> 3.8.0)
rspec-mocks (~> 3.8.0)
rspec-core (3.8.0)
rspec-core (3.8.1)
rspec-support (~> 3.8.0)
rspec-expectations (3.8.3)
rspec-expectations (3.8.4)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.8.0)
rspec-mocks (3.8.0)
rspec-mocks (3.8.1)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.8.0)
rspec-support (3.8.0)
rubocop (0.68.1)
rspec-support (3.8.2)
rubocop (0.71.0)
jaro_winkler (~> 1.5.1)
parallel (~> 1.10)
parser (>= 2.5, != 2.5.1.1)
parser (>= 2.6)
rainbow (>= 2.2.2, < 4.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 1.4.0, < 1.6)
rubocop-rspec (1.32.0)
unicode-display_width (>= 1.4.0, < 1.7)
rubocop-rspec (1.33.0)
rubocop (>= 0.60.0)
ruby-progressbar (1.10.0)
ruby-progressbar (1.10.1)
ruby_dep (1.5.0)
rubygems-tasks (0.2.4)
rubyzip (1.2.2)
rubyzip (1.2.3)
scrutinizer-ocular (1.0.1)
simplecov (>= 0.7)
shellany (0.0.1)
Expand All @@ -161,11 +161,11 @@ GEM
tins (~> 1.0)
thor (0.20.3)
thread_safe (0.3.6)
tins (1.20.2)
tins (1.20.3)
toml (0.2.0)
parslet (~> 1.8.0)
ttfunk (1.5.1)
unicode-display_width (1.5.0)
unicode-display_width (1.6.0)
url (0.3.2)
virtus (1.0.5)
axiom-types (~> 0.1)
Expand All @@ -186,20 +186,20 @@ DEPENDENCIES
codacy-coverage (~> 2.0)
codecov (~> 0.1)
coveralls (~> 0.8)
fuubar (~> 2.3)
fuubar (~> 2.4)
guard-reek (~> 1.0)
guard-rspec (~> 4.6)
guard-rubocop (~> 1.2)
guard-yard (~> 2.2)
kramdown (~> 2.1)
license_finder (~> 5.0)
license_finder (~> 5.9)
pry-byebug (~> 3.1)
rake (~> 12.0)
reek (~> 5.0)
resume!
rspec (~> 3.4)
rubocop (~> 0.52)
rubocop-rspec (~> 1.9)
rubocop (~> 0.71)
rubocop-rspec (~> 1.32)
rubygems-tasks (~> 0.2)
scrutinizer-ocular (~> 1.0)
simplecov (~> 0.16)
Expand All @@ -209,4 +209,4 @@ RUBY VERSION
ruby 2.6.3p62

BUNDLED WITH
2.0.1
2.0.2
8 changes: 4 additions & 4 deletions resume.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -25,19 +25,19 @@ Gem::Specification.new do |spec|
spec.add_development_dependency "codacy-coverage", "~> 2.0"
spec.add_development_dependency "codecov", "~> 0.1"
spec.add_development_dependency "coveralls", "~> 0.8"
spec.add_development_dependency "fuubar", "~> 2.3"
spec.add_development_dependency "fuubar", "~> 2.4"
spec.add_development_dependency "guard-reek", "~> 1.0"
spec.add_development_dependency "guard-rspec", "~> 4.6"
spec.add_development_dependency "guard-rubocop", "~> 1.2"
spec.add_development_dependency "guard-yard", "~> 2.2"
spec.add_development_dependency "kramdown", "~> 2.1"
spec.add_development_dependency "license_finder", "~> 5.0"
spec.add_development_dependency "license_finder", "~> 5.9"
spec.add_development_dependency "pry-byebug", "~> 3.1"
spec.add_development_dependency "rake", "~> 12.0"
spec.add_development_dependency "reek", "~> 5.0"
spec.add_development_dependency "rspec", "~> 3.4"
spec.add_development_dependency "rubocop", "~> 0.52"
spec.add_development_dependency "rubocop-rspec", "~> 1.9"
spec.add_development_dependency "rubocop", "~> 0.71"
spec.add_development_dependency "rubocop-rspec", "~> 1.32"
spec.add_development_dependency "rubygems-tasks", "~> 0.2"
spec.add_development_dependency "scrutinizer-ocular", "~> 1.0"
spec.add_development_dependency "simplecov", "~> 0.16"
Expand Down

0 comments on commit 549d264

Please sign in to comment.