specinfra 2.76.3 → 2.76.4

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: e62df6bd334090ac7367f03e0305342b63382095
4
- data.tar.gz: 28cbb48895bad8453f810cd0874fa5ff46d8bc30
3
+ metadata.gz: 6e520eb86382bd78fcfc38c87433df87551b7570
4
+ data.tar.gz: 8a52edd53eeeb10e5cee61735e11cee4611c8cb0
5
5
  SHA512:
6
- metadata.gz: b6b1f76858b2ab59966734bfb78cb7e5ebe1eb9e23cf36965eab537e692e453b85e3a7b7e981170ae8f74c7242d49a46a9e7b5284972ec898e4272d3bcb61870
7
- data.tar.gz: c28cb1e8cc24c8f2295243b65fd540c2e77d0456e1f85816219bb094a035455c2fdb4b72bc3b3ebf1ec57afe0a3461c64d76443a38bddda6ec4b884e7c16ae6a
6
+ metadata.gz: c81467a2ed0d1c6a1139082c7804274c8a7138e718809b436f42416a9454636999f3f974a4e286f0ad36737edb6c6aa29bc8c709f0a0321c3ccaa0805ace983d
7
+ data.tar.gz: a011f0739d49fc23350b93ffe085c2458d92548e32b523a28138a951b8175602b57e019cec948bf7a53dbf2b07bc0afe7ee0a8a41e54053c4333de97f4d29669
@@ -153,12 +153,12 @@ class Specinfra::Command::Base::File < Specinfra::Command::Base
153
153
  def change_owner(file, owner, group=nil, options = {})
154
154
  option = '-R' if options[:recursive]
155
155
  owner = "#{owner}:#{group}" if group
156
- "chown #{option} #{owner} #{escape(file)}".squeeze(' ')
156
+ "chown #{option} #{escape(owner)} #{escape(file)}".squeeze(' ')
157
157
  end
158
158
 
159
159
  def change_group(file, group, options = {})
160
160
  option = '-R' if options[:recursive]
161
- "chgrp #{option} #{group} #{escape(file)}".squeeze(' ')
161
+ "chgrp #{option} #{escape(group)} #{escape(file)}".squeeze(' ')
162
162
  end
163
163
 
164
164
  def create_as_directory(file)
@@ -1,3 +1,3 @@
1
1
  module Specinfra
2
- VERSION = "2.76.3"
2
+ VERSION = "2.76.4"
3
3
  end
@@ -26,6 +26,10 @@ describe get_command(:change_file_owner, '/tmp', 'root', 'root') do
26
26
  it { should eq 'chown root:root /tmp' }
27
27
  end
28
28
 
29
+ describe get_command(:change_file_owner, '/tmp', 'root', 'Domain Users') do
30
+ it { should eq 'chown root:Domain\\ Users /tmp' }
31
+ end
32
+
29
33
  describe get_command(:change_file_owner, '/tmp', 'root', 'root', :recursive => true) do
30
34
  it { should eq 'chown -R root:root /tmp' }
31
35
  end
@@ -34,6 +38,10 @@ describe get_command(:change_file_group, '/tmp', 'root') do
34
38
  it { should eq 'chgrp root /tmp' }
35
39
  end
36
40
 
41
+ describe get_command(:change_file_group, '/tmp', 'Domain Users') do
42
+ it { should eq 'chgrp Domain\ Users /tmp' }
43
+ end
44
+
37
45
  describe get_command(:change_file_group, '/tmp', 'root', :recursive => true) do
38
46
  it { should eq 'chgrp -R root /tmp' }
39
47
  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.76.3
4
+ version: 2.76.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gosuke Miyashita
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-10-24 00:00:00.000000000 Z
11
+ date: 2018-12-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: net-scp