Skip to content

Commit

Permalink
Bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
kddnewton committed Jul 28, 2018
1 parent c5767bf commit a37ab4e
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 27 deletions.
6 changes: 2 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
language: ruby
rvm: 2.4.2
rvm: 2.5.1
cache: bundler
script:
- bundle exec rake
- bundle exec rubocop
script: bundle exec rake && bundle exec rubocop
34 changes: 18 additions & 16 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -6,45 +6,47 @@ PATH
GEM
remote: https://rubygems.org/
specs:
ast (2.3.0)
docile (1.1.5)
ast (2.4.0)
docile (1.3.1)
jaro_winkler (1.5.1)
json (2.1.0)
minitest (5.10.3)
net-ssh (4.2.0)
minitest (5.11.3)
net-ssh (5.0.2)
parallel (1.12.1)
parser (2.4.0.2)
ast (~> 2.3)
powerpack (0.1.1)
parser (2.5.1.2)
ast (~> 2.4.0)
powerpack (0.1.2)
rainbow (3.0.0)
rake (12.3.0)
rubocop (0.52.0)
rake (12.3.1)
rubocop (0.58.2)
jaro_winkler (~> 1.5.1)
parallel (~> 1.10)
parser (>= 2.4.0.2, < 3.0)
parser (>= 2.5, != 2.5.1.1)
powerpack (~> 0.1)
rainbow (>= 2.2.2, < 4.0)
ruby-progressbar (~> 1.7)
unicode-display_width (~> 1.0, >= 1.0.1)
ruby-progressbar (1.9.0)
simplecov (0.15.1)
docile (~> 1.1.0)
simplecov (0.16.1)
docile (~> 1.1)
json (>= 1.8, < 3)
simplecov-html (~> 0.10.0)
simplecov-html (0.10.2)
tiny_struct (0.0.1)
unicode-display_width (1.3.0)
unicode-display_width (1.4.0)

PLATFORMS
ruby

DEPENDENCIES
bundler (~> 1.16)
bundler-console!
minitest (~> 5.10)
minitest (~> 5.11)
net-ssh
rake (~> 12.3)
rubocop (~> 0.52)
rubocop (~> 0.58)
simplecov (~> 0.15)
tiny_struct

BUNDLED WITH
1.16.0
1.16.1
2 changes: 1 addition & 1 deletion bin/rubocop
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# this file is here to facilitate running it.
#

bundle_binstub = File.expand_path('../bundle', __FILE__)
bundle_binstub = File.expand_path('bundle', __dir__)
load(bundle_binstub) if File.file?(bundle_binstub)

require 'pathname'
Expand Down
6 changes: 3 additions & 3 deletions bundler-console.gemspec
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
lib = File.expand_path('../lib', __FILE__)
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'bundler/console/version'

Expand All @@ -21,8 +21,8 @@ Gem::Specification.new do |spec|
spec.require_paths = ['lib']

spec.add_development_dependency 'bundler', '~> 1.16'
spec.add_development_dependency 'minitest', '~> 5.10'
spec.add_development_dependency 'minitest', '~> 5.11'
spec.add_development_dependency 'rake', '~> 12.3'
spec.add_development_dependency 'rubocop', '~> 0.52'
spec.add_development_dependency 'rubocop', '~> 0.58'
spec.add_development_dependency 'simplecov', '~> 0.15'
end
2 changes: 1 addition & 1 deletion lib/bundler/console.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module Console
class Command
Plugin::API.command('console', self)

def exec(_, args)
def exec(_name, args)
if args.any?
Bundler.require(:default, *args.map!(&:to_sym))
else
Expand Down
2 changes: 1 addition & 1 deletion test/bundler/console_test.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
require 'test_helper'

require 'irb'
$LOAD_PATH.unshift File.expand_path('../../consoles', __FILE__)
$LOAD_PATH.unshift File.expand_path('../consoles', __dir__)

class ConsoleTest < Minitest::Test
class ConsoleDouble
Expand Down
2 changes: 1 addition & 1 deletion test/test_helper.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
require 'simplecov'
SimpleCov.start

$LOAD_PATH.unshift File.expand_path('../../lib', __FILE__)
$LOAD_PATH.unshift File.expand_path('../lib', __dir__)
require 'bundler/console'

require 'minitest/autorun'

0 comments on commit a37ab4e

Please sign in to comment.