ace-eye 0.6.2 → 0.6.3

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: 376af111d1aa8e4d08cb74ed78cba026882d4f1e
4
- data.tar.gz: ba465d0ce047e9c714b9e81222e100dd61b3859a
3
+ metadata.gz: aca23394b949b528179b9aa284f4fe56065a087b
4
+ data.tar.gz: 89c12655a1603445e0c3ec3fd3e10ecdd133792f
5
5
  SHA512:
6
- metadata.gz: 8c2fdda4eb2ac274f9dfe07917bdf657e6ffcc49078f1da26c5dca67772e1b2180ba31580e69ebd6722f8dd0e9254f4be0e95edaa1f1b60ab55a9e3da1451350
7
- data.tar.gz: b937a2f42fe3a2803408de35283dfd295d2214a7d43698ce5f4f72954e9fe5246bc2745a88c9158be45d45e17db334c4aece729b0c9c58706fe0c941d2dfcb31
6
+ metadata.gz: 30f7eff0a3a41caf1ccb6a2e744ea5bd276c66ac903094ab6475b377f049b8041b2df27ed78c626d5c58861fe8e2485938115eb3deb99ea554bb005b877d81f0
7
+ data.tar.gz: 131027ef4347302079789b99692f3f36e4a403f5c5f57611b4be38a3ad5c04832216038e72fd99125f8299b581eb2421a5331259029ecec6e073820ab8a2fed7
data/lib/eye.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  module Eye
2
- VERSION = "0.6.2"
2
+ VERSION = "0.6.3"
3
3
  ABOUT = "Eye v#{VERSION} (c) 2012-2014 @kostya"
4
4
  PROCLINE = "eye monitoring v#{VERSION}"
5
5
 
@@ -22,7 +22,7 @@ module Eye::Process::Validate
22
22
 
23
23
  if localize
24
24
  Etc.getpwnam(config[:uid]) if config[:uid]
25
- Etc.getpwnam(config[:gid]) if config[:gid]
25
+ Etc.getgrnam(config[:gid]) if config[:gid]
26
26
 
27
27
  if config[:working_dir]
28
28
  raise Error, "working_dir '#{config[:working_dir]}' is invalid" unless File.directory?(config[:working_dir])
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ace-eye
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.2
4
+ version: 0.6.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Konstantin Makarchev