Skip to content
This repository has been archived by the owner on Sep 24, 2019. It is now read-only.

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
sul-devops-team authored and justinlittman committed Apr 8, 2019
1 parent cb303cd commit c5029b1
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 10 deletions.
2 changes: 2 additions & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
inherit_from: .rubocop_todo.yml

require: rubocop-performance

AllCops:
TargetRubyVersion: 2.5
Exclude:
Expand Down
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ end
group :test, :development do
gem 'pry-byebug', require: false
gem 'rubocop', require: false
gem 'rubocop-performance', require: false
gem 'sqlite3', '~> 1.3.13'
end

Expand Down
19 changes: 11 additions & 8 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ GEM
deprecation (1.0.0)
activesupport
diff-lcs (1.3)
dlss-capistrano (3.4.1)
dlss-capistrano (3.5.0)
capistrano (~> 3.0)
capistrano-bundle_audit (>= 0.1.0)
capistrano-one_time_key
Expand All @@ -132,8 +132,8 @@ GEM
concurrent-ruby (~> 1.0)
dry-equalizer (0.2.2)
dry-inflector (0.1.2)
dry-logic (0.5.0)
dry-container (~> 0.2, >= 0.2.6)
dry-logic (0.6.0)
concurrent-ruby (~> 1.0)
dry-core (~> 0.2)
dry-equalizer (~> 0.2)
dry-types (0.14.1)
Expand Down Expand Up @@ -207,7 +207,7 @@ GEM
nokogiri (~> 1.5)
okcomputer (1.17.4)
parallel (1.17.0)
parser (2.6.2.0)
parser (2.6.2.1)
ast (~> 2.4.0)
pry (0.12.2)
coderay (~> 1.1.0)
Expand All @@ -217,7 +217,7 @@ GEM
pry (~> 0.10)
psych (3.1.0)
public_suffix (3.0.3)
rack (2.0.6)
rack (2.0.7)
rack-test (1.1.0)
rack (>= 1.0, < 3)
rails (5.2.3)
Expand Down Expand Up @@ -254,7 +254,7 @@ GEM
rb-inotify (0.10.0)
ffi (~> 1.0)
rdoc (4.3.0)
regexp_parser (1.3.0)
regexp_parser (1.4.0)
responders (2.4.1)
actionpack (>= 4.2.0, < 6.0)
railties (>= 4.2.0, < 6.0)
Expand All @@ -275,17 +275,19 @@ GEM
rspec-mocks (~> 3.8.0)
rspec-support (~> 3.8.0)
rspec-support (3.8.0)
rubocop (0.66.0)
rubocop (0.67.2)
jaro_winkler (~> 1.5.1)
parallel (~> 1.10)
parser (>= 2.5, != 2.5.1.1)
psych (>= 3.1.0)
rainbow (>= 2.2.2, < 4.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 1.4.0, < 1.6)
rubocop-performance (1.1.0)
rubocop (>= 0.67.0)
ruby-progressbar (1.10.0)
ruby_dep (1.5.0)
sass (3.7.3)
sass (3.7.4)
sass-listen (~> 4.0.0)
sass-listen (4.0.0)
rb-fsevent (~> 0.9, >= 0.9.4)
Expand Down Expand Up @@ -365,6 +367,7 @@ DEPENDENCIES
responders
rspec-rails
rubocop
rubocop-performance
sass-rails
sdoc (~> 0.4.0)
spring
Expand Down
4 changes: 2 additions & 2 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ task ci: %i[rubocop spec]
begin
require 'rspec/core/rake_task'
rescue LoadError
STDERR.puts 'Please install the rspec gem to run tests.'
warn 'Please install the rspec gem to run tests.'
end

begin
Expand All @@ -27,5 +27,5 @@ begin
task.fail_on_error = true
end
rescue LoadError
STDERR.puts 'Please install the rubocop gem to run rubocop.'
warn 'Please install the rubocop gem to run rubocop.'
end

0 comments on commit c5029b1

Please sign in to comment.