Skip to content

Commit

Permalink
Apply new Rubocop recommendations
Browse files Browse the repository at this point in the history
  • Loading branch information
gael-ian committed Jan 30, 2018
1 parent a4de73e commit e80b104
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Metrics/LineLength:
Max: 150

Metrics/MethodLength:
Max: 30
Max: 25

Metrics/BlockLength:
ExcludedMethods: describe
Expand Down
2 changes: 1 addition & 1 deletion lib/vagrant-bindfs/bindfs.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module VagrantBindfs
module Bindfs
SOURCE_VERSION = '1.13.9'.freeze
SOURCE_VERSION = '1.13.9'
SOURCE_URLS = [
'http://bindfs.org/downloads/bindfs-%<bindfs_version>.tar.gz',
'http://bindfs.dy.fi/downloads/bindfs-%<bindfs_version>.tar.gz'
Expand Down
2 changes: 1 addition & 1 deletion lib/vagrant-bindfs/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module VagrantBindfs
VERSION = '1.0.11'.freeze
VERSION = '1.0.11'
end
3 changes: 1 addition & 2 deletions spec/vagrantfile_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,8 @@ def tests_setup(machine, options = {})
'/etc-binded-after-provisioning',
options.merge(owner: 'root', after: :provision)


machine.vm.provision :shell do |p|
p.name = "create non emtpy mountpoints"
p.name = 'create non emtpy mountpoints'
p.inline = <<-COMMANDS
mkdir -p /home/vagrant/mountpoint/non/empty
mkdir -p /home/vagrant/mountpoint-nonempty/non/empty
Expand Down

0 comments on commit e80b104

Please sign in to comment.