ffi-xattr 0.0.2 → 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- data/LICENSE +201 -0
- data/README.md +50 -0
- data/lib/ffi-xattr/darwin_lib.rb +40 -0
- data/lib/ffi-xattr/error.rb +20 -0
- data/lib/ffi-xattr/linux_lib.rb +41 -0
- data/lib/ffi-xattr/version.rb +1 -1
- data/lib/ffi-xattr.rb +28 -31
- data/spec/xattr_spec.rb +34 -1
- metadata +41 -43
data/LICENSE
ADDED
@@ -0,0 +1,201 @@
|
|
1
|
+
Apache License
|
2
|
+
Version 2.0, January 2004
|
3
|
+
http://www.apache.org/licenses/
|
4
|
+
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
6
|
+
|
7
|
+
1. Definitions.
|
8
|
+
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
11
|
+
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
13
|
+
the copyright owner that is granting the License.
|
14
|
+
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
16
|
+
other entities that control, are controlled by, or are under common
|
17
|
+
control with that entity. For the purposes of this definition,
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
19
|
+
direction or management of such entity, whether by contract or
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
22
|
+
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
24
|
+
exercising permissions granted by this License.
|
25
|
+
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
27
|
+
including but not limited to software source code, documentation
|
28
|
+
source, and configuration files.
|
29
|
+
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
31
|
+
transformation or translation of a Source form, including but
|
32
|
+
not limited to compiled object code, generated documentation,
|
33
|
+
and conversions to other media types.
|
34
|
+
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
36
|
+
Object form, made available under the License, as indicated by a
|
37
|
+
copyright notice that is included in or attached to the work
|
38
|
+
(an example is provided in the Appendix below).
|
39
|
+
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
46
|
+
the Work and Derivative Works thereof.
|
47
|
+
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
49
|
+
the original version of the Work and any modifications or additions
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
61
|
+
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
64
|
+
subsequently incorporated within the Work.
|
65
|
+
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
72
|
+
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
78
|
+
where such license applies only to those patent claims licensable
|
79
|
+
by such Contributor that are necessarily infringed by their
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
82
|
+
institute patent litigation against any entity (including a
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
85
|
+
or contributory patent infringement, then any patent licenses
|
86
|
+
granted to You under this License for that Work shall terminate
|
87
|
+
as of the date such litigation is filed.
|
88
|
+
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
91
|
+
modifications, and in Source or Object form, provided that You
|
92
|
+
meet the following conditions:
|
93
|
+
|
94
|
+
(a) You must give any other recipients of the Work or
|
95
|
+
Derivative Works a copy of this License; and
|
96
|
+
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
98
|
+
stating that You changed the files; and
|
99
|
+
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
102
|
+
attribution notices from the Source form of the Work,
|
103
|
+
excluding those notices that do not pertain to any part of
|
104
|
+
the Derivative Works; and
|
105
|
+
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
108
|
+
include a readable copy of the attribution notices contained
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
111
|
+
of the following places: within a NOTICE text file distributed
|
112
|
+
as part of the Derivative Works; within the Source form or
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
114
|
+
within a display generated by the Derivative Works, if and
|
115
|
+
wherever such third-party notices normally appear. The contents
|
116
|
+
of the NOTICE file are for informational purposes only and
|
117
|
+
do not modify the License. You may add Your own attribution
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
120
|
+
that such additional attribution notices cannot be construed
|
121
|
+
as modifying the License.
|
122
|
+
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
124
|
+
may provide additional or different license terms and conditions
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
128
|
+
the conditions stated in this License.
|
129
|
+
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
133
|
+
this License, without any additional terms or conditions.
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
135
|
+
the terms of any separate license agreement you may have executed
|
136
|
+
with Licensor regarding such Contributions.
|
137
|
+
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
140
|
+
except as required for reasonable and customary use in describing the
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
142
|
+
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
152
|
+
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
158
|
+
incidental, or consequential damages of any character arising as a
|
159
|
+
result of this License or out of the use or inability to use the
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
162
|
+
other commercial damages or losses), even if such Contributor
|
163
|
+
has been advised of the possibility of such damages.
|
164
|
+
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
168
|
+
or other liability obligations and/or rights consistent with this
|
169
|
+
License. However, in accepting such obligations, You may act only
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
174
|
+
of your accepting any such warranty or additional liability.
|
175
|
+
|
176
|
+
END OF TERMS AND CONDITIONS
|
177
|
+
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
179
|
+
|
180
|
+
To apply the Apache License to your work, attach the following
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
182
|
+
replaced with your own identifying information. (Don't include
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
184
|
+
comment syntax for the file format. We also recommend that a
|
185
|
+
file or class name and description of purpose be included on the
|
186
|
+
same "printed page" as the copyright notice for easier
|
187
|
+
identification within third-party archives.
|
188
|
+
|
189
|
+
Copyright 2011 Jari Bakken
|
190
|
+
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
192
|
+
you may not use this file except in compliance with the License.
|
193
|
+
You may obtain a copy of the License at
|
194
|
+
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
196
|
+
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
200
|
+
See the License for the specific language governing permissions and
|
201
|
+
limitations under the License.
|
data/README.md
ADDED
@@ -0,0 +1,50 @@
|
|
1
|
+
ffi-xattr
|
2
|
+
=========
|
3
|
+
|
4
|
+
Ruby library to manage extended file attributes.
|
5
|
+
|
6
|
+
Example
|
7
|
+
-------
|
8
|
+
|
9
|
+
xattr = Xattr.new("/path/to/file")
|
10
|
+
xattr['user.foo'] = 'bar'
|
11
|
+
|
12
|
+
xattr['user.foo'] #=> 'bar'
|
13
|
+
xattr.list #=> ["user.foo"]
|
14
|
+
|
15
|
+
xattr.each { |key, value| ... }
|
16
|
+
xattr.as_json #=> {"user.foo" => "bar"}
|
17
|
+
|
18
|
+
TODO
|
19
|
+
----
|
20
|
+
|
21
|
+
* Handle symlinks
|
22
|
+
|
23
|
+
|
24
|
+
Note on Patches/Pull Requests
|
25
|
+
-----------------------------
|
26
|
+
|
27
|
+
* Fork the project.
|
28
|
+
* Make your feature addition or bug fix.
|
29
|
+
* Add tests for it. This is important so I don't break it in a
|
30
|
+
future version unintentionally.
|
31
|
+
* Commit, do not mess with rakefile, version, or history.
|
32
|
+
(if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
|
33
|
+
* Send me a pull request. Bonus points for topic branches.
|
34
|
+
|
35
|
+
Copyright
|
36
|
+
---------
|
37
|
+
|
38
|
+
Copyright 2011 Jari Bakken
|
39
|
+
|
40
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
41
|
+
you may not use this file except in compliance with the License.
|
42
|
+
You may obtain a copy of the License at
|
43
|
+
|
44
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
45
|
+
|
46
|
+
Unless required by applicable law or agreed to in writing, software
|
47
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
48
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
49
|
+
See the License for the specific language governing permissions and
|
50
|
+
limitations under the License.
|
@@ -0,0 +1,40 @@
|
|
1
|
+
class Xattr
|
2
|
+
module Lib
|
3
|
+
extend FFI::Library
|
4
|
+
|
5
|
+
ffi_lib "System"
|
6
|
+
|
7
|
+
attach_function :listxattr, [:string, :pointer, :size_t, :int], :ssize_t
|
8
|
+
attach_function :getxattr, [:string, :string, :pointer, :size_t, :uint, :int], :ssize_t
|
9
|
+
attach_function :setxattr, [:string, :string, :pointer, :size_t, :uint, :int], :int
|
10
|
+
attach_function :removexattr, [:string, :string, :int], :int
|
11
|
+
|
12
|
+
|
13
|
+
def self.list(path)
|
14
|
+
size = listxattr(path, nil, 0, 0)
|
15
|
+
res_ptr = FFI::MemoryPointer.new(:pointer, size)
|
16
|
+
listxattr(path, res_ptr, size, 0)
|
17
|
+
|
18
|
+
res_ptr.read_string(size).split("\000")
|
19
|
+
end
|
20
|
+
|
21
|
+
def self.get(path, key)
|
22
|
+
size = getxattr(path, key, nil, 0, 0, 0)
|
23
|
+
return unless size > 0
|
24
|
+
|
25
|
+
str_ptr = FFI::MemoryPointer.new(:char, size);
|
26
|
+
getxattr(path, key, str_ptr, size, 0, 0)
|
27
|
+
|
28
|
+
str_ptr.read_string
|
29
|
+
end
|
30
|
+
|
31
|
+
def self.set(path, key, value)
|
32
|
+
Error.check setxattr(path, key, value, value.bytesize, 0, 0)
|
33
|
+
end
|
34
|
+
|
35
|
+
def self.remove(path, key)
|
36
|
+
Error.check removexattr(path, key, 0)
|
37
|
+
end
|
38
|
+
|
39
|
+
end
|
40
|
+
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
class Xattr
|
2
|
+
module Error
|
3
|
+
extend FFI::Library
|
4
|
+
|
5
|
+
ffi_lib "c"
|
6
|
+
|
7
|
+
attach_function :strerror_r, [:int, :pointer, :size_t], :int
|
8
|
+
|
9
|
+
def self.last
|
10
|
+
ptr = FFI::MemoryPointer.new(:char, 256)
|
11
|
+
strerrror_r(FFI.errno, ptr, 256)
|
12
|
+
|
13
|
+
ptr.read_string
|
14
|
+
end
|
15
|
+
|
16
|
+
def self.check(int)
|
17
|
+
raise last if int != 0
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
@@ -0,0 +1,41 @@
|
|
1
|
+
class Xattr
|
2
|
+
module Lib
|
3
|
+
extend FFI::Library
|
4
|
+
|
5
|
+
ffi_lib "c"
|
6
|
+
|
7
|
+
attach_function :strerror, [:int], :string
|
8
|
+
|
9
|
+
attach_function :listxattr, [:string, :pointer, :size_t], :size_t
|
10
|
+
attach_function :setxattr, [:string, :string, :pointer, :size_t, :int], :int
|
11
|
+
attach_function :getxattr, [:string, :string, :pointer, :size_t], :int
|
12
|
+
attach_function :removexattr, [:string, :string], :int
|
13
|
+
|
14
|
+
def self.list(path)
|
15
|
+
size = listxattr(path, nil, 0)
|
16
|
+
res_ptr = FFI::MemoryPointer.new(:pointer, size)
|
17
|
+
listxattr(path, res_ptr, size)
|
18
|
+
|
19
|
+
res_ptr.read_string(size).split("\000")
|
20
|
+
end
|
21
|
+
|
22
|
+
def self.get(path, key)
|
23
|
+
size = getxattr(path, key, nil, 0)
|
24
|
+
return unless size > 0
|
25
|
+
|
26
|
+
str_ptr = FFI::MemoryPointer.new(:char, size);
|
27
|
+
getxattr(path, key, str_ptr, size)
|
28
|
+
|
29
|
+
str_ptr.read_string
|
30
|
+
end
|
31
|
+
|
32
|
+
def self.set(path, key, value)
|
33
|
+
Error.check setxattr(path, key, value, value.bytesize, 0)
|
34
|
+
end
|
35
|
+
|
36
|
+
def self.remove(path, key)
|
37
|
+
Error.check removexattr(path, key.to_s)
|
38
|
+
end
|
39
|
+
|
40
|
+
end
|
41
|
+
end
|
data/lib/ffi-xattr/version.rb
CHANGED
data/lib/ffi-xattr.rb
CHANGED
@@ -1,19 +1,18 @@
|
|
1
1
|
require 'ffi'
|
2
2
|
require 'ffi-xattr/version'
|
3
|
+
require 'ffi-xattr/error'
|
4
|
+
|
5
|
+
case RUBY_PLATFORM
|
6
|
+
when /linux/
|
7
|
+
require 'ffi-xattr/linux_lib'
|
8
|
+
when /darwin|bsd/
|
9
|
+
require 'ffi-xattr/darwin_lib'
|
10
|
+
else
|
11
|
+
raise NotImplementedError, "ffi-xattr not supported on #{RUBY_PLATFORM}"
|
12
|
+
end
|
3
13
|
|
4
14
|
class Xattr
|
5
|
-
|
6
|
-
extend FFI::Library
|
7
|
-
|
8
|
-
ffi_lib "c"
|
9
|
-
|
10
|
-
attach_function :strerror, [:int], :string
|
11
|
-
|
12
|
-
attach_function :listxattr, [:string, :pointer, :size_t], :size_t
|
13
|
-
attach_function :setxattr, [:string, :string, :pointer, :size_t, :int], :int
|
14
|
-
attach_function :getxattr, [:string, :string, :pointer, :size_t], :int
|
15
|
-
attach_function :removexattr, [:string, :string], :int
|
16
|
-
end
|
15
|
+
include Enumerable
|
17
16
|
|
18
17
|
def initialize(path)
|
19
18
|
raise Errno::ENOENT, path unless File.exist?(path)
|
@@ -21,38 +20,36 @@ class Xattr
|
|
21
20
|
end
|
22
21
|
|
23
22
|
def list
|
24
|
-
|
25
|
-
res_ptr = FFI::MemoryPointer.new(:pointer, size)
|
26
|
-
Lib.listxattr(@path, res_ptr, size)
|
27
|
-
|
28
|
-
res_ptr.read_string(size).split("\000")
|
23
|
+
Lib.list @path
|
29
24
|
end
|
30
25
|
|
31
26
|
def get(key)
|
32
|
-
|
33
|
-
return unless size > 0
|
34
|
-
|
35
|
-
str_ptr = FFI::MemoryPointer.new(:char, size);
|
36
|
-
Lib.getxattr(@path, key.to_s, str_ptr, size)
|
37
|
-
|
38
|
-
str_ptr.read_string
|
27
|
+
Lib.get @path, key.to_s
|
39
28
|
end
|
29
|
+
alias_method :[], :get
|
40
30
|
|
41
31
|
def set(key, value)
|
42
|
-
|
43
|
-
|
44
|
-
check_error Lib.setxattr(@path, key, value, value.bytesize, 0)
|
32
|
+
Lib.set @path, key.to_s, value.to_s
|
45
33
|
end
|
34
|
+
alias_method :[]=, :set
|
46
35
|
|
47
36
|
def remove(key)
|
48
|
-
|
37
|
+
Lib.remove @path, key.to_s
|
49
38
|
end
|
50
39
|
|
51
|
-
|
40
|
+
def each(&blk)
|
41
|
+
list.each do |key|
|
42
|
+
yield key, get(key)
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
def as_json(*args)
|
47
|
+
res = {}
|
48
|
+
each { |k,v| res[k] = v }
|
52
49
|
|
53
|
-
|
54
|
-
raise "unable to set xattr (#{Lib.strerror FFI.errno})" if int != 0
|
50
|
+
res
|
55
51
|
end
|
52
|
+
|
56
53
|
end
|
57
54
|
|
58
55
|
|
data/spec/xattr_spec.rb
CHANGED
@@ -16,12 +16,17 @@ describe Xattr do
|
|
16
16
|
xattr.set "user.foo", "bar"
|
17
17
|
xattr.set "user.bar", "boo"
|
18
18
|
|
19
|
-
xattr.list.should == ["user.
|
19
|
+
xattr.list.sort.should == ["user.bar", "user.foo"]
|
20
20
|
|
21
21
|
xattr.get("user.foo").should == "bar"
|
22
22
|
xattr.get("user.bar").should == "boo"
|
23
23
|
end
|
24
24
|
|
25
|
+
it "can get and set with #[] and #[]=" do
|
26
|
+
xattr['user.foo'] = 'baz'
|
27
|
+
xattr['user.foo'].should == 'baz'
|
28
|
+
end
|
29
|
+
|
25
30
|
it "can remove attributes" do
|
26
31
|
xattr.set "user.foo", "bar"
|
27
32
|
xattr.list.should == ["user.foo"]
|
@@ -34,6 +39,34 @@ describe Xattr do
|
|
34
39
|
xattr.get("hello").should be_nil
|
35
40
|
end
|
36
41
|
|
42
|
+
it "can iterate over all attributes" do
|
43
|
+
xattr.set("user.hello", "world")
|
44
|
+
|
45
|
+
called = false
|
46
|
+
xattr.each do |key, value|
|
47
|
+
called = true
|
48
|
+
|
49
|
+
key.should == "user.hello"
|
50
|
+
value.should == "world"
|
51
|
+
end
|
52
|
+
|
53
|
+
called.should be_true
|
54
|
+
end
|
55
|
+
|
56
|
+
it "is Enumerable" do
|
57
|
+
xattr.should be_kind_of(Enumerable)
|
58
|
+
|
59
|
+
xattr['user.foo'] = 'bar'
|
60
|
+
xattr.to_a.should == [['user.foo', 'bar']]
|
61
|
+
end
|
62
|
+
|
63
|
+
it "returns a Hash for #as_json" do
|
64
|
+
xattr['user.foo'] = 'bar'
|
65
|
+
xattr['user.bar'] = 'baz'
|
66
|
+
|
67
|
+
xattr.as_json.should == {'user.foo' => 'bar', 'user.bar' => 'baz'}
|
68
|
+
end
|
69
|
+
|
37
70
|
it "raises Errno::ENOENT if the file doesn't exist" do
|
38
71
|
lambda { Xattr.new("no-such-file") }.should raise_error(Errno::ENOENT)
|
39
72
|
end
|
metadata
CHANGED
@@ -1,82 +1,80 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: ffi-xattr
|
3
|
-
version: !ruby/object:Gem::Version
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.3
|
4
5
|
prerelease:
|
5
|
-
version: 0.0.2
|
6
6
|
platform: ruby
|
7
|
-
authors:
|
7
|
+
authors:
|
8
8
|
- Jari Bakken
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
- !ruby/object:Gem::Dependency
|
12
|
+
date: 2011-09-24 00:00:00.000000000Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
16
15
|
name: rspec
|
17
|
-
|
18
|
-
requirement: &id001 !ruby/object:Gem::Requirement
|
16
|
+
requirement: &2164580140 !ruby/object:Gem::Requirement
|
19
17
|
none: false
|
20
|
-
requirements:
|
18
|
+
requirements:
|
21
19
|
- - ~>
|
22
|
-
- !ruby/object:Gem::Version
|
23
|
-
version:
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '2.5'
|
24
22
|
type: :development
|
25
|
-
version_requirements: *id001
|
26
|
-
- !ruby/object:Gem::Dependency
|
27
|
-
name: ffi
|
28
23
|
prerelease: false
|
29
|
-
|
24
|
+
version_requirements: *2164580140
|
25
|
+
- !ruby/object:Gem::Dependency
|
26
|
+
name: ffi
|
27
|
+
requirement: &2164578540 !ruby/object:Gem::Requirement
|
30
28
|
none: false
|
31
|
-
requirements:
|
32
|
-
- -
|
33
|
-
- !ruby/object:Gem::Version
|
34
|
-
version:
|
29
|
+
requirements:
|
30
|
+
- - ! '>='
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '0'
|
35
33
|
type: :runtime
|
36
|
-
|
34
|
+
prerelease: false
|
35
|
+
version_requirements: *2164578540
|
37
36
|
description: Manipulate extended file attributes
|
38
|
-
email:
|
37
|
+
email:
|
39
38
|
- jari.bakken@gmail.com
|
40
39
|
executables: []
|
41
|
-
|
42
40
|
extensions: []
|
43
|
-
|
44
41
|
extra_rdoc_files: []
|
45
|
-
|
46
|
-
files:
|
42
|
+
files:
|
47
43
|
- .gitignore
|
48
44
|
- Gemfile
|
45
|
+
- LICENSE
|
46
|
+
- README.md
|
49
47
|
- Rakefile
|
50
48
|
- ffi-xattr.gemspec
|
51
49
|
- lib/ffi-xattr.rb
|
50
|
+
- lib/ffi-xattr/darwin_lib.rb
|
51
|
+
- lib/ffi-xattr/error.rb
|
52
|
+
- lib/ffi-xattr/linux_lib.rb
|
52
53
|
- lib/ffi-xattr/version.rb
|
53
54
|
- spec/xattr_spec.rb
|
54
55
|
homepage: http://github.com/jarib/ffi-xattr
|
55
56
|
licenses: []
|
56
|
-
|
57
57
|
post_install_message:
|
58
58
|
rdoc_options: []
|
59
|
-
|
60
|
-
require_paths:
|
59
|
+
require_paths:
|
61
60
|
- lib
|
62
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
61
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
63
62
|
none: false
|
64
|
-
requirements:
|
65
|
-
- -
|
66
|
-
- !ruby/object:Gem::Version
|
67
|
-
version:
|
68
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
63
|
+
requirements:
|
64
|
+
- - ! '>='
|
65
|
+
- !ruby/object:Gem::Version
|
66
|
+
version: '0'
|
67
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
69
68
|
none: false
|
70
|
-
requirements:
|
71
|
-
- -
|
72
|
-
- !ruby/object:Gem::Version
|
73
|
-
version:
|
69
|
+
requirements:
|
70
|
+
- - ! '>='
|
71
|
+
- !ruby/object:Gem::Version
|
72
|
+
version: '0'
|
74
73
|
requirements: []
|
75
|
-
|
76
74
|
rubyforge_project: ffi-xattr
|
77
75
|
rubygems_version: 1.8.10
|
78
76
|
signing_key:
|
79
77
|
specification_version: 3
|
80
78
|
summary: Manipulate extended file attributes
|
81
|
-
test_files:
|
82
|
-
|
79
|
+
test_files:
|
80
|
+
- spec/xattr_spec.rb
|