Skip to content

Commit

Permalink
Gemfile: Update RuboCop to 0.33.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zuazo committed Aug 24, 2015
1 parent a55481f commit 2df5de9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Expand Up @@ -13,7 +13,7 @@ end

group :style do
gem 'foodcritic', '= 4.0.0'
gem 'rubocop', '~> 0.32.1'
gem 'rubocop', '~> 0.33.0'
end

group :unit do
Expand Down
2 changes: 1 addition & 1 deletion test/integration/default/serverspec/mount_helper.rb
Expand Up @@ -55,7 +55,7 @@ def bytes2integer(bytes)

def bytes2kbytes(bytes)
case bytes
when Fixnum, /^[0-9]+$/ then "#{(bytes.to_i / 1024).round}k"
when Fixnum, /^[0-9]+$/ then "#{(bytes.to_i / 1024).round}k"
when /^[0-9]+m$/ then "#{(bytes.to_i * 1024).round}k"
when /^[0-9]+g$/ then "#{(bytes.to_i * 1_048_576).round}k"
else
Expand Down
2 changes: 1 addition & 1 deletion test/integration/default/serverspec/ramdisk4_spec.rb
Expand Up @@ -39,7 +39,7 @@
if platform == 'freebsd'
it { should be_mounted }
else
it { should be_mounted.with(mount_with) }
it { should be_mounted.with(mount_with) }
it { should be_readable.by_user('bob') }
end
end
Expand Down

0 comments on commit 2df5de9

Please sign in to comment.