recls-ruby 2.7.1 → 2.7.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.
- checksums.yaml +4 -4
- data/lib/recls/version.rb +2 -2
- data/lib/recls/ximpl/windows.rb +4 -3
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 92adb0b237ff0e43eb67cfde5bd673537c31cb03
|
4
|
+
data.tar.gz: a5c76adb6dc6322bed1b763716a9f4640d24c4ee
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 757797e28970c2c89c49bf565932fedbfd3dac4857557068b355a7565dd7644df44aeb3a709b9dc1f87a69a4932e81b623e69a762eb35198378b7742548a5478
|
7
|
+
data.tar.gz: 99f83fa859a427e1ea3b9b828b3067080446faec2a476e24246785b3491c5e5ac2529567ed0eaae309d4b703768c78b8dcc281538255d8f9ef3248bc410ec65e
|
data/lib/recls/version.rb
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
# Purpose: Version for recls library
|
5
5
|
#
|
6
6
|
# Created: 14th February 2014
|
7
|
-
# Updated:
|
7
|
+
# Updated: 18th June 2016
|
8
8
|
#
|
9
9
|
# Author: Matthew Wilson
|
10
10
|
#
|
@@ -39,7 +39,7 @@
|
|
39
39
|
module Recls
|
40
40
|
|
41
41
|
# Current version of the recls.Ruby library
|
42
|
-
VERSION = '2.7.
|
42
|
+
VERSION = '2.7.2'
|
43
43
|
|
44
44
|
private
|
45
45
|
VERSION_PARTS_ = VERSION.split(/[.]/).collect { |n| n.to_i } # :nodoc:
|
data/lib/recls/ximpl/windows.rb
CHANGED
@@ -4,11 +4,11 @@
|
|
4
4
|
# Purpose: Windows-specific constructs for the recls library.
|
5
5
|
#
|
6
6
|
# Created: 19th February 2014
|
7
|
-
# Updated:
|
7
|
+
# Updated: 18th June 2016
|
8
8
|
#
|
9
9
|
# Author: Matthew Wilson
|
10
10
|
#
|
11
|
-
# Copyright (c) 2012-
|
11
|
+
# Copyright (c) 2012-2016, Matthew Wilson and Synesis Software
|
12
12
|
# All rights reserved.
|
13
13
|
#
|
14
14
|
# Redistribution and use in source and binary forms, with or without
|
@@ -131,7 +131,8 @@ module Recls
|
|
131
131
|
@by_handle_information = ByHandleInformation.new(path)
|
132
132
|
|
133
133
|
buff = ' ' * MAX_PATH
|
134
|
-
|
134
|
+
# not forcing this new string causes 'can't modify frozen string (TypeError)'
|
135
|
+
n = GetShortPathName.call("#{path}", buff, buff.length)
|
135
136
|
@short_path = (0 == n) ? nil : buff[0...n]
|
136
137
|
end
|
137
138
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: recls-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.7.
|
4
|
+
version: 2.7.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Matt Wilson
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-06-
|
11
|
+
date: 2016-06-18 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: |
|
14
14
|
RECursive LS for Ruby
|
@@ -76,3 +76,4 @@ signing_key:
|
|
76
76
|
specification_version: 4
|
77
77
|
summary: recls.Ruby
|
78
78
|
test_files: []
|
79
|
+
has_rdoc:
|