vagrant-foodtaster-server 0.0.4 → 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,8 @@
1
1
  class String
2
2
  def strip_heredoc
3
- indent = scan(/^[ \t]*(?=\S)/).min.try(:size) || 0
3
+ min_indent = scan(/^[ \t]*(?=\S)/).min
4
+ indent = min_indent.nil? ? 0 : min_indent.size
5
+
4
6
  gsub(/^[ \t]{#{indent}}/, '')
5
7
  end
6
8
  end
@@ -1,3 +1,3 @@
1
1
  class VagrantFoodtasterServer
2
- VERSION = "0.0.4"
2
+ VERSION = "0.0.5"
3
3
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: vagrant-foodtaster-server
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.0.4
5
+ version: 0.0.5
6
6
  platform: ruby
7
7
  authors:
8
8
  - Mike Lapshin