specinfra 2.59.5 → 2.59.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 28135418fd384108aaf1553a74d158bc46997be9
4
- data.tar.gz: 3b37f8eb9106585a08f42bd473a2efaaee55fb7b
3
+ metadata.gz: 6fb5981eb5da334a32afef71e3ee87a0844576b0
4
+ data.tar.gz: 35e4fe15a936d22ac557005040f8c72b4c0a2053
5
5
  SHA512:
6
- metadata.gz: d7ee6045871c4cdf28d159a7bec66a8b3ba6791ef9bc109814a6ddd9b7fc2bfd895bd28a3d11357b0415886f06c7cda9b78b205cab6828819cf7f1bd5f7499b1
7
- data.tar.gz: 11ab2d4446c9a87e05f3563b355a9de7cdbfeba2ca5d80f6743f18600e4a7315ccbe25e73de6254c992af8a226ca6171df91c2b0e6cd160c3f30661ceee5b2cd
6
+ metadata.gz: 1ed74a9a24345d48519a9a2677fa6cafb47583de5489a5998160eb5ec51e3e26eb222519f9b0a0a168ffabd69dd68b0ca9a1b62ed0ce1d7f7a81ba896024ae80
7
+ data.tar.gz: 254d56967b0b6a333bbcf6a357bd87ebfe47d73356309adf004a5fded2996b119d5979e98318ebb06d8556defbae28693b94502a43e478decdf9781872629518
@@ -48,7 +48,8 @@ class Specinfra::Command::Darwin::Base::Package < Specinfra::Command::Base::Pack
48
48
 
49
49
  def brew_cask_list
50
50
  # Since `brew cask list` is slow, directly check Caskroom directory
51
- "ls -1 /opt/homebrew-cask/Caskroom/"
51
+ # Brew cask can install in multiple directories
52
+ "ls -1 /opt/homebrew-cask/Caskroom/ /usr/local/Caskroom"
52
53
  end
53
54
  end
54
55
  end
@@ -38,7 +38,6 @@ class Specinfra::Command::Freebsd::Base::User < Specinfra::Command::Base::User
38
38
  command << '-d' << escape(options[:home_directory]) if options[:home_directory]
39
39
  command << '-s' << escape(options[:shell]) if options[:shell]
40
40
  command << '-m' if options[:create_home]
41
- command << '-r' if options[:system_user]
42
41
  command << '-u' << escape(options[:uid]) if options[:uid]
43
42
  if options[:password]
44
43
  command.concat(['&&', 'chpass', '-p', "\'#{options[:password]}\'", escape(user)])
@@ -1,3 +1,3 @@
1
1
  module Specinfra
2
- VERSION = "2.59.5"
2
+ VERSION = "2.59.6"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: specinfra
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.59.5
4
+ version: 2.59.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gosuke Miyashita
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-07-04 00:00:00.000000000 Z
11
+ date: 2016-07-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: net-scp