rfuse 1.0.4.RC2 → 1.0.4

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGES.md CHANGED
@@ -1,11 +1,11 @@
1
- 1.0.4 -
1
+ 1.0.4 - 2013/12/19
2
2
  ------------------
3
3
 
4
4
 
5
5
  Bugfixes
6
6
 
7
7
  * {RFuse.parse_options} fix if only local options supplied
8
- * Fix for listing extended attributes
8
+ * Fixes for extended attributes
9
9
  * Prevent old exceptions from raising at unmount
10
10
 
11
11
  1.0.3 - 2012/08/16
data/ext/rfuse/rfuse.c CHANGED
@@ -1456,7 +1456,7 @@ static int rf_fgetattr(const char *path, struct stat *stbuf, struct fuse_file_in
1456
1456
 
1457
1457
  For the meaning of fields in 'struct flock' see the man page for fcntl(2). The l_whence field will always be set to SEEK_SET.
1458
1458
 
1459
- For checking lock ownership, the {FileInfo#owner} argument must be used.
1459
+ For checking lock ownership, the FileInfo#owner argument must be used. (NOT YET IMPLEMENTED)
1460
1460
 
1461
1461
  For F_GETLK operation, the library will first check currently held locks, and if a conflicting lock is found it will return information without calling this method. This ensures, that for local locks the l_pid field is correctly filled in. The results may not be accurate in case of race conditions and in the presence of hard links, but it's unlikly that an application would rely on accurate GETLK results in these cases. If a conflicting lock is not found, this method will be called, and the filesystem may fill out l_pid by a meaningful value, or it may leave this field zero.
1462
1462
 
data/lib/rfuse/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module RFuse
2
- VERSION = "1.0.4.RC2"
2
+ VERSION = "1.0.4"
3
3
  end
metadata CHANGED
@@ -1,15 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rfuse
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.4.RC2
5
- prerelease: 6
4
+ version: 1.0.4
5
+ prerelease:
6
6
  platform: ruby
7
7
  authors:
8
8
  - Grant Gardner
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-12-16 00:00:00.000000000 Z
12
+ date: 2013-12-19 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake
@@ -170,16 +170,19 @@ required_ruby_version: !ruby/object:Gem::Requirement
170
170
  version: '0'
171
171
  segments:
172
172
  - 0
173
- hash: -2739741256214400313
173
+ hash: -1177971616363714193
174
174
  required_rubygems_version: !ruby/object:Gem::Requirement
175
175
  none: false
176
176
  requirements:
177
- - - ! '>'
177
+ - - ! '>='
178
178
  - !ruby/object:Gem::Version
179
- version: 1.3.1
179
+ version: '0'
180
+ segments:
181
+ - 0
182
+ hash: -1177971616363714193
180
183
  requirements: []
181
184
  rubyforge_project:
182
- rubygems_version: 1.8.24
185
+ rubygems_version: 1.8.25
183
186
  signing_key:
184
187
  specification_version: 3
185
188
  summary: Ruby language binding for FUSE