osx-acl 1.0.1 → 1.0.2

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/acl.rb +1 -1
  3. data/lib/acl/version.rb +1 -1
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 125c0e75690ae256728513e5372e43e98b51fc20
4
- data.tar.gz: 853389a6f082a954d68e17f748f31b736b1652f5
3
+ metadata.gz: a5c02c2ce1bcdfea50725ae1fd675b60e200152f
4
+ data.tar.gz: 145bf09ec2f3ed2d2009e63d528a9653ef1e7850
5
5
  SHA512:
6
- metadata.gz: 95bb8e5dcb64bdc878f842112685d09ed66734b8bccce8a0738d9e0bb16e037c97f2171c488dfcfb33a7856f036dbcf13cb5d58e0ef6fa9c19595f13d7c2b9b9
7
- data.tar.gz: 585d3768458692b8c54637fa3e116b63807f773bf778fd870ec5b18387b74540c19ab19b848a92a8d3f41256b4abf18253d356d1f87aedaf534cbc5c934e8972
6
+ metadata.gz: 6e28bd35656604a224aad056b07966c9adc0993ee7eb77c004f24c1101a11a4120390a4f1e0b019a835f39ab433cf6ebf0c8cbeea5ee53598273c32350dbb8cf
7
+ data.tar.gz: 1c34287be9ae7374851503114a407e95ee6012faa43672b17a12357b3b31bf5f7a93ebb03257845b91bbeee481863c7dd09060544a000ec049c438b992142e6a
data/lib/acl.rb CHANGED
@@ -9,7 +9,7 @@ module OSX
9
9
  require 'ffi'
10
10
  module API
11
11
  extend FFI::Library
12
- ffi_lib FFI::Library::LIBC
12
+ ffi_lib("/usr/lib/libc.dylib")
13
13
  attach_function :acl_get_fd, [:int], :pointer
14
14
  attach_function :acl_to_text, [:pointer, :pointer], :pointer
15
15
  attach_function :acl_valid, [:pointer], :int
data/lib/acl/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  module OSX
2
2
  class ACL
3
- VERSION = "1.0.1"
3
+ VERSION = "1.0.2"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: osx-acl
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kyle Crawford
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-01-10 00:00:00.000000000 Z
11
+ date: 2016-01-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ffi